/* ==========================================
   Global Variables
========================================== */

:root{
    --primary-green-contact: #016D5B;
    --gradient-green: linear-gradient(90deg, #98BE1D 0%, #016D5B 100%);
}


/* ==========================================
   Contact Banner
========================================== */

.contact-banner{
    background: var(--primary-green);
    padding: 56px 0 60px;
}

.contact-banner-content{
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.contact-banner h1{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #fff;

    margin-bottom: 22px;
}

.contact-banner p{
    max-width: 720px;
    margin: 0 auto;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    color: #fff;

    opacity: .95;
}


/* ==========================================
   Contact Form Section
========================================== */

.contact-form-section{
    padding: 70px 0 70px;
    background: #fff;
}

.contact-form-wrapper{
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 22px;
}


/* ==========================================
   Map
========================================== */

.contact-map{
    overflow: hidden;
    border-radius: 14px;
    height: 100%;
}

.contact-map iframe{
    width: 100%;
    height: 100%;
    border: 0;
}


/* ==========================================
   Form Box
========================================== */

.contact-form-box{
    border: 1px solid #D9D9D9;
    border-radius: 14px;
    padding: 46px 38px;
    margin-right: 22px;
}


/* ==========================================
   Heading
========================================== */

.contact-form-box h2{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 30px;
    letter-spacing: -0.02em;

    color: #272727;

    margin-bottom: 24px;
}


/* ==========================================
   Description
========================================== */

.contact-form-box > p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;

    color: #9d9d9d;

    max-width: 520px;

    margin-bottom: 34px;
}


/* ==========================================
   Form Layout
========================================== */

.contact-form-box .row{
    --bs-gutter-x: 14px;
}

.form-group{
    margin-bottom: 22px;
}


/* ==========================================
   Labels
========================================== */

.form-group label{
    display: block;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;

    color: #000;

    margin-bottom: 8px;
}


/* ==========================================
   Inputs
========================================== */

.contact-form-box .form-control,
.contact-form-box .form-select{
    height: 50px;

    background: #F7F7F7;
    border: 1px solid #F7F7F7;
    border-radius: 4px;

    box-shadow: none;

    padding: 12px 16px;

    font-size: 15px;
    color: #222;
}

.contact-form-box textarea.form-control{
    min-height: 62px;
    resize: none;
    padding-top: 14px;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus{
    border-color: var(--primary-green-contact);
    background: #fff;
    box-shadow: none;
}


/* ==========================================
   Button
========================================== */

.contact-submit-btn{
    min-width: 140px;
    height: 46px;

    border: 0;
    border-radius: 6px;

    background: linear-gradient(97.87deg, #FFEA00 -39.18%, #006D5B 75.53%);

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;

    color: #fff;

    margin-top: 10px;

    transition: .3s ease;
}

.contact-submit-btn:hover{
    transform: translateY(-2px);
}


/* ==========================================
   Responsive
========================================== */

@media (max-width: 1199px){

    .contact-form-wrapper{
        grid-template-columns: 1fr;
    }

    .contact-map{
        height: 420px;
    }
}

@media screen and (max-width:1024px){
    .contact-form-box {
        margin-right: 0px;
    }
}
@media (max-width: 991px){

    .contact-banner h1{
        font-size: 54px;
    }

    .contact-banner p,
    .contact-form-box > p,
    .form-group label{
        font-size: 16px;
    }

    .contact-form-box h2{
        font-size: 30px;
    }

    .contact-form-box{
        padding: 36px 28px;
    }
}


@media (max-width: 767px){

    .contact-banner{
        padding: 42px 0 32px;
    }

    .contact-banner h1{
        font-size: 42px;
    }

    .contact-banner p{
        font-size: 15px;
        line-height: 160%;
    }

    .contact-form-section{
        padding: 42px 0 55px;
    }

    .contact-map{
        height: 320px;
        border-radius: 10px;
    }

    .contact-form-box{
        padding: 28px 18px;
        border-radius: 10px;
    }

    .contact-form-box h2{
        font-size: 26px;
        line-height: 120%;
    }

    .contact-form-box > p{
        font-size: 15px;
        line-height: 180%;
    }

    .form-group label{
        font-size: 15px;
        line-height: 22px;
    }
}


@media (max-width: 575px){

    .contact-banner h1{
        font-size: 34px;
    }

    .contact-submit-btn{
        width: 100%;
    }
}


/* ==========================================
   Contact Info Section
========================================== */

.contact-info-section{
    background: #F5F5F5;
    padding: 70px 0;
}


/* ==========================================
   Info Card
========================================== */

.info-card{
    background: #FFFFFF;
    border-radius: 12px;

    padding: 36px 24px;

    text-align: center;

    height: 100%;

    transition: 0.3s ease;
}

.info-card:hover{
    transform: translateY(-4px);
}


/* ==========================================
   Icon
========================================== */

.info-card .icon{
    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #FFE500;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;
}

.info-card .icon i{
    font-size: 16px;
    color: #111111;
}


/* ==========================================
   Title
========================================== */

.info-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: #808080;
    margin-bottom: 10px;
}


/* ==========================================
   Text
========================================== */

.info-card p{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 18px;
    color: #5C5C5C;
    margin-bottom: 0;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
}

.info-card p a{
    color: #5F5F5F;
    text-decoration: none;
    transition: 0.3s ease;
}

.info-card p a:hover{
    color: #016D5B;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 991px){

    .contact-info-section{
        padding: 55px 0;
    }

    .info-card{
        padding: 30px 20px;
    }
}


@media (max-width: 767px){

    .contact-info-section{
        padding: 45px 0;
    }

    .info-card{
        border-radius: 10px;
    }

    .info-card h5{
        font-size: 17px;
    }

    .info-card p{
        font-size: 15px;
        line-height: 26px;
    }
}


@media (max-width: 575px){

    .info-card{
        padding: 26px 18px;
    }

    .info-card .icon{
        margin-bottom: 18px;
    }
}