html {
	box-sizing: border-box;
}

*,
*::after,
*::before {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

body {
	color: #000;
	font-family: 'Comfortaa', cursive;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;

}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

li {
	list-style: none;
}

.btn {
	border: none;
	border-radius: 0;
	cursor: pointer;
	padding: 0;
}

.title {
	font-family: 'Yeseva One', cursive;
	font-size: 40px;
	margin-bottom: 15px;
	font-weight: 400;
}

.text {
	font-size: 14px;
	margin-bottom: 15px;
}

.container {
	max-width: 1180px;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0 auto;
}
.button {
	padding: 18px 54px;
	background-color: #FFBD59;
	font-family: 'Comfortaa', cursive;
	font-size: 14px;
	font-weight: 600;
}

.menu__btn {
	display: none;

}

.top {
	position: relative;
}

.top__img {
	position: absolute;
}

.header {
	background-color: #FFF8F3;
}

.header__inner {
	padding-top: 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu__list {
	display: flex;
	gap: 20px;
}

.menu__link {
	text-transform: uppercase;
}

.phone {
	position: relative;
}

.phone::before {
	content: "";
	width: 20px;
	height: 20px;
	background-image: url("../image/phone.svg");
	position: absolute;
	top: -3px;
	left: -23px;
}

/* _________________________________________________ */
.main {
	background-color: #FFF8F3;
	overflow-x: clip;
}

.top {
	padding-top: 30px;
	padding-bottom: 150px;
}

.top__inner {
	position: relative;
}

.top__content {
	max-width: 370px;
	padding: 150px 0 250px;
}

.top__title {
	font-family: 'Yeseva One', cursive;
	font-size: 30px;
	margin-bottom: 15px;
}

.top__text {
	margin-bottom: 48px;
}

.top__btn {
	padding: 18px 54px;
	background-color: #FFBD59;
	font-family: 'Comfortaa', cursive;
	font-size: 14px;
	font-weight: 600;
}

.top__img {
	position: absolute;
	top: 0;
	left: 240px;
}

/* _________________________________________________ */
.about {
	background-color: #A5978E;
	padding: 50px 0;
	color: #FAFAFA;
	margin-bottom: 50px;
}

.about__container {
	display: flex;
	align-items: center;
}

.about__content {
	min-width: 370px;
}

.about__list {
	padding-left: 110px;
	padding-bottom: 48px;
	display: flex;
	gap: 20px;
	align-items: center;
	flex-basis: 930px;
	
}
.section__decor{
	position: relative;
}

.section__decor::before {
	content: "";
	background-image: url('../image/about-decor.png');
	position: absolute;
	left: 0;
	bottom: 0;
	width: 22px;
	height: 30px;
}

.section__decor::after {
	content: "";
	background-color: #7B6152;
	position: absolute;
	left: 22px;
	bottom: 13px;
	width: 250%;
	height: 1px;
}

.about__img {
	margin-bottom: 10px;
}

.about__item-text {
	font-size: 11px;
}

/* _________________________________________________ */
.section {
	padding-bottom: 150px;
}

.section__inner {
	display: grid;
	grid-template-columns: 360px auto;
	gap: 0 10px;
}

.products__content {
	gap: 50px 93px;
}

.section__content {
	display: grid;
	grid-template-columns: auto auto;
	padding-bottom: 92px;
}

.products__item {
	width: 290px;
	text-align: center;
	margin: 0 auto;
	font-family: 'Yeseva One', cursive;
	font-size: 16px;
}

.products__img {
	margin-bottom: 8px;
}

.products__price {
	margin-bottom: 12px;
	font-weight: 400;
}

.product__item-title {
	margin-bottom: 16px;
	font-weight: 400;
}

.products__item-text {
	font-family: Comfortaa;
	font-size: 12px;
	margin-bottom: 25px;
}
/* _________________________________________________ */
.steps__list{
	gap: 70px 25px;
	counter-reset: number;
}

.steps__item{
	display: flex;
	gap: 40px;
	position: relative;
}.steps__item-text{
	padding-bottom: 40px;
}
.steps__item::before{
	counter-increment: number;
	content: '0'counter(number);
	position: absolute;
	bottom: 0;
	left: 0;
	font-family: 'Yeseva One', cursive;
	font-size: 30px;
	color: #BEA495;
}
.steps__item.steps__item-even::before{
	left: auto;
	right: 0;
}
.steps__item:nth-child(n+10):before{
	content: counter(number);
}
.steps__item-text{
	flex-basis: 174px;
}

/* _________________________________________________ */
.course__item-img{
	position: relative;
	color:#fff;
	font-size: 11px;
	font-family: 'Yeseva One', cursive;
}
.couses__title{
	padding: 15px;
	background-color: #BEA495;
	position: absolute;
	left: 10px;
	top: 45%;
}
.couses__time{
	padding: 7px 10px;
	background-color: #BEA495;
	position: absolute;
	left: 10px;
	top: 60%;
}
.couses__time span{
	font-size: 10px;
	font-family: 'Comfortaa', cursive;
	
}
.couses__price{
	padding: 19px 10px;
	background-color: #BEA495;
	position: absolute;
	right: 0px;
	bottom: -2px;
}
/* _________________________________________________ */
.team{
	background-color:  #A5978E;
	padding: 50px 0 80px;
	color:#fff;
	margin-bottom: 150px;
}
.team__content{
	padding-bottom: 0;
	gap: 75px;
}
.team__item{
	position: relative;
}
.team__box{
	text-align: center;
	background-color: #7B6152;
	width: 165px;
	padding: 14px 10px;
	position: absolute;
	bottom: 13px;
	right: 30px;
	z-index: 2;
	
}
.team__item-name{
	font-size: 12px;
	font-family: 'Yeseva One', cursive;
}
.team__item-text{
	font-size: 10px;
}

/* _________________________________________________ */
.feedback .section__descr{
	margin-right: 20px; 
}
.feedback__item{
	display: grid;
	align-items: center;
	grid-template-columns: auto auto;
	gap: 0 16px;
}
.feedback__video {
	position: relative;
}
.feedback__video-btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: transparent;
}
.feedback__item-content{
	width: 372px;
}
.feedback__item-social img{
	margin-bottom: 12px;
}
.feedback__item-name{
	font-family: 'Yeseva One', cursive;
	margin-bottom: 15px;
	font-size: 16px;
}
.feedback__item-text{
	margin-bottom: 15px;
}
.feedback__content{
	padding-bottom: 110px;
	
}
.feedback__item-btn{
	position: absolute;
	bottom:5px;
	right: 0;
}
.feedback__swiper{
	width: 760px;
	overflow: hidden;
}
.feedback__content  .swiper-pagination{
	bottom: 50px;
}
.swiper-pagination-bullet{
	width: 53px;
	height: 4px;
	background-color: #BEA495;
	border-radius: 0;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background-color: #7B6152;
}
/* _________________________________________________ */
.sertificates__slider{
	width: 910px;
	overflow: hidden;
}
.sertificates-descr {
	margin-right: 20px;
}
.sertificates__content {
	padding-bottom: 115px;
}
.sertificates__content .swiper-pagination{
	bottom: 60px;
}
/* _________________________________________________ */
.acordeon{

}
.acordeon__item{
	background-color: #fafafa;
	margin-bottom: 10px;
}
.acordeon__title{
	display: block;
	font-family: 'Yeseva One', cursive;
	background-color: transparent;
	border: none;
	padding: 16px 50px 13px  13px;
	font-style: 16px;
	position: relative;
	width: 100%;
	text-align: left;
}

.acordeon__title::after{
	content: "";
	width: 16px;
	height: 16px;
	background-image: url("../image/arrow.svg");
	position: absolute;
	right: 26px;
	top:17px;

}
 .acordeon__title.acordeon__title-active::after{
	transform: rotate(180deg);
}
.acordeon__text {
	opacity: 0;
	max-height: 0;
	transition: opacity .3s, max-height .3s;
}
.acordeon__text ol{
	padding: 20px 40px;
}
.acordeon__text.acordeon__text-visible{
opacity: 1;
}
.acordeon__text li{
	list-style-type:decimal-leading-zero; 
}




.promo{
	background-image: url('../image/promo.jpg');
	background-repeat:no-repeat ;
	background-size: cover;
	background-position: center ;
	padding: 140px 0;
	
}
.promo__container{
	display: flex;
	align-items: center;
}
.promo__text{
	font-size: 40px;
	font-family: 'Yeseva One', cursive;
	color:#fff;
	padding-left: 56px;
	max-width: 765px;
	margin-right: 110px;
}
.promo__link{
	color:#272727;
	background-color: #FFBD59;
	display: inline-block;
	padding: 14px 25px 12px;
	min-width: 135px;
}
/* _________________________________________________ */
.contacts{
	padding: 150px 0 50px;
}
.contacts__container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.form{
	background-color: #fff;
	width: 665px;
	padding: 75px 42px 67px;
}
.form__title{
	font-size: 40px;
	font-family: 'Yeseva One', cursive;
	margin-bottom: 50px;
}
.form__input{
	background: transparent;
	border: none;
	border-bottom: 1px solid #000;
	width: 100%;
	color:#000;
	padding:  7px 11px;
	margin-bottom: 15px;
}
.form__input::placeholder{
	color:#B3B3B3;
	font-size: 14px;
	font-family: 'Comfortaa', cursive;
}
.form__button{
	background-color: #FFBD59;
	margin-top: 35px;
	font-family: 'Comfortaa', cursive;
	font-size: 14px;
	padding: 17px 34px;
}
/* _________________________________________________ */

.footer__inner {
	padding-top: 40px;
	padding-bottom: 35px;
	display: flex;
	justify-content: space-between;
	align-items: center;

}

.footer__contacts {
	width: 230px;
	display: flex;
	flex-direction: column;
	gap: 15px 0;
}

.footer__social {
	padding-left: 0;
	display: flex;
	gap: 0 15px;
}








@media(max-width:1119px){
	.feedback__item-text {
		max-width: 290px;
	}
	
}

@media(max-width:1000px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.top__content {
		max-width: 333px;
		padding: 95px 0 70px;

	}

	.top__img--l {
		width: 655px;
	}

	.top__img {
		left: 300px;
	}

	.about__content {
		min-width: 300px;
	}

	.about__list {
		padding-left: 20px;
	}
	.section__inner {
		grid-template-columns: 300px auto;
	}
	.product__text{
		font-size: 10px;
	}
	.title{
		font-size: 40px;
	}
	.products__content {
		gap: 67px;
	}
	.steps__list {
		gap: 35px;;
  }
  .steps__item {
	gap: 31px;
}
.team__content{
	
	gap: 30px 20px;
}
.team{
	padding: 50px 0;
}
.feedback__inner{
	grid-template-columns: 260px auto;
}
.feedback__swiper{
	width: 690px;
}
.feedback__item-text {
	max-width: 260px;
	margin-bottom: 20px;
}
.sertificates__content  img{
	width: 280px;
}
.sertificates__slider {
	width: 680px;
}
.promo__text{
	padding-left: 0;
}
.contacts__img{
	width: 335px;
}
}

@media(max-width:900px) {
	.footer__inner {
		flex-wrap: wrap;
	}

	.footer__contacts {
		width: 100%;
		text-align: center;
		padding-top: 15px;
	}

	.footer__social {
		justify-content: center;
	}
	.products__content {
		gap: 30px 16px;
	}
	.section__inner {
		grid-template-columns: 200px auto;
	}
	.title{
		font-size: 15px;
	}
	.steps__list {
		gap: 25px 35px;;
  }
  .steps__item{
	gap:0 20px;
  }
  .steps__item-img{
	width: 85px;
	/* height: 150px; */
	object-fit: cover;
  }
  .steps__item-text{
font-size: 8px;
  }
  .feedback__item-text {
	font-size: 10px;
	box-sizing: border-box;
}
.feedback__item {
	grid-template-columns: 275px auto;
}
.feedback__video img{
	width: 100%;
	object-fit: cover;
}
.button {
	padding: 20px 35px;
}
.feedback__swiper {
	width: 580px;
}
}

@media(max-width:768px) {
	body {
		font-size: 10px;
	}

	.container {
		max-width: 640px;
	}

	.phone::before {
		width: 14px;
		height: 14px;
		top: -2px;
		left: -16px;
		background-size: cover;
	}

	.top__content {
		width: 236px;
	}

	.top__title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.top__text {
		margin-bottom: 20px;
	}

	.top__img {
		left: 180px;
	}

	.about__content {
		min-width: 200px;
	}

	.title {
		font-size: 15px;
	}

	.text {
		font-size: 10px;
	}

	.about__list {
		margin-left: 27px;
		margin-bottom: 33px;
		gap: 0 10px;
	}

	.about__item-text {
		font-size: 6px;
	}

	.about__img {
		margin-bottom: 6px;
	}

	.about__img--1 {
		width: 120px;
	}

	.about__img--2 {
		width: 190px;
	}

	.about__img--3 {
		width: 120px;
	}
	.products__item{
		width: 200px;
	}
	.products__img-img{
width: 100%;
margin-bottom: 6px;
	}
	.products__price{
		margin-bottom: 6px;
	}
	.product__item-title{
		margin-bottom: 10px;
	}
	.products__item-text{
		margin-bottom: 19px;
	}
	.button{
		font-style: 12px;
	}
	.products__item{
		font-size: 12px;
	}
	.products__item-text{
		font-size: 8px;
	}
	.button{
		padding: 10px 26px;
	}
	.steps__item::before{
		font-size: 20px;
	}
	.couses__title{
		padding: 6px;
		left: -1px;
		top: 40%;
	}
	.couses__time{
		padding: 5px;
		left: -1px;
		top: 55%;
	}
	.couses__price{
		padding:  10px;
		bottom: 9px;
	}
	.team__img{
		width: 143px;
	}
	.team__box{
		width: 109px;
		padding: 9px 6px 10px;
		bottom: 8px;
		right: -24px;
	}
	.team__item-name{
		font-size: 8px;
		font-family: 'Yeseva One', cursive;
	}
	.team__item-text{
		font-size: 7px;
	}
	.feedback__item-content {
		width: 250px;
		padding-bottom: 33px;
  }
	.feedback__item {
		grid-template-columns: auto auto;
  }
	.feedback__video {
		width: 200px;
	}
	.feedback__swiper {
		width: 468px;
  }
  .promo__text{
	font-size: 15px;
  }
  .promo__link {
	padding: 10px 20px 10px;
	min-width: 100px;
}
.promo{
	padding: 67px 0;
}
.contacts__img{
	width: 187px;
	object-fit: cover;
}
.form{
	width: 440px;
	gap: 15px;
	padding: 30px 22px;
}
.form__title{
	font-size: 15px;
	margin-bottom: 20px;
}
.form__button{
	font-size: 10px;
}
.form__button {
	margin-top: 0px;
}
}

@media(max-width:640px) {
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}

	.header__menu-list {
		width: 160px;
		background-color: #7B6152;
		flex-direction: column;
		align-items: center;
		padding: 25px 35px 25px 45px;
		color: #FFF8F3;
		gap: 20px;
		position: absolute;
		left: 0;
		transform: translateY(-150%);
		top: 0;
		transition: transform 0.5s ease;
		z-index: 5;
	}

	.header__menu-list.menu--open {

		transform: translateY(0%);

	}

	.header__menu {
		order: 1;
	}

	.menu__btn {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 30px;
		height: 25px;
		border: none;
		background-color: transparent;
		border-radius: 0;
		cursor: pointer;
	}

	.menu__btn span {
		height: 1px;
		width: 100%;
		background-color: #7B6152;
	}
	.section__inner{
		display: block;
	}
	.section__descr{
		margin-bottom: 30px;
		text-align: center;
	}
	.about{
		margin-bottom: 50px;
	}
	.section{
		padding-bottom: 50px;
	}
	.section__content{
		padding-bottom: 62px;
	}
	.team__box{
		right: auto;
		left: 80px;
	}
}

