:root {
    --theme-blue: #2A67A1;
    --theme-grey: #737474;
    --light-grey: #F3F5F9;
    --white: #ffffff;
    --black: #161718;
    --font-outfit: "Outfit", serif;
    --font-popins: "Poppins", serif;
    --font-inter: "Inter", serif;
}

html {
    font-size: 9px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
}
body{
    font-family: var(--font-outfit);
}
h1, h2, h3, h4, h5, h6{
    color: var(--black);
    font-family: var(--font-outfit);
}
.padding-large{
    padding: 8rem 0;
}
.theme-btn{
    border-radius: 20rem;
    padding: 2.4rem 10rem;
    font-family: var(--font-outfit);
    background-color: var(--theme-blue);
    color: var(--white);
    font-size: 2.4rem;
    line-height: 1.5rem;
    font-weight: 600;
}
.theme-btn:hover{
    background-color: var(--black);
    color: var(--white);
}
.bg-light-grey{
    background-color: var(--light-grey);
}
.section-title{
    font-size: 4rem;
    line-height: 6rem;
    font-weight: 700;
    margin-bottom: 4rem;
}
.grid-col-2{
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
}
.grid-col-3{
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem
}
.btn-container{
    margin-top: 4rem;
}
.fw-600{
    font-weight: 600;
}
.rounded-img{
    border-radius: 1.2rem;
}
.mx-width{
    max-width: 800px;
    margin-inline: auto;
}

/* header start */
.header-container .navbar{
    padding: 2rem 0;
}
.header-container .navbar-nav{
    gap: 2rem;
}
.call-btn{
    border-radius: 20rem;
    padding: 2rem 3.5rem !important;
    font-family: var(--font-outfit);
    background-color: var(--theme-blue);
    color: var(--white);
    font-size: 2.4rem;
    line-height: 0;
    font-weight: 600;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: 400ms ease-out;
}
.quote-btn{
    background-color: var(--black);
}
.quote-btn:hover{
    background-color: var(--theme-blue) !important;
}
.call-btn:hover{
    background-color: var(--black);
    color: var(--white);
}
/* header end */

/* hero section */
.hero-banner{
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 2rem 0;
    min-height: 60rem;
}
/* .banner-content{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
} */
.banner-content{
    margin-top: 2.5rem;
}
.banner-content h1{
    font-size: 6rem;
    line-height: 7.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}
.banner-content p{
    font-size: 2.2rem;
    line-height: 3.4rem;
    font-family: var(--font-outfit);
    color: #FCFCFC;
    margin-bottom: 0;
}
.card-form{
    border-radius: 1.2rem;
    background-color: var(--white);
    height: 100%;
    text-align: center;
    padding: 4.4rem 4rem;
}
.card-form h2{
    font-size: 3.6rem;
    line-height: 4.7rem;
    font-family: var(--font-popins);
    color: #212B27;
    margin-bottom: 0.8rem;
    /* max-width: 500px; */ 
    margin-inline: auto;
}
.card-text{
    font-size: 2rem;
    line-height: 2rem;
    font-family: var(--font-popins);
    font-weight: 400;
    color: #212B27;
    margin-bottom: 3rem;
}
.offer-card{
    margin-top: 6rem;
    padding: 4rem 3rem;
    border-radius: 1.2rem;
    text-align: center;
    width: max-content;
    box-shadow: 0 1rem 3rem rgb(8 8 8 / 59%);
}
.banner-content .offer-text{
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--black);
}
.card-form-footer{
    font-family: var(--font-outfit);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
    text-align: center;
    color: #212B27;
    margin-bottom: 0;
}
.card-form iframe{
    min-height: 463px !important;
}
/* hero section end */

