.story {
	margin: 0 0 80px 0;
}

.story__container {
	background: #FFDC98;
	position: relative;
	z-index: 0;
	padding: 40px 0;
}

.story__title {
	margin: 0 0 40px 0;
}

.story__title h2 {
	font-family: var(--main-font-semi-bold);
	font-size: 35px;
	line-height: 45px;
	font-weight: 700;
	color: var(--color-blue);
	width: fit-content;
	margin: 0 auto;
	position: relative;
}

.story__title h2::before {
	content: "";
	position: absolute;
	width: 102%;
	height: 16px;
	background: #fed9e1;
	bottom: 2px;
	left: -2px;
	z-index: -1;
	opacity: 1;
	border-radius: 4px;
}

.story__figure-top {
	height: 58px;
	background: url(/local/templates/s1/images/story/story-figure.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.story__figure-top::before{
	content: "";
	position: absolute;
	top:-30px;
	left: 70px;
	width: 350px;
	height: 170px;
	background: url(/local/templates/s1/images/story/cloud-top.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 10;
}

.story__figure-top::after{
	content: "";
	position: absolute;
	top:50px;
	right: 50px;
	width: 102px;
	height: 102px;
	background: url(/local/templates/s1/images/story/teddy-bear.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 10;
}

.story__figure-bottom {
	height: 58px;
	background: url(/local/templates/s1/images/story/story-figure.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: rotate(180deg);
	position: relative;
}

.story__figure-bottom::before {
	content: "";
	position: absolute;
	top: 60px;
	right: 20px;
	width: 96px;
	height: 85px;
	background: url(/local/templates/s1/images/story/balloon.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: rotate(180deg);
} 

.story__figure-bottom::after {
	content: "";
	position: absolute;
	top: -4px;
	left: 80px;
	width: 300px;
	height: 116px;
	background: url(/local/templates/s1/images/story/cloud-bottom.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: rotate(180deg);
}

.story-slider__container {
	padding: 0 103px;
	position: relative;
}

.story-slider__item {
	background: #fff;
	border-radius: 30px;
	display: flex;
	flex-direction: column;
}

.story-slider-btn-next,
.story-slider-btn-prev {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #89D4F3;
    border-radius: 50%;
}

.story-slider-btn-next {
    width: 50px;
    height: 50px;
    top:calc(50% - 25px);
    right: 35px;
    z-index: 10;
}

.story-slider-btn-prev {
    width: 50px;
    height: 50px;
    top:calc(50% - 25px);
    left: 35px;
    z-index: 10;
}

.story-slider-btn-wrapper {
    width: 40px;
    height: 40px;
    background: #89D4F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-slider-btn-arrow {
    width: 24px;
    height: 24px;
    background: url(/local/templates/s1/images/main-slider/slider-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.story-slider-btn-next .story-slider-btn-arrow {
    transform: rotate(180deg);
}

.story-slider-btn-prev.swiper-button-disabled,
.story-slider-btn-next.swiper-button-disabled {
    opacity: 0.6;
}

.story-slider__wrapper {
	padding: 0 20px 20px 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.story-slider__link {
	flex-grow: 1;
	display: flex;
	align-items: flex-end;
}

.story-slider .story-slider__link a {
	font-family: var(--main-font);
	font-size: 18px;
	line-height: 25px;
	color: #FB9FB8;
	text-decoration: none;
	position: relative;
	padding: 0 36px 0 0;
}

.story-slider .story-slider__link a::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 26px;
	height: 26px;
	background: url(/local/templates/s1/images/types-of-help/arrow-redo-pink.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.story-slider .story-slider__link a:hover{
	color:#FB9FB8;
	text-decoration: underline;
} 

.story-slider__item-img {
	margin: 0 0 40px 0;
}

.story-slider__item-img img {
	display: block;
	max-height: 280px;
	width: 100%;
	border-radius: 30px;
	overflow: hidden;
}

.story-slider__name,
.story-slider__prev-text {
	margin: 0 0 10px 0;
}

.story-slider__name {
	font-family: var(--main-font-semi-bold);
	font-size: 25px;
	line-height: 30px;
	color: var(--color-blue);
}

.story-slider__prev-text {
	font-family: var(--main-font);
	font-size: 16px;
	line-height: 20px;
	color: var(--color-blue);
}