@media(max-width:500px) {
	.footer {
		padding: 50px 0;

	}

	.footer__inner {
		flex-direction: column;
		row-gap: 50px;
	}

	.menu__list-footer {
		flex-direction: column;
		font-size: 14px;
	}
}

@media(max-width:480px) {
	.top {
		padding: 20px 0 50px;
	}

	.top__img--l {
		width: 308px;
		left: 167px;
	}

	.top__content {
		width: 180px;
	}

	.top__title {
		font-size: 15px;
		margin-bottom: 15px;
	}

	.top__text {
		font-size: 8px;
		margin-bottom: 15px;
	}

	.top__btn {
		padding: 11px 23px;
		font-size: 10.628px;
	}

	.about__content {
		min-width: 170px;
	}

	.about__list {
		margin-left: 0;
		padding-left: 10px;
	}

	.about__item-text {
		display: none;
	}

	.about__img--1,
	.about__img--3 {
		width: 80px;
	}

	.about__img--2 {
		width: 140px;
	}

	.about__list {
		gap: 10px;
		align-items: flex-end;
		margin-bottom: 0;
	}

	.about__container {
		align-items: flex-end;
	}
	.section__descr{
		margin: 0 auto 30px;
		width: 300px;
	}
	.steps__list {
		gap: 25px 40px;
  }
  .steps__item{
	gap: 16px;
  }
  .steps__item-img {
	width: 66px;
}
.steps__item-text{
	font-size: 6px;
}
.team{
	margin-bottom: 50px;
}
.sertificates__content img {
	width: 200px;
}
.sertificates__slider {
	width:550px;
	margin: 0 auto;
}
.promo{
	padding: 42px 0;
}
.contacts__img{
	display: none;
}
.contacts{
	padding-top: 50px;
}
}


