/** HEADER **/
section.banner-section {
    font-family: "Poppins", sans-serif;
    background-image: url('images/new-bg-desktop.png');

    button:focus {
        outline: none;
    }

    .banner-left-content {
        text-align: left;
    }

    a {
        /*color: #1f1f1f;*/
        text-decoration: none !important;
        outline: none !important;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }


    .inner-banner {
        padding: 50px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .banner-rounded-image {
        width: 410px;
        height: 410px;
        min-width: 410px;
        min-height: 410px;
        border-radius: 100%;
        border: 8px solid #fff;
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }

    .container-fluid {
        max-width: 1220px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .banner-left-content h1 {
        font-size: 140px;
        font-weight: bold;
        line-height: 180px;
        padding-top: 70px;
        padding-bottom: 0px;
    }

    .banner-rounded-image img {
        object-fit: cover;
        width: 100%;
    }

    .banner-left-content h3 {
        font-size: 32px;
        font-weight: bold;
        margin: 0px 0 20px;
    }

    .banner-left-content p {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    a.link-btn {
        font-size: 18px;
        background: #000;
        color: #fff;
        padding: 16px 48px;
        display: inline-block;
        text-transform: capitalize;
        border-radius: 10px;
        /*text-decoration: underline !important;*/
    }

    .banner-left-content h3 {
        font-size: 32px;
        font-weight: bold;
        margin: 0px 0 20px;
    }

    @media only screen and (max-width: 1024px) {
        .banner-rounded-image {
            width: 350px;
            height: 350px;
            min-width: 350px;
            min-height: 350px;
        }

    }
    @media only screen and (max-width: 767px) {
        .banner-rounded-image {
            width: 250px;
            height: 250px;
            min-width: 250px;
            min-height: 250px;
        }

        .inner-banner {
            flex-wrap: wrap;
            justify-content: center;
        }

        .banner-left-content {
            text-align: center;
            margin-bottom: 52px;
        }

        .banner-left-content h1 {
            font-size: 64px;
            line-height: 85px;
        }

        .banner-left-content h3 {
            font-size: 24px;
        }
    }
}
