.guide-carousel__slide.swiper-slide {
	flex: 0 0 260px;
	width: 260px;
	max-width: 260px;
	height: auto;
}

@media only screen and (min-width: 768px) {
	.guide-carousel__slide.swiper-slide {
		flex-basis: auto;
		width: auto;
		max-width: none;
	}
}

.guide-carousel__banner {
	height: 100%;
}

.guide-carousel__arrow {
	position: absolute;
	top: 50%;
	z-index: 10;
	display: none;
	width: 32px;
	height: 32px;
	color: #333;
	font-size: 0;
	text-decoration: none;
	background: transparent;
	border: none;
	outline: none;
	transform: translate(0, -50%);
	transition: color .3s ease;
}

.guide-carousel__arrow:hover {
	color: #A01602;
}

.guide-carousel__arrow:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: block;
	width: 14px;
	height: 14px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
}

@media only screen and (min-width: 768px) {
	.guide-carousel__arrow {
		display: block;
	}
}

.guide-carousel__arrow_type_prev {
	left: -2px;
}

.guide-carousel__arrow_type_prev:before {
	transform: translate(-20%, -50%) rotate(-45deg)
}

.guide-carousel__arrow_type_next {
	right: -2px;
}

.guide-carousel__arrow_type_next:before {
	transform: translate(-80%, -50%) rotate(135deg)
}

.guide-carousel__arrow_state_disabled,
.guide-carousel__arrow_state_disabled:hover {
	color: rgba(51, 51, 51, 0.4);
}

.guide-banner {
	position: relative;
	display: block;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}

.guide-banner__wrapper {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	height: 100%;
	padding: 8px 0 8px;
	transition: color .3s ease, background .3s ease;
}

@media only screen and (min-width: 1025px) {
	.guide-banner__wrapper {
		padding: 20px 0 25px;
	}
}

.guide-banner__content {
	display: block;
	flex: 0 1 auto;
	width: 100%;
	min-height: 110px;
	margin: 0 0 auto;
	padding: 0 10px 8px;
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	opacity: 0;
	transition: opacity .3s ease;
}

@media only screen and (min-width: 1025px) {
	.guide-banner__content {
		min-height: 178px;
		padding: 0 30px 18px 20px;
		line-height: 17px;
	}
}

.guide-banner__content:last-child {
	padding-bottom: 0;
}

.guide-banner__heading {
	display: block;
	flex: 0 1 auto;
	width: 100%;
	padding: 0 10px 0 0;
}

@media only screen and (min-width: 1025px) {
	.guide-banner__heading {
		padding: 0 20px 0 0;
	}
}

.guide-banner__title {
	display: inline-block;
	vertical-align: middle;
	padding: 8px 16px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 18px;
	text-transform: uppercase;
	background: #A01602;
	transition: color .3s ease, background .3s ease;
}

@media only screen and (min-width: 1025px) {
	.guide-banner__title {
		padding: 8px 20px;
		font-size: 16px;
		line-height: 21px;
	}
}

.guide-banner__link {
	color: inherit;
	text-decoration: none;
}

.guide-banner__link:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.guide-banner:hover .guide-banner__wrapper {
	color: #fff;
	background: rgba(160, 22, 2, 0.7);
}

.guide-banner:hover .guide-banner__content {
	opacity: 1;
}

.guide-banner:hover .guide-banner__title {
	color: #A01602;
	background: #fff;
}

.guide-banner__content h3:not([class]) {
	line-height: 1.3;
}

.guide-banner__content ul:not([class]) li:not([class]):before {
	top: .5em;
	color: inherit;
	background-color: currentColor;
}