@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,700&display=swap');
@font-face 
{
    font-family:"Bootleg";
    src: url(./fonts/Bootleg\ Hayes\ Free.ttf);
}

:root
{
    font-size: 14px;
    letter-spacing: 0.15px;

    --khanodoGold: #755037;
    --khandoLightGold: #755e43;
    --standardFontSize: .97rem;
    --mobileFontSize: 12px;
}

html
{
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
    overflow-x: hidden;
}

*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

a
{
    text-decoration: none;
}

a:hover,button
{
    cursor: pointer;
}

.condensed
{
    font-family: 'Barlow Condensed', sans-serif;
}

.pagePara
{
    max-width: 36rem;
    padding: 1rem 0;
    font-size: var(--standardFontSize);
    font-weight: 500;
    line-height: 1.4rem;
}

.kBlack
{
    color: #5a5a5a;
}


.fixed_image
{
    height: 35rem;
    background-image: url(/img/Fixed_Image.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed_image > button
{
    background-color: transparent;
    border: 3px solid #fff;
    padding: 2rem 6rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    margin: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

.fixed_image > button:hover
{
    color: var(--khanodoGold);
    box-shadow: 0 0 30px -7px #000;
}

.buttonWiper
{
    position: absolute;
    height: 9rem;
    width: 25rem;
    transform: translateY(8rem);
    transition: transform .250s ease-out;
    background-color: #ffffff;
    z-index: -1;
}

.fixed_image > button:hover .buttonWiper
{
    transform: translateY(0) rotate(10deg);
}



/* Mobile Phone Media Query */
@media screen and (min-width:600px) {

    .homeCard
    {
        background-attachment: fixed;
    }

    .reviewTabs
    {
        perspective: 1500px;
    }
    
    .customerTab
    {
        transform: rotateY(15deg);
    }

    .filledInfo > .textInfo
    {
        height: 32rem;
    }
}

.socials
{
    position: absolute;
    top: 40%;
    right: 2rem;
}

.single-social-icon
{
    margin-top: .6rem;
    transition: 0.1s ease-in;
}

.single-social-icon > a
{
    color: #fff;
    font-size: 2rem;
    
}

.single-social-icon:hover
{
    transform: scale(140%);
}

.homeCard
{
    background:linear-gradient(rgba(39, 24, 12, 0.486),rgba(58, 30, 8, 0.555));
    width: 100vw;
    position: relative;
}

.navigation
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 10px -5px #000;
    padding: .4rem 2rem ;
    z-index:99999;
    position: sticky;
    top: 0;
    width: 100vw;
    transition: position 250ms ease-in, background 250ms ease-in;  
}

.navigation > a > img
{
    height: 80px;
    margin-left: 5em;
}

.links
{
    list-style: none;
}

.links > li
{
    display: inline;
    font-size: 0.95rem;
    font-weight: 400;
}

.links > li > a
{
    text-decoration: none;
    color:#36312d ;
    padding: 1rem;
    transition: 0.25s ease-out;
}

.links > li > a:hover
{
    color: #000000;
    background-color: #cfa2862c;
    border-radius: 70% 30% 57% 43% / 47% 42% 58% 53% ;
}

#active
{
    font-weight: 800;
    background-color: #e7bea52c;
    border-radius: 70% 30% 57% 43% / 47% 42% 58% 53% ;
}


.navChange
{ 
    background: rgb(255, 241, 219);
}

#activities:hover > #activities-pop
{
    display: block;
}


.popNav
{
    position: absolute;
    background-color: #fff;
    border-radius: .3rem;
    overflow: hidden;
    display: none;
    box-shadow: 0 0 10px -3px #000;
}

#accomodations-pop
{
    transform: translateY(-1rem)translateX(-25rem);
}

/* .popNav:hover
{
    display: block;
} */

.popNav > ul
{
    list-style: none;
}

.popUp-appear
{
    display: block;
}


.popNav > ul > li
{
    padding: 1rem 0;
    font-weight: 400;
    font-size: 1rem;
    transition: 20ms ease-in;
    border-bottom: rgb(238, 238, 238) solid 1px;
}

.popNav > ul > li > a
{
    padding: 1rem 4rem;
    color: #444;
}

.popNav > ul > li:hover
{
    background-color: rgb(207, 176, 140);
    cursor: pointer;
}

.popNav > ul > li:nth-child(odd):hover
{
    background-color: rgb(201, 186, 170);
    cursor: pointer;
}

/* Round button reverse transition to be worked on */
.roundButton
{
    border: none;
    color: #fff;
    background-color: #331806;
    padding: 1rem 2rem;
    border-radius: 2rem;
    transition: 250ms ease-out;
}

.roundButton:hover
{
    scale: 105%;
    opacity: .65;
}

.roundButton > a
{
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
}

/* Card Content */
.cardContent
{
    color: #fff;
    margin: 0 auto;
    text-align: center;
    z-index: 1000;
}

/* Classy Header no longer available */
.cardContent > h1, .classyHeader
{
    font-size: 15rem;
    font-weight: 100;
    font-family: 'Bootleg';
    margin-bottom: 1.5rem;
}

.cardContent > p
{
    text-align: left;
    margin: 0 auto;
    margin-top: -4rem;
}


.cardButton
{
    background-color: rgb(255, 228, 197);
    color: #331806;
    padding: 1rem 2rem;
    max-width: 25rem;
    margin: 0 auto;
    border-radius: 4rem;
    position: relative;
    overflow: hidden;
}

.cardButton > a > i
{
    position: absolute;
    left: -4rem;
    color: #fff;
    transition: 0.2s ease-in;
}

.cardButton >a 
{
    text-decoration: none;
    color: var(--khanodoGold);
}

.cardButtonWiper
{
    height: 6rem;
    width: 9rem;
    position: absolute;
    left: -10rem;
    top: 0;
    background: #331806;
    transition: 0.1s ease-in;
}

.cardButton:hover
{
    cursor: pointer;
}

.cardButton:hover > a > i
{
    left: 3.5rem;
}

.cardButton > a >p
{
    transition: transform 150ms ease-in;
}

.cardButton:hover > a > p
{
    transform: translateX(30px);
}

.cardButton:hover > a >.cardButtonWiper
{
    left: -3rem;
}

/* Service Tabs */
.serviceTabs
{
    position: relative;
    bottom: -2rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serviceTabs > a
{
    perspective: 200px;
    transition: 100ms ease-out;
}

.serviceTabs > a:hover
{
    perspective: 1000px;
    scale: 105%;
    z-index: 1;
}


.singleTab
{
    background-image: linear-gradient(45deg,#c07d50a6,#fd9957b6),url(./img/Products_background.jpg);
    background-size: cover;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .06rem;
    padding: 2rem 4rem;
    color: #fff;
    transform: rotateY(20deg);
    border-radius: 1rem;
    margin-right: -2rem;
}

#cruisesTab,#reviewsTab
{
    background-image: linear-gradient(45deg,#381c0ae7,#6b2e059f),url(./img/Products_background.jpg);
    background-size:contain;
}


.singleTab:hover,#cruisesTab:hover,#reviewsTab:hover
{
    background-color: rgb(255, 228, 197);
    color: #251910;
}

/* InfoImage Section */
.infoImage,.doubleButtons,.serviceCard,.services
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.infoImage
{
    padding: 3rem;
    background: #fff;
}

.textInfo
{
    padding-right: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.infoHeading
{
    font-weight: 800;
    font-size: 3.9rem;
    letter-spacing: -.25rem;
    text-align: center;
    color: var(--khanodoGold);
    text-transform: capitalize;
}


.imagesLayout
{
    max-width: 45rem;
    max-height: 20rem;
    overflow: hidden;
}

.imageWrapper
{
    border-radius: 4rem;
    overflow: hidden;
}

.topWrapper
{
    z-index: 2;
    border-right: 2px solid #844013;
}

.imageWrapper2
{
    position: absolute;
    rotate: -5deg;
    transform: translateX(2rem);
}

.imagesLayout
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.imageWrapper > img
{
    height: 17rem;
}

/* Filled Info  */
.filledInfo
{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: -.25rem;   
    background-image: linear-gradient(45deg,#381c0ae7,#6b2e059f),url(./img/Products_background.jpg);
    background-size: cover;
}

.filledInfo > .textInfo
{
    /* background: linear-gradient(45deg,#533622,#825435); */
    width: 100vw;
    padding: 1rem;
    color: #fff;
}

.price_btns
{
    padding-top: 1.6rem;
}

.price_tab
{
    margin-top: -2.25rem;
    background: #ebd615;
    padding: 4rem;
}

.price_tab > .textInfo > h1
{
    color: #000;
}

.filledInfo > .textInfo > .infoHeading
{
    color: #fff;
}

.filledInfo > .textInfo > .pagePara
{
    margin: 0 auto;
    color: #fdebde;
}


.imageFill > img
{
    height: 32rem;
    transition: 0.15s ease-in;
}


.moreBtn
{
    background-color:#ffffff ;
    color:#331806 ;
    margin-right: 2rem;
    padding: 1rem 3rem;
}

.inquireBtn
{
    background-color:#3A2A20 ;
    color:#977057 ;
    padding: 1rem 3rem;
}

/* Activites */
.activities > .pagePara
{
    text-align: center;
    margin: 0 auto;
    color: #844013;
}

/* Services */

.services
{
    perspective: 2000px;
    padding-bottom: 3rem;
}
.serviceCard
{
    background-image: linear-gradient(45deg,rgba(51, 24, 6, 0.741),#331806d0),url(./img/Products_background.jpg);
    background-size: cover;
    min-width: 25rem;
    min-height: 18rem;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    margin-right: 1rem;
    border-radius: 1rem;
    transform: rotateX(20deg);
    transition: transform 0.15s ease-in;
    transition-delay: 150ms;
    overflow: hidden;
}

.serviceCard:hover
{
    transform: rotateX(0) translateY(-1rem);
    background-image: linear-gradient(45deg,rgba(5, 5, 5, 0.37),rgba(5, 5, 5, 0.397)),url(./img/victoria-falls-deluxe.jpg);
    background-size: cover;
}

.ser
{
    background-image: linear-gradient(45deg,rgba(247, 247, 247, 0.514),rgba(233, 233, 233, 0.87)),url(./img/Products_background.jpg);
    background-size: cover;
    padding-top: 2rem;
}

#sunsetCruise:hover
{
    background-image: linear-gradient(45deg,rgba(5, 5, 5, 0.445),rgba(5, 5, 5, 0.466)),url(./img/Cruise-Service1.jpg);
}

#gameDrive:hover
{
    background-image: linear-gradient(45deg,rgba(5, 5, 5, 0.479),rgba(5, 5, 5, 0.568)),url(./img/Drive-Service1.jpg);
}

#rafting:hover
{
    background-image: linear-gradient(45deg,rgba(5, 5, 5, 0.459),rgba(5, 5, 5, 0.568)),url(./img/Whitewater_Rafting.jpg);
}

#chobe:hover
{
    background-image: linear-gradient(45deg,rgba(5, 5, 5, 0.438),rgba(5, 5, 5, 0.541)),url(./img/Drive-Service1.jpg);
}


.serviceHead
{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4.2rem;
    font-weight: 500;
    line-height: 2.9rem;
    letter-spacing: -0.25rem;
    color: #fff;
    opacity: .8;
    text-align: center;
    margin-bottom: 1rem;
    transition: .2s ease-in;
    transform: translateY(3rem);
}

.serviceExpansion
{
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    max-width: 200px;
    opacity: 0;
}

.serviceExpansion > li > a
{
    text-decoration: none;
    color: #fff;
}

.serviceExpansion > li > a:hover
{
    opacity: .6;
}

.serviceExpansion > li
{
    list-style: none;
}

.serviceButton
{
    background-color: #fff;
    color: #40451D;
    transition: 0.15s ease-in;
}

.serviceCard:hover .serviceHead
{
    transform: translateY(0);
}

.serviceCard:hover .serviceExpansion
{
    transform: translateY(0);
    opacity: .7;
}

    .serviceCard:hover .serviceButton
{
    transform: translateY(0);
    opacity: .7;
}


/* Fixing Hover Bug on Mobile devices */
@media (hover: hover)
{
      
    .serviceButton
{
    transform: translateY(10rem);
    opacity: 0;
}

   
    .serviceCard:hover .serviceButton
{
    transform: translateY(0);
    opacity: .7;
}

.serviceCard:hover .serviceExpansion
{
    
    transform: translateY(0);
    opacity: .7;
}

.serviceCard:hover .serviceHead
{
    transform: translateY(0);
}

}


/* Call Us now */
.callUsSection
{
   background: #40451D;
   display: flex;
   justify-content: center;
   padding: 2rem;
}

.callUsSection 
{
    color:#fff ;
}

.largeHeading
{
    font-size: 4rem;
    font-weight: 300;
}

.buttonGroup > a > .roundButton
{
    background-color: #fff;
    color: #40451D;
    margin-bottom: 1rem;
    min-width: 10rem;
}


/* Footer */
footer
{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 3rem;
}

.strip > a > img
{
    height: 5rem;
    width: 10rem;
}

.strip
{
    display: flex;
    flex-direction: column;
    margin-right: 3rem;
}

.strip > a
{
    margin-bottom: 1rem;
    color: rgb(58, 58, 58);
    font-weight: 600;
}

.strip > a:hover
{
    color: #859617;
}

.strip > p
{
    max-width: 13rem;
}

.show
{
    transform: translateX(0);
}

.hiddenMenu
{
    display: none;
    font-size: 1.7rem;
    color: #303030;
    background-color: #fff;
    padding: .4rem;
    position: absolute;
    right: 2rem;
    z-index: 9;
    border-radius: .2rem;
}

.from-left
{
    transform: translateX(-10rem);
    opacity: 0;
}


.from-right
{
    transform: translateX(10rem);
    opacity: 0;
}


.toggle-off
{
    transform: translateY(100px);
    opacity: 0;
}

.appear
{
    opacity: 1;
    transform: translate(0);
}


/* Image Reel Styling */
.imageReel
{
    overflow: hidden;
}

.imageReelContainer
{
    background-image: linear-gradient(45deg, rgba(61, 52, 36, 0.473),rgb(107, 77, 63)),url(./img/Parra.jpg);
    background-size: cover;
    min-height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.classyHeader
{
    color: #f3cbae;
    margin-bottom: -5rem;
}

#tripAdvisor
{
    height: 6rem;
   
}

/* Reviews Styling */

.customerReviews > .pagePara
{
    text-align: center;
    margin: 0 auto;
    padding-top: 0;

}
.reviewTabs
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.customerTab
{
    max-width: 20rem;
    padding: 2rem;
    border-radius: 1rem;
    background-image: linear-gradient(45deg,#c07d50a6,#fd9957b6),url(./img/Products_background.jpg);
    background-size: cover;
    margin: 1rem;
    align-self: stretch;
    transition: .2s ease-in;
}

.customerTab:hover > .stats >p
{
    color: #835e44;
    background-color: #fff;
}

.customerTab:hover .subHeading
{
    color: #fff;
}

.customerTab .textContent>.pagePara
{
    color: #fff;
}

.stats
{
    margin: 0 auto 1rem auto;  
}

.stats > p
{
    width: 5rem;
    padding: .4rem;
    border-radius: 2rem;
    text-align: center;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .2rem;
    background-color: #251910;
    color: #fff;

}

.subHeading
{
    font-weight: 800;
    color: #251910;
}

.textContent > .pagePara
{
    padding-top: 1rem;
    color: #616161;
}
.customerDetails
{
    display: flex;
    align-items: center;
    color: #251910;
}

.customerDetails > i
{
    font-size: 2rem;
    margin-right: 1rem;
}

.name
{
    font-weight: 800;
}

.tag
{
    font-size: .7rem;
}

.disclaimer
{
    background: #000;
    color: #858585;
    text-align: center;
    font-size: clamp(.75vw, .70rem , 2vw);
    font-weight: 400;
    letter-spacing: .1rem;
    padding: 2rem;
}

.mobileIcons
{
    display: none;
}

@media screen and (max-width:600px) 
{
    .mobileOff
    {
        display: none;
    }

    nav
    {
        position: absolute;
        position: fixed;
        top: 0;
        left: 0;
        background-image: linear-gradient(45deg,#381c0a13,#6b2e059f),url(./img/Products_background.jpg);
        background-size: cover;
        height: 100vh;
        z-index: 5;
        transform: translateX(-19rem);
        transition: 0.2s ease-in;
        box-shadow: 5px 0 20px -4px #000;
    }

    .links > li
    {
        display: block;
        padding: 2rem 0;
        /* background-color: #444; */
        overflow: hidden;
    }

    .links > li:nth-child(odd)
    {
        background-color: rgba(255, 255, 255, 0.253);
    }

    .links > li > a
    {
        color: rgb(59, 46, 36);
        font-weight: 600;
        padding: 6rem;
        text-transform: uppercase;
    }

    .links > li > .roundButton
    {
        margin-left: 3rem;
        padding: 2rem 3rem;
        background-color: #251910;
    }

    .mobileIcons
    {
        display: inline;
        margin-right: .7rem;
        opacity: .7;
    }


    .navigation > a >img
    {
        height: 4rem;
        margin: 0 auto;
    }

    .hiddenMenu
    {
        display: block;
        
    }

    .fixed_image
    {
        display: none;
    }

    #activities-pop
    {
        visibility: hidden;
    }

    #accomodations-pop
    {
        transform: translateX(0rem) translateY(-8rem);
    }

    .tripAdvisorLink
    {
        display: none;
    }

    .services
    {
        perspective: 0px;
    }

    .serviceCard
    {
        transform: rotateX(0);
    }


    .pagePara
    {
        padding: 2rem;
    }

    .cardContent > h1, .classyHeader
    {
        font-size: 7rem;
        margin-bottom: -3rem;
    }

    .infoHeading
    {
        font-size: 3rem;
    }

    .cardContent
    {
        padding-bottom: 3rem;
    }

    #homeIntro
    {
        padding: 2rem 0;
    }

    :root
    {
        font-size: var(--mobileFontSize);
    }

    .textInfo
    {
        text-align: center;
        padding-right: 0;
    }

    .filledInfo > .textInfo
    {
        padding-bottom: 3rem;
    }

    .serviceTabs
    {
        display: none;
    }

    .filledInfo
    {
        flex-wrap: wrap-reverse;
    }  

    .imageFill > img
    {
        max-width: 100vw;
        height: auto;
    }

    .imageWrapper2
    {
        display: none;
    }


    .customerTab
    {
        max-width: 100%;
    }

    footer
    {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .strip
    {
        padding: 20px;
    }
    .serviceCard
{
    /* transform: translateY(-1rem); */
    transform: rotateX(0) translateY(-1rem);
    /* background-image: linear-gradient(45deg,rgba(5, 5, 5, 0.452),rgba(5, 5, 5, 0.452)),url(./img/victoria-falls-deluxe.jpg);
    background-size: cover; */
    width: 100%;
    margin: 1rem;
}
/* 
#sunsetCruise
{
    background-image: linear-gradient(45deg,rgba(5, 5, 5, 0.452),rgba(5, 5, 5, 0.452)),url(./img/Cruise_Sunset.jpg);
    
}

#gameDrive
{
    background-image: linear-gradient(45deg,rgba(5, 5, 5, 0.452),rgba(5, 5, 5, 0.452)),url(./img/Game_Drive.jpg);
  
}

#rafting
{
    background-image: linear-gradient(45deg,rgba(5, 5, 5, 0.452),rgba(5, 5, 5, 0.452)),url(./img/Whitewater_Rafting.jpg);

} */

.serviceButton
{
    background-color: #fff;
    color: #40451D;
    transform: translateY(0);
    /* opacity: 1; */
    transition: 0.15s ease-in;
}

.serviceHead
{
    font-weight: 500;
    transform: translateY(3rem);
}

.callUsSection
{
    flex-direction: column;
}

.buttonGroup 
{
   font-size: 0rem;
   text-align: center;
}

.intro
{
    display: none;
}

.tip
{
    display: none;
}

}

.price
{
    font-weight: 400;
}

.activity_card
{
    background: #251910;
}

.activitiesHead
{
    color: #251910;
    font-weight: 400;
    font-size: 3rem;
}

.activity_page
{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 6rem;
    font-weight: 600;
    color: #332316;
    letter-spacing: -0.1rem;
}

.standAlone
{

    margin: 0 auto;
}

.seperator
{
    height: 1px;
    width: 80vw;
    margin: 0 auto;
    background: rgb(122, 122, 122);
}

.largeButton
{
    display: flex;
}

.largeButton > button
{
    padding: 2rem;
    margin: 1rem auto;
    border: none;
    background-color: #251910;
    min-width: 20rem;
    color: #fff;

}

.invertFlex
{
    flex-direction: row-reverse;
}



#accomo
{
    margin-bottom: 2rem;
}



.servicelistings
{
    text-align: center;
    font-size: 1.2rem;
    max-width: 40rem;
    margin: 0 auto;
    text-transform: uppercase;
}

.servicelistings > ul >li
{
    list-style: none;
    display: inline;
    color: rgb(51, 51, 51);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 300;
}

.servicelistings > ul
{
    margin: 0;
    padding: 0;
}

.servicelistings > ul > li:nth-child(even)
{
    opacity: .5;
}


.auto-slider
{
    position: absolute;
    top: 0;
    z-index: -1;
    min-width: 100vw;
    display: flex;
    overflow: hidden;
}

.auto-slider > input
{
    display: none;
}

.slide
{
    width: 100vw;
    transition: 1.8s ease-in-out;
}

.slide > img
{
    width: 100vw;
}

#radio1:checked ~ .first
{
    margin-left: 0;
}

#radio2:checked ~ .first
{
    margin-left: -25%;
}

#radio3:checked ~ .first
{
    margin-left: -50%;
}

#radio4:checked ~ .first
{
    margin-left: -75%;
}



.reelWrapper
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    padding: 10px;
}

.reelWrapper img
{
    height: 250px;
    margin: 10px;
    border-radius: 9px;
    transition: 150ms ease-in;
    cursor: pointer;
}

.reelWrapper img:hover
{
    transform: scale(105%);
}

@media screen and (max-width:600px)
{
    .reelWrapper img
    {
        width: 100%;
        height: auto;
    }
}

.delay-2s
{
    transition: .2s ease-out;
}

.delay-3s
{
    transition: .3s ease-out;
}

.delay-4s
{
    transition: .4s ease-out;
}

.delay-5s
{
    transition: .5s ease-out;
}

.delay-6s
{
    transition: .6s ease-out;
}

.delay-7s
{
    transition: .7s ease-out;
}

/* Terms and Conditions Page Styles */
.terms-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.terms-section h1 {
    color: var(--khanodoGold);
    text-align: center;
    margin-bottom: 40px;
    font-size: 3rem;
    font-weight: 800;
}

.terms-section h2 {
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 600;
}

.terms-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

.terms-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-section ul li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.4;
}