: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{
    background: url(/assets/img/MTP-hero-background.svg);
    background-repeat: no-repeat;
    background-size: 40vh;
    background-position-x: right;
    background-position-y: top;
    
}
.hero-container{
    width: 96%;
    margin: 0px auto;
}
.top-container{
    width: 98%;
    margin: 0px auto;
    padding-top: 4em;
}
.hero-text-container{
    width: 90%;
    margin: 0px auto;
}
.large-text-line-container{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;   
}

.hero-large-text, .hero-large-text-2{
    color: #44D800;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 38.6px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.772px;
    padding-top: 0.5em;
}
.v-line{
    height: 104px;
    width: 5px;
    border: none;
    background: #63FF47;
}
.hero-large-text-2{
    color: var(--text-moneyt);
    align-self: flex-end;
    padding-bottom: 0.4em;
}
.small-text-container p{
    color: var(--text-moneyt);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 37.75px;
    letter-spacing: 0.309px;

}
.small-text-container p:last-child{
    color: #534A4A;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.434px;
    letter-spacing: 0.332px;  
}
.hero-img-container{
    display: flex;
    justify-content: center;
}
.hero-img{
    width: 300px;
    border-radius: 50%;
}
.check-rates-btn-container{
    height: 4em;
    width: 100%;
    margin-top: -1em;
}
.check-rates-btn-container a{
    border: 1.57px solid #1E285F;
    color: #000000;
    text-wrap: nowrap;
    font-size: 18px;
    padding: 0.5em 3em;
    background-color: #ffffff;  
}
.check-rates-btn-container a:hover{
    border: 1.57px solid #44D800;
    color: #000000;
    background-color: #d6f0cf;
    cursor: pointer;
    scale: 1.05;
    transition: 1s;
    animation: border-color-change 1s infinite;  
}
@media only screen and (min-width: 600px) {
    .top-container{
        display: flex;
        width: 98%;
    }
    .hero-text-container{
        width: 48%;
        display: flex;
        flex-direction: column;
        justify-content: center;

    }
    .hero-img-container{
        width: 52%;
        order: -1;

    }
    .hero-img{
        width: 100%;
    }
    .check-rates-btn-container{
        justify-content: flex-end;
        width: 92%;

    }
    .hero-large-text, .hero-large-text-2{
        font-size: 45px;
    }
    .v-line{
        height: 10em;
        width: 0.3em;
    }
    .small-text-container p{
        font-size: 18px;
        font-weight: 500;
        line-height: 48px;
    
    }
    .small-text-container p:last-child{
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.3px;  
    }

}
@media only screen and (min-width: 1280px){
    .hero-section{
        background-size: 90vh;
    }
    .top-container{
        width: 90%;
    }
    .hero-large-text, .hero-large-text-2{
        font-size: 60px;
        font-weight: 500;
        letter-spacing: 1.6px;
    }
    .v-line{
        height: 12em;
        width: 0.5em;
    }
    .small-text-container p{
        font-size: 30px;
        font-weight: 500;
        line-height: 50px;
        letter-spacing: 0.5px;
    
    }
    .small-text-container p:last-child{
        font-size: 20px;
        line-height: 33px;
        letter-spacing: 0.4px;  
    }
    .check-rates-btn-container{
        width: 85%;
        margin-top: -2.3em;

    }
    .check-rates-btn-container a{
        border: 1.7px solid #1E285F;
        font-size: 22px;
        padding: 0.5em 3em;
        
    }
}
@media only screen and (min-width: 1920px) {
    .top-container{
        width: 80%;
    }
    .check-rates-btn-container{
        width: 75%;
    }
  
}
@keyframes border-color-change{
    0%{ border: 1.57px solid #44D800;}
    25%{ border: 1.57px solid #44d800c4;}
    50%{ border: 1.57px solid #44d80083;}
    70%{ border: 1.57px solid #44d8003f;}
    100%{ border: 1.57px solid #44D800;}
}
/*/////////////////////////////////////////////////////////////////////*/

/*COUNTRIES WE OPERATE SECTION*/
.countries-we-operate{
    padding: 1.5em 10px;
}
.cwo-container{
    width: 98%;
    margin: 2em auto;
}
.cwo-container h2{
    color: var(--text-moneyt);
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.247px;
}
.flags-container{
    border-radius: 12px;
    border: 0.308px solid #36AD00;
    padding: 1em 1em;
    gap: 1em 1em;
    align-self: stretch;
    width: 90%;
    margin: 2em auto;
}
.flags-container img{
    width: 16vw;
    border-radius: 4px;
    pointer-events: none;
}
@media only screen and (min-width: 600px){
    .cwo-container h2{
        font-size: 24px;
        letter-spacing: 0.4px;
    }
    .cwo-container{
        width: 90%;
    }
    .flags-container{
        border-radius: 12px;
        gap: 2em 2em;
    }
    .flags-container img{
        width: 10vw;
    }

}
@media only screen and (min-width: 1280px){
    .cwo-container{
        width: 60%;
    }
    .cwo-container h2{
        font-size: 26px;
        margin: 2em;
    }
    .flags-container{
        padding: 3em 3em;
        gap: 4em 4em;
    }
    .flags-container img{
        width: 5vw;
    }
    
}
@media only screen and (min-width: 1920px){
    .cwo-container{
        width: 60%;
    }
    .flags-container{
        padding: 4em 4em;
        gap: 5em 5em;
    }
    .flags-container img{
        width: 4vw;
    }  
}
/*/////////////////////////////////////////////////////////////////////*/


/*PAYMENT METHODS SECTION*/
.payment-methods h2{
    color: var(--text-moneyt);
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.247px;
}
.banks-img-container{
    width: 70%;
    margin: 3em auto 0.5em auto;
}
.banks-img-container img{
    width: 100%;  
}

.payment-methods-container{
    position: relative; 
    width: 94vw;
    border-radius: 1em;
    margin: 1em auto;
    padding: 1em;
    gap: 2em;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.payment-methods-container img{
    animation: logoslidemobile 50s infinite linear;
    animation-direction: alternate-reverse;
}

@keyframes logoslidemobile{
    to{
        transform: translateX(-400vw);
    }
}
.payment-methods-container img{
    width: 20%;
    pointer-events: none;   
}
/*resizing logos*/
.payment-methods-container img:nth-child(4){
    width: 12%;   
}
.payment-methods-container img:nth-child(5){
    width: 18%;   
}
.payment-methods-container img:nth-child(6), .payment-methods-container img:nth-child(7),.payment-methods-container img:nth-child(12),.payment-methods-container img:nth-child(14){
    width: 35%;   
}
.payment-methods-container img:nth-child(8){
    width: 18%;   
}
.payment-methods-container img:nth-child(9){
    width: 10%;   
}
/*resizing end*/


@media only screen and (min-width: 600px){
    .payment-methods h2{
        font-size: 24px;
        letter-spacing: 0.4px;
    }
    .banks-img-container{
        width: 50%;
    }
    .payment-methods-container img{
        width: 20%; 
        margin: 10px 20px;  
    }
    /*resizing logos*/
    .payment-methods-container img:nth-child(4){
        width: 8%;   
    }
    .payment-methods-container img:nth-child(5){
        width: 16%;   
    }
    .payment-methods-container img:nth-child(6), .payment-methods-container img:nth-child(7),.payment-methods-container img:nth-child(12),.payment-methods-container img:nth-child(14){
        width: 30%;   
    }
    .payment-methods-container img:nth-child(8){
        width: 17%;   
    }
    .payment-methods-container img:nth-child(9){
        width: 8%;   
    }
    
    
}

@media only screen and (min-width: 1280px){
    .payment-methods h2{
        font-size: 26px;
        margin: 2em;
    }
    .banks-img-container{
        width: 30%;
    }
    .payment-methods-container img{
        width: 7%; 
        margin: 10px 20px;  
    }
    /*resizing logos*/
    .payment-methods-container img:nth-child(4){
        width: 3.5%;   
    }
    .payment-methods-container img:nth-child(5){
        width: 5%;   
    }
    .payment-methods-container img:nth-child(6), .payment-methods-container img:nth-child(7),.payment-methods-container img:nth-child(12),.payment-methods-container img:nth-child(14){
        width: 10%;   
    }
    .payment-methods-container img:nth-child(8){
        width: 6.5%;   
    }
    .payment-methods-container img:nth-child(9){
        width: 3.5%;   
    }

    @keyframes logoslide{
        from{
            transform: translateX(0);
        }
        to{
            transform: translateX(-150vw);
        }
    }
    .payment-methods-container img{
        animation: logoslide 50s infinite linear;
        animation-direction: alternate-reverse;
    }
    .payment-methods-container::before{
        position: absolute;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;
        left: 0px;
        top: 0px;
        height: 100%;
        width: 100px;
        content: "";
        background: linear-gradient(to right, #c3c2c21d, #ffffff);
        z-index: 2;
    
    }
    .payment-methods-container::after{
        position: absolute;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
        right: 0px;
        top: 0px;
        height: 100%;
        width: 100px;
        content: "";
        background: linear-gradient(to left, #c3c2c21d, #ffffff);
        z-index: 2;
    
    }
    
}
/*/////////////////////////////////////////////////////////////////////*/


/*EXCHANGE RATES SECTION*/
.exchange-rates-section{
    background: #F0FFEF;
}
.exchange-rates-section-container{
    width: 98%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    
}
.converter-wrapper{
    width: 96%;
    max-width: 450px;
    margin: 5em;
    border-radius: 12px;
    background: #fff;
    box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.05);
}
.converter-title {
    color: #1E285F;
    font-size: 19.556px;
    line-height: 70px;
    letter-spacing: 0.391px;
    font-weight: 500;
    text-align: center;
}
.converter-wrapper form{
    width: 90%;
    margin: 40px 0px;
    margin: 35px auto;
}
form :where(select, button){
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: none;
}
.amount-container{
    width: 100%;
}
form p{
    font-size: 18px;
    color: #173D65;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.391px;
}

.amount-container input{
    border-radius: 8PX;
    border: 1.956px solid #958E8E;
    width: 90%;
    padding: 0px 15px;
    height: 50px;
    font-size: 17px;
}
.amount-container input:focus{ 
    outline-color: #44D800;
}

form .drop-list{
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.drop-list .select-box{
    display: flex;
    width: 115px;
    height: 45px;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
    border: 1.956px solid #958E8E;
}
.arrows{
    margin-top: 22px;
    
}
.select-box img{
    max-width: 20px;
}
.select-box select{
    width: auto;
    font-size: 20px;
    background: none;
    margin: 0 -5px 0 5px;
}
.select-box select::-webkit-scrollbar{
    width: 8px;
}
.select-box select::-webkit-scrollbar-track{
    background: #fff;
}
.select-box select::-webkit-scrollbar-thumb{
    background: #888;
    border-radius: 8px;
    border-right: 2px solid #ffffff;
}
.drop-list .icon{
    cursor: pointer;
    margin-top: 30px;
    font-size: 22px;
}
form .exchange-rate{
    border: 1.956px solid #958E8E;
    background-color: #F8F8F8;
    border-radius: 5px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    margin: 20px 0 30px;
}
form button{
    height: 54px;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    background: var(--text-light-blue);
    transition: all 0.5s;
}
form button:hover{
    background: #1966B1;
}
.girl-img-wrapper{
    display: none;
}
.girl-img-wrapper img{
    max-width: 400px;
    pointer-events: none;
}
 
@media only screen and (min-width: 1280px){
    .exchange-rates-section-container{
        width: 80%;
    }
    .exchange-rates-section-container{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .girl-img-wrapper{
        display: block;
        width: fit-content;
        align-self: flex-end;
    }
    .girl-img-wrapper img{
        display: block;
        width: 100%;
    }

}
@media only screen and (min-width: 1920px){
    .exchange-rates-section-container{
        width: 70%;
    }

}

/*//////////////////////////////////////////////////////////////////////*/


/*TESTIMONY SECTION*/
.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;
    background: var(--green-bg);

}
.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.83px 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-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: 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-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, #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; 
    }
}

