
#service-section {
    padding: 30px 0px;
    position: relative;
}
#service-section:before {
    content: '';
    background-image: url(../images/service-section-before.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 50%;
    position: absolute;
    top: 150px;
    left: 0px;
    opacity: 0.25;
    filter: grayscale(100%);
}


#service-section .container-xxl{
   position: relative;
   z-index: 10;
}


#service-section .box-text h1{
   font-size: 150px;
   line-height: 154px;
   text-shadow: 4px 3px 2px rgb(0 0 0 / 68%);
   -webkit-text-stroke: 1px #ffffff;
   -webkit-text-fill-color: #0000ff;
}

#service-section .box-text h2{
 margin-bottom: 60px;
 color: #444444;
}

#service-section .box-text h3{
 margin-bottom: 60px;
 color: #0000ff;
}



.item-service {

    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.item-service:hover {

    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.item-service .service-img {
    overflow: hidden;
}
.item-service .service-img img {
       filter: brightness(1);
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.item-service:hover .service-img img {
       filter: brightness(1.75);
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.item-service .service-text {
  padding: 15px;
}

.item-service .service-text h4{
  font-size: 18px;
  line-height: 24px;
  color: #444444;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -khtml-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


.item-service:hover .service-text h4{

  color: #00468c;
  -webkit-transition: all 0.3s ease-in-out;
  -khtml-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  
}



@media (min-width: 992px) {
    #service-section{
        padding: 50px 0px;
    }

    #service-section:before {
        clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 80%);
        width: 60%;
        height: 80%;
        top: 150px;
        left: 0px;
    }

    #service-section:after {
        content: '';
        background: #e8e8e8;
        width: 53%;
        height: 65%;
        position: absolute;
        top: 200px;
        right: 0px;
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        z-index: -1;
    }


    .item-service .service-img {
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        overflow: hidden;
    }
}