/*Page Layout*/

    #layoutID 
    {
    overflow-x: hidden;
    }
.layout {
    width: 100%;

    display: grid;
    grid:
        "header" auto
        "main" 1fr
        "footer" auto
        / 1fr;
    gap: 8px;
}

.header {
    grid-area: header;
    display: flex;
    align-content: center;
    justify-content: center;
    background-color: #ff976e;
    z-index: 1;
}
.main {
    grid-area: main;
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
    gap: 29px;
    z-index: 1;
    overflow: hidden;
}
.footer {
    grid-area: footer;
    display: flex;
    z-index: 1;
}

/*Page Layout End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Tabs Style*/

.tab {
    overflow: hidden;
    border: 6px solid #e06142;
    background-color: #f6875b;
    height: 51px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: center;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 18px 29px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ffcf98;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #e06142;
}

/* Style the tab content */
.tabcontent {
    margin-top: 69px;
    position: absolute;
    display: none;
    border-top: none;
    z-index: 5;
}

.tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*Tabs Style End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Body Style*/

body {
    background: #ff976e;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: url(Images/Paw.svg), auto;
}

/*Body Style End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Custom Cursor*/

custom-cursor {
    cursor: url(Images/Paw.svg), auto;
}

/*Custom Cursor End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Gallery Images*/

img.gal {
    margin-left: 416px;
    margin-right: 400px;
    max-width: 64vw;
    max-height: 55vw;
    z-index: 1;
    transition: grow cubic-beziercubic-bezier(0.19, 1, 0.22, 1) 5s;
    transform-origin: center;
}

/*Gallery Images end*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Scrollbar*/

/* width */
*::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: none;
    background: #781616;
    border-radius: 5px;
}

::-webkit-scrollbar-track-piece {
    background: #781616;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ffdc91;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ffecc3;
}

/*Scrollbar end*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Fonts*/

.shrikhand-regular {
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
}

.quicksand {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

/*Fonts End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Header Styles*/

h1.pagetitle {
    width: 100%;
    font-family: "Shrikhand", serif;
    color: #781616;
    z-index: 3;
}

h2 {
    position: relative;
    width: 99%;
    font-family: "Quicksand", serif;
    font-size: 2vw;
    color: #781616;
    text-align: center;
    z-index: 1;
}

h3 {
    position: relative;
    font-family: "Quicksand", serif;
    font-size: 3vw;
    color: #781616;
    text-align: left;
    z-index: 1;
}

h4 {
    position: relative;
    font-family: "Quicksand", serif;
    font-size: 1vw;
    color: #781616;
    text-align: center;
    z-index: 1;
}

.centered-text {
    text-align: center;
}

/*Header Styles End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Links*/
a {
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
}

a:hover {
    color: #ffdc91;
}

/*Links End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Home Section*/

#homeID {
    overflow: hidden;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.home .home-content h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.3;
}

span {
    color: white;
}

home-content h3 {
    font-size: 4rem;
    margin-bottom: 16rem;
    font-weight: 700;
}

/*Image Icon*/

img.icon {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    width: 13vw;
    height: 13vw;
    transition: 0.2s linear;
    z-index: 8;
    transform-origin: center;
    bottom: 0;
}

img.icon:hover {
    width: 14vw;
    height: 14vw;
}

/*Image Icon End*/

/*Home Section End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Buttons*/

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: #ffcfa4;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #a71f1f;
    letter-spacing: 0.3;
    font-weight: 600;
    border: 2px solid #ea5a3e;
    transition: 0.3s ease;
}

.btn:hover {
    transform: scale3d(1.03);
    background-color: #ffc991;
    color: #ec6c53;
}

/*Buttons End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Ham Menu*/

li {
    color: white;
}

.off-screen-menu {
    font-family: "Quicksand", sans-serif;
    border-radius: 25px;
    background-color: #781616;
    height: 18vh;
    width: 58%;
    max-width: 261px;
    position: fixed;
    top: 12px;
    right: -377px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    text-align: left;
    font-size: 1.5rem;
    transition: 0.3s ease;
    z-index: 5;
}

.off-screen-menu.active {
    position: absolute;
    right: 0;
    z-index: 5;
}

nav {
    border-radius: 50px;
    padding: 1rem;
    display: flex;
    background-color: white;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
}

