/* 
 * Global Slider CSS 
 * */

.slick-slider{
	opacity: 0;
	visibility: hidden;
	cursor: grab;
}

.slick-slider.slick-initialized{
	opacity: 1;
	visibility: visible;
}

.slider .slick-list{
	margin: 0 -15px;
}

.slider .slick-slide{
	margin: 15px;
}

.slider .slick-arrow{
	position: absolute;
	top: -100px;
	left: auto;
	right: 0;
	display: flex;
	align-items: center;	
	justify-content: center;
	border: none;
	padding: 0;
	width: 66px;
	height: 46px;
	transition: all 0.3s ease-in-out;
	z-index: 10;
}

.slider .slick-arrow.next-arrow{
	right: 56px;
	justify-content: flex-start;
	background-color: var( --e-global-color-primary );
	color: var( --e-global-color-accent );
	color: var( --white-color );
	padding-left: 16px;
	clip-path: path("M0 0H66L46 46H0V0Z");
}

.slider .slick-arrow.prev-arrow{
	justify-content: flex-end;
	padding-right: 16px;
	clip-path: path("M66 0H20L0 46H66V0Z");
}

.slider .slick-arrow:hover{
	background-color: var( --e-global-color-primary );	
}

.slider .slick-arrow.next-arrow:hover{
	background-color: var( --e-global-color-accent );
}

.slider .slick-arrow svg{
	width: 20px;
	height: 20px;
}

@media only screen and (max-width: 1024px){
	
	.slick-slider.slick-initialized{
		padding-bottom: 100px;
	}
	
	.slider .slick-arrow{
		--left-right-arrow: calc(50% - 5px);
		top: auto;
		bottom: 0;
		left: auto;
		right: var(--left-right-arrow);
	}
	
	.slider .slick-arrow.next-arrow{
		right: var(--left-right-arrow);
	}
	
	.slider .slick-arrow.prev-arrow{
		right: auto;
		left: var(--left-right-arrow);
	}
}

@media only screen and (max-width: 767px){
	
	.slick-slider.slick-initialized {
        padding-bottom: 70px;
    }
	
	.slider .slick-arrow{
		width: 50px;
    	height: 35px;
	}
	
	.slider .slick-arrow.prev-arrow{
		right: calc(50% - 45px);
		padding-right: 12px;
		clip-path: path("M50 0H15.1515L4.76837e-07 35H50V0Z");
	}
	
	.slider .slick-arrow.next-arrow{
		left: calc(50% - 45px);
		padding-left: 12px;
		clip-path: path("M0 0H50L34.8485 35H0V0Z");
	}
	
	.slider .slick-arrow svg {
		width: 16px;
		height: 16px;
	}
}


/* 
 * Icon Box CSS 
 * */

.services-icon-box-carousel-wrap{
	overflow-x: clip;
}

.service-box{
	background-color: var(--white-color);
	box-shadow: 0px 0px 15px 0px rgb(from var(--e-global-color-primary) r g b / 10%);	
}

.service-box.service-style-two{
	padding: 10px;
}

.service-image img{
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
}

.service-style-two .service-image img{
	aspect-ratio: 1 / 0.75;
}

.service-box-content{
	padding: 30px 20px 20px;
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 25px;
}

.service-style-one .service-box-content{
	padding: 0 30px 30px;
}

