#consultation {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: .75em 0 !important;
}

#consultation .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
}

#consultation .container .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #283250;
    padding: 0;
    margin: 0 20px;
}

#consultation .container .content .text-section {
    width: calc(100% - 10px);
    padding: 16px;
}

#consultation .container .content .text-section .title {
    text-align: center;
}

#consultation .container .content .text-section .title h2 {
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: normal !important;
    color: #fff;
}

#consultation .container .content .text-section .title h2 span.orange {
    display: block;
    font-size: 32px !important;
    font-weight: 600  !important;
    color: #ff8c00;
}

#consultation .container .content .photo-section {
    width: 100%;
    height: 100%;
    position: relative;
}

#consultation .container .content .photo-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

#consultation .container a.button-orange.cta {
    position: relative;
    bottom: 30px;
    width: auto;
    max-width: unset;
    text-decoration: none;
    padding: 0 30px;
}

#consultation .container a.button-orange.cta:hover {
    background: #ff8c00;
    cursor: pointer;
}

@media (max-width: 1050px) {
    #consultation .container .content {
        flex-direction: column;
    }

    #consultation .container .content .photo-section {
        height: auto;
    }
}

@media (max-width: 750px) {
    #consultation .container .content .text-section .title h2 {
        font-size: 40.5px !important;
        line-height: 57px !important;
    }

    #consultation .container .content .text-section .title h2 span.orange {
        font-size: 24px;
    }

    #consultation .container a.button-orange.cta {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    #consultation .container .content .text-section .title h2 {
        font-size: 27px !important;
        margin: 0.4em 0 !important;
        line-height: 37px !important;
    }

    #consultation .container .content .text-section .title h2 span.orange {
        font-size: 16px;
    }

    #consultation .container a.button-orange.cta {
        padding: 0 15px;
        height: 50px;
        font-size: 14px;
    }
}