:root{
    --white: #FFFFFF;
    --black: #000000;
    --primary-green: #44D800;
    --accent-green: #078500;
    --dark-green: #072708;
    --text-gray: #9795B5;
    --text-light-dark: #090909;
    --text-light-blue: #312E57;
    --text-dark-blue: #3F3D56;
    --line-border-color: #D4D2E3;
    --light-green: #DCF1D2;
    --text-moneyt: #1E285F;
    --green-bg:#F0FFEF;
 
}

/*NAVBAR*/ 
header{
    padding: 1rem 0.7rem;
    z-index: 3;
    position: sticky;
    top: 0px;
    background-color: #FFFFFF;
}

nav{
    display: none;
}

.buttons-container a{
    display: none;
}

/*Styling Enquire Button*/
.buttons-container a { 
    padding: 8px 32px;
    border-radius: 8px;
    color: var(--white); 
    background-color: var(--primary-green);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: .1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
}
.buttons-container a span {
    position: absolute;
    width: 25%;
    height: 100%;
    background: linear-gradient(20deg, var(--dark-green), var(--accent-green));
    transform: translateY(150%);
    border-radius: 70%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.buttons-container a:hover span {
    transform: translateY(0) scale(2);
}

.buttons-container a span:nth-child(1) {
    --n: 1;
}

.buttons-container a span:nth-child(2) {
    --n: 2;
}

.buttons-container a span:nth-child(3) {
    --n: 3;
}

.buttons-container a span:nth-child(4) {
    --n: 4;
}


/*Target Tablets Devices: (width = min-768 max-1114)*/
@media only screen and (min-width: 500px){
    header{
        padding: 1em 2em;
    }
    nav{
        display: block;
    }
    nav dt{
        margin-right: 2rem;  
    }
    
    nav dt:hover{
        scale: 1.1; 
        transition: all .5s;
        cursor: pointer;
    }
    nav a{
        color: var(--text-light-blue);
    }
    nav a:hover{
        color: var(--accent-green);
        transition: all .5s;
    }
    #burgerButton{
        display: none;
    }
    .buttons-container a{
        display: block;
    }
    .logo{
        margin-right:10%;
    }
    
}
/*Target Medium to Large Devices-Laptops > 13inch to 16inch: width > min-1280 max-1728*/
@media only screen and (min-width: 1280px){
    header{
        padding: 1.5px 8vw;
    }
    .logo{
        margin-right: 0px;
    }
}

/*Target Monitors > 23inch and Above: width > min-1920 max-2048*/
@media only screen and (min-width: 1920px){
    header{
        padding: 1.5px 12vw;
    }
   
}
/*/////////////////////////////////////////////////////////////////////*/

/*DROP DOWN MENU*/
.dropdown{
    display: none;
    font-size: 18px;
    width: 60%;
    height: auto;
    position: fixed;
    top: 4rem;
    left: 40%;
    border-bottom: solid 0.1em var(--line-border-color);
    border-left: solid 0.1em var(--line-border-color);
    border-bottom-left-radius: 1.5em; 
    background-color: #ffffff;
    z-index: 3;

}
.dropdown a{
    color: var(--accent-green);   
}
.dropdown dl{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.dropdown dt{
    margin: 2rem 0px;
    
}
.dropdown hr{
    width: 100%;
    height: 0.1em;
    border: none;
    background-color: var(--line-border-color);

}
dt .enquire-button-mobile{
    border: none;
    border-radius: 0.4em;
    padding: 0.4em 1.8em;
    color: var(--white);
    background-color: var(--primary-green);

}

/*/////////////////////////////////////////////////////////////////////*/

/*WHATSAPP BUTTON + ITS HIDDEN DROPDOWN*/
.whatsapp-btn-and-drop-down-container{
    position: fixed;
    top: 70vh;
    right: 0px;
    z-index: 5;
}
.whatsapp-btn{
    background-color: #DCF1D2;
    margin-bottom: 2px;
    padding: 0.4em 0.8em;
    border-radius: 12px 0px 0px 12px;
}
.whatsapp-btn:hover{
    cursor: pointer;
}
.whatsapp-btn img{
    width: 24px;
}
@media only screen and (min-width: 600px){
    .whatsapp-btn img{
        width: 28px;
    }
}
.whatsapp-btn-dropdown{
    background-color: var(--text-light-blue);
    width: 88px;
    height:fit-content;
    padding: 8px 16px;
    border-radius: 12px 0px 0px 12px;
    display: none;
}

.whatsapp-btn-dropdown span{
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--white);
    text-wrap: nowrap;
}
/*/////////////////////////////////////////////////////////////////////*/

