@import url('https://fonts.cdnfonts.com/css/montserrat-alternates');
@import url('https://fonts.cdnfonts.com/css/poppins');

.img-div img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.heading {
    margin-bottom: 10px;
}

.text-div {
    margin-bottom: 20px;
}

.heading h1 {
    font-family: 'Montserrat Alternates';
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #0F181B;
}


.heading h2 {
    font-family: 'Montserrat Alternates';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #0F181B;
}

.text-div p {
    font-family: 'Poppins';
    font-style: normal;
    /*font-weight: 700;*/
    font-size: 16px;
    line-height: 158.02%;
    color: #000000;
}

.btn-div button {
    width: 228px;
    height: 56.72px;
    background: #006ab2;
    color: #FFFFFF;
    border: 1px solid #006ab2;
    border-radius: 30px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 158.02%;
    border: none;
    outline: none;
    transition: 0.3s;
}

.btn-div button:hover {
    background: #FFFFFF;
    color: #006ab2;
    border: 1px solid #006ab2;
}

header {
    z-index: 99999999;
    position: relative;
}

.logoDiv {
    /* height: 85px; */
    padding: 20px 0px;
    display: flex;
    align-items: center;
}

.logoDiv img {
    width: 200px;
}

.section1::before {
    content: "";
    height: 100vh;
    width: 100vw;
    background-color: #000000a1;
    position: absolute;
}

.section1 {
    position: relative;
    height: 100vh;
    background-image: url(./assets/images/section1bg.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: -120px;
}

.section1 .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    z-index: 99;
    position: relative;
}

.section1 h1 {
    color: #64b128;
    text-shadow: 1px 2px 2px white;
}
.section1 p {
    color: white;
}

.section2 {
    padding: 150px 0;
    background-color: #EBEFEF;
}

.section2 .content {
    padding-right: 30px;
}

.section3 {
    padding: 100px 0;
}

.section3 img {}

.section3 div {
    text-align: center;
}

.section3 img {
    aspect-ratio: 1;
    object-fit: contain;
    width: 100px;
    margin: auto;
    display: inline-block;
}

.section3 h3 {
    font-size: 20px;
}

.section4 {
    padding: 150px 0;
    background-color: #EBEFEF;
}

.section4 form .inputDiv {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 30px;
}

.section4 form .inputDiv label {
    font-weight: 500;
    font-family: 'Poppins';
}

.section4 form .inputDiv input,
.section4 form .inputDiv select {
    font-family: 'Poppins';
    height: 50px;
    outline: none;
    border: none;
    border: 1px solid #0000006b;
    background-color: transparent;
    padding: 0 20px;
    border-radius: 100px;
    color: #000;
}

.section4 form .inputDiv-2 {
    display: flex;
    text-align: left !important;
    column-gap: 10px;
}

.footer-section {
    background-color: #f1f1f1;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 100px 92px 100px 92px;
}

.footer-inner {
    max-width: 1140px;
    margin: auto;
}

.footer-inner .inner-navbar-child {
    margin-left: 5px;
}

.call-now-text {
    color: #180c3c;
    font-family: "Cabin", Sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 10px;
}

.call-center-text {
    color: #180c3c;
    font-family: "Cabin", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    margin-bottom: 10px;
}

.terms-and-condition-parent {
    margin-top: 10px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.terms-and-condition-parent p {
    color: #180c3c;
    font-family: "Cabin", Sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin: 0;
    width: max-content;
}

.terms-and-condition a {
    margin-left: 18px;
    margin-right: 18px;
    font-family: "Cabin", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #180c3c;
    transition: color 0.3s;
    text-decoration: none;
}

.copy-right {
    color: #180c3c;
    font-family: "Cabin", Sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.request-information {
    color: #180c3c;
    font-family: "Cabin", Sans-serif;
    font-size: 0.75rem;
    line-height: 1rem;
}

@media screen and (max-width: 1024px) {
    .footer-section {
        padding: 70px 30px 70px 30px;
    }
}


@media screen and (max-width: 480px) {
    .heading h1 {
        font-size: 30px;
        text-align: center;
    }

    .heading h2 {
        font-size: 24px;
        text-align: center;
    }

    .text-div p {
        font-size: 16px;
        text-align: center;
    }

    .btn-div {
        text-align: center;
    }

    .section2 {
        padding: 50px 0;
    }

    .section2 .row {
        row-gap: 20px;
    }

    .section2 .content {
        padding: 0;
    }

    .section3 {
        padding: 50px 0;
    }

    .section4 {
        padding: 50px 0;
    }
}