/* IMAGEBOX */
.promo-wrapper {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
	top: 0;
	left: 0;
	transition: opacity .35s ease;
	opacity: 0;
	pointer-events: none;
}
.promo-wrapper.active {
	pointer-events: all;
	opacity: 1;
}
.promo-wrapper.active::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(67,68,68,0.9);
	z-index: -1;
}
section.imagebox-wrapper.promo-slider {
	display: none;
}
section.imagebox-wrapper.promo-slider.slick-initialized {
	display: block;
}
.promo-wrapper .imagebox-wrapper figure {
	max-width: 370px !important;
	margin: 0 15px;
}
.promo-wrapper .imagebox-wrapper {
	position: relative;
}
.promo-wrapper .imagebox-wrapper figure {
	position: relative;
	background-color: var(--black);
	transition: background-color .35s ease;
	padding: 0 15px 15px 0;
}
.promo-wrapper .imagebox-wrapper figure picture {
	position: relative;
	overflow: hidden;
}
.promo-wrapper .imagebox-wrapper figure picture::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	bottom: -15px;
	left: 0;
	right: -15px;
	background-image: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
}
.promo-wrapper .imagebox-wrapper figure picture img {
	transition: transform .35s ease;
}
.promo-wrapper .imagebox-wrapper figure figcaption {
	position: absolute;
	bottom: 30px;
	left: 15px;
	right: 30px;
}
.promo-wrapper .imagebox-wrapper figure figcaption h3 {
	font: 700 22px/1.4 var(--raleway);
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 3px;
}
.promo-wrapper .imagebox-wrapper figure figcaption p {
	font: 400 16px/1.7 var(--raleway) !important;
	color: #fff !important;
	margin: 0;
}
.promo-wrapper .promo-arrows {
	position: absolute;
	top: 50%;
	left: -15px;
	right: 0px;
	height: 0px;
	display: none;
	align-items: flex-end;
	justify-content: space-between;
	pointer-events: none;
	width: calc(100% - 45px);
}

.promo-wrapper .promo-arrows i {
	font-size: 41px;
	color: var(--dark-agave);
	background-color: #fff;
	border: 3px solid #fff;
	border-radius: 50%;
	margin: 0px 5px;
	pointer-events: auto;
	cursor: pointer; 
}
.promo-wrapper .promo-arrows i.slick-disabled { opacity: 0.2; }
.slider-wrapper {
	display: none;
	position: relative;
	top: 25%;
	left: 435px;
}

.promo-wrapper .swiped .promo-arrows {
	display: flex;
	width: calc(100% - 20px);
	left: -35px;
}

@media screen and (min-width: 40em) {
	.promo-wrapper .imagebox-wrapper figure figcaption h3 {
		font-size: 26px;
	}
	.promo-wrapper .imagebox-wrapper figure figcaption p {
		font-size: 18px;
		line-height: 1.6;
		margin-bottom: 0;
	}
}
@media screen and (max-width: 64.063em) {
	.promo-wrapper .swiped .promo-arrows {
		display: flex;
		width: calc(100% - 20px);
		left: -35px;
	}
	.promo-slider figure:not(:first-of-type) { display: none; }
	.promo-slider.slick-initialized figure { display: block; }
}
@media screen and (max-width: 40em) {
	.promo-wrapper .imagebox-wrapper {
		margin-left: 245px;
		margin-top: 95px;
	}
	.promo-wrapper .imagebox-wrapper figure {
		max-width: none !important;
		min-width: 360px;
	}	
	.slider-wrapper {
		top: 5%;
		left: 0;
	}
	.promo-wrapper .swiped .imagebox-wrapper figure {  }
	.promo-wrapper .swiped .promo-arrows {
		display: flex;
		width: 100%;
		left: 0;
	}
	.slick-track { min-width: 1900px; }
}
@media screen and (max-width: 48.125em) {
	.promo-wrapper .imagebox-wrapper {
		display: block !important;
	}
	.promo-wrapper .imagebox-wrapper figure {
		margin-bottom: 15px !important;
	}
}
@media screen and (min-width: 64.063em) {
	.promo-wrapper .imagebox-wrapper figure:hover {
		background-color: var(--dark-agave);
	}
	.promo-wrapper .imagebox-wrapper figure:hover picture img {
		transform: scale(1.1);
	}
	.promo-wrapper .promo-arrows {
		display: flex;
		width: calc(100% - 425px);
	}
}


