.valye {
	flex-direction: inherit;
}

.valye > a {
	background: linear-gradient(180deg, #e9d2a8 0%, #c7a564 100%);
	color: #fff;
	padding: 10px 25px;
}

.btn_record {
	display: flex;
	justify-content: center;
	margin: 20px 0 0 0;
}
.btn_record > a {
	width: 35%;
  	padding: 12px 30px;
  	font-size: 24px;
  	font-weight: 300;
  	color: #fff;
    background: linear-gradient(180deg, #e9d2a8 0%, #c7a564 100%);
  	border-radius: 10px;
  	border: none;
  	box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6),
              0 4px 6px rgba(0, 0, 0, 0.15);
  	text-align: center;
  	cursor: pointer;
  	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about__proccess {
    display: flex;
    justify-content: space-between;
}

.reasons__list>li,
.steps__list>li {
    margin-bottom: 10px;
}

.reasons__list>li:last-child,
.steps__list>li:last-child {
    margin-bottom: 0;
}

.steps-extra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* Carousel */
.ba-block {
    position: relative;
    margin-top: 4rem;
}

.ba-block>h2 {
    text-align: center;
    width: 100%;
}

.ba-swiper {
    overflow: hidden;
    padding-bottom: 32px;
}

.ba-swiper .swiper-pagination {
    position: static;
    margin-top: 16px;
    text-align: center;
}

.ba-slide {
    height: auto;
}

.ba-link {
    display: block;
    position: relative;
}

.ba-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.ba-nav {
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    width: 64px;
    height: 64px;
    margin-top: -22px;
    z-index: 5;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.ba-prev {
    left: -64px;
}

.ba-next {
    right: -64px;
}

.ba-prev::after,
.ba-next::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: 100%;
    -webkit-mask-size: 100%;
    background: currentColor;
}

.ba-prev::after {
    mask-image: url('/assets/images/left-chevron.png');
}

.ba-next::after {
    mask-image: url('/assets/images/left-chevron.png');
    transform: rotate(180deg);
}

@media (max-width: 640px) {
    .ba-prev {
        left: 8px;
    }

    .ba-next {
        right: 8px;
    }
}

.swiper-slide>a {
    border-bottom: none;
}

.safety-list {
    margin-bottom: 4rem;
}

.safety__list {
    list-style: none;
    padding-left: 0;
}

.safety-list>h2 {
    text-align: center;
    width: 100%;
}

.safety__list>li {
    margin-bottom: 10px;
}

.safety__list>li:last-child {
    margin-bottom: 0;
}

.reviews>h2 {
    text-align: center;
}

.reviews__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.review {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
}

.review__stars {
    font-weight: 700;
    margin-bottom: .25rem
}

.review__text {
    margin: 0
}

.review__author {
    opacity: .8;
    margin-top: .5rem
}

.review__stars {
    color: #f5b301;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.stars {
    line-height: 1;
    margin-bottom: .35rem;
}

.stars i {
    font-style: normal;
    color: #ccc;
    margin-right: 2px;
}

.stars i::before {
    content: '★';
}

.stars-1 i:nth-child(-n+1),
.stars-2 i:nth-child(-n+2),
.stars-3 i:nth-child(-n+3),
.stars-4 i:nth-child(-n+4),
.stars-5 i:nth-child(-n+5) {
    color: #f5b301;
}

@media (max-width: 480px) {
	.desktop_bread {
		display: none;
	}
	.page_title {
		font-size: 17px;
	}
	
	.valye {
		padding-right: 20px;
	}
	.valye > h2 {
		width: 100%;
		text-align: center;
		font-size: 17px;
	}
	.valye > a {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		text-align: center;
		margin-bottom: 10px;
		border-radius: 4px;
	}
	.valye > a.bottom {
		margin-top: 10px;
	}
	
	.about__proccess {
		flex-wrap: wrap;
	}
	.about__proccess > section {
		width: 100%;
	}
	
	.reviews__grid {
		grid-template-columns: 1fr;
	}
	
	.btn_record > a {
		width: 100%;
	}
	
	ul.benefits-list {
		flex-wrap: wrap;
	}
	ul.benefits-list > li {
		width: 100%;
	}
}