.contactUsBlock {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 100px 50px;
    margin: 0;
    background-color: var(--main-blue);
}

.contactUsFirstCol, .contactUsSecondCol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    flex-wrap: nowrap;
}

.contactUsFirstCol {
    text-align: center;
}

.contactUsFirstCol h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--main-white);
    margin-bottom: 8px;
}

.contactUsFirstCol p {
    font-size: 18px;
    font-weight: 300;
    color: var(--main-white);
    max-width: 408px;
    margin: 0 auto;
}

.contactUsSecondCol h3 {
    font-size: 32px;
    font-weight: bold;
    color: var(--main-white);
}

.contactUsSecondCol p {
    font-size: 20px;
    font-weight: 400;
    color: var(--main-white);
    margin: 0;
    padding: 0;
}

#quote_block {
    margin-top: 32px;
    margin-bottom: 32px;
}

.baseInput, #send_quote {
    background-color: rgba(10, 10, 10, 0);
    border: 1px solid #BEBEBE;
    border-radius: 30px;
    padding: 20px;
    width: 592px;
    margin: 8px 0 16px 0;
    color: white;
}

#quote_block p {
    font-weight: 600;
}

#send_quote {
    width: 148px;
    background-color: var(--main-orange);
    color: var(--main-white) !important;
    border: none !important;
    transition: all 0.3s ease;
}

@media (max-width: 1300px) {
    .contactUsBlock {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 50px;
        margin: 0;
        background-color: var(--main-blue);
    }

    .contactUsFirstCol, .contactUsSecondCol {
        justify-content: center;
        width: 100%;
        flex-wrap: nowrap;
        align-items: center;
    }
}

@media (max-width: 800px) {
    .contactUsFirstCol h2 {
        font-size: 40px;
        line-height: 120%;
    }
}

@media (max-width: 660px) {
    #quote_block {
        width: 100%;
    }

    .baseInput {
        background-color: rgba(10, 10, 10, 0);
        border: 1px solid #BEBEBE;
        border-radius: 30px;
        padding: 20px;
        width: 100%;
        margin: 8px 0 16px 0;
        color: white;
    }

    #send_quote {
        background-color: var(--main-orange);
    }
}

@media (max-width: 560px) {
    .contactUsBlock {
        padding: 48px 10px;
    }

    #quote_block {
        margin-bottom: 0;
        margin-top: 12px;
    }

    #send_quote {
        width: 100% !important;
    }

    .contactUsFirstCol h2 {
        font-weight: 600;
        font-size: 22px;
        line-height: 136%;
        margin-bottom: 16px;
    }

    .contactUsFirstCol p {
        font-weight: 400;
        font-size: 12px;
        line-height: 150%;
        max-width: 90%;
        margin-bottom: 24px;
    }

    .contactUsSecondCol h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 122%;
    }

    .contactUsSecondCol p {
        font-weight: 400;
        font-size: 12px;
        line-height: 150%;
    }

    .baseInput {
        background-color: rgba(10, 10, 10, 0);
        border: 1px solid #BEBEBE;
        border-radius: 40px;
        padding: 16px 20px;
        width: 100%;
        margin: 8px 0;
        color: white;
    }

    #quote_block p {
        font-weight: 400;
        margin-top: 8px;
    }

    #send_quote {
        background-color: var(--main-orange);
    }
}

@media (max-width: 400px) {
    #send_quote {
        font-size: 12px !important;
    }
}