.ham-menu {
    height: 40px;
    width: 40px;
    margin-left: auto;
    position: relative;
    z-index: 100;
}

.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: #ffdc91;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
}

.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(3) {
    top: 75%;
}

.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
    opacity: 0;
}

.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/*Ham Menu End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Halftone Background*/

.halftone {
    --stop1: 0.45rem;
    --stop2: 0.42rem;
}

.halftone::after {
    /* Cover our element */

    mask-image: linear-gradient(rgb(0 0 0 / 0), rgb(0 0 0));
    content: "";
    position: fixed;
    inset: 0;

    /* Dotted background */
    mix-blend-mode: soft-light;
    opacity: 23%;
    background-image: radial-gradient(circle at center, black var(--stop2), transparent var(--stop1));
    background-size: 1.3rem 1.3rem;
    background-position:
        0 0,
        0.65rem 0.65rem;
}

/*Halftone Background end*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*About Page*/
#aboutID {
    overflow-x: hidden;
}

.aboutimg {
    width: 38%;
    height: 30%;
    z-index: 2;
}

body {
    font-family: Quicksand, sans-serif;
}

.card {
    box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.2);
    background-color: #ffcf98;
    width: 100%;
    height: 100%;
    display: flex;
    align-content: flex-start;
    justify-content: flex-start;
}

.column {
    display: flex;
    width: 56.9%;
    padding: 17px;
}

.about-section {
    position: absolute;
    margin-top: -1%;
    height: 83%;
    width: 52%;
    border: 7px solid #ffcf98;
    padding: 20px;
    text-align: left;
    color: #e78257;
}

.acontainer {
    max-height: 96%;
    font-size: 179%;
    padding: 3%;
}

.atitle {
    color: #781616;
}

/*About Page End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Sun Rise Animation*/

.sun {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    width: 42vw;
    height: 42vw;
    border-radius: 50%;
    transform-origin: center;
    background: #ffdc91;
    animation: rise 5s ease forwards;
    bottom: 0;
}

@keyframes rise {
    0% {
        transform: translate(0, 100%);
    }
    100% {
        transform: translate(0, 50%);
    }
}

@keyframes over {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.2;
    }
}
/*Sun Rise Animation end*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Sun Rays Animation*/