/*HERO SECTION*/
.hero-wrapper{
    position: relative;
    width: 96vw;
    margin: 3em auto;
}
.small-text-container{
    padding: 15px;
    width: 66%;
    margin: opx auto;
}
.main-title-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.main-title-wrapper span{
    margin: 8px;
    color: var(--primary-green);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0.96px; 

}
.main-title-wrapper span:nth-child(3){
    color: #4B4868;
}
.text-container .hero-second-title{
    color: #9695A8;
    text-align: center;
    font-size: 18.053px;
    font-style: normal;
    font-weight: 500;
    line-height: 0px;
    letter-spacing: 0.421px;
}
.text-container .hero-sub-title{
    color: #4B4868;
     color: #9695A8;
    text-align: center;
    font-size: 13.148px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.407px;
    letter-spacing: 0.131px;

}

.hero-graphic-container{
    display: flex;
    width: 100%;
}
.hero-graphic-container img{
    width: 100%;
    margin: 1em auto;
    pointer-events: none;
}
.plane-icons-wrapper{
    position: absolute;
    width: fit-content;
    top: 55px;
    right: 10px;
}
.plane-icons-wrapper img{
    width: 40px;
    pointer-events: none;
}
@media only screen and (min-width: 600px) {
    .hero-wrapper{
        width: 96vw;
        margin: 6em auto;
    }
    .plane-icons-wrapper img{
        width: 60px;
    }
    .main-title-wrapper span{
        font-size: 80px;
        margin: 10px;
        line-height: 80px;
    }
    .small-text-container{
        width: 80%;
    }
    .text-container .hero-second-title{
        font-size: 45px;
        letter-spacing: 0.64px;
    }
    .text-container .hero-sub-title{
        font-size: 27px;
        line-height: 45px;
        letter-spacing: 0.7px;   
    }
    .hero-graphic-container img{
        width: 80%;
    }
    
}
@media only screen and (min-width: 1280px) {
    .hero-wrapper{
        width: 96vw;
        margin: 2em auto;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 92vw;
        margin: 5em auto;
    }
    .hero-graphic-container{
        order: -1;
        width: 50%;
    }
    .plane-icons-wrapper img{
        width: 50px;
    }
    .main-title-wrapper span{
        font-size: 80px;
        line-height: 92px; /* 115% */
        letter-spacing: 1.6px;
        margin-right: 18px;
    }
    .text-container .hero-second-title{
        font-size: 28.025px;
    
    }
    .text-container .hero-sub-title{
        font-size: 20px;
        line-height: 28px; /* 140% */
        letter-spacing: 0.2px;
    }
    .hero-graphic-container img{
        width: 80%;
    }
    .text-container{
        width: 50%;
        margin-top: 3em;
    }
    .plane-icons-wrapper{
        top: 0px;
        right: 45%;
    }
    .plane-icons-wrapper img{
        width: 90px;
    }
    
}
@media only screen and (min-width: 1920px) {
    
}
/*/////////////////////////////////////////////////////////////////////*/

/*PROFILE EVALUATION*/
.top-or-left-wrapper{
    display: flex;
}
.blue-text-box{
    border-radius: 0px 85.975px 85.975px 0px;
    background: linear-gradient(180deg, #F9FFF6 0%, #F3F6FF 100%);
    width: 60%;
    padding: 98px 30px 97px 30px;
}
.blue-text-box p{
    color: #6A688A;
    font-size: 14.329px;
    font-style: normal;
    font-weight: 500;
    line-height: 21.494px;
    letter-spacing: 0.287px;
}
.side-text-1{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-90deg);
    width: 20%;

}
.side-text-1 p{
    text-wrap: nowrap;
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.54px;
    word-spacing: 10px;
    margin-bottom: -30px;
}

