
.our-project.project-inner .process_tab_wrap{
    position: relative;
    border-bottom: 1px solid #E2E2E2;
    text-align: center;
}
.project-wrap{
    padding: 17px 15px 17px 0;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
}
.project-wrap .heading-18{
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 0;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
}
.project-wrap .heading-18 > img{
    width: 12px;
    position: relative;
    top: -2px;
}
.our-project.project-inner .project-grid{
    margin-bottom: 60px;
}
.project-grid.project-list-grid .project-item{
    position: relative;
}
.project-grid.project-list-grid .project-item .project-overlay{
    position: absolute;
    bottom:0;
    left:0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*transform: translate(0, 170px);*/
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;

    & p{
        color: var(--white);
        font-weight: 500;
        line-height: 1;
    }

    .price{
        font-family: 'Montserrat';
        font-size: 16px;
        font-weight: 600;
        color: var(--white);
    }
}

.project-grid.project-list-grid .project-item .project-overlay .button-group{
    max-width: 200px;
    margin: 0 auto;
    row-gap: 15px;
    justify-content: center;
    position: relative;
    left: 0;
    bottom: 0;
    opacity: 0;
    transform: scale(1.2);
     transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;

    & .button{
        min-width: 170px;
        padding: 10px 15px;
    }
}

.project-grid.project-list-grid .project-item  {

    .project-box{
        overflow: hidden;

        &::after {
            height: 0;
            background-image: linear-gradient(transparent 0, hsl(0deg 0% 0% / 80%));
         }
    }

    &:hover{
        .project-box{
            &::after{
                height: 100%;
            }

            .project-overlay{
                & .button-group {
                     transform: scale(1);
                     opacity: 1;
                }
                
            }
        }
    }
   
}




/* *********** || PROJECT DETAIL || *********** */

.project-wrapper .total-areas .areas-head{
    font-size: 18px;
    font-weight: 600;
}
/*.project-wrapper .total-areas .proj-detail{
    height: 432px;
}*/
/*.project-wrapper .button-group .button-outline{
    min-width: 185px;
}*/
.gallery-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.gallery-list li{
    margin-bottom: 0;
}
.gallery-list li a{
	position: relative;
	display: block;
	overflow: hidden;
}
.gallery-list li a:after{
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-image: linear-gradient(transparent 0, hsl(0deg 0% 0% / 80%));
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
}
.gallery-list li a:hover:after{
	height: 100%;
}
.gallery-list li a > img{
transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
}
.gallery-list li a:hover > img{
		transform: scale(1.1);
}

.project-case-study-wrapper .heading-40{
    max-width: 550px;
    margin: 0 auto 40px;
}
.other-project-js{
    display: block;
}

.project-case-js.slick-initialized{
    display: block;
}



.project-grid.project-list-grid .project-item .project-wrap .heading-18::after{
    content: "";
    position: absolute;
    right:0;
    top:4px;
    background:url(../../assets/images/arrow-white.png)no-repeat ;
    width: 9px;
    height: 16px;
    opacity: 0;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
}


@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 hsl(114deg 9% 57% / 50%);
    box-shadow: 0 0 0 0 hsl(114deg 9% 57% / 50%);
  }

  70% {
    -moz-box-shadow: 0 0 0 100px rgba(225, 128, 43, 0);
    box-shadow: 0 0 0 20px rgba(225, 128, 43, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(225, 128, 43, 0);
    box-shadow: 0 0 0 0 rgba(225, 128, 43, 0);
  }
}

.fancybox-content{
  height: 100% !important;
    width: 100% !important;
}

.gallery-list li a.video-col{
        position: relative;
    }
    .gallery-list li a.video-col:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: url(../../assets/images/play-button.png) no-repeat var(--primary) left 20px top 12px;
        width: 50px;
        height: 50px;
        margin: auto;
        right: 0;
        bottom: 0;
        border-radius: 100%;
        animation: pulse 3s infinite;

    }

    .projectspg .our-project .resp-tabs-container {margin-top: 80px;}


    


/*  ********** || START MEDIA QUERY || ********** */


@media screen and (min-width: 992px){
    .project-grid.project-list-grid .project-item:hover .project-wrap{
        background-color: var(--secondary);
    }
    .project-grid.project-list-grid .project-item:hover .project-wrap .heading-18::after{
        right:20px;
        opacity: 1;
    }
    .project-grid.project-list-grid .project-item:hover .project-wrap .heading-18{
        color: var(--white);
        transform: translate(17px, 0);
    }
    .project-grid.project-list-grid .project-item:hover .project-wrap .heading-18 img {
        filter: brightness(0) invert(1);
    }
    
}



@media screen and (max-width: 1439.98px){
    .gallery-list{gap: 20px;}
    .project-grid.project-list-grid .project-item .project-overlay .button-group{row-gap: 8px;}
}

@media screen and (max-width: 1199.98px){
    .project-wrapper .total-areas .proj-detail {
        height: auto;
    }
    .our-project.project-inner .project-grid {
        margin-bottom: 30px;
    }

    .gallery-list{gap: 10px;}
    .project-case-study-wrapper .heading-40{
        max-width: 100%;
        margin-bottom: 30px;
    }
    .projectspg .our-project .resp-tabs-container {margin-top: 50px;}

    .project-grid.project-list-grid .project-item .project-overlay .button-group {
        & .button {
            padding: 8px 15px;
            min-height: 40px;
        }
    }
}
@media screen and (max-width: 991.98px){
    .project-grid.project-list-grid .project-item .project-wrap .heading-18::after{
        content: none;
    }

    .project-grid .project-item .project-box {
        &::after {
            content:none;
        }
    }
}
@media screen and (max-width: 575.98px){
    .project-wrap .heading-18 > img{display: none;}
    .project-wrap{padding: 12px 0;}
    .project-wrap .heading-18{font-size: 14px;}
    .project-grid{grid-template-columns: repeat(1, 1fr);}

    .our-project.project-inner .process_tab_wrap{
    	overflow-y: scroll;
	  white-space: nowrap;
	  -webkit-overflow-scrolling: touch; /* smooth iOS scrolling */
	          padding-bottom: 18px;
	          scrollbar-width: thin; /* Firefox */
  scrollbar-color: #888 #f1f1f1;
    }
    .our-project.project-inner .process_tab_wrap ul{display: inline-flex;}

    /* Chrome, Safari, Edge */
.our-project.project-inner .process_tab_wrap::-webkit-scrollbar {
  height: 8px;
}

.our-project.project-inner .process_tab_wrap::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.our-project.project-inner .process_tab_wrap::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}


}
