.heroCarousel {
	margin-bottom: 30px;
}
.heroCarouselPlain
{
	padding-top: 64px!important;
}
.heroCarouselSlide img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	margin: 0 auto;
}
.verticalImage {
	display: none !important;
	display: none !important;
	width: 100%;
}

.carouselContent
{
	display: inline-block;
	position: absolute;
	bottom: 35%;
	padding-left: 100px;
	width: calc(100% - 100px);
	z-index: 3;
}
.heroCarousel .slick-dots
{
	bottom: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
}
.slick-dots.light li button:before{
	color: #ffffff;
}
.slick-dots li{
	margin: 0;
	width: auto;
	height: auto;
}
.slick-dots li button{
	width: 12px;
	height: 12px;
	padding: 0;
}

.slick-dots li.slick-active button{
	width: 24px;
	height: 24px;
}

.dots-separator{
	width: 0px;
	height: 24px;
	border: 1px solid #24201D;
	transform: rotate(90deg);
	display: inline-block;
	margin: 3px 0 0px 20px
}
li.slideItem {
	width: 64px;
	display: inline-flex;
}

li.slideItem.active{
	text-decoration: underline;
	text-underline-position: under;
}

.light .dots-separator{
	border-color: #ffffff;
}

.heroCarousel .slick-dots li{
	font-size: 16px;
}

.heroCarousel .slick-dots li button:before
{
	opacity: 1;
	font-size: 12px;
	line-height: normal;
}

.heroCarousel .slick-dots li.slick-active button:before
{
	border: 1px solid transparent;
	border-radius: 50%;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	width: 24px;
	height: 24px;
	font-size: 0;
}
.heroCarousel .slick-dots li button:before{
	opacity: 1;
	width: 12px;
	height: 12px;
}

.heroPhone:before{
	content: '';
	background-color: var(--color-primary);
	height: 1px;
	width: 16px;
	margin: 5px 8px;
	display: inline-block;;
}
#heroCarousel .wrapper {
	position: relative!important;
}

.heroContactRow,
.heroContactRow a
{
	font-size: 1.6rem;
	line-height: 24px;
	color: var(--color-primary);
}
.heroContactRow .grid{
	align-items: center;
}
.heroContactRow img
{
	height: 18px;
	width: auto;
}
.heroContactRow svg {
	width: 32px;
	height: 32px;
	margin-left: 24px;
}

.carouselItemsArrows{
	position: absolute;
	bottom: 0px;
	z-index: 100;
	right: 36px;
}
.carouselItemsArrows > span:first-child{
	margin-right: 10px;
}
.carouselItemsArrows svg {
	 width: 40px;
	 height: 40px;
	 cursor: pointer;
	 padding: 8px;
	 position: relative;
	 transition: all 0.3s;
	 background: none;
	float: left;
 }
.carouselItemsArrows.light svg{
	border:1px solid #fff;
	fill:#fff;
}
.carouselItemsArrows.dark svg
{
	border:1px solid var(--color-primary);
	fill: var(--color-primary);
}


/* Button 1c */

.carouselItemsArrows > span{
	display: inline-block;
	position: relative;
}

.carouselItemsArrows > span:after {
	width: 0%;
	height: 100%;
	top: 0;
	left: 0;
	content: "";
	z-index: -1;
	display: block;
	position: absolute;
	transition: all 0.3s;
}

.carouselItemsArrows.light > span:after {
	background: #fff;
}

.carouselItemsArrows.dark > span:after {
	background: var(--color-primary);
}

.carouselItemsArrows > span:hover:after,
.carouselItemsArrows > span:active:after{
	width: 100%;
}

.carouselItemsArrows.light > span:active svg,
.carouselItemsArrows.light > span:hover svg{
	fill: var(--color-primary);
}

.carouselItemsArrows.dark > span:active svg,
.carouselItemsArrows.dark > span:hover svg{
	fill: #ffffff;
}

/*
.carouselItemsArrows.light > span.btn-1c:hover,
.carouselItemsArrows.light .btn-1c:active {
	fill: var(--color-primary);
}
*/

@media screen and (max-width: 768px) {
	.verticalImage {
		display: block !important;
	}
	.horizontalImage {
		display: none !important;
	}

	.heroCarouselPlain
	{
		padding-top: 0px!important;
	}
}

.slick-dots .slick-active button{
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


.slick-dots li:first-child:last-child {
	display: none;
}

.slick-initialized .slick-slide{
	position: relative;
}