.bottom-or-right-wrapper{
    border-radius: 13.012px;
    border: 0.813px solid #44D800;
    width: 96vw;
    margin: 2em auto;

}


.girl-badge-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70vw;
    margin: 2em auto;
}
.girl-picture{
    width: 8em;
}
.tick-icon-1{
    width: 4em;
}


.student-data-wrapper{
    padding: 30px 0px 30px 0px;
    border-radius: 20px;
    border: 1px solid #44D800;
    width: 92%;
    margin: 1em auto;
}
.student-info-wrapper{
    width: 94%;
    margin: 0px auto;
}
.info-identifier{
    margin-right: 5px;
    color: #1E285F;
    font-size: 13px;
    font-weight: 700;
    line-height: 0px;
    letter-spacing: 0.26px;
    display: inline-block;
}
.info{
    color: #86868B;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 0px;
    letter-spacing: 0.26px;
    display: inline-block;
}


.pie-charts-wrapper{
    width: 96%;
    margin: 10px auto;
}
.pie-charts-wrapper img{
    width: 100%;
}

.badge-side-text-wrapper{
    display: none;
}


@media only screen and (min-width: 600px){
    .bottom-or-right-wrapper{
        width: 88%;
    }
    .blue-text-box{
        width: 70%;
        padding-left: 1em;
        padding-right: 1em;
    }
    .blue-text-box p{
        font-size: 20px;
        line-height: 38px;

    }
    .girl-badge-wrapper{
        width: 50vw;
        margin: 2em auto;
    }
    .girl-picture{
        width: 10em;
    }
    .tick-icon-1{
        width: 6em;
    }
    .info-identifier, .info{
        font-size: 18px;
    }
    .pie-charts-wrapper{
        width: 86%;
    }
}
@media only screen and (min-width: 1280px){
    .profile-evaluation{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .side-text-1{
        display: none;
    }

    .blue-text-box{
        width: 320px;
        height: 300px;
    }
    .blue-text-box p{
        line-height: 21px;
        letter-spacing: 0.287px;
        font-size: 20px;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: 0.4px;
        padding: 20px;
    }
    .bottom-or-right-wrapper{
        width: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 3em;
        padding: 10px 2em;
    }
    .girl-badge-wrapper{
        width: fit-content;
        margin: 2em auto;
    }
    .girl-picture{
        width: 10em;
    }
    .tick-icon-1{
        display: none;
    }
    .student-data-wrapper{
        width: 500px;
        padding: 0.8em;
    }
    .info-identifier, .info{
        font-size: 16px;
    }
    .pie-charts-wrapper{
        width: 84%;
    }

    .badge-side-text-wrapper{
        display: block;
        position: relative;
        height: 400px;
    }
    .tick-icon-2{
        width: 50px;

    }
    .side-text-2{
        position: absolute;
        bottom: 0px;
        right: -70px;
        text-wrap: nowrap;
        transform: rotate(-90deg);
        font-size: 24px;
        font-weight: 400;
        letter-spacing: 0.24px;
    }

}
/*/////////////////////////////////////////////////////////////////////*/


/*PRICE AND BENNEFITS*/
.price-and-bennefits{
    margin-top: 5em;
}
.price-and-bennefits-wrapper{
    background: rgba(243, 254, 240, 0.50);
    width: 96vw;
    margin: 1em auto;
    border-radius: 20px;
    padding: 6em 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pr-be-text{
    width: 94%;
}
.pr-be-text img{
    width: 80px;
}
.pr-be-text p{
    margin: 20px 0px;
}
.pr-be-text p:nth-child(2){
    color:#8D8BA7;
    font-size: 16px;
    font-weight: 700;
    line-height: 17.8px;
    letter-spacing: 1.6px;

}
.pr-be-text p:nth-child(3){
    color: #5D5A88;
    font-size: 39.2px;
    font-weight: 700;
    line-height: 44.444px;
    
}
.pr-be-text p:nth-child(4){
    color: #9795B5;
    font-size: 18px;
    font-weight: 400;
    line-height: 26.667px; 
    margin-top: 30px;  
}
.pr-be-text p:nth-child(5){
    color: #5D5A88;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-top: -8px;
}
.price-card{
    border-radius: 20px;
    background: #DBFFDF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin: 3em auto;
    width: 80vw;
    padding: 2em 0.3em;    

}
.card-data-wrapper{
    width: 80%;
    margin: 3em auto;
}
.align-left{
    margin-left: 1em;
}
.pcard-title-1{
    color: #5D5A88;
    font-size: 24.889px;
    font-weight: 700;
    margin-bottom: 16px;
}
.price{
    display: flex;
    flex-direction: column;
}
.price-usd{
    color: #5D5A88;
    font-size: 50px;
    font-weight: 700;
    margin-top: -15px;
    margin-bottom: -22px;

}
.price-tsh{
    color: #8D8BA7;
    font-size: 18px;
    font-weight: 500;
    margin-left: 2em;
}
.bennefits dt{
    display: flex;
    margin: 12px 0px;
}
.bennefits dt img{
    margin-right: 10px;
    width: 18px;
}
.bennefits dt span{
    color:#9795B5;
    text-align: start;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    
}
.get-started-button{
    display: flex;
    justify-content: center;
    text-wrap: nowrap;
    width: 30%;
    margin: -1em auto;
    margin-bottom: 3em;
    padding: 14px 60px;
    border-radius: 25px;
    background: #5D5A88;
    color: #ffffff;
    animation: buttonflash 2s infinite linear;
    animation-direction: alternate;
}
.get-started-button img{
    margin-left: 12px;
    scale: 1.2;
    animation: scalearrow 2s infinite linear;
    animation-direction: alternate;
}
@keyframes scalearrow {
    to{
        transform: translateX(10px);
    }   
}
@keyframes buttonflash{
    0%{
        border-radius: 18px;
        background: #5D5A88;
    }
    20%{
        border-radius: 26px;
        background: #0c0b10;
    }
    50%{
        border-radius: 27px;
    }
    80%{
        border-radius: 28px;
    }
    100%{
        border-radius: 30px;
    }
}
.price-card-competitor{
    margin: 3em 1em;
    width: 80vw;
    border-radius: 21.333px;
    background: #FCFCFC;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 2em 0.3em;  
}

@media only screen and (min-width: 600px) {
    .pr-be-text{
        max-width: 400px;
        align-self: flex-start;
        margin-left: 5em;
    }
    .price-card, .price-card-competitor{
        max-width: 360px;
    }
    .price-cards-container{
        width: 80vw;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 4em;
        gap: 1.5em;
    }
    
}
@media only screen and (min-width: 1280px) {
    .price-and-bennefits-wrapper{
        display: flex;
        flex-direction: row;
        width: 90%;
        padding-bottom: 1em;
    }
    .price-cards-container{
        width: 60%;
    }
    .get-started-button:hover{
        animation: none;
        background-color: var(--text-light-blue);
    }
    
}

/*/////////////////////////////////////////////////////////////////////*/

/*UNIVERSITY LOGO & COURSES*/
.unilogo-courses-title{
    color: #26338B;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    width: 80%;
    margin: 3em auto 5px auto;
}
.unilogo-courses-subtitle{
    color: #26338B;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 21.356px; /* 106.778% */
    width: 90%;
    margin: 0.6em auto 3em auto;

}
.uni-logo-wrapper{
    display: flex;
    margin: 5px auto;
    padding: 30px 33px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 35px 76px;
    flex-wrap: wrap;

}
.uni-logo-wrapper img{
    width: 35%;

}
.courses-wrapper{
    margin: 2em auto;
}
.courses-slider{
    display: flex;
    width: 95%;
    margin: 1em auto;
    align-items: center;
    gap: 22px;
    overflow-x: hidden;
}

.courses-slider span{
    display: flex;
    padding: 8px 18px;
    text-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: #5D5A88;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    border-radius: 5px;
    border: 0.603px solid #D4DADD;
    background: #FFF;
    animation: slidecourse 80s infinite linear;

}
.slider-1 span{ 
    animation-direction: alternate;
}
.slider-2 span{
    animation-direction: alternate-reverse;
}
@keyframes slidecourse{
    to{
        transform: translateX(-300vw);
    }

}
@media only screen and (min-width: 600px){
    .uni-logo-wrapper{
        gap: 35px 86px;
        width: 80%;
    }
    .uni-logo-wrapper img{
        width: 22%;
    }
    .courses-slider{
        width: 80%;
    }

}

@media only screen and (min-width: 1280px){
    .unilogo-courses-title{
        font-size: 26px;
    }
    .unilogo-courses-subtitle{
        font-size: 22px;
    }
    .uni-logo-wrapper{
        gap: 35px 76px;
        width: 70%;
    }
    .uni-logo-wrapper img{
        width: 14%;
    }
    .courses-slider{
        width: 70%;
        margin-bottom: 2em;
    }
    .courses-slider span{
        font-size: 15px;
        padding: 15px 30px;
        animation-duration: 120s;
    }
}
/*/////////////////////////////////////////////////////////////////////////////////////////////*/


/*TESTIMONY SECTION*/
.testimonies{
    background-color: #F9FEF7;
    margin: 7em auto;
}
.testimony-cards-container{
    display: flex;
    width: 98vw;
    align-items: center;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.testimony-cards-container::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
.testimony-title{ 
    color: #5D5A88;
    font-size: 20px;
    font-weight: 700;
    margin: 2em 1em 3em 1em;
}
.card{
    border-radius: 1em;
    border: 2.58px solid #CCCBD3;
    background: #FFF;
    padding: 18px;
    width: 86vw;
    margin: 1em 1.2em;
}
.card-data-container{
    width: 288px;
    margin: 16px auto;
}
.pp-and-name-container{
    width: 100%;
    background-color: #ffffff;
}
.pp-container{
    width: 30%;
    display: flex;
    justify-content: flex-start;
}
.name-container{
    width: 70%;
    margin-left: 20px;
}
.pp-container img{
    width: 100%;
}
.name{
    color: #5D5A88;
    font-size: 16.503px;
    font-weight: 700;
    line-height: 16.503px;
    margin-bottom: 8px;

}
.course{
    color: #8D8BA7;
    font-size: 12px;
    line-height: 15px;

}
.uni-studying{
    color: #5D5A88;
    font-size: 11px;
    line-height: 15px;
}
.review{
    color: #9795B5;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.105px;
}

@media only screen and (min-width: 600px){
    .testimony-cards-container{
        width: 90vw;
    }
    .card{
        padding: 18px;
    }
    .testimony-title{
        font-size: 24px;
    }

}
@media only screen and (min-width: 1280px){
    .testimony-cards-container{
        width: 87vw;
    }
    .testimony-title{
        font-size: 26px;
    }
    .card{
        padding: 20px;
    }
    .review{
        font-size: 16px;
        line-height: 25px;
    }
    .card{    
        animation: cardslide 50s infinite linear;
        animation-direction: alternate-reverse;
    }
    @keyframes cardslide{
        to{
            transform: translateX(-160vw);
        }
    }
}
@media only screen and (min-width: 1920px){
    .testimony-cards-container{
        width: 75vw;
    }
}
/*///////////////////////////////////////////////////////////////////////////////////*


/*FAQ*/
.FAQ{
    padding-top: 5em;
    margin: -1em auto 7em auto;
}
.FAQ-container{
    width: 98%;
    margin: 10px auto;
    padding: 5em 0px;
    border-radius: 30px;

}
.faq-title-text{
    width: 80%;
    margin-bottom: 2em;
}
.faq-title{
    color: #44D800;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 23.596px;
    
}
.faq-small-title{
    color: #9795B5;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 15.389px;

}
.question-answer-card{
    border-radius: 12.456px;
    border: 0.9px solid #44D800;
    padding: 20px;
    width: 84vw;
    max-width: 500px;
    min-width: 250px;
    margin: 1.4em;

}
.question{
    color: #5D5A88;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
}
.chevron-icon{
    width: 20px;
    transform: rotate(0deg);
}
.answer-container{
    width: 100%;
    display: none;
}
.answer{
    color: #9795B5;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;  
}

@media only screen and (min-width: 600px){
    .FAQ-container{
        width: 88%;
    }
}
@media only screen and (min-width: 1280px){
    .FAQ-container{
        width: 80%;
    }
    .faq-card-container-container{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .question-answer-card{
        width: 30vw;
    }

}
/*////////////////////////////////////////////////////////////////////////////////*/


/*CALL TO ACTION*/
.call-to-action{
    margin-top: 4em;
    margin-bottom: 2em;
    padding-bottom: 30px;
}
.call-to-action-container{
    margin: 10px auto;
    width: 90%;
}
.cta-img{
    width: 25em;
    pointer-events: none;
    
}
.cta-text-container{
    margin-top: 4em;
    margin-bottom: 2em;

}
.cta-title-container span{
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-green);
}
.cta-title-container span:last-of-type{
    color: #1966B1;
    margin-top: 6px;
}
.cta-text-container p{
    font-size: 17px;
    color: #2F2E41;
    line-height: 20px;
    width: 320px;
    letter-spacing: 0.8px;
}
.cta-text-container p:last-of-type{
    font-size: 15px;
    color: #9795B5;
    line-height: 18px;
}
.cta-enquire-btn{
    background: #44D800;
    border-radius: 14px;
    padding: 10px 18px;
    margin-right: 20px;
    animation: colorchange 6s infinite;
}
.cta-enquire-btn img{
    animation: swing 5s infinite;
    transition: all 2s;
    animation-fill-mode: backwards;
    animation-direction: alternate;
    background-color: #000000;
    border-radius: 20px;
}
@keyframes colorchange{
    40%{
        background-color: #29460d;
    }
    60%{
        background-color: #44d800d6;
    }
    100%{
        background-color: #44D800;
    }

}
@keyframes swing{
    0%{transform: rotate(-45deg);}
    20%{
        transform: rotate(45deg);
        scale: 0.6;
    }
    40%{transform: rotate(95deg);}
    60%{
        transform: rotate(180deg);
        scale: 0.7;
    }
    100%{
        transform: rotate(-45deg);
        scale: 1;
    }
}
.cta-enquire-btn span{
    color: #ffffff;
    text-wrap: nowrap;
    margin-right: 4px;
}

@media only screen and (min-width: 600px){
    .call-to-action{
        margin-top: 10em;
        margin-bottom: -2em;
    }
    .call-to-action-container{
        width: 100%;
    }
    .cta-img{
        width: 34em;
    }

    .cta-enquire-btn{
        display: none;
    }
    .cta-text-container{
        margin-left: 4em;
    }
    .cta-title-container span{
        font-size: 30px;
    }
    .cta-text-container p{
        font-size: 20px;
        line-height: 26px;
    }
    .cta-text-container p:last-of-type{
        font-size: 18px;
        line-height: 26px;
    }
    
}
@media only screen and (min-width: 1280px){
    .call-to-action-container{
        width: 80%;
        display: flex;
    }
    .cta-bottom-div{
        width: fit-content; 
    }
    .cta-img{
        margin-left: 6em;   
    }
    .cta-text-container{
        margin-left: 6em;

    }
    .cta-title-container span{
        font-size: 30px;
    }
    .cta-text-container p{
        font-size: 20px;
        line-height: 26px;
    }
    .cta-text-container p:last-of-type{
        font-size: 18px;
        line-height: 26px;
    }
}
@media only screen and (min-width: 1920px){

}
/*/////////////////////////////////////////////////////////////////////*/


/*FOOTER-1*/
.f1-gif{
    width: 30px;
    margin-right: 30px;
    pointer-events: none;
}
.n-container p, .e-container p{
    color: #757399;
    font-size: 16px;
    margin: 10px;
}
.n-container p:hover, .e-container p:hover{
    color: var(--text-light-blue);
    scale: 1.05;
    transition: 0.5s;
}
.footer-1{
    background: url(/assets/img/shadow-circles.svg);
    background-repeat: no-repeat;
    background-size: 370px;
    background-position-y: bottom;
    background-position-x: left;
    background-attachment: fixed;
}
.footer-1-container{
    width: 94%;
}
.f1-card-title{
    color: #44D800;
    font-weight: bold;
    font-size: 24px;
    margin-left: 1em;
}
.cont-info{
    background: linear-gradient(180deg, #f9faf9, #D3F8C7);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    width: 74%;
    min-width: 320px;
    padding: 0.8em 0em;
    box-shadow: 2.7px 2.7px 2.7px 0px #00000025;
}
.cont-info-container{
    margin: 0.8em auto;
    width: fit-content;
}
.f1-svg{
    width: 250px;
    pointer-events: none;
}
@media only screen and (min-width: 600px){
    .footer-1{
        background-position-x: center;
        background-position-y: bottom;
        margin-bottom: 2em;
    }
    .footer-1-container{
        display: flex;
        align-items: center;
    }
    .f1title-and-continfo-container{
        width: 90%;
    }
    .f1-svg{
        width: 90%;
    }
}
@media only screen and (min-width: 1114px){
    .f1title-and-continfo-container{
        width: 50%;
    }
    .footer-1{
        height: 45vh;
    }
    .cont-info{
        height: 30vh;
    }
    .n-container p, .e-container p{
        font-size: 20px;
    }
}
@media only screen and (min-width: 1920px){
    .f1title-and-continfo-container{
        width: 30%;
    }
}
/*/////////////////////////////////////////////////////////////////////*/

/*FOOTER-2*/
.footer-2{
    background-color: #F0FFEF;
    padding-bottom: 1em;
}
.footer-2-container{
    background: url(/assets/img/dotted-line-mobile.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
}
.f2-top-div{
    width: 70%;
    padding: 1em;
}
.hr-bamboo-tree-container{
    margin: -180px auto 0px auto;
    width: 90%;
}
.f2-line{
    width: 100%;
    height: 2px;
    background-color: #D4D2E3;
    border: none;
}
.bamboo-tree img{
    width: 200px;
    pointer-events: none; 
}
.bamboo-tree{
    width: fit-content;
    margin-bottom: -12px;
}
.ftitle-list-container{
    margin-bottom: 20px;
    margin-right: 24px;
    width: fit-content;
}
.ftitle{
    text-wrap: nowrap;
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: -4px;
}
.links-container dt{
    margin: 12px;
}
.links-container a{
    color: #10095A;
    font-size: 16px;
    text-wrap: nowrap;
    letter-spacing: 0.4px;
}
.links-container dt:hover{
    scale: 1.05;
    transition: 0.2s;
}
.links-container dt:first-child:hover{
    scale: 1;
}
.f2-link-icon{
    margin-right: 8px;
    z-index: 1;
    pointer-events: none;
}
.f2-bottom-div{
    width: 90%;
    margin: 2em auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.f2-logo{
    width: 250px;
    pointer-events: none;
}
.copyright-text{
    margin: 1.4em 2px;
}
.copyright-text p{
    color: #44D800;
    text-align: center;
}
.josephel-logo{
    z-index: 3;
    scale: 1.4;
}

@media only screen and (min-width: 600px){
    .f2-top-div{
        width: 92%;
    }
    .f2-bottom-div{
        flex-direction: row;
        width: 96%;
        height: 250px;
        justify-content: space-between;
    }
    .copyright-text{
        order: -1;
        align-self: flex-start;
    }
    .josephel-logo{
        align-self: flex-end;
    }
    .f2-logo{
        scale: 1.2;
    }
    .bamboo-tree img{
        width: 250px;
    }
    .footer-2-container{
        background: url(/assets/img/dotted-line.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-x: right;
        
    }
}
@media only screen and (min-width: 1280px){
    .f2-top-div{
        margin-left: 2em;
        padding-top: 3em;
        width: 80%;
    }
    .f2-bottom-div{
        width: 88%;
        height: 150px;
    }
    .ftitle, .links-container a{
        font-size: 18px;
    }
    .copyright-text p{
        font-size: 18px;
    }
    .ftitle-list-container{
    margin-right: 5em; 
    }
}