@media(max-width:404px) {
	.steps__list {
		gap: 20px 25px;
  }
  .courses__content {
	grid-template-columns: auto;
  }
  .course__item{
	width: 255px;
  }
  .section__content {
	grid-template-columns:  auto;
}
.team__img{
	width: 204px;
}
.team__box{
	padding: 14px 10px;
	bottom: 15px;
	width: 150px;
	right: auto;
	left:148px ;
}
.team__item-name{
	font-size: 12px;
	margin-bottom: 2px;
}
.team__item-text{
	font-size: 10px;
}



}
@media(max-width:360px) {
	.top__img--l {
		width: 150px;

	}
	

	.top__img {
		left: auto;
		right: 0;
	}

	.top__content {
		width: 203px;
		padding: 20px 0 0;
		position: relative;
	}

	.top__title {
		font-size: 18px;
	}

	.top__text {
		font-size: 10px;
	}

	.top__btn {
		padding: 11px 23px;
		font-size: 10.628px;
	}

	.body {
		font-size: 8px;
	}

	.about__content {
		min-width: 233px;
	}

	.title {
		margin-bottom: 10px;
	}

	.about__list {
		margin-left: 12px;
		margin-right: 12px;
		gap: 15px;
		padding-bottom: 30px;
	}

	.about {
		padding-top: 25px;
		padding-bottom: 10px;
	}

	.about__img--2 {
		display: none;
	}

	.about__container {}

	.text {
		font-size: 8px;
	}
	.section__descr{
		width: 235px;
		margin-bottom: 25px;
	}
	.title{
		margin-bottom: 10px;
		font-size: 15px;
	}
	.product__text{
 font-size: 10px;
	}
	.products__item{
		width: 150px;
	}
	.products__content {
		gap: 40px 7px;
  }
  .button{
	font-size: 8px;
	padding: 8px 20px;
  }
  .products__price{
	font-size: 10px;
	margin-bottom: 5px;
  }
  .products__item-text{
	margin-bottom: 16px;
  }
  .course__item{
	width: 255px;
  }
  .sertificates__slider{
	width: 200px;
  }
  .feedback__item {
	grid-template-columns: auto;
	text-align: center;
}
.feedback__swiper{
	width: 250px;
	margin: 0 auto;
}
.feedback__video {
	width: 250px;
	margin: 0 auto 20px;
}
.feedback__item-btn {
	bottom: 0px;
	left: 0;
	max-width: 100px;
	margin: 0 auto;
}
.promo__text{
	margin-right: 50px;
}
.promo__link{
	width: 80px;
	padding: 11px 16px;
}
}