.sectionBanner{
    width: 100%;
    height: 60dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    background: url('/image/aboutImg1_3.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    text-align: center;
}

.sectionBanner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(15, 23, 43,0.85);
    z-index: -1;
}
.sectionBanner .content{
    text-align: center;
}
.sectionBanner .content h2{
    font-size: 5rem;
    color: white;
    margin-bottom: 3rem;
}

.sectionBanner .content p{
    text-align: center;
    color: white;
}
.sectionBanner .content p span{
    padding: .5rem;
}
.sectionBanner .content p span:nth-child(1),
.sectionBanner .content p span:nth-child(3){
    color: var(--yellow);
}
.sectionBanner .content p span:nth-child(2),
.sectionBanner .content p span:nth-child(4){
    color: #8d8c8c;
}



/* --------------- SERVICE SECTION ----------------------------- */
.service .container .serviceBox{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    }
    
    
    .service .container .serviceBox .serviceDetail{
        background: white;
        padding:3rem 2rem;   
        box-shadow: rgba(0, 0, 0, 0.05) 0px 25px 50px -12px;
        transition: all .2s  ease;
    }
    .service .container .serviceBox .serviceDetail .icon{
        text-align: center;
        color: var(--yellow);
        font-size: 6rem;
    }
    .service .container .serviceBox .serviceDetail .header{
        font-size: 2rem;
       margin: 1rem 0 1.5rem;
        font-weight: 600;
        color: var(--blackBlue);
    }
    .service .container .serviceBox .serviceDetail .detail{
        color: var(--gray2);
    }
    
    .service .container .serviceBox .serviceDetail:hover{background: var(--yellow); color: white !important; transform: translateY(-10px);}
    .service .container .serviceBox .serviceDetail:hover .icon{ color: white !important;}
    .service .container .serviceBox .serviceDetail:hover .header{ color: white !important;}
    .service .container .serviceBox .serviceDetail:hover .detail{ color: white !important;}
    


@media screen and (max-width:991px){
    .service .container .serviceBox{
        grid-template-columns: auto auto auto;
    }

}
@media screen and (max-width:768px){
    .service .container .serviceBox{
        grid-template-columns: repeat(2,1fr);
    }

}

@media screen and (max-width:480px){
   /* Service Style */
   .service .container .serviceBox{
    grid-template-columns: 1fr;
    }

}