.sunrays {
    width: 2500px;
    height: 2500px;
    transform-origin: center;

    mask-image: radial-gradient(rgba(0, 0, 0, 1) 40%, transparent 65%);
    background: repeating-conic-gradient(from 0deg, #ffdc91 0deg 5deg, transparent 5deg 10deg);
    transform: rotate(15deg);
    animation: rotate 94s linear;
}

.rayHolder {
    animation: show 1s linear;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

@keyframes rotate {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*Sun Rays Animation End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Banner Animation*/
.banner {
    position: absolute;
    width: 59vw;
    transform-origin: center;
    animation: bannersink 5s ease forwards;
    z-index: 2;
}

@keyframes bannersink {
    0% {
        top: -1000px;
    }
    100% {
        top: 400px;
    }
}

@keyframes over {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.2;
    }
}
/*Banner Animation End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Load Aniamtion*/

.loader {
    position: fixed;
    background-color: #e78257;
    opacity: 1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 11;
}

.loader {
    animation: load-out 3s;
    animation-fill-mode: forwards;
}

@keyframes load-out {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    99% {
        opacity: 0;
        top: 0%;
    }
    100% {
        opacity: 0;
        top: 100%;
    }
}

.loadimg {
    margin-left: auto;
    margin-right: auto;
    padding: 1%;
    position: absolute;
    width: 9vw;
    height: 6vw;
    transition: 0.2s linear;
    z-index: 8;
    transform-origin: center;
    bottom: 0;
}

.loadtext {
    font-size: 35px;
    font-family: "Quicksand", sans-serif;
    color: #781616;
    margin-left: auto;
    margin-right: auto;
    padding: 2%;
    position: absolute;
    width: 9vw;
    height: 6vw;
    transition: 0.2s linear;
    z-index: 8;
    transform-origin: center;
}

/*Load Animation End*/

/*✎﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏﹏*/

/*Screen Size*/

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
    #homeID {
    overflow: hidden; 
}


.home {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
    /*sunrays*/
    .sunrays {
        margin-right: -95vw;
    width: 1500px;
    height: 1500px;
    transform-origin: center;

    mask-image: radial-gradient(rgba(0, 0, 0, 1) 40%, transparent 65%);
    background: repeating-conic-gradient(from 0deg, #ffdc91 0deg 5deg, transparent 5deg 10deg);
    transform: rotate(15deg);
    animation: rotate 94s linear;
    }

    .rayHolder {
    overflow: hidden;
    margin-bottom: 86px;
    animation: show 1s linear;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 112%);
    }
    /*sunrays end*/
    
    .sun {
    margin-left: 140vw;
    margin-right: 44vw;
    position: absolute;
    width: 78vw;
    height: 78vw;
    border-radius: 50%;
    transform-origin: center;
    background: #ffdc91;
    animation: rise 5s ease forwards;
    bottom: 0;
}
    
    @keyframes rise {
    0% {
        transform: translate(0, 590%);
    }
    100% {
        transform: translate(0, 327%);
    }
}

@keyframes over {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.2;
    }
}
    
    /*Image Icon*/

img.icon {
    margin-bottom: -225vw;
    margin-left: 119vw;
    margin-right: 25vw;
    position: absolute;
    width: 27vw;
    height: 33vw;
    transition: 0.2s linear;
    z-index: 8;
    transform-origin: center;
    bottom: 0;
}

img.icon:hover {
    width: 14vw;
    height: 14vw;
}

/*Image Icon End*/

    /*about page settings*/
    .aboutimg {
        width: 24%;
        height: 23%;
        z-index: 2;
    }
    .column {
        display: flex;
        width: 74.5%;
    }

    .about-section {
        position: absolute;
        margin-top: 0%;
        height: 80%;
        width: 86%;
        border: 14px solid #ffcf98;
        padding: 20px;
        text-align: left;
        color: #e78257;
    }

    .acontainer {
        max-height: 98%;
        font-size: 89%;
        overflow-y: hidden;
        padding: 3%;
    }
    /*about page settings end*/

    /*ham burger settings*/

    .off-screen-menu {
        font-family: "Quicksand", sans-serif;
        border-radius: 25px;
        background-color: #781616;
        height: 15vh;
        width: 42%;
        max-width: 261px;
        position: fixed;
        top: 21px;
        right: -377px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        text-align: left;
        font-size: 1.1rem;
        transition: 0.3s ease;
        z-index: 5;
    }

    .off-screen-menu.active {
        position: absolute;
        right: 0;
        z-index: 5;
    }
    nav {
        border-radius: 50px;
        padding: 1rem;
        display: flex;
        background-color: white;
        position: absolute;
        top: 30px;
        right: 30px;
        z-index: 100;
    }

    .ham-menu {
        height: 20px;
        width: 20px;
        margin-left: auto;
        position: relative;
        z-index: 100;
    }

    .ham-menu span {
        height: 3px;
        width: 100%;
        background-color: #ffdc91;
        border-radius: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: 0.3s ease;
    }

    /*banner animation*/
    .banner{
        margin-left: 96vw;
    position: absolute;
    width: 90vw;
    transform-origin: center;
    animation: bannersink 5s ease forwards;
    z-index: 2;
}
    @keyframes bannersink {
        0% {
            top: -1099px;
        }
        100% {
            top: 663px;
        }
    }
    /*banner animation end*/

    /*load screen*/

    .loadimg {
        margin-left: auto;
        margin-right: auto;
        padding: 3%;
        position: absolute;
        width: 35vw;
        height: 25vw;
        transition: 0.2s linear;
        z-index: 8;
        transform-origin: center;
        bottom: 0;
    }

    .loadtext {
        font-size: 35px;
        font-family: "Quicksand", sans-serif;
        color: #781616;
        margin-left: auto;
        margin-right: auto;
        padding: 3%;
        position: absolute;
        width: 9vw;
        height: 6vw;
        transition: 0.2s linear;
        z-index: 8;
        transform-origin: center;
    }

    /*load screen end*/
    
    /*Tabs Style*/

.tab {
    overflow: hidden;
    border: 6px solid #e06142;
    background-color: #f6875b;
    height: 50px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: center;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 18px 13px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ffcf98;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #e06142;
}

/* Style the tab content */
.tabcontent {
    margin-top: 68px;
    font-size: 11px;
    position: absolute;
    display: none;
    border-top: none;
    z-index: 5;
}

.tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
    
    /*Header Styles*/

h1.pagetitle {
    width: 100%;
    font-family: "Shrikhand", serif;
    color: #781616;
    z-index: 3;
}

h2 {
    position: relative;
    width: 99%;
    font-family: "Quicksand", serif;
    font-size: 4vw;
    color: #781616;
    text-align: center;
    z-index: 1;
}

h3 {
    position: relative;
    font-family: "Quicksand", serif;
    font-size: 3vw;
    color: #781616;
    text-align: left;
    z-index: 1;
}

h4 {
    position: relative;
    font-family: "Quicksand", serif;
    font-size: 1vw;
    color: #781616;
    text-align: center;
    z-index: 1;
}

/*Tabs Style End*/
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 820px) {
    /*about page settings*/
    .aboutimg {
        width: 24%;
        height: 23%;
        z-index: 2;
    }
    .column {
        overflow-y: scroll;
        overflow-x: hidden;
        display: flex;
        width: 75.6%;
        padding: 7px;
    }

    .about-section {
        position: absolute;
        margin-top: 0%;
        height: 82%;
        width: 85%;
        border: 7px solid #ffcf98;
        padding: 20px;
        text-align: left;
        color: #e78257;
    }

    .acontainer {
        max-height: 126%;
        font-size: 154%;
        padding: 3%;
    }
    /*about page settings end*/
    
    /*Tabs Style*/

.tab {
    overflow: hidden;
    border: 5px solid #e06142;
    background-color: #f6875b;
    height: 51px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: center;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 18px 29px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ffcf98;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #e06142;
}

/* Style the tab content */
.tabcontent {
    margin-top: 69px;
    position: absolute;
    display: none;
    border-top: none;
    z-index: 5;
}

.tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*Tabs Style End*/
    
    /*Header Styles*/

h1.pagetitle {
    width: 100%;
    font-family: "Shrikhand", serif;
    color: #781616;
    z-index: 3;
}

h2 {
    position: relative;
    width: 99%;
    font-family: "Quicksand", serif;
    font-size: 4vw;
    color: #781616;
    text-align: center;
    z-index: 1;
}

h3 {
    position: relative;
    font-family: "Quicksand", serif;
    font-size: 3vw;
    color: #781616;
    text-align: left;
    z-index: 1;
}

h4 {
    position: relative;
    font-family: "Quicksand", serif;
    font-size: 1vw;
    color: #781616;
    text-align: center;
    z-index: 1;
}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 820px) and (max-width: 1500px) {
    /*about page settings*/
    .aboutimg {
        width: 24%;
        height: 23%;
        z-index: 2;
    }
    .column {
        display: flex;
        width: 75.6%;
        padding: 7px;
    }

    .about-section {
        position: absolute;
        margin-top: 0%;
        height: 82%;
        width: 80%;
        border: 7px solid #ffcf98;
        padding: 20px;
        text-align: left;
        color: #e78257;
    }

    .acontainer {
        max-height: 126%;
        font-size: 154%;
        padding: 3%;
    }
    /*about page settings end*/
    
    /*Header Styles*/

h1.pagetitle {
    width: 100%;
    font-family: "Shrikhand", serif;
    color: #781616;
    z-index: 3;
}

h2 {
    position: relative;
    width: 99%;
    font-family: "Quicksand", serif;
    font-size: 3vw;
    color: #781616;
    text-align: center;
    z-index: 1;
}

h3 {
    position: relative;
    font-family: "Quicksand", serif;
    font-size: 3vw;
    color: #781616;
    text-align: left;
    z-index: 1;
}

h4 {
    position: relative;
    font-family: "Quicksand", serif;
    font-size: 1vw;
    color: #781616;
    text-align: center;
    z-index: 1;
}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 1500px) and (max-width: 1900px) {
    /*about page settings*/
    .aboutimg {
        width: 24%;
        height: 23%;
        z-index: 2;
    }
    .column {
        display: flex;
        width: 75.6%;
        padding: 7px;
    }

    .about-section {
        position: absolute;
        margin-top: 0%;
        height: 82%;
        width: 80%;
        border: 7px solid #ffcf98;
        padding: 20px;
        text-align: left;
        color: #e78257;
    }

    .acontainer {
        max-height: 126%;
        font-size: 154%;
        padding: 3%;
    }
    /*about page settings end*/
}

/*Screen Size End*/
