/*
 * Featured Items CSS
 * */

.featured-items-carousel-wrap{
/* 	overflow-x: clip; */
}

.featured-items-carousel{
	opacity: 0;
	visibility: hidden;
}

.featured-items-carousel.slick-initialized{
	opacity: 1;
	visibility: visible;
}

.featured-items-carousel:not(button){
	filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.20));
}

.featured-items-carousel .slick-slide{
	height: auto;
	margin: 0 15px;
}

.featured-items-carousel .slick-list{
	margin: 0 -15px;
}

.featured-items-carousel .slick-track{
    height: 100%;
    display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
}

.featured-items-carousel .slick-slide .featured-item-box{
	height: 100%;
}

.featured-item-box{
	text-align: center;
	overflow: hidden;
	border-radius: 10px;
}

.featured-item-box .featured-item-image{
	text-align: center;
	margin-top: -5px;
}

.featured-item-box .featured-item-image img{
	width: 100%;
	aspect-ratio: 1 / 1.16;
    object-fit: cover;
	-webkit-mask-image: url("../images/featured-item-img-shape.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	-webkit-mask-size: cover;
	margin: 0 auto;
}

.featured-item-content{
	padding: 0 30px 30px;
}

.featured-item-content .featured-item-title h3{
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: 28px;
    font-weight: var(--e-global-typography-primary-font-weight);
    text-transform: var(--e-global-typography-primary-text-transform);
    font-style: var(--e-global-typography-primary-font-style);
    line-height: var(--e-global-typography-primary-line-height);
	color: var(--e-global-color-secondary);
	margin: 0;
}

.featured-item-content .featured-item-desc,
.featured-item-content .featured-item-btn a{
	margin-top: 20px;
}

.featured-item-content .featured-item-desc{
	color: var(--e-global-color-secondary);
}

.featured-item-content .featured-item-btn a{
	font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: var(--e-global-typography-accent-text-transform);
    font-style: var(--e-global-typography-accent-font-style);
    line-height: var(--e-global-typography-accent-line-height);
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	color: var(--e-global-color-secondary);
}

.featured-items-carousel .slick-arrow{
	--arrow-left-right: -100px;
	position: absolute;
	top: 50%;
	bottom: auto;
	background-image: url("../images/left.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 22px auto;
	background-color: var(--e-global-color-accent);
	color: var(--e-global-color-primary);
	border-radius: 100%;
	width: 50px;
	height: 50px;
	padding: 0;
    transition: all 0.4s ease-in-out;	
	z-index: 10;
	transform: translateY(-50%);	
}

.featured-items-carousel .slick-arrow:hover,
.featured-items-carousel .slick-arrow:focus{
	border-color: var(--e-global-color-primary);
}

.featured-items-carousel .slick-arrow.prev-arrow{
	left: var(--arrow-left-right);
/* 	box-shadow: -1px 1px 0px 0px currentcolor; */
}

.featured-items-carousel .slick-arrow.next-arrow{
	right: var(--arrow-left-right);
/* 	box-shadow: 1px 1px 0px 0px currentcolor; */
}

.featured-items-carousel .slick-arrow.next-arrow{
	background-image: url("../images/right.svg");
}

@media only screen and (max-width: 1490px){
	
	.featured-items-carousel .slick-arrow{
		--arrow-left-right: -60px;
	}
}

@media only screen and (max-width: 1410px){
	
	.featured-items-carousel{
		padding-bottom: 100px;
	}
	
	.featured-items-carousel .slick-arrow{
		--arrow-left-right: calc(50% - 60px);
		top: auto;
		bottom: 0;
		transform: translateY(0);
	}
}


@media only screen and (max-width: 1024px){
	
	.featured-items-carousel{
		padding-bottom: 80px;
	}
	
	.featured-item-content .featured-item-title h3{
		font-size: 28px;
	}
}

@media only screen and (max-width: 767px){
	
	.featured-items-carousel {
        padding-bottom: 70px;
    }
	
	.featured-item-content{
		padding: 0 20px 20px;	
	}
	
	.featured-item-content .featured-item-title h3{
		font-size: 26px;
	}
	
	.featured-items-carousel .slick-arrow{
		--arrow-left-right: calc(50% - 45px);
		background-size: 18px auto;
		width: 40px;
    	height: 40px;
	}
	
}