.content-header{
	display: flex;
	flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.service-style-one .content-header{
	gap: 10px;
	flex-direction: row-reverse;
}

.content-header .service-box-icon{	
	position: relative;
	display: flex;
    align-items: center;
	justify-content: center;
	background-color: var(--e-global-color-accent);
	color: var(--white-color);
	border-bottom: 5px solid var(--e-global-color-primary);
	width: 100px;
	height: 100px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.service-style-two .content-header .service-box-icon{
	border-bottom: 0px;
	width: 68px;
	height: 68px;
}

.service-box:hover .content-header .service-box-icon{
	border-color: var(--e-global-color-accent);
}

.content-header .service-box-icon:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--e-global-color-primary);
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.service-box:hover .content-header .service-box-icon:before{
	transform: scale(1.1);
}

.content-header .service-box-icon .icon-wrapper{
	position: relative;
	z-index: 1;
}

.content-header .service-box-icon .icon-wrapper,
.content-header .service-box-icon .icon-wrapper svg{
	width: 50px;
	height: 50px;
	transition: all 0.3s ease-in-out;
}

.service-style-two .content-header .service-box-icon .icon-wrapper,
.service-style-two .content-header .service-box-icon .icon-wrapper svg{
	width: 36px;
	height: 36px;
}

.service-style-one .service-box-icon{
	margin-top: -40px;
}

.service-style-one .content-header .service-title{
	width: calc(100% - 110px);
	padding-top: 30px;
}

.service-style-two .content-header .service-title{
	width: calc(100% - 88px);
}

.service-box-content .elementor-widget-heading .elementor-heading-title{
	font-size: 30px;
}

.service-box-content .service-desc{
	margin-bottom: 0;
}

.service-box-content .service-btn{
	padding: 0;
    background: transparent;
	color: var(--e-global-color-accent);
    text-align: left;
}

.service-box-content .service-btn svg{
	width: 16px;
	height: auto;
	fill: var(--e-global-color-accent);
	margin-left: 10px;
	margin-bottom: -1.5px;
}


/* Not Slider CSS */

.services-icon-disable-slider{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 30px;
}

.services-icon-disable-slider .slick-slide{
	width: calc(33.33% - 20px);
	display: block;
	margin: 0;
}


@media only screen and (max-width: 1024px){
	
	.service-box-content{
		gap: 20px;	
	}
	
	.content-header .service-box-icon{
		width: 80px;
    	height: 80px;
	}
	
	.slick-slide.slick-current.slick-active .service-box .content-header .service-box-icon:before{
		transform: scale(1.1);
	}
	
	.slick-slide.slick-current.slick-active .service-box .content-header .service-box-icon{
		border-color: var(--e-global-color-accent);
	}
	
	.content-header .service-box-icon .icon-wrapper, 
	.content-header .service-box-icon .icon-wrapper svg{
		width: 40px;
		height: 40px;
	}
	
	.service-style-one .content-header .service-title{
		width: calc(100% - 90px);
	}
	
	.service-box-content .elementor-widget-heading .elementor-heading-title{
		font-size: 26px;
	}
	
	/* Not Slider CSS */

	.services-icon-disable-slider .slick-slide{
		width: calc(50% - 15px);
	}
	
}

@media only screen and (max-width: 767px){
	
	.service-box-content{
		padding: 20px 10px 10px;
	}
	
	.service-style-one .service-box-content{
		padding: 0 20px 20px;
	}
	
	.service-style-one .content-header .service-title{
		padding-top: 20px;
	}
	
	.service-box-content .elementor-widget-heading .elementor-heading-title {
        font-size: 24px;
    }
	
	.service-box-content .service-btn svg{
		width: 14px;
		margin-left: 8px;
		margin-bottom: -1px;
	}
	
	
	/* Not Slider CSS */
	
	.services-icon-disable-slider{
		display: block;
		gap: 0;
	}
	
	.services-icon-disable-slider .slick-list{
		margin: 0 -15px;
	}
	
	.services-icon-disable-slider .slick-slide{
		margin: 10px 15px;
		width: auto;
	}
	
	
}


/* 
 * Services Info Box Carousel CSS 
 * */

.services-info-box-carousel .slick-track{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	align-items: stretch;
}

.services-info-box-carousel .slick-slide{
	height: auto;
}

.service-card-box{
 	height: 100%;
}

.service-card-box{
	position: relative;
	padding: 100px 30px 30px;
	z-index: 1;
	box-shadow: 0px 0px 15px 0px rgb(from var(--e-global-color-primary) r g b / 10%);	
}

.service-card-box:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(from var(--e-global-color-primary) r g b / 70%);
	width: 100%;
	height: 100%;	
	z-index: -1;
}

.service-card-box:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white-color);
	width: 100%;
	height: 100%;
	transition: all 0.5s ease-in-out;
	transform: scale(1);
	z-index: -1;
}

.service-card-box:hover:after{
	transform: scale(0);
}

.service-card-box .number{
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-color: var(--dark-color);
	width: 50px;
	height: 50px;
	overflow: hidden;
	z-index: 1;
}

.service-card-box .number:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--e-global-color-accent);
	width: 100%;
	height: 100%;
	transition: all 0.6s ease-in-out;
	transform: scale(0);
	z-index: 0;
}

.service-card-box:hover .number:before{
	transform: scale(1.1);
}

