.welcome {
	padding: 100px;
	display: block;
	background: url(../img/img-hero.jpg) no-repeat center;
	border-radius: 40px;
}
.welcome__title {
	color: var(--text-light);
	font-size: 72px;
	margin: 0;
	line-height: 105%;
}
.welcome__text {
	margin: 40px 0;
	color: var(--text-light);
	font-weight: 400;
	line-height: 24px;
}

.welcome__btn {
	border: none;
	width: 200px;
	padding: 20px 78px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 100px;
	background: var(--background-body);

}

.fav {
	padding: 100px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.slider {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	gap: 40px;
}
.slider__row {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.slider__list-wrapper {
	width: 480px;
	height: 640px;
	position: relative;
	overflow: hidden;
}
.slider__list {
	display: flex;
	position: absolute;
	transition: all 0.2s;
	left: 0px;
}
.slider__slide {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 480px;
	height: 640px;
}
.slider__slide-img {
	width: 480px;
	height: 480px;
}
.slider__btn {
	background: var(--background-body);
	cursor: pointer;
	border-radius: 100px;
	border: 1px solid var(--border-dark);
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.slider__slide-title {
	text-align: center;
	margin-top: 20px;
	font-size: 24px;
	line-height: 125%; /* 30px */
}
.slider__slide-desc {
	text-align: center;
	margin-top: 16px;
	font-size: 16px;
	font-weight: 400;
}
.slider__slide-price {
	text-align: center;
	margin-top: 16px;
	font-size: 24px;
	line-height: 125%; /* 30px */
}
.slider__nav {
	width: 144px;
	height: 4px;
	margin: 0;
	display: flex;
	justify-content: space-between;
	gap: 12px;
}
.slider__nav-bar {
	display: flex;
	border-radius: 100px;
	background: var(--border-light);
	width: 40px;
	height: 4px;
}
.slider__nav-progress {
	border-radius: 100px;
	background: var(--border-dark);
	width: 0;
/*	width: 100%;*/
	height: 4px;
}

.about {
	padding: 100px 0;
}

.about__imgs {
	margin-top: 40px;
	height: 1060px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}


.about__wrapper {
	border-radius: 20px;
	width: 48%;
}
.about__wrapper_big{
	height: 590px;
}
.about__wrapper_small {
	height: 430px;
}

.about__wrapper_1 {
	background: url(../img/about-1.jpg) no-repeat center;
}.about__wrapper_2 {
	background: url(../img/about-2.jpg) no-repeat center;
}.about__wrapper_3 {
	background: url(../img/about-3.jpg) no-repeat center;
}.about__wrapper_4 {
	background: url(../img/about-4.jpg) no-repeat center;
}

.mob__container {
	padding-bottom: 100px;
}
.mob {
	display: flex;
	justify-content: space-between;
}
.mob__text {
	padding: 144px 0;
}
.mob__title {
	margin: 0;
	line-height: 125%;
}

.mob__p {
	margin: 40px 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%; /* 24px */
}

.icon {
	border: 1px solid var(--border-dark);
	border-radius: 100px;
	padding: 12px 44px 12px 20px;
	display: inline-flex;
	gap: 8px;
}
.icon__title {
	display: block;
	font-size: 16px;
	line-height: 150%;
}
.icon__lable {
	font-size: 10px;
	font-weight: 600;
	line-height: 140%; /* 14px */
}



@media (max-width: 1024px) {
	.mob {
		flex-wrap: wrap;
		justify-content: center;
	}
	.about__wrapper {
		width: 90%;
	}
	.about__imgs {
		height: auto;
	}
}


@media (max-width: 768px) {
	.about__wrapper_small {
		display: none;
	}
}

