: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;
    color: var(--text-gray);
    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-section{
    position: relative;
    background: url(/assets/img/MT-line-and-planes.svg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain;
    padding-bottom: 4em;
    background-position-x: right;
     
}
.hero-section::before{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100vw;
    height: 60vw;
    content: "";
    background: url(/assets/img/MT-hero-blue-bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}
.hero-container{
    width: 96%;
    display: flex;
    margin: 3em auto;
    flex-direction: column;
}
.hero-title-wrapper{
    margin: 10px auto;
    width: 80%;
    justify-content: center;
    gap: 0.6em;
}
.hero-title-wrapper span{
    color: #1E285F;
    text-align: center;
    margin-right: 0.1em;
    font-size: 34px;
    font-weight: 700;
    line-height: 34px;
    text-wrap: nowrap;

}
.hero-title-wrapper span:nth-child(4), .hero-title-wrapper span:nth-child(5){
    color: #44D800;
}
.hero-sub-title{
    color: rgba(93, 90, 136, 0.70);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px; 
    margin: 1em auto;
    width: 80%;
}
.indian-flag-gif{
    margin: 3em auto;
    width: 8em;
    pointer-events: none;
    z-index: 2;
}
.hero-img-container{
    width: 96vw;
}
.hero-img{
    width: 7em;
    pointer-events: none;
}
.hero-mini-img-1{
    bottom: -5em;
    left: 2em;
    width: 8em;
    pointer-events: none;
}
.hero-mini-img-2{
    bottom: -5em;
    right: 3em;
    width: 8em;
    pointer-events: none;
}
@media only screen and (min-width: 600px){
    .hero-img-container{
       width: 88vw;
    }
    .hero-section{
        padding-bottom: 8em;
    }
    .hero-title-wrapper{
        margin-top: 4em;
    }
    .hero-title-wrapper span{
        font-size: 42px;
        line-height: 45px;
    }
    .hero-sub-title{
        font-size: 20px;
        line-height: 27px;
    }
    .hero-img{
        width: 26vw;
    }
    .hero-mini-img-1{
        width: 20vw;
        bottom: -7em;
        left: 16em;
    }
    .hero-mini-img-2{
        width: 20vw;
        right: 15em;
        bottom: -7em;
    }
    .indian-flag-gif{
        width: 12vw;
    }

}
@media only screen and (min-width: 1280px){
    .hero-title-wrapper{
        width: 60vw;
        margin-top: 7em;
    }
    .hero-title-wrapper span{
        margin-right: 0.5em;
        font-size: 62px;
        font-weight: 700;
        line-height: 73px;
    }
    .hero-sub-title{
        font-size: 24px;
        font-weight: 700;
        line-height: 40px;
    }

}

/*////////////////////////////////////////////////////////////////////////////////////////////////////*/


/*HOW IT WORKS*/
.how-it-works-wrapper{
    width: 98%;
    margin: 3em auto;
}
.hiw-title-text-container{
    margin: 2em auto;
    width: 80%;
}
.hiw-title{
    color: #1E285F;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;

}
.hiw-sub-title{
    color: #5D5A88;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;

}
.roadmap-container{
    margin: 2em auto;
    background: url(/assets/img/MT-journey-map-mobile.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position-x: center;
    width: 85%;
    height: 1120px;

}
@media only screen and (min-width: 600px) {
    .hiw-title{
        font-size: 28px;
    }
    .hiw-sub-title{
        font-size: 18px;
    }
    .roadmap-container{
        background: url(/assets/img/MT-journey-map.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-x: center;
        width: 85%;
        height: 400px;
    }
    
}
@media only screen and (min-width: 1280px) {
    .hiw-title{
        font-size: 36px;
        font-weight: 700;
        line-height: 20px
    }
    .hiw-sub-title{
        font-size: 24px;
        font-weight: 700;
        line-height: 20px;
    }
    .roadmap-container{
        background: url(/assets/img/MT-journey-map.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position-x: center;
        width: 85%;
        height: 40vw;
    }
    
}
/*///////////////////////////////////////////////////////////////////////////////////////////////////*/


/*PRICE AND BENNEFITS*/
.price-and-bennefits{
    margin-top: 5em;
}
.price-and-bennefits-wrapper{
    background: #f4fbff;
    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: #ffffff;
    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: #44D800;
    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: #44D800;
    }
    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;
    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: #37af00;
    }
    
}
/*/////////////////////////////////////////////////////////////////////*/

/*DISEASES & HOSPITAL LOGO*/
.d-h-title{
    color: #5D5A88;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    width: 80%;
    margin: 3em auto 5px auto;
}
.d-h-subtitle{
    color: #6b6c75;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    width: 90%;
    margin: 0.6em auto 3em auto;

}
.diseases-slider-wrapper{
    width: 96%;
    margin: 10px auto;

}
.d-slider{
    display: flex;
    width: 95%;
    margin: 2.5em auto;
    align-items: center;
    gap: 22px;
    overflow-x: hidden;
}

.d-slider span{
    display: flex;
    padding: 8px 18px;
    text-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    text-align: center;
    color: rgba(38, 51, 139, 0.30);
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
    background: #ffffff;
    animation: slidediseases 80s infinite linear;

}
.d-slider-1 span{ 
    animation-direction: alternate;
}
.d-slider-2 span{
    animation-direction: alternate-reverse;
}
.d-slider-3 span{
    animation-direction: alternate;
}

@keyframes slidediseases{
    to{
        transform: translateX(-300vw);
    }
}
.slider-container-container{
    position: relative;
    margin: 1em auto;
    overflow-x: hidden;
    width: 98vw;
    height: 200px;
    background: #FCFCFC;
}
.hospital-logo-wrapper{
    width: 90vw;
    margin: 4% auto;
    display: flex;
    align-items: center;
    gap: 1em;
    flex-wrap: nowrap;
    border-radius: 30px;
    background-color: #072708;
    padding: 1em 10px;
    position: absolute;
    bottom: 0px;
    right: -100vw;

}
.hospital-logo-wrapper img{
    width: 8em;
    animation: hospilogoslider 30s infinite linear;
}
@keyframes hospilogoslider{
    to{
        transform: translateX(-406vw);
    }
}
.hospital-logo-wrapper img:nth-child(1){
    animation-delay: 0s;
    
}
.hospital-logo-wrapper img:nth-child(2){
    width: 9em;
    animation-delay: 2s;
}
.hospital-logo-wrapper img:nth-child(3){
    width: 12em;
    animation-delay: 3s;
}
.hospital-logo-wrapper img:nth-child(4){
    width: 10em;
    animation-delay: 4s;
}
.hospital-logo-wrapper img:nth-child(5){
    width: 20em;
    animation-delay: 5s;
}
.hospital-logo-wrapper img:nth-child(6){
    width: 9em;
    animation-delay: 6s;
}


@media only screen and (min-width: 600px){
    .d-h-title{
        font-size: 24px;
    }
    .d-h-subtitle{
        font-size: 22px;
    }
    .diseases-slider-wrapper{
        width: 80vw;
        
    }
    .slider-container-container{
        width: 80vw;

    }
    @keyframes hospilogoslider{
        to{
            transform: translateX(-220vw);
        }
    }

}

@media only screen and (min-width: 1280px){
    .d-h-title{
        font-size: 24px;
    }
    .d-h-subtitle{
        font-size: 18px;
    }
    .hospital-logo-wrapper img{
        animation-duration: 30s;

    }
    .d-slider span{
        padding: 15px 30px;
        font-size: 20px;
        font-style: italic;
        font-weight: 400;
        line-height: 21.356px;
        animation-duration: 200s;
    }
    .d-slider-2 span{
        animation-direction: alternate;
        animation-duration: 100s;
    }
    .slider-container-container{
        border-radius: 70px;
        background-color: #ffffff;
    }
    @keyframes hospilogoslider{
        to{
            transform: translateX(-180vw);
        }
    }
    .hospital-logo-wrapper img:nth-child(2){
        width: 9em;
        animation-delay: 1s;
    }
    .hospital-logo-wrapper img:nth-child(3){
        width: 12em;
        animation-delay: 2s;
    }
    .hospital-logo-wrapper img:nth-child(4){
        width: 10em;
        animation-delay: 3s;
    }
    .hospital-logo-wrapper img:nth-child(5){
        width: 20em;
        animation-delay: 4s;
    }
    .hospital-logo-wrapper img:nth-child(6){
        width: 9em;
        animation-delay: 5s;
    }
}
/*/////////////////////////////////////////////////////////////////////////////////////////////*/


/*TESTIMONY SECTION*/
.testimonies{
    background: #F4FBFF;
}
.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;

}
.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;
}
.FAQ-container{
    width: 98%;
    margin: 10px auto;
    padding: 5em 0px;
    border-radius: 30px;

}
.faq-title-text{
    width: 80%;
    margin-bottom: 2em;
}
.faq-title{
    color: #1966B1;
    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.83px solid #102ED0;
    padding: 20px;
    width: 84vw;
    max-width: 500px;
    min-width: 250px;
    margin: 1.4em;

}
.question{
    color: #1966B1;
    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-bottom: 2em;
    padding-bottom: 30px;
}
.call-to-action-container{
    margin: 10px auto;
    width: 90%;
}
.cta-img{
    width: 300px;
    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: 22px;
    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: #1966B1;
    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: #1966B1;
    }
    60%{
        background-color: #010a13;
    }
    100%{
        background-color: #1966B1;
    }

}
@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-container{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .cta-top-div{
        width: 56%;
    }
    .cta-bottom-div{
        width: 40%;
    }
    .cta-img{
        scale: 1.3;
        margin-left: 5em;
    }
    .cta-enquire-btn{
        display: none;
    }
    .cta-text-container{
        margin-left: -4em;

    }
}
@media only screen and (min-width: 1280px){
    .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, #1965b130);
    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: #1965b10f;
    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; 
    }
}