.service-card-box .number h4{
	position: relative;
	font-size: 24px;
	margin-bottom: -3px;
	color: var(--white-color);
	z-index: 1;
}

.service-card-box .service-content{
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 25px;
}

.service-content .service-box-icon .icon-wrapper,
.service-content .service-box-icon .icon-wrapper svg{
	width: 70px;
	height: 70px;
}

.service-content .service-box-icon .icon-wrapper svg{
	color: var(--e-global-color-primary);
	transition: all 0.3s ease-in-out;
}

.service-card-box:hover .service-content .service-box-icon .icon-wrapper svg,
.service-card-box:hover .service-content .service-title h3,
.service-card-box:hover .service-content .service-desc,
.service-card-box:hover .service-content .info-btn a{
	color: var(--white-color);
}

.service-card-box .service-content .service-title h3{
	font-size: 30px;
	margin-bottom: -5px;
	transition: all 0.4s ease-in-out;
}

.service-card-box .service-content .service-desc{
	transition: all 0.4s ease-in-out;
}

.service-card-box .service-content .info-btn a{
	color: var(--e-global-color-accent);
	background-color: transparent;
	transition: all 0.4s ease-in-out;
	padding: 0;
}

.service-card-box .service-content .info-btn a svg{
	width: 16px;
	height: 16px;
	margin-left: 10px;
    margin-bottom: -1px;
	fill: var(--e-global-color-accent);
	transition: all 0.4s ease-in-out;
}

.service-card-box:hover .service-content .info-btn a svg{
	fill: var(--white-color);
}

@media only screen and (max-width: 1024px){
	
	.service-content .service-box-icon .icon-wrapper, 
	.service-content .service-box-icon .icon-wrapper svg {
		width: 60px;
		height: 60px;
	}
	
	.service-card-box .service-content .service-title h3{
		font-size: 26px;
	}
}


@media only screen and (max-width: 767px){
	
	.service-card-box{
		padding: 80px 20px 20px;
	}
	
	.service-card-box .service-content{
		gap: 20px;
	}
	
	.service-content .service-box-icon .icon-wrapper, 
	.service-content .service-box-icon .icon-wrapper svg {
		width: 50px;
    	height: 50px;
	}
	
	.service-card-box .service-content .service-title h3{
		font-size: 24px;
	}
}





/* 
 * Services Info Box Carousel CSS 
 * */

.services-list-carousel .slick-track{
	display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: stretch;
}

.services-list-carousel .slick-slide{
	height: auto;
}

.services-list-carousel .service-box{
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
	padding: 20px;
	height: 100%;
}

.services-list-carousel .service-box .service-box-content{
	padding: 0;
	margin-bottom: 20px;
}

.services-list-carousel .service-box .content-header .service-title{
	width: calc(100% - 40px);
}

.services-list-carousel .service-box .content-header .button{
	display: flex;
    align-items: center;
    justify-content: center;
	color: var(--e-global-color-accent);
	width: 20px;
	height: 20px;
	transition: all 0.3s ease-in-out;
}

.services-list-carousel .service-box .content-header .button:hover{
	color: var(--e-global-color-primary);
}

.services-list-carousel .service-box .content-header .button svg{
	width: 16px;
	height: 16px;
}

.services-list-carousel .service-box .content-body .service-desc ul{
	list-style: none;
	padding: 0;
}

.services-list-carousel .service-box .content-body .service-desc ul:not(:last-child){
	margin: 0 0 .9rem;
}

.services-list-carousel .service-box .content-body .service-desc ul li{
	position: relative;
	padding-left: 30px;
}

.services-list-carousel .service-box .content-body .service-desc ul li:not(:last-child){
	margin-bottom: 14px;
}

.services-list-carousel .service-box .content-body .service-desc ul li:before{
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	background: url("../images/check.svg") no-repeat center left;
	background-size: contain;
	width: 16px;
	height: 16px;
}

.services-list-carousel .service-box .service-image img{
	aspect-ratio: 1 / 0.7;	
}


@media only screen and (max-width: 1024px){
	
	
}


@media only screen and (max-width: 767px){
	
	.services-list-carousel .service-box{
		padding: 15px;
	}
}


/* 
 * Services Info Box Carousel CSS 
 * */

.services-cta-carousel-wrap{
	overflow-x: clip;
}

.services-cta-carousel .slick-list{
	padding: 0 19% 0 0 !important;
}

