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

.img-icon-carousel{
	padding-bottom: 100px;
}

.img-icon-carousel .slick-list{
	margin: 0 -15px;
}

.img-icon-carousel .slick-slide{
	margin: 0 15px;
}

.img-icon-carousel .img-icon-box{
	display: flex;
	flex-wrap: wrap;
	background-color: var(--e-global-color-secondary);
	height: 100%;
}

.img-icon-box .img-icon-box-content{
	position: relative;
	width: 50%;
	padding: 30px;
}

.img-icon-box .img-icon-box-content .number{
	position: absolute;
	left: auto;
	right: 30px;
}

.img-icon-box .img-icon-box-content .number h4{
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
	font-size: 39px;
	line-height: 1em;
	margin: 0;
}

.img-icon-box .img-icon-box-content .icon-box{
	line-height: 0;
	margin-bottom: 60px;
}

.img-icon-box .img-icon-box-content .icon-box svg{
	fill: var(--e-global-color-primary);
	width: 56px;
	height: 56px;
}

.img-icon-box .img-icon-box-content .title{
	margin-bottom: 20px;
}

.img-icon-box .img-icon-box-content .title h3{
	font-size: 24px;
}

.img-icon-box .img-icon-box-image{
	width: 50%;
}

.img-icon-box .img-icon-box-image figure{
	height: 100%;	
}

.img-icon-box .img-icon-box-image figure img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	height: 100%;
}

.img-icon-carousel .slick-arrow{
	position: absolute;
	top: auto;
	bottom: 0;
	display: flex;
    align-items: center;
    justify-content: center;
	border: 1px solid var(--e-global-color-accent);
    width: 50px;
    height: 50px;
	padding: 0;
	transition: all 0.3s ease-in-out;
	z-index: 10;
}

.img-icon-carousel .slick-arrow:hover,
.img-icon-carousel .slick-arrow:focus{
	color: var(--e-global-color-accent);
    background-color: transparent;
}

.img-icon-carousel .slick-arrow svg{
	width: 25px;
	height: auto;
}

.img-icon-carousel .slick-arrow.prev{
	left: calc(50% - 55px);
}

.img-icon-carousel .slick-arrow.next{
	right: calc(50% - 55px);
}


@media only screen and (max-width: 1024px) {
	
	.img-icon-carousel{
		padding-bottom: 80px;
	}

	.img-icon-box .img-icon-box-content{
		padding: 20px;
	}
	
	.img-icon-box .img-icon-box-content .icon-box{
		margin-bottom: 40px;
	}
	
	.img-icon-box .img-icon-box-content .number{
		right: 20px;
	}
	
	.img-icon-box .img-icon-box-content .number h4{
		font-size: 32px;
	}
	
	.img-icon-box .img-icon-box-content .title {
		margin-bottom: 10px;
	}
	
	.img-icon-box .img-icon-box-content .title h3{
		font-size: 22px;
	}
	
}

@media only screen and (max-width: 767px) {
	
	.img-icon-carousel {
		padding-bottom: 60px;
	}
	
	.img-icon-carousel .slick-list{
		margin: 0 -10px;
	}

	.img-icon-carousel .slick-slide{
		margin: 0 10px;
	}

	.img-icon-box .img-icon-box-content,
	.img-icon-box .img-icon-box-image{
		width: 100%;
	}
	
	.img-icon-box .img-icon-box-image figure,
	.img-icon-box .img-icon-box-image figure img{
		height: auto;
	}
	
	.img-icon-box .img-icon-box-image figure img{
		aspect-ratio: 1 / 0.8;
	}
	
	.img-icon-carousel .slick-arrow{
		width: 40px;
		height: 40px;
	}
	
	.img-icon-carousel .slick-arrow svg{
		width: 22px;
		height: auto;
	}

	.img-icon-carousel .slick-arrow.prev{
		left: calc(50% - 45px);
	}

	.img-icon-carousel .slick-arrow.next{
		right: calc(50% - 45px);
	}
	
}


/*
 * 
 * */

.img-carousel-wrap{
	overflow-x: clip;
	min-height: 780px;
}

