@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

body {
    font-family: 'Poppins';
    max-width: 1800px;
    margin: 0 auto !important;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    padding-left: 120px;
}

@media screen and (max-width:1185px) {
    .text-content {
        padding-left: 50px;
    }
}

.main-container {
    display: grid;
    min-height: 100vh;
    width: 100%;
    grid-template-columns: 60% 40%;
}

.left-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.right-section {
    background-image: url("/assets/images/boostSaleNow.svg");
    background-color: #0D0C22;
    display: flex;
}

.header {
    position: sticky;
    top: 0;
}

.footer {
    flex-basis: 320px;
}

.contact-section {
    margin-top: 2.5rem;
}

.footer-wrapper {
    padding: 30px 0 30px 110px;
    max-width: 480px;
}

.footer-heading {
    color: #0D0D0D;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.gs-vehical {
    transform: translateX(-470px);
    animation: 6s ease-out 1s infinite vehicle-movement;
}

.input-group {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

@keyframes vehicle-movement {
    from {
        transform: translateX(-470px);
    }

    to {
        transform: translateX(0);
    }
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.cta-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.header-wrapper {
    width: 80%;
    margin: auto;
    padding-top: 55px;
    padding-left: 15px;
}

.contact-heading {
    color: #3D5A80;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.heading {
    font-weight: 400;
    font-size: 44px;
}

.sub-heading {
    font-weight: 300;
    font-size: 14px;
    color: #6E6E7A;
    max-width: 444px;
}

.applynow-form {
    background: #FFFFFF;
    box-shadow: 0px 0px 24px rgba(110, 110, 122, 0.2);
    border-radius: 10px;
    /* height: 90%; */
    width: 520px;
    margin-left: -8rem;
    padding: 35px;
}

@media screen and (max-width:1075px) {
    .applynow-form {
        flex-basis: 70%;
        margin-left: -3rem;
    }
}

.form-heading {
    font-weight: 500;
    margin-bottom: 30px;
}

.mobile-nav {
    display: none;
    padding: 15px 0;
    background: #FFFFFF;
    box-shadow: 0px 4px 14px rgba(10, 76, 173, 0.05);
}

.mobile-footer {
    display: none;
}

@media screen and (max-width:1000px) {
    html {
        font-size: 80%;
    }

    .main-container {

        grid-template-columns: 1fr;
    }

    .right-section {
        background-image:none;
        background-color: #fff;
        padding: 0 15px;
    }

    .left-section {
        display: none;
    }

    .applynow-form {
        width: 100%;
        margin: auto;
    }

    .mobile-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .mobile-footer {
        display: block;
    }

    .input-group {
        flex-direction: column;
    }
}