.consultation {
    padding-top: 100px;
}
.consultation-content {
    display: flex;
    flex-wrap: wrap;
}

.consultation-contancts-wrapper {
    background-color: #0F172A;
    flex: 40%;
    max-width: 40%;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.consultation-contancts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 270px;
}

.consultation-contancts-header {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: #FFFFFF;
}

.consultation-contancts-description {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #FFFFFF;
    padding-top: 8px;
}

.consultation-contancts-email {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    color: #FFFFFF;
    padding-top: 48px;
}

.consultation-contancts-phones {
    display: flex;
    padding-top: 24px;
}

.consultation-contancts-insta {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    color: #FFFFFF;
    padding-top: 24px;
}

.consultation-contancts-phone-numbers {
    display: flex;
    flex-direction: column;
}

.consultation-contancts-phone-symbol {
    padding-right: 12px;
}

.consultation-contancts-phone {

    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
    color: #FFFFFF;
    padding-bottom: 8px;
}

.consulation-ask-wrapper {    
    flex: 60%;
    max-width: 60%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.consulation-ask-header {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    color: #081F32;
}

.consulation-ask-description {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: #081F32;
    padding-top: 4px;
}

.consulation-ask-inputs {
    padding-top: 24px;
    display: flex;
}

.consulation-ask-action-btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-top: 40px;
    padding: 16px;
    text-align: center;
    color: white;
    background-color: #DB522A;
    border-radius: 5px;
    width: 100%;
    height: 52px;
    cursor: pointer;
}


@media only screen and (max-width: 767px) {

    .consultation-content {
        flex-direction: column;
    }

    .consulation-ask-wrapper {    
        flex: 100%;
        max-width: 100%;
    }

    .consultation-contancts-wrapper {
        background-color: #0F172A;
        flex: 100%;
        max-width: 100%;
        padding: 32px 56px;
    }

    .consulation-ask-wrapper {
        padding-top: 80px;
    }
    
    .consulation-ask-inputs {
        flex-direction: column;
        gap: 8px;
    }
}