header {
    padding: 7rem 5rem 0 5rem;

    .request-header {
        max-width: 78.4rem;
        margin: 0 auto;
        text-align: center;

        h1 {
            font-weight: 700;
            font-size: 6rem;
            position: relative;
            max-width: fit-content;
            margin: 0 auto;

            span {
                position: absolute;
                right: -10%;
                top: 0;
            }
        }

        p {
            color: #0E1628B2;
            margin-top: 4rem;
        }
    }
}

.form-area {
    background: #F3F7FD;
    position: relative;
    border-radius: 50px 50px 0px 0px;
    padding: 6rem 5rem;
    width: 100%;
    max-width: 900px;
    margin: 8rem auto;

    .left {
        position: absolute;
        bottom: 0;
        right: 100%;
    }

    .right {
        position: absolute;
        bottom: 0;
        left: 100%;
    }



}

.brands {
    background: #0E1628;
    padding: 10rem 5rem;
    border-radius: 0 0 50px 50px;
    margin-bottom: 8rem;
    display: flex;
    align-items: center;
    gap: 10rem;

    h1 {
        font-weight: 700;
        color: #FFFFFF;
        font-size: 4rem;
        max-width: 35.2rem;
    }

    .text {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 5rem;

        p {
            color: #9AA1B3;
            font-weight: 800;
            font-size: 2.4rem;
        }
    }
}

@media (max-width: 768px) {
    header {
        padding: 4rem 2rem;

        h1 {
            font-size: 4rem !important;

            span {
                display: none;
            }
        }

        p {
            margin-top: 1.6rem !important;
        }
    }

    .form-area {
        border-radius: 0px 0px;
        padding: 4rem 2rem;
        width: 100%;
        margin: 0rem auto;


    }
}

@media (min-width:768px) and (max-width: 992px) {}

@media (max-width: 1120px) {

    .form-area .left,
    .form-area .right {
        display: none;
    }
}