.services-cta-carousel.slider .slick-slide{
	margin: 0 15px;
}

.services-cta-carousel .service-cta{
	position: relative;
	display: flex;
    align-items: flex-end;
	height: 500px;
	z-index: 1;
}

.services-cta-carousel .service-cta:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 58.83%, var(--dark-color) 100%);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.services-cta-carousel .service-cta .cta-content{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
	width: 100%;
    padding: 30px;
}

.services-cta-carousel .service-cta .cta-content .service-title{
	width: calc(100% - 30px);
}

.services-cta-carousel .service-cta .cta-content .service-title h3{
	font-size: 30px;
	color: var(--white-color);
}

.services-cta-carousel .service-cta .cta-content .button{
	display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.services-cta-carousel .service-cta .cta-content .button:hover{
	color: var(--white-color);
}

.services-cta-carousel .service-cta .cta-content .button svg {
    width: 16px;
    height: 16px;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.services-cta-carousel .service-cta:hover .cta-content .button svg{
	transform: scale(1);
}

.services-cta-carousel.slider .slick-arrow.next-arrow{
	right: calc(((100vw - 1320px) / 2) + 48px);
}

.services-cta-carousel.slider .slick-arrow.prev-arrow{
	right: calc(((100vw - 1320px) / 2) - 8px);
}

@media only screen and (max-width: 1024px){
	
	.services-cta-carousel .slick-list{
		padding: 0 15% !important;
	}
	
	.services-cta-carousel .service-cta{
		height: 450px;
	}
	
	.services-cta-carousel .service-cta .cta-content .service-title h3 {
		font-size: 26px;
	}
	
	.services-cta-carousel.slider .slick-arrow.prev-arrow{
		right: auto;
	}

	.services-cta-carousel.slider .slick-arrow.next-arrow{
		right: var(--left-right-arrow);
	}
}

@media only screen and (max-width: 767px){
	
	.services-cta-carousel .slick-list{
		padding: 0 15% !important;
		margin: 0 -10px;
	}
	
	.services-cta-carousel.slider .slick-slide{
		margin: 0 10px;
	}
	
	.services-cta-carousel .service-cta{
		height: 350px;
	}
	
	.services-cta-carousel .service-cta .cta-content{
		padding: 20px;
	}
	
	.services-cta-carousel .service-cta .cta-content .service-title h3 {
		font-size: 24px;
	}

	.services-cta-carousel.slider .slick-arrow.next-arrow{
		right: calc(50% - 60px);
	}
}


/* 
 * Services Info Box Carousel CSS 
 * */

.services-project-carousel-wrap{
	--top-bottom-margin: 50px;
	overflow-x: clip;
}

.services-project-carousel.slider .slick-slide{
	margin: 0 15px;
}

.services-project-carousel.slider .slick-slide:nth-of-type(odd) .project-box{
	margin-top: var(--top-bottom-margin);
}

.services-project-carousel.slider .slick-slide:nth-of-type(even) .project-box{
	margin-bottom: var(--top-bottom-margin);
}

.project-content{
	text-align: center;
	position: relative;
	background-color: rgb(from var(--dark-color) r g b / 70%);
	padding: 40px;
	transition: all 0.5s ease-in-out;
	transform: scale(0);
}

.project-box:hover .project-content,
.slick-slide.slick-center .project-box .project-content{
	transform: scale(1);
}

.project-content .project-title h3{
	font-size: 30px;
	color: var(--white-color);
	transition: all 0.5s ease-in-out;
}

.project-content .project-desc{
	color: var(--white-color);
	margin-top: 20px;
	transition: all 0.5s ease-in-out;
}

.project-content .project-btn{
	margin-top: 30px;
	transition: all 0.5s ease-in-out;
}



@media only screen and (max-width: 1024px){
	
	.services-project-carousel.slick-slider.slick-initialized{
		padding-bottom: 0;
	}
	
	.project-content .project-title h3{
		font-size: 26px;
	}	
}

@media only screen and (max-width: 767px){
	
	.services-project-carousel-wrap{
		--top-bottom-margin: 30px;
	}
	
	.services-project-carousel .slick-list{
		margin: 0 -10px;
	}
	
	.services-project-carousel.slider .slick-slide{
		margin: 0 10px;
	}
	
	.project-content{
		padding: 30px 20px;
	}
	
	.project-content .project-title h3{
		font-size: 24px;
	}	
}










