/** Shopify CDN: Minification failed

Line 274:0 Expected "}" to go with "{"

**/
.hero-slider tab-menu {
	display: flex;
    column-gap: 15px;
	flex-wrap: nowrap;
    overflow: auto;
    white-space: nowrap;
	padding-bottom: 20px;
}
.hero-slider tab-menu tab-menu-item{
	text-decoration: none;
	color: var(--gray-50);
	background-color: transparent;
	border-radius: 25px;
	padding: 7px 15px;
    font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}
.hero-slider tab-menu tab-menu-item.-active{
	background-color: var(--orange);
	color: #ffffff;
	position: relative;
}

.hero-slider tab-menu tab-menu-item.-active::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: var(--orange);

}

.hero-slider tab-content {
    display: block;
    padding-bottom:10px;
}

.hero-slider tab-content-item:not(.-active){
    display: none;
}



[class*=hero-thumbs-] .swiper-slide img {
	border:1px solid transparent;
	border-radius: 8px;
	max-width: 100px;
}
[class*=hero-thumbs-] .swiper-slide-thumb-active img {
	border-color: var(--orange);
}

.hero-slider .thumb-prev,
.hero-slider .thumb-next {
	border:1px solid var(--orange);
	width: 90px;
	height: 55px;
	border-radius: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	top:50%;
	transform:translateY(-50%);
}
.hero-slider .thumb-prev {
	left:0;
}
.hero-slider .thumb-next {
	left:calc(100% - 90px);
	transition:all .4s ease 0s;
}

.hero-slider .thumb-prev svg,
.hero-slider .thumb-next svg{
	fill: var(--orange);
	width: 24px;
	height: 13px;
}
.hero-slider .thumbs-wrapper {
	display: none;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}

.hero-slider .is-last-slide .thumb-next {
	width:170px;
	justify-content: flex-end;
}
.hero-slider .is-last-slide .thumb-next__inner {
	visibility: visible;
	opacity: 1;
}

.hero-slider .thumb-next {
	padding: 12px 25px;
	column-gap: 10px;
	color: var(--orange);
}
.hero-slider .thumb-next svg {
	flex:0 0 auto;
}
.hero-slider .thumb-next__inner {
	visibility: hidden;
	opacity: 0;
	font-size: 13px;
	color: var(--orange);
	font-weight: bold;
	line-height: 16px;
	width: 84px;
	overflow: hidden;
	text-overflow: ellipsis;
	position: absolute;
	left:calc(50% - 10px);
	transform:translateX(-50%);
	transition: .3s;
}

.hero-gallery__inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid #C7C7C7;
	border-radius: 15px;
    overflow: hidden;
}

.hero-gallery__link {
	display: block;
	order:1;
}
.hero-gallery__link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.hero-gallery__content {
	padding: 10px;
	background-color: #ffffff;
	display: flex;
    flex-direction: row;
	justify-content: space-between;
	align-items: center;
	order:2;
}

.hero-gallery__text-wrapper {
	min-width: 0;
}

.hero-gallery__text {
	color:#454545;
	text-align: left;
	font-size: 15px;
	margin-bottom: 0;
}

.hero-gallery__title {
	color: #454545;
	text-align: left;
	font-size: 26px;
	margin-bottom: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hero-gallery .btn__link {
	color: #FFFFFF;
	font-size:20px;
	background-color: #FF5200;
	padding: 2px 14px;
	display: flex;
	align-items: center;
	column-gap: 20px;
	padding:12px 19px;
	border-radius: 10px;
}
.hero-gallery .btn__link span {
	display: none;
}


@media (min-width: 992px) {
	.hero-slider .thumbs-wrapper {
		display: block;
		margin-top: 20px;
		padding:0 100px;
	}
	.hero-slider tab-menu {
		justify-content: center;
		column-gap: 20px;
	}
	.hero-gallery > .swiper {
		padding-left:8px;
		padding-right:8px;
	}
	.hero-slider tab-menu .tab-menu-item {
		padding: 7px 25px;
	}
	.hero-gallery__content {
		padding:56px 48px 48px;
	}
	.hero-gallery__text {
		font-size: 26px;
	}
	.hero-gallery__title {
		font-size: 45px;
		margin-bottom: 57px;
	}
	.hero-gallery .btn__link span {
		display: block;
	}
	.hero-gallery__inner {
		flex-direction: row;
	}

	.hero-gallery__link {
		order:2;
		width: 740px;
    	height: 420px;
		flex:0 0 auto;
	}
	.hero-gallery__content {
		order:1;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	.hero-gallery .btn__link {
		padding:2px 22px;
	}
}

@media (min-width:1200px) {
	.hero-gallery .btn__link {
		column-gap: 30px;
	}
}



@media (max-width: 769px) {
	.hero-gallery__title {
		margin-bottom: 0;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		min-height: calc(1em * 1.5 * 1.74);
		white-space: unset;
	}


@media (max-width: 576px) {
	.hero-slider tab-content {
		padding-top:10px;
	}
}


