ul.service-ul {
    list-style-type: none;
    margin: 0 -20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 45px;

    & li {
        padding: 0 20px;
        width: 33.33%;
        margin-bottom: 0;
    }

    & .service-li {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    & .service-li:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: transparent linear-gradient(180deg, #252B2B00 0%, #1D2121 100%) 0% 0% no-repeat padding-box;
        opacity: 0.7;
        z-index: 1;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
    }

    & .service-li:after {
        position: absolute;
        content: "";
        left: 0;
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 0%;
        background: transparent linear-gradient(180deg, #252B2B00 0%, #E4722B 100%) 0% 0% no-repeat padding-box;
        z-index: 1;
        border-radius: 6px;
        -moz-border-radius: 6px;
        -webkit-border-radius: 6px;
        opacity: 0;
        z-index: 1;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
    }

    & .service-img {
        position: relative;
        overflow: hidden;
    }

    & .service-img>img {
        position: relative;
        z-index: 0;
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
    }

    & .service-overlay {
        position: absolute;
        width: 100%;
        bottom: 0px;
        left: 0px;
        transition: all ease-out 0.3s !important;
        -webkit-transition: all ease-out 0.3s !important;
        -moz-transition: all ease-out 0.3s !important;
        -ms-transition: all ease-out 0.3s !important;
        z-index: 2;
        padding: 0px 40px 40px 64px;

        & .service-text {
            opacity: 0;
            -webkit-transition: -webkit-transform .35s;
            transition: transform .35s;
            -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
            height: 0;
        }
    }

    & .service-overlay:before {
        position: absolute;
        content: "";
        width: 1px;
        height: 50%;
        background-color: var(--white);
        left: 0;
        margin-left: 40px;
        top: 0;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
    }

    & .service-overlay:after {
        position: absolute;
        content: "";
        width: 5px;
        height: 50%;
        background-color: var(--white);
        left: 0;
        margin-left: 38px;
        top: auto;
        bottom: 0;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
    }

    & .service-box {
        -webkit-transition: -webkit-transform .35s;
        transition: transform .35s;
        -webkit-transform: translate3d(0, 0%, 0);
    }

    & .service-title {
        font-size: 34px;
        color: var(--white);
        font-weight: var(--font-weight-bold);
        font-family: var(--font-head-family);
        line-height: 1;
        -webkit-transition: -webkit-transform .35s;
        transition: transform .35s;
        -webkit-transform: translate3d(0, 0%, 0);
        width: calc(100% - 60px);
    }

    & .service-arrow {
        width: 56px;
        height: 56px;
        border: 2px solid var(--white);
        border-radius: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto 0;

        & i {
            color: var(--white);
            font-size: 25px;
        }
    }


    & .service-li:hover {
        & .service-img {
            &:before {
                background: transparent linear-gradient(180deg, #252B2B00 0%, #E4722B 100%) 0% 0% no-repeat padding-box;
                opacity: 0.7;
            }
        }

        & .service-img>img {
            transform: scale(1.2);
            -moz-transform: scale(1.2);
            -webkit-transform: scale(1.2);
            transition: all 0.5s ease-in-out;
            -webkit-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
        }

        & .service-title {
            -webkit-transition: -webkit-transform .35s;
            transition: transform .35s;
            -webkit-transform: translate3d(0, 1%, 0);
        }

        & .service-text {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            height: 100%;
            -webkit-transition: -webkit-transform .35s;
            transition: transform .35s;
            opacity: 1;
            margin-top: 8px;
            width: calc(100% - 60px);
            color: var(--white);
            font-size: 16px;
            line-height: 1.5;
            font-weight: var(--font-weight-medium);
        }

        &:before {
            opacity: 0;
            transition: all 0.5s ease-in-out;
            -webkit-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
        }

        &:after {
            opacity: 0.7;
            height: 100%;
            transition: all 0.5s ease-in-out;
            -webkit-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
        }

        & .service-arrow {
            background-color: var(--white);

            & i {
                color: var(--primary);
            }
        }

        & .service-overlay {
            padding-bottom: 20px;
        }
    }
}
.sec-servicelist ul.service-ul li{
    margin-bottom:40px;
}
.sec-servicelist ul.service-ul{
    padding-bottom:0;
    margin-bottom:-40px;
}
.service-slider ul.service-ul
{
     & li:not(:nth-child(-n + 3)){
        display:none;
     }
}

.ctent-img iframe
{
	 height:570px;
}
/* RESPONSIVE  MEDIA QUERY */

@media(max-width:1599.98px) {

    /**/
    ul.service-ul {
        margin: 0 -10px;
        padding-bottom: 45px;

        & li {
            padding: 0 10px;
            width: 33.33%;
        }
    }

    .sec-servicelist ul.service-ul{
        margin-bottom:-20px;
    }
    .sec-servicelist ul.service-ul li {
        margin-bottom: 20px;
    }
}

@media (max-width: 1439.98px) {

    /**/
    ul.service-ul {
        & .service-overlay {
            padding: 0px 20px 25px 30px;
        }

        & .service-overlay:before {
            margin-left: 18px;
        }

        & .service-overlay:after {
            margin-left: 16px;
        }

        & .service-arrow {
            width: 40px;
            height: 40px;
        }

        & .service-title {
            width: calc(100% - 40px);
            font-size: 30px;
        }
    }

    
}

@media (max-width: 1199.98px) {

    /**/
    ul.service-ul {
        margin: 0 -5px;

        & li {
            padding: 0 5px;
            width: 33.33%;
        }

        & .service-title {
            font-size: 25px;
            width: calc(100% - 40px);
        }

        & .service-arrow {
            width: 34px;
            height: 34px;

            & i {
                font-size: 20px;
            }
        }
    }

     .sec-servicelist ul.service-ul{
        margin-bottom:-10px;
    }
    .sec-servicelist ul.service-ul li {
        margin-bottom: 10px;
    }
}

@media (max-width: 991.98px) {
    ul.service-ul {
        & li {
            width: 50%;
            line-height: 1;
        }
    }

    .service-slider ul.service-ul
    {
        & li:not(:nth-child(-n + 2)){
            display:none;
        }
    }
}

@media (max-width: 767.98px) {
    ul.service-ul {
        & .service-arrow {
            width: 26px;
            height: 26px;

            & i {
                font-size: 16px;
            }
        }

        & .service-title {
            font-size: 22px;
            width: calc(100% - 30px);
        }

        & .service-li:hover {
            & .service-text {
                width: calc(100% - 10px);
            }
        }
    }
}

@media (max-width: 575.98px) {
    ul.service-ul {
        padding-bottom: 35px;

        & li {
            width: 100%;
        }

        & .service-arrow {
            & i {
                font-size: 14px;
            }
        }
    }
    .service-slider ul.service-ul
    {
        & li:not(:nth-child(-n + 1)){
            display:none;
        }
    }
			.ctent-img iframe
		{
				height:400px;
		}
}