.service-grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
 }
.service-grid .tm-sc-icon-box {
    padding: 40px 50px 50px 50px;
    background-color: #F8F5F1;
    border-radius: 10px 10px 10px 10px;
}
.service-grid > div:last-child{
    grid-column: 3 / 5;
    grid-row: 2 / 2;
} 
.service-grid > div:first-child .title {
    font-family: "Montserrat", Sans-serif;
    font-size: 40px;
    font-weight: 700;
}
.service-grid > div:first-child{
    margin-bottom:0
}

/*PROJECT LIST*/
.projects-list{
    background: rgba(224, 224, 224,0.2)
}
.projects-pagination,
.projects-text{
    max-width: 1230px;
    margin: 0 auto 60px auto;
    padding: 0 15px;
}
.project__item{
    max-width: 1230px;
    margin: 0 auto;
    padding: 40px 15px 120px 15px;
    display: grid;
    grid-template-columns: 1fr 40%;
    grid-column-gap: 112px;
    align-items: flex-start;
    position: relative;
}
.project__item:after{
    content: '';
    width: 100vw;
    display: block;
    position: absolute;
    left: calc((-100vw + 100%)/2);
    bottom: 0;
    height: 80px;
    background: #fff;
}
.project__item .item__type{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 27px;
    border-bottom: 1px solid #006aff;
}
.project__item .item__type span{
    font-size: .875rem;
    color: #939393;
    font-weight: 700;
    line-height: 1.28;
    text-transform: uppercase;
    margin-bottom: 3px;
    display: block;
}
.project__item .item__type span:last-child{
    color:#343434;
    text-transform: none;
}
.project__item .item__title{
    color: #343434;
    font-size: 2.25rem;
    line-height: 1.333;
    font-weight: 700;
    margin-bottom: 29px;
}
.project__item .item__desc{
    color:#343434;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.67;
}
.project__item .item__desc p{
    margin-top: 0;
    margin-bottom: 1rem;
}
.project__item:nth-child(2n){
    grid-template-columns: 40% 1fr;
}
.project__item:nth-child(2n) .item__image{
    order: -1;
}
.project__item img{
    border-radius:20px
}
.project__item:last-child:after{
    display: none;
}
/*PROJECT LIST*/


@media(max-width:992px){
    .service-grid{
        grid-template-columns: repeat(3,1fr);
     }
    .service-grid > div:last-child,
    .service-grid > div:first-child{
        grid-column: 1 / 4;
        grid-row: auto;
    }
    .project__item,
    .project__item:nth-child(2n){
        grid-template-columns: 1fr;
        padding: 20px 20px 120px 20px;
    }
    .project__item:nth-child(2n) .item__image{
        order: 1;
    }
}
@media(max-width:768px){
    .service-grid{
        grid-template-columns: 1fr;
     }
    .service-grid > div:last-child,
    .service-grid > div:first-child{
        grid-column: auto;
    }
}
@media(max-width:500px){
    .project__item .item__type{
        grid-template-columns: 1fr;
    }
}
 
 .service-item-current-style5 .services-three__single .services-three__img {
     position: relative;
     display: block;
     border-radius: 10px;
     overflow: hidden;
     z-index: 1;
 }
 .service-item-current-style5 .services-three__single .services-three__img::before {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     content: "";
     background: #16243d;
     background: linear-gradient(0deg,rgba(22,36,61,0.9164040616) 14%,rgba(22,36,61,0.0368522409) 58%);
     z-index: 1;
 }
 .service-item-current-style5 .services-three__single .services-three__img img {
     width: 100%;
     border-radius: 10px;
     transition: all 500ms ease;
 }
 .service-item-current-style5 .services-three__single .services-three__img .services-three__content {
     position: absolute;
     bottom: 25px;
     left: 30px;
     z-index: 2;
 }
 .service-item-current-style5 .services-three__single .services-three__img:after {
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     content: "";
     background-color: rgba(22,36,61,.3);
     transition: all 500ms ease;
     transform: translate3d(0px,-100%,0px);
 }
 .service-item-current-style5 .services-three__single .services-three__img .services-three__content .title {
     font-size: 20px;
     line-height: 24px;
 }
 .service-item-current-style5 .services-three__single .services-three__img .services-three__content .title a {
    color: #fff;
    transition: all 500ms ease;
}
.service-item-current-style5 .services-three__single:hover .services-three__img:after {
    transform: translate3d(0px,0,0px);
}
.service-item-current-style5 .services-three__single:hover .services-three__img img {
    transform: scale(1.05);
}