.img-carousel .slick-list{
	margin: 0 -80px;
}

.img-carousel .slick-track{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	align-items: center;
}

.img-carousel .slick-slide{
	margin: 0 80px;
	height: auto;
}

.img-carousel .image-box .image-box-header{
	position: relative;
}

.img-carousel .image-box .image-box-header figure img{
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
	text-align: center;
	margin: 0 auto;
	transition: all 0.3s ease-in-out;
}

.img-carousel .slick-center .image-box .image-box-header figure img{
	width: 94%;
	aspect-ratio: 1 / 1.1;
}

.img-carousel .image-box .image-box-header .title{
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 100px;
	transition: all 0.3s ease-in-out;
	transform: scale(0);
}

.img-carousel .slick-center .image-box .image-box-header .title{
	transform: scale(1.01);
}

.img-carousel .image-box .image-box-header .title h3{
	text-align: center;
}

.img-carousel .image-box .image-box-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 50px;
	width: 110%;
	margin-left: -5%;
	margin-top: 40px;
	transition: all 0.3s ease-in-out;
	transform: scale(0);
}

.img-carousel .slick-center .image-box .image-box-footer{
	transform: scale(1);
}

.img-carousel .image-box .image-box-footer .description{
	width: calc(72% - 25px);
}

.img-carousel .image-box .image-box-footer .elementor-widget-button{
	width: calc(28% - 25px);
	text-align: right;
}

@media only screen and (max-width: 1600px) {
	
	.img-carousel-wrap{
		min-height: 660px;
	}
	
	.img-carousel .slick-list{
		margin: 0 -50px;
	}
	
	.img-carousel .slick-slide{
		margin: 0 50px;
	}
	
	.img-carousel .image-box .image-box-header .title{
		bottom: 80px;
	}
	
	.img-carousel .image-box .image-box-header .title h3{
		font-size: 78px;
	}
	
	.img-carousel .image-box .image-box-footer{
		width: 120%;
		margin-left: -10%;
		margin-top: 30px;
	}
	
}

@media only screen and (max-width: 1470px) {
	
	.img-carousel .image-box .image-box-header .title h3{
		font-size: 68px;
	}
	
}

@media only screen and (max-width: 1024px) {
	
	.img-carousel-wrap{
		min-height: auto;
	}
	
	.img-carousel .slick-list {
		margin: 0 -15px;
	}
	
	.img-carousel .slick-slide {
		margin: 0 15px;
	}
	
	.img-carousel .slick-center .image-box .image-box-header figure img{
		width: 90%;
	}
	
	.img-carousel .image-box .image-box-header .title {
		bottom: 40px;
	}
	
	.img-carousel .image-box .image-box-header .title h3 {
		font-size: 50px;
	}
	
	.img-carousel .image-box .image-box-footer{
		gap: 5px;
		width: 100%;
		margin-left: 0;
		margin-top: 20px;
	}
	
	.img-carousel .image-box .image-box-footer .description {
		text-align: center;
		width: 100%;
	}
	
	.img-carousel .image-box .image-box-footer .elementor-widget-button {
		width: 100%;
		text-align: center;
	}
	
}

@media only screen and (max-width: 767px) {
	
	.img-carousel .slick-list {
		margin: 0 -10px;
	}
	
	.img-carousel .slick-slide {
		margin: 0 10px;
	}
	
	.img-carousel .slick-center .image-box .image-box-header figure img{
		width: 90%;
	}
	
	.img-carousel .image-box .image-box-header .title {
		bottom: 30px;
	}
	
	.img-carousel .image-box .image-box-header .title h3 {
		font-size: 30px;
	}
	
	.img-carousel .image-box .image-box-footer{
		gap: 5px;
		width: 100%;
		margin-left: 0;
		margin-top: 20px;
	}
	
	.img-carousel .image-box .image-box-footer .description {
		text-align: center;
		width: 100%;
	}
	
	.img-carousel .image-box .image-box-footer .elementor-widget-button {
		width: 100%;
		text-align: center;
	}
	
	
}


