/*Меняем то, как высчитываются размеры блоков*/

html {
	box-sizing: border-box;
}

/*Псевдоэлементы наследуют пересчёт размеров*/

*,
*::before,
*::after {
	box-sizing: inherit;
}

/*Добавляем шрифты*/

@font-face {
  font-family: 'Comfortaa';
  src: local('Comfortaa Light'), local('Comfortaa-Light'),
      url('../fonts/Comfortaa-Light.woff2') format('woff2'),
      url('../fonts/Comfortaa-Light.woff') format('woff'),
      url('../fonts/Comfortaa-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Comfortaa';
  src: local('Comfortaa Regular'), local('Comfortaa-Regular'),
      url('../fonts/Comfortaa-Regular.woff2') format('woff2'),
      url('../fonts/Comfortaa-Regular.woff') format('woff'),
      url('../fonts/Comfortaa-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Comfortaa';
  src: local('Comfortaa Bold'), local('Comfortaa-Bold'),
      url('../fonts/Comfortaa-Bold.woff2') format('woff2'),
      url('../fonts/Comfortaa-Bold.woff') format('woff'),
      url('../fonts/Comfortaa-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Sensei';
  src: local('sensei-medium'), local('sensei-medium'),
      url('../fonts/sensei-medium.woff2') format('woff2'),
      url('../fonts/sensei-medium.woff') format('woff'),
      url('../fonts/sensei-medium.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/*Ссылки наследуют цвет, и убираем подчёркивание*/

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
}

/*Здесь задём базовые свойства для текста (и не только)*/

body {
  font-family: 'Comfortaa';
	font-weight: 700;
  font-style: normal;
  color: #45354D;
}

/*Элементы формы наследуют стиль шрифта от body*/

input, textarea, select, button {
  font: inherit;
}

/*Ограничиваем ширину контента и выравниваем по сентру*/

.container {
  width: 1224px;
  margin: 0 auto;
}

/*Класс сброcа стилей списков*/

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*Класс сброcа стилей кнопок*/

.btn {
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

/*Класс для добавления свойства flex элементам*/

.flex {
  display: flex;
}

.title-section {
  margin: 0;
}

/*Стили для шапки сайта*/

.header {
  position: fixed;
  z-index: 20;
  width: 100%;
  top: 0;
  padding: 25px 0 21px;
  background: #F3E1FB;
  font-weight: 700;
  font-size: 18px;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 5px;
  background: url(../img/header-line.svg);
}

/*Стили для верхнего меню*/

.main-nav {
  justify-content: space-between;
}

.main-nav__link {
  color: rgba(0, 0, 0, 0.7);
}

.main-nav__link:hover {
  color: #A282D2;
}

/*Раздел Промо-блока верхнего, лого и контакты*/

.contact__phone {
  position: relative;
  margin-right: 40px;
  font-weight: 700;
  font-size: 20px;
}

.contact__phone:before {
  content: '';
  position: absolute;
  top:-10px;
  left: -33px;
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/phone-icon.svg) no-repeat;
}

.contact__adress {
  position: relative;
  margin-left: 52px;
  font-weight: 700;
  font-size: 18px;

}

.contact__adress:before {
  content: '';
  position: absolute;
  top:-10px;
  left: -45px;
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/adress-pin.svg) no-repeat;
}

.contact__info {
  justify-content: flex-end;
}

.contact__phone,
.contact__adress {
  text-align: right;
}

.promo {
  position: fixed;
  width: 100%;
  height: 600px;
  top: 67px;
  z-index: -1;
  background-color: #d1c2e7;
  background: url(../img/kids.png) no-repeat, url(../img/cloud-promo.png) no-repeat, url(../img/bg.jpg) no-repeat;
  background-size: 700px, 70%, cover;
  background-position: 70% bottom, right bottom, center center;
}

.promo__line {
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  margin-bottom: 90px;
}

.logo {
  font-family: 'Sensei';
  font-weight: 400;
  font-size: 33px;
}

.offer__main {
  margin-bottom: 20px;
  font-family: 'Sensei';
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.2;
}
.offer__main span {
  position: relative;
  display: inline-block;
  font-size: 46px;
}

.offer__main span:after {
  content: '';
  position: absolute;
  top: 0;
  right: -42px;
  display: block;
  width: 37px;
  height: 43px;
  background: url(../img/icon-gift.svg) no-repeat;
}

.offer__main b {
  display: block;
  margin-bottom: 13px;
  font-size: 78px;
  line-height: 0.9;
}

.offer__sub {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

/*Стили для блока преимуществ*/

.feature {
  position: relative;
  margin-top: 750px;
  padding-bottom: 150px;
  background: url(../img/star-bg.svg) #fff no-repeat;
}

.feature__list {
  justify-content: space-between
}

.feature:before {
  content: '';
  position: absolute;
  top: -270px;
  display: block;
  width: 100%;
  height: 270px;
  background: url(../img/cloud-1.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

.feature__title {
  margin-bottom: 70px;
  padding-top: 15px;
  text-align: center;
  font-size: 28px;
}

.feature__item {
  position: relative;
  width: 16%;
  padding-top: 100px;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
}

.feature__item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50px;
  display: block;
  width: 97px;
  height: 83px;
  background: url(../img/feature-1.svg) no-repeat;
}

.feature__item:nth-child(2):before {
  left: 50%;
  margin-left: -50px;
  width: 100px;
  height: 83px;
  background: url(../img/feature-2.svg) no-repeat;
}

.feature__item:nth-child(3):before {
  left: 50%;
  top: -25px;
  margin-left: -55px;
  width: 118px;
  height: 114px;
  background: url(../img/feature-3.svg) no-repeat;
}

.feature__item:nth-child(4):before {
  left: 50%;
  top: -5px;
  margin-left: -50px;
  width: 115px;
  height: 100px;
  background: url(../img/feature-4.svg) no-repeat;
}

.feature__item:nth-child(5):before {
  left: 50%;
  top: -15px;
  margin-left: -65px;
  width: 116px;
  height: 101px;
  background: url(../img/feature-5.svg) no-repeat;
}

.feature__item:nth-child(6):before {
  left: 50%;
  top: -15px;
  margin-left: -50px;
  width: 112px;
  height: 93px;
  background: url(../img/feature-6.svg) no-repeat;
}

/*Стили для блока Студия*/

.studio {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #fff;
  background-image: url(../img/line-gradient.png), url(../img/line-bg.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: top left, 0 50px;
  background-size: 100%;
}

.title-section,
.page__title {
  margin-bottom: 10px;
  font-family: 'Sensei';
  font-weight: 400;
  font-size: 63px;
}

.title-section-studio {
  font-size: 42px;
  margin-bottom: 10px;
}

.studio .subtitle-section {
  margin-bottom: 20px;
}

.subtitle-section {
  margin: 0;
  margin-bottom: 40px;
  font-size: 18px;
}

.gallery-box {
  margin-bottom: 60px;
}

.gallery {
  justify-content: space-between;
  margin-bottom: 10px;
}

.gallery__col {
  flex-wrap: wrap;
}

.gallery__col--1 {
  width: 50%;
  min-height: 450px;
}

.gallery__col--2 {
  width: 24%;
}

.gallery__col--2 .gallery__link,
.gallery__col--3 .gallery__link {
  height: 49%;
}

.gallery__col--3 {
  width: 24%;
}

.gallery__link {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery__col--2 .gallery__item:not(:last-child),
.gallery__col--3 .gallery__item:not(:last-child) {
  margin-bottom: 10px;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgb(69 53 77 / 10%);
}

.gallery__link:hover .gallery__img {
  box-shadow: 0 3px 20px rgb(69 53 77 / 50%);
}

.button-section {
  position: relative;
  text-align: center;
}

.button {
  position: relative;
  display: inline-block;
  padding: 20px 40px;
  background: #E6B0FF;
  box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.5), 5px 5px 10px rgba(170, 170, 204, 0.25), 10px 10px 20px rgba(170, 170, 204, 0.5), -10px -10px 20px #FFFFFF;
  border-radius: 32px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.button:hover {
  background: #A282D2;
  box-shadow: 5px 5px 10px rgba(170, 170, 204, 0.25), 10px 10px 20px rgba(170, 170, 204, 0.5);
}

.button-section--line:after {
  position: absolute;
  left: 0;
  top: 30px;
  content: '';
  display: block;
  width: 37%;
  height: 2px;
  background: #E6B0FF;
}

.button-section--line:before {
  position: absolute;
  right: 0;
  top: 30px;
  content: '';
  display: block;
  width: 37%;
  height: 2px;
  background: #E6B0FF;
}

.catalog__cart:hover .img__cart {
  box-shadow: rgb(69 53 77 / 58%) 0px 5px 10px;
}

/*стили секции программы*/

.programs {
  padding-top: 200px;
  padding-bottom: 200px;
  background-color: #74E1E0;
  background-image: url(../img/programm-bg-top.jpg), url(../img/programm-bg-bottom.jpg), url(../img/program-bg-left.svg), url(../img/program-bg-right.svg);
  background-repeat: no-repeat;
  background-size: 100%, 100%, 220px, 189px;
  background-position: top, bottom, 50px center, 97% center;
}

.catalog {
  justify-content: space-between;
}

.button--color-blue {
  background: #7AECEB;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
  color: #45354D;
}

.button--color-blue:hover {
  background: #79E1E0;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
}

.block-header {
  justify-content: space-between;
}

.hover-image-scale {
  display: inline-block;
}

.hover-image-scale img {
  transition: 0.5s; /* Время эффекта */
  display: block;
}

.hover-image-scale img:hover {
  transform: scale(1.1); /* Увеличиваем масштаб */
}

.img__cart {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 7px solid #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 3px 25px rgba(69, 53, 77, 0.2);
}

/*стили секции аниматоры*/

.animators {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #FFFFFF;
  background-image: url(../img/line-gradient-blue.png), url(../img/line-bg.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: top left, 0 50px;
  background-size: 100%;
}

.catalog-animators {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.catalog__cart {
  width: 23%;
}

.img__cart-circl {
  border-radius: 50%;
}

.catalog__cart:hover {
  color: #573BA6;
}

.catalog__cart:hover .img__cart-circl {
  box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.5), 5px 5px 10px rgba(170, 170, 204, 0.25), 10px 10px 20px rgba(170, 170, 204, 0.5), -10px -10px 20px #FFFFFF;
}

.button-person {
  background: #FFCE58;
  color: #45354D;
}

.button-person:hover {
  background: #FDC12F;
}

.button-section--line-person:after {
  background: #FFCE58;
}

.button-section--line-person:before {
  background: #FFCE58;
}

.catalog-animators .catalog__cart-title {
  text-align: center;
}

.catalog-animators .catalog__cart  {
  margin-bottom: 30px;
}

/*стили секции мастер-классы*/

.master-class {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url(../img/mk-bg-left.svg), url(../img/mk-bg-right.svg), url(../img/master-class-bg-top.jpg), url(../img/master-class-bg-bottom.jpg);
  background-repeat: no-repeat;
  background-size: 220px, 189px, 100%, 100%;
  background-position: 50px center, 97% center, top, bottom;
  background-color: #E6B0FF;
}

.catalog__cart-title {
  padding: 0 30px;
  margin-top: 10px;
  font-size: 20px;
  text-align: center;
}

/*стили секции добавки*/

.dop-products {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #FFFFFF;
}

.dop-products__title {
  margin-top: 0;
  margin-bottom: 75px;
  font-family: 'Sensei';
  font-weight: 700;
  font-size: 38px;
  text-align: center;
}

.dop-products__sub-title {
  margin: 0;
  font-weight: 400;
  font-size: 22px;
  font-family: 'Sensei';
  line-height: 120%;
  font-size: 20px;
  color: rgba(69, 53, 77, 0.85);
}

.dop-products__item-1 {
  width: 25%;
  padding-right: 50px;
  text-align: center;
}

.dop-products__item-2 {
  width: 50%;
  padding-top: 58px;
  text-align: center;
}

.dop-products__item-3 {
  width: 25%;
  padding-left: 50px;
  text-align: center;
}

.dop-products__link {
  display: block;
}

.dop-products__item .dop-products__link:not(:last-child) {
  margin-bottom: 60px;
}

.dop-products__img {
  width: 200px;
  margin-bottom: 12px;
  border-radius: 50%;
}

.dop-products__img:hover {
  box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.5), 5px 5px 10px rgba(170, 170, 204, 0.25), 10px 10px 20px rgba(170, 170, 204, 0.5), -10px -10px 20px #FFFFFF;
}

.dop-products__general-img {
  width: 90%;
  margin-bottom: 66px;
}

.dop-products__link:hover .dop-products__sub-title {
  color: #573BA6;
}

/*стили секции видео*/
.video {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #FFFFFF;
}

.video__galery {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.video__item {
  margin-bottom: 15px;
  width: 23%;
}

.video__name {
  font-size: 18px;
}

/*стили секции о нас*/
.about {
  padding-bottom: 120px;
  background-color: #FFFFFF;
}
.about__text {
  width: 66%;
}
.about__decor {
  background-image: url(../img/cake.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 25%;

}

.about__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
}

.about__text .subtitle-section {
  font-weight: 700;
font-size: 22px;
line-height: 140%;
}

/*стили секции отзывы*/
.reviews {
  padding-top: 200px;
  padding-bottom: 200px;
  background-color: #74E1E0;
  background-image: url(../img/programm-bg-top.jpg), url(../img/reviews-bg-bottom.jpg), url(../img/reviews-bg-left.svg), url(../img/reviews-bg-right.svg);
  background-repeat: no-repeat;
  background-size: 100%, 100%, 220px, 189px;
  background-position: top, bottom, 50px center, 97% center;
}

.reviews__content {
  justify-content: space-between;
}

.reviews__item {
  width: 32%;
}

.reviews__item:hover .reviews__text {
  text-decoration: underline;
}

.reviews .subtitle-section {
  margin-bottom: 50px;
}
.reviews__name {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 22px;
  line-height: 190%;
}
.reviews__text {
  margin: 0;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 190%;
}
.reviews__date {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 190%;
}
.footer__container {
  flex-wrap: wrap;
}


/*стили секции подвал*/

.footer {
  background-color: #E6B0FF;
  background-image: url(../img/footer-cloud.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
}

.footer__container {
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 230px;
  }

.footer__nav {
  font-weight: 700;
  font-size: 14px;
  line-height: 112%;
}

.footer-nav__item:not(:last-child) {
  margin-bottom: 20px;
}

.footer-nav__link:hover {
  color: #6b599b;
}

.footer-nav:not(:last-child) {
  margin-right: 60px;
}

.footer__info {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}

.footer__contact {
  font-weight: 700;
  font-size: 14px;
  line-height: 190%;
  text-align: right;
}

.webfoxart {
  font-weight: 700;
}

.webfoxart:hover {
  color: #6b599b;
}

.offer__sub {
  width: 40%;
}

.nav-mobile {
  display: none;
}

.animators .catalog__cart:last-child {
  display: none;
}

.footer__social {
  padding-top: 20px;
  justify-content: flex-end;
}

.footer__social .footer__social-item:not(:last-child) {
  margin-right: 5px;
}

/*Страница*/
.page {
  margin-top: 150px;
  margin-bottom: 150px;
  background: url(../img/star-bg.svg) #fff no-repeat;
}

.page__title {
  margin-top: 0;
  margin-bottom: 40px;
}

.page__bread {
  margin-bottom: 20px;
}

.page p {
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
}

.category-page {
  justify-content: space-between;
  flex-wrap: wrap;
}

.category-page__link {
  display: flex;
  width: 49%;
  flex-direction: column;
  margin-bottom: 30px;
}

.gallery-page {
  margin-bottom: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.gallery-page__item {
  width: 32.7%;
  margin-bottom: 10px;
}

.category-page__pic {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgb(69 53 77 / 10%);
}

.page .catalog {
  flex-wrap: wrap;
}

.category-page__title {
  margin-top: 0;
}

.page .dop-products {
  padding-top: 0;
  padding-bottom: 50px;
}

.page .dop-products__item-2 {
  padding-top: 0;
}

.page .title-section {
  font-size: 42px;
  margin-bottom: 10px;
}

.page .video {
  padding-top: 0;
  padding-bottom: 50px;
}

.page .foto {
  margin-bottom: 100px;
}

.page .button-section--line {
  margin-bottom: 50px;
}

.page .button-section--line .btn {
  color: #45354D;
  font-size: 22px;
}

.button-section--line:after,
.button-section--line:before {
  top: 35px;
}

.page .reviews__content {
  flex-wrap: wrap;
}

.page div.reviews__item:hover .reviews__text {
  text-decoration: none;
}

.page .reviews__item {
  width: 100%;
  margin-bottom: 40px;
  background: #F3E1FB;
  border-radius: 3px;
  padding: 30px;
  box-shadow: 0 3px 20px rgb(69 53 77 / 10%);
}

.statii .category-page__title {
  font-size: 18px;
  padding: 20px 30px;
}

.statii .category-page__pic {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.statii .category-page__link {
  background: #fff;
  box-shadow: 0 3px 20px rgb(69 53 77 / 10%);
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.statii .category-page__link:hover {
  box-shadow: 0 3px 20px rgb(69 53 77 / 20%);
}

.singl img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: cover;
}

.singl-produkt {
  justify-content: space-between;
  padding-top: 30px;
  border-top: 2px solid #E6B0FF;
}

.singl-produkt__text {
  width: 60%;
}

.singl-produkt__text p {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

.singl-produkt__img {
  width: 35%;
  height: 600px;
}

.contact-block {
    justify-content: space-between;
    margin-bottom:20px;
}

.contact-col {
    width:49%;
}

.category-page__link--girl-animators {
  width:32%;  
}

@media (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0 40px;
  }

  .header {
    padding: 22px 0 15px;
    font-size: 14px;
  }

  .main-nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .promo {
    height: 450px;
    top: 50px;
    background-size: 500px, 80%, cover;
    background-position: 85% bottom, right bottom, center center;
  }

  .offer__main {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .offer__main b {
    margin-bottom: 9px;
    font-size: 56px;
  }

  .offer__sub {
    font-size: 16px;
  }

  .promo__line {
    margin-bottom: 50px;
  }

  .feature {
    margin-top: 550px;
    padding-bottom: 80px;
  }

  .studio {
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .feature:before {
    top: -200px;
    background-size: 100%;
  }

  .programs {
    padding-top: 130px;
    padding-bottom: 130px;
    background-image: url(../img/programm-bg-top.jpg), url(../img/programm-bg-bottom.jpg), url(../img/program-bg-right-1200.svg), url(../img/program-bg-right-1200-1.svg), url(../img/program-bg-left-1200.svg), url(../img/program-bg-left-1200-1.svg);
    background-repeat: no-repeat;
    background-size: 100%, 100%, 50px, 110px, 150px, 20px;
    background-position: top, bottom, 90% 65px, 100% 170px, -50px 75%, 10px 90%;
  }

  .animators {
    padding-top: 130px;
    padding-bottom: 130px;
    background-color: #FFFFFF;
    margin-top: -5px;
  }

  .master-class {
    padding-top: 130px;
    padding-bottom: 130px;
    background-color: #E6B0FF;background-image: url(../img/master-class-bg-top.jpg), url(../img/master-class-bg-bottom.jpg), url(../img/program-bg-right-1200.svg), url(../img/program-bg-right-1200-1.svg), url(../img/program-bg-left-1200.svg), url(../img/program-bg-left-1200-1.svg);
    background-repeat: no-repeat;
    background-size: 100%, 100%, 50px, 110px, 150px, 20px;
    background-position: top, bottom, 90% 65px, 100% 170px, -50px 75%, 10px 90%;
  }

  .dop-products {
    margin-top: -3px;
  }

  .contact__phone,
  .contact__adress {
    font-size: 16px;
  }

  .contact__phone:before {
    left: -25px;
    width: 30px;
    height: 30px;
    background-size: contain;
  }

  .contact__adress:before {
    left: -37px;
    width: 30px;
    height: 30px;
    background-size: contain;
  }

  .contact__phone {
    margin-right: 30px;
  }

  .feature {
    background-size: 100%;
    background-repeat: repeat;
  }

  .feature__title {
    font-size: 24px;
  }

  .title-section,
  .page__title {
    font-size: 50px;
    margin-bottom: 10px;
  }

  .subtitle-section {
    font-size: 18px;
    line-height: 160%;
  }

  .block-header__col-program {
    width: 70%;
  }

  .dop-products__title {
    font-size: 44px;
  }

  .dop-products__sub-title {
    font-size: 18px;
  }

  .dop-products__img {
    width: 160px;
  }

  .dop-products__general-img {
    width: 80%;
  }

  .video__name {
    font-size: 16px;
  }

  .about__decor {
    background-position: 95% center;
  }

  .reviews {
    padding-top: 130px;
    padding-bottom: 160px;
    background-color: #74E1E0;
    background-image: url(../img/programm-bg-top.jpg), url(../img/reviews-bg-bottom.jpg);
    background-repeat: no-repeat;
    background-size: 100%, 100%;
    background-position: top, bottom;
  }

  .reviews__content {
    padding-top: 20px;
  }

  .reviews__item {
    width: 30%;
  }

  .reviews__name {
    font-size: 18px;
  }

  .reviews__text {
    margin-bottom: 10px;
  }

  .reviews__text,
  .reviews__date {
    font-size: 14px;
  }

  .footer {
    padding-top: 80px;
    padding-bottom: 150px;
  }

  .footer__nav,
  .footer__contact {
    font-size: 14px;
  }

  .header::before {
    background-size: contain;
  }

  .page__title {
    margin-bottom: 40px;
  }

}

@media (max-width: 992px) {
  .promo {
    top: 60px;
    height: 40vh;
    background-size: 430px, 0, cover;
    background-position: 90% bottom, right bottom, center center;
  }

  .promo__line,
  .main-nav {
    display: none;
  }

  .nav-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-mobile__btn  {
    display: block;
    background: #A282D2;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
  }

  .header {
    background: linear-gradient(270deg, #EEC9FF 0.83%, #F9EBFF 99.48%);
    padding: 15px 0 11px;
  }

  .logo {
    font-size: 28px;
  }

  #menu__toggle {
    opacity: 0;
  }

  #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }

  #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
  }

  #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }

  #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
  }

  .menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 50px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1;
  }

  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #45354D;
    transition-duration: .25s;
  }

  .menu__btn > span::before {
    content: '';
    top: -8px;
  }

  .menu__btn > span::after {
    content: '';
    top: 8px;
  }

  .menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: #E6B0FF;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    transition-duration: .25s;
  }

  .menu__item {
    display: block;
    padding: 12px 50px;
    color: #45354D;
    font-size: 20px;
    text-decoration: none;
    transition-duration: .25s;
  }

  .menu__item:hover {
    background-color: #A282D2;
    color: #fff;
  }

  .promo__line {
    margin-bottom: 50px;
  }

  .offer__sub {
    display: block;
    font-size: 14px;
    width: 50%;
  }

  .feature {
    margin-top: 43vh;
  }

  .feature__title {
    font-size: 20px;
    padding-top: 40px;
  }

  .feature:before {
    background-position: center center;
    height: 100px;
    top: -100px;
  }

  .feature__list {
    flex-wrap: wrap;
  }

  .feature__item {
    width: 32%;
  }

  .feature__item:nth-child(-n+3) {
    margin-bottom: 40px;
  }

  .gallery-index {
    flex-wrap: wrap;
  }

  .gallery-index__column-left {
    margin-bottom: 23px;
  }

  .gallery-index__column-left,
  .gallery-index__column-right {
    width: 100%;
  }

  .title-section,
  .page__title {
    font-size: 40px;
  }

  .button {
    padding: 15px 35px;
    font-size: 16px;
  }

  .button-section--line:before,
  .button-section--line::after {
    top: 25px;
    width: 33%;
  }

  .studio {
    padding-bottom: 110px;
  }

  .catalog {
    flex-wrap: wrap;
  }

  .animators .catalog__cart {
    width: 33%;
    text-align: center;
    max-width: 300px;
  }

  .catalog__cart:nth-child(-n+2) {
    margin-bottom: 25px;
  }

  .catalog__cart-title {
    font-size: 18px;
  }

  .programs {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .animators {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .video__item {
    margin-bottom: 15px;
    width: 48%;
  }

  .video {
    padding-bottom: 110px;
  }

  .about__text {
    width: 100%;
  }

  .about__decor {
    background-image: url(../img/cake-mobile.png);
    background-position: 95% bottom;
    padding-bottom: 100px;
  }

  .about {
    padding-bottom: 70px;
  }

  .reviews {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .promo__line {
    padding-top: 30px;
  }

  .offer__main {
    padding-top: 30px;
    font-size: 18px;
  }

  .offer__main span:after {
    content: '';
    position: absolute;
    top: 0;
    right: -36px;
    display: block;
    width: 30px;
    height: 28px;
    background: url(../img/icon-gift.svg) no-repeat;
    background-size: contain;
  }

  .offer__main b {
    font-size: 44px;
  }

  .offer__main span {
    font-size: 28px;
  }

  .dop-products__img {
    max-width: 130px;
  }

  .dop-products__title {
    margin-bottom: 40px;
  }

  .feature__item {
    font-size: 14px;
  }

  .animators .catalog__cart {
    width: 30%;
  }

  .animators .catalog__cart:last-child {
    display: block;
  }

  .reviews__content {
    flex-wrap: wrap;
  }

  .reviews__item {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer__contact {
    text-align: left;
  }

  .header::before {
    display: none;
  }

  .logo {
    font-size: 28px;
    padding-left: 45px;
  }

  .footer__social {
    justify-content: flex-start;
  }

  .logo {
    padding-left: 0;
  }

  .category-page__link {
    display: block;
    width: 49%;
    height: 250px;
  }

  .category-page__title {
    font-size: 20px;
  }
  
  .contact-col {
      width:47%;
  }
  .contact-col p {
      font-size:16px;
  }
}

@media (max-width: 768px) {
  .gallery {
    flex-wrap: wrap;
  }

  .gallery__col--1,
  .gallery__col--2,
  .gallery__col--3 {
    width: 100%;
  }

  .gallery__col--1 {
    display: none;
  }

  .gallery__col--2 {
    margin-bottom: 10px;
  }

  .button-section--line:before,
  .button-section--line::after {
    top: 25px;
    width: 25%;
  }

  .dop-products__item-1 {
    padding-right: 0;
  }

  .dop-products__item-3 {
    padding-left: 0;
  }

  .subtitle-section {
    margin-bottom: 20px;
  }

  .dop-products__title {
    margin-bottom: 40px;
  }

  .video__item {
    margin-bottom: 15px;
    width: 48%;
  }

  .title-section {
    text-align: center;
  }

  .page .title-section {
    text-align: left;
  }

  .subtitle-section {
    text-align: center;
    margin-bottom: 30px;
  }

  .catalog__cart {
    width: 49%;
  }

  .block-header__col .button {
    margin-bottom: 40px;
  }

  .block-header  {
    flex-wrap: wrap;
    text-align: center;
  }

  .dop-products__img {
    width: 110px;
  }

  .block-header__col {
    width: 100%;
  }

  .about__text .title-section {
    text-align: left;
  }

  .about__text .subtitle-section {
    text-align: left;
  }

  .reviews__content {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .reviews__item {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer__info {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer__nav {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer__contact {
    width: 100%;
    text-align: left;
  }

  .logo {
    font-size: 28px;
    padding-left: 0;
  }

  .footer {
    padding-bottom: 120px;
  }

  .feature {
    margin-top:70vh;
  }

  .promo {
    height: 70vh;
    background-color: #d1c2e7;
    background: url(../img/kids.png) no-repeat, url(../img/lenta-yellow.svg) no-repeat, url(../img/star-white.svg) no-repeat, url(../img/star-white-two.svg) no-repeat, url(../img/lenta-pink.png) no-repeat, url(../img/cloud-promo.png) no-repeat, url(../img/bg.jpg) no-repeat;
    background-size: 90%, 200px, 70px, 50px, 400px, 0, cover;
    background-position: center bottom, -30px 80%, 10px 50%, 97% 5%, 97% 60%, right bottom, center center;
  }

  .offer__main,
  .offer__sub {
    width: 100%;
    text-align: center;
  }

  .feature:before {
    top: -80px;
  }

  .offer__main {
    padding-top: 100px;
    font-size: 28px;
  }

  .offer__main span {
    font-size: 68px;
  }

  .offer__main b {
    font-size: 68px;
  }

  .offer__main span:after {
    right: -50px;
    width: 50px;
    height: 50px;
  }

  .offer__sub {
    display:none;
  }

  .offer__main  {
    margin-bottom: 15px;
  }

  .category-page {
    flex-direction: column;
  }

  .category-page__link {
    width: 100%;
    height: auto;
    max-height: inherit;
    margin-bottom: 20px;
  }

  .page__title {
    margin-bottom: 40px;
  }

  .page {
    margin-bottom: 70px;
  }

  .singl-produkt {
    flex-direction: column;
  }

  .singl-produkt__text,
  .singl-produkt__img {
    width: 100%;
  }

  .singl-produkt__img {
    order: 1;
  }

  .singl-produkt__text {
    order: 2;
  }

}

@media (max-width: 576px) {
   .feature__title {
    padding-top: 80px;
  }
  .dop-products__catalog {
    flex-wrap: wrap;
  }
  .dop-products__item-1,
  .dop-products__item-2,
  .dop-products__item-3 {
    width: 100%;
  }
  .footer__info,
  .footer__nav {
    width: 100%;
  }

  .feature__item {
    width: 48%;
    justify-content: center;
  }

  .catalog {
    justify-content: center;
  }

  .catalog__cart {
    width: 100%;
    margin-bottom: 30px;
  }

  .animators .catalog__cart {
    width: 46%;
  }

  .animators .catalog__cart:last-child {
    display: none;
  }

  .button-section--line:before,
  .button-section--line::after {
      top: 25px;
      width: 20%;
  }

  .dop-products__title {
    font-size: 40px;
    margin-bottom: 0;
  }

  .dop-products__img {
    width: 250px;
  }

  .dop-products__img {
    max-width: 250px;
  }

  .dop-products__item-2 {
    margin-bottom: 60px;
  }
  .dop-products__item-2 {
    order: 1;
  }

  .dop-products__item-1 {
    order: 2;
    margin-bottom: 60px;
  }

  .dop-products__item-3 {
    order: 3;
  }

  .video__item {
    margin-bottom: 20px;
  }

  .about__text .subtitle-section {
    font-size: 20px;
  }

  .gallery-page__item {
    width: 49%;
  }
  
  .container {
    padding: 0 20px;
  }
  .menu__btn {
    left: 20px;
  }
  .offer__main {
    padding-top: 50px
  }
  .offer__main b,
  .offer__main span {
    font-size: 58px;
  }
  .offer__main b {
    margin-bottom: 10px;
  }
  .promo {
    height: 70vh;
    background-color: #d1c2e7;
    background: url(../img/kids.png) no-repeat, url(../img/lenta-yellow.svg) no-repeat, url(../img/star-white.svg) no-repeat, url(../img/star-white-two.svg) no-repeat, url(../img/lenta-pink.png) no-repeat, url(../img/cloud-promo.png) no-repeat, url(../img/bg.jpg) no-repeat;
    background-size: 110%, 200px, 70px, 50px, 400px, 0, cover;
    background-position: center bottom, -30px 80%, 10px 50%, 97% 5%, 97% 60%, right bottom, center center;
  }

  .feature {
    margin-top: 70vh;
  }

  .feature:before {
    top: -60px;
  }

  .feature {
    background-size: 170%;
  }

  .catalog__cart-title {
    font-size: 18px;
  }

  .catalog-animators {
    justify-content: center;
  }
  .animators .catalog__cart {
    width: 100%;
  }

  .button-section--line:before,
  .button-section--line::after {
    top: 25px;
    width: 15%;
  }

  .dop-products__sub-title {
    font-size: 22px;
  }

  .subtitle-section {
    font-size: 14px;
  }

  .title-section,
  .dop-products__title {
    font-size: 32px;
 }

 .video__item {
  width: 100%;
 }

 .category-page__title {
  margin-top: 5px;
 }
 
 .contact-block {
     flex-wrap:wrap;
 }
 
 .contact-col {
     width:100%;
 }
