.guides-block {
	position: relative;
}

.guides-block h2 {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 0px;
	margin-bottom: 4px;
}

.guides-block .guides-description {
	text-align: center;
}

.guides-block .guides {
	display: flex;
	margin-top: 37px;
	padding-left: 0px;
	padding-right: 0px;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 37px;
	margin-bottom: 85px;
	position: relative;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	justify-content: unset;
}

.guides-block .guides .guide {
	flex-basis: 375px;
	box-shadow: 0px 4px 5px 0px rgba(0, 19, 117, 0.05);
	background: rgba(15, 64, 177, 1);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
	flex-shrink: 0;
	margin-bottom: 10px;
}

.guides-block .guides .guide .guide-image {
	background-color: #FFF;
	display: flex;
	justify-content: center;
	border-radius: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.guides-block .guides .guide .guide-text h3 {
	margin-top: 10px;
	margin-bottom: 6px;
}

.guides-block .guides .guide .guide-text p {
	margin-top: 0;
	margin-bottom: 6px;
}

.guide-button,
.guide-button:hover,
.guide-button:visited {
	display: block;
	width: 100%;
	background-color: #FFFFFF;
	border-radius: 20px;
	color: #000745;
	text-align: center;
	text-decoration: none;
	font-weight: 500;
	font-size: 18px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: auto;
}
.guide-opacity {
	width: 100%;
	position: absolute;
	opacity: 0.2;
	height: 100%;
	z-index: 999;
	background-color: #000;
	margin-left: calc(37px + 100%);
}

.guides-block .guide-button-prev,
.guides-block .guide-button-next {
	position: absolute;
	bottom: -85px;
	width: 45px;
	height: 45px;
	background: rgba(255, 217, 91, 1);
	transform: translateY(-50%);
	border-radius: 9px;
	cursor: pointer;
	z-index: 1001;
}

.guides-block .guide-button-prev {
	right: 58px;
}

.guides-block .guide-button-next {
	right: 0;
}


.guides-block .guide-button-prev::after,
.guides-block .guide-button-next::after {
	content: " ";
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 57%;
	border-right: 6px solid #FFFFFF;
	border-bottom: 6px solid #FFFFFF;
	transform: translate(-50%, -50%) rotate(135deg);
}

.guides-block .guide-button-next::after {
	left: 43%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.guides-block .guide-button-prev.button-dis,
.guides-block .guide-button-next.button-dis {
	background: rgba(255, 255, 255, 0.14);
}

.guides-block .guide-button-prev.button-dis::after,
.guides-block .guide-button-next.button-dis::after {
	border-right: 6px solid rgba(255, 255, 255, 0.5);
	border-bottom: 6px solid rgba(255, 255, 255, 0.5);
}