/* why choose */
.list-title{
    font-size: 4rem;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 4rem;
}
.list-style{
    list-style-image: url('../images/list.png');
}
.list-style span{
    font-size: 2.4rem;
    line-height: 3.6rem;
    font-family: var(--font-outfit);
    color: var(--theme-blue);
    font-weight: 700;
}
.list-style li{
    font-size: 2.4rem;
    line-height: 3.6rem;
    font-family: var(--font-outfit);
    color: var(--theme-grey);
    font-weight: 400;
    padding-left: 1rem;
}
.list-style li:not(:last-child){
    margin-bottom: 2rem;
}
.text-1{
    font-size: 2.2rem;
    line-height: 3.6rem;
    font-family: var(--font-outfit);
    color: var(--theme-grey);
    font-weight: 400;
    margin: 4rem 0;
}

/* opportunity card */
.card-padding{
    padding-inline: 5.5rem;
}
.opportunity-card{
    position: relative;
    flex-direction: row;
    gap: 4rem;
    padding: 2rem 3.2rem;
    border-radius: 0.4rem;
    transition: 400ms ease-out;
}
.opportunity-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    height: 0.4rem;
    background-color: #195B99;
    transition: 400ms ease-in-out; 
}
.opportunity-card:hover{
    box-shadow: 0 0.8rem 1.6rem 0 #00000024;
}
.opportunity-card:hover::after{
    opacity: 1;
}
.opportunity-card h4{
    font-size: 2.4rem;
    line-height: 2.8rem;
    font-family: var(--font-inter);
    color: #18181B;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.opportunity-card p{
    font-size: 2.2rem;
    line-height: 3.6rem;
    font-family: var(--font-inter);
    color: #000000;
    opacity: 0.6;
    font-weight: 400;
    margin-bottom: 0;
}
/* opportunity card end */

/* mailing card */
.mailing-card{
    display: flex;
    gap: 3rem;
}
.card-reverse{
    flex-direction: row-reverse;
    margin-top: 4rem;
}
.card-img, .card-text{
    flex-basis: 50%;
}
.card-img img{
    border-radius: 1.2rem;
    width: 100%;
}
.mailing-card h4{
    font-size: 3.2rem;
    line-height: 3.8rem;
    font-weight: 600;
}
.mailing-card p{
    font-size: 2rem;
    line-height: 3rem;
    color: var(--theme-grey);
    font-weight: 400;
    margin-bottom: 0;
}
.mailing-theme-btn{
    margin-top: 8rem;
}
/* mailing card end */
.testimonial-heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}
.testimonial-heading h3{
    font-size: 4rem;
    line-height: 5.5rem;
    font-weight: 600;
    margin-bottom: 0;
}
.testimonial-heading p{
    font-size: 2.2rem;
    line-height: 3.6rem;
    font-weight: 400;
    font-family: var(--font-outfit);
    color: #666666;
    margin-bottom: 0;
    width: 70%;
}
.testimonial-card{
    gap: 3.2rem;
    padding: 3.2rem;
    border-radius: 1.2rem;
    border: 0.1rem solid #E7E7E7;
    box-shadow: 0 0.8rem 1.6rem 0 #00000024;
}
.testimonial-card p{
    font-size: 2rem;
    line-height: 3.6rem;
    font-weight: 400;
    color: var(--black);
}
.testimonal-content{
    /* display: flex;
    align-items: center;
    gap: 1.2rem; */
    margin-top: auto;
}
.testimonal-content p:first-child{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
}
.testimonal-content p:last-child{
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--theme-grey);
    line-height: 1.2;
}
/* testimonial end */

