.service-banner{
    position:relative;
    min-height:500px;

    background:url('assets/images/service-banner.jpg') center center/cover no-repeat;

    display:flex;
    align-items:center;
    overflow:hidden;
}

.service-banner .banner-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,15,30,.88) 0%,
        rgba(8,15,30,.75) 40%,
        rgba(8,15,30,.45) 70%,
        rgba(8,15,30,.25) 100%
    );
}

.service-banner .container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

.service-banner .banner-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.service-banner .banner-content{
    flex:1;
    max-width:650px;
}

.service-banner .breadcrumb{
    display:inline-block;
    color:#d4af37;
    font-size:15px;
    font-weight:500;
    margin-bottom:18px;
}

.service-banner .banner-content h1{
    font-size:58px;
    color:#fff;
    line-height:1.15;
    margin-bottom:22px;
    font-weight:700;
}

.service-banner .banner-content p{
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.9;
}

.service-banner .banner-image{
    flex:0 0 420px;
    text-align:right;
}

.service-banner .banner-image img{
    width:100%;
    max-width:420px;
    display:block;

    border-radius:24px;

    border:6px solid rgba(255,255,255,.12);

    box-shadow:
    0 20px 50px rgba(0,0,0,.30);

    transition:.4s ease;
}

.service-banner .banner-image img:hover{
    transform:translateY(-8px);
}

/* Tablet */

@media(max-width:992px){

    .service-banner{
        min-height:auto;
        padding:80px 0;
    }

    .service-banner .banner-wrapper{
        gap:40px;
    }

    .service-banner .banner-image{
        flex:0 0 320px;
    }

    .service-banner .banner-content h1{
        font-size:42px;
    }

}

/* Mobile */

@media(max-width:768px){

    .service-banner .banner-wrapper{
        flex-direction:column-reverse;
        text-align:center;
    }

    .service-banner .banner-content{
        max-width:100%;
    }

    .service-banner .banner-image{
        flex:none;
        text-align:center;
    }

    .service-banner .banner-image img{
        max-width:280px;
        margin:auto;
    }

    .service-banner .banner-content h1{
        font-size:34px;
    }

    .service-banner .banner-content p{
        font-size:15px;
        line-height:1.8;
    }

}

@media(max-width:480px){

    .service-banner .banner-image img{
        max-width:220px;
    }

    .service-banner .banner-content h1{
        font-size:28px;
    }

}