/* =========================================================
   CONSULTATION BANNER
========================================================= */

.consultation-banner {
    position: relative;

    width: 100%;
    min-height: 400px;

    margin-bottom: 50px;

    box-sizing: border-box;


}


/* =========================================================
   BACKGROUND
========================================================= */

.consultation-banner-bg {

    border-radius: 12px;

    background: radial-gradient(84.02% 84.02% at 50% 15.98%,
            #0C6AA5 0%,
            #021927 100%);
    ;
    position: relative;
}


/* =========================================================
   CONTENT
========================================================= */

.consultation-banner-content {
    position: relative;
    z-index: 2;

    width: 45%;

    padding: 60px 0 60px 60px;

    box-sizing: border-box;
}


.consultation-banner h2 {
    margin: 0 0 18px;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 500;
    color: #fff;
}


.consultation-banner p {

    margin: 0 0 40px;

    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;

    color: #fff;
}


/* =========================================================
   IMAGE
========================================================= */


.consultation-banner-image {
    position: absolute;
    right: 120px;
    bottom: 0;
    height: 120%;
    z-index: 3;
}


.consultation-banner-image img {
    display: block;

    width: auto;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .consultation-banner {
        min-height: 520px;
    }

    .consultation-banner-content {
        width: 60%;

        padding: 110px 0 70px 70px;
    }

    .consultation-banner h2 {
        font-size: 40px;
    }

    .consultation-banner p {
        max-width: 520px;
    }

    .consultation-banner-image {
        right: 0;

        height: 95%;
    }
}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 900px) {

    .consultation-banner {
        min-height: 480px;
    }

    .consultation-banner-bg {
        height: 88%;
    }

    .consultation-banner-content {
        width: 65%;

        padding: 90px 0 60px 50px;
    }

    .consultation-banner h2 {
        font-size: 36px;
    }

    .consultation-banner p {


        margin-bottom: 30px;
    }

    .consultation-banner-image {
        height: 85%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .consultation-banner {
        min-height: auto;

        padding-bottom: 0;
    }

    .consultation-banner-bg {
        position: relative;

        height: auto;
        min-height: 500px;

        border-radius: 10px;
    }

    .consultation-banner-content {
        width: 100%;

        padding: 60px 30px 300px;
    }

    .consultation-banner h2 {
        font-size: 30px;
    }

    .consultation-banner p {


        line-height: 1.5;

        margin-bottom: 25px;
    }

    .consultation-banner-image {
        height: 280px;

        right: 50%;

        transform: translateX(50%);
    }

    .consultation-banner-image img {
        height: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .consultation-banner-bg {
        min-height: 460px;
    }

    .consultation-banner-content {
        padding: 50px 20px 270px;
    }

    .consultation-banner h2 {
        font-size: 27px;
    }



    .consultation-banner-image {
        height: 250px;
    }
}