/* footer */
.footer{
    background-image: url('../images/footer-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.footer-text{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-text ul{
    display: flex;
    list-style-image: url('../images/list-white.png');
    gap: 8rem;
    list-style-position: inside;
}
.footer-text ul li{
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: 600;
    color: var(--white)
}
.footer-text p{
    font-size: 2.2rem;
    line-height: 3.6rem;
    color: var(--white);
}
.footer .theme-btn{
    background-color: var(--white);
    color: var(--theme-blue)
}
.footer .theme-btn:hover{
    background-color: var(--black);
    color: var(--white)
}
/* media query */
@media (max-width: 1440px){
    html{
        font-size: 8px;
    }
    .offer-card{
        margin-top: 4rem;
    }
}

@media (min-width: 991.5px){
    .choose-us{
        width:100%;
    }
}

@media (max-width: 991px) {
    html{
        font-size: 10px;
    }
    .hero-banner{
        min-height: 40rem;
    }
    .banner-content h1, .section-title{
        font-size: clamp(2.5rem, 7vw, 3.5rem);
        line-height: 1.2;
        margin-bottom: clamp(1.5rem, 7vw, 2rem);
    }
    .testimonial-heading h3, .card-form h2{
        font-size: clamp(2.5rem, 7vw, 3.5rem);
        line-height: 1.2;
    }
    .banner-content p, .card-text{
        font-size: clamp(1.6rem, 4vw, 2rem);
        line-height: 1.2
    }
    .padding-large{
        padding: clamp(1.5rem, 7vw, 3rem) 0;
    }
    .list-title{
        font-size: clamp(2.5rem, 7vw, 3.5rem);
        line-height: 1.2;
        margin-bottom: clamp(1.5rem, 7vw, 2rem);
    }
    .card-padding{
        padding: 0;
    }
    .opportunity-card img{
        width: 4rem;
    }
    .opportunity-card{
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .opportunity-card h4, .mailing-card h4{
        font-size: 2rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    .opportunity-card p, .mailing-card p, .testimonial-heading p{
        font-size: 1.6rem;
        line-height: 1.5;
        width: 100%;
    }
    .btn-container{
        margin-top: 2rem;
    }
    .theme-btn{
        padding: 2rem 4rem;
        font-size: 1.8rem;
    }
    .testimonial-heading{
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .testimonial-card{
        gap: 1.5rem;
    }
    .grid-col-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-col-2, .grid-col-3{
        gap: 2rem;
    }
    .footer-text ul{
        gap: 0;
    }
    .card-text{
        margin-bottom: 1.5rem;
    }
    .card-form{
        padding: 2rem;
        margin-top: 2rem;
    }
    /* .card-form iframe{
        height: 480px !important;
    } */
    .card-reverse{
        margin-top: 2rem;
    }
    .call-btn{
        padding: 2rem 2.4rem !important;
        font-size: 1.8rem;
    }
    .banner-content{
        margin-top: 0rem;
    }
    .offer-card{
        padding: 2.5rem;
        margin-top: 2rem;
    }
    .banner-content .offer-text{
        font-size: 1.8rem;
    }
    
}
@media (max-width: 767px){
    .navbar>.container-fluid{
        flex-direction: column;
    }
    .container{
        padding-inline: 1.5rem;
    }
    .navbar-toggler-icon{
        font-size: 2rem;
    }
    .navbar-toggler:focus{
        box-shadow: none;
    }
    .navbar-brand img{
        display: block;
        margin-inline: auto;
        width: 55%;
        height: auto;
    }
    .navbar-nav img{
        width: 2.5rem;
    }
    .navbar-nav{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem !important;
        padding-top: 1rem;
    }
    .call-btn{
        font-size: 1.4rem;
        padding: 1.2rem !important;
        gap: 0.8rem;
    }
    .call-btn img{
        width: 1.3rem
    }
    .card-form{
        margin-top: 1.5rem;
        padding: 1.5rem;
    }
    .list-style span, .list-style li, .text-1{
        font-size: 1.6rem;
        line-height: 1.5;
        margin: 1.5rem 0;
    }
    .btn-container{
        margin-top: 1.5rem;
    }
    .theme-btn{
        padding: 2rem 5rem;
        font-size: 1.6rem;
    }
    .grid-col-2, .grid-col-3 {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 1.5rem;
    }
    .testimonal-content p:first-child, .testimonal-content p:last-child{
        font-size: 1.8rem;
    }
    .testimonial-card{
        padding: 1.5rem;
    }
    .mailing-card{
        display: block;
        text-align: center;
    }
    .card-reverse{
        margin-top: 1.5rem;
    }
    .card-img{
        margin-bottom: 15px;
    }
    .footer-text ul{
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-text p, .testimonial-card p{
        font-size: 1.6rem;
        line-height: 1.5;
    }
    .offer-card {
        padding: 1.8rem 2rem;
    }
    .offer-card {
        margin-top: 1.5rem;
    }
}