@font-face {
  font-family: 'Hardcore';
  src: url("../font/Hardcore-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Muller';
  src: url("../font/MullerRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Muller';
  src: url("../font/MullerMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Muller';
  src: url("../font/MullerBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

*,
*::before,
*::after {
  outline: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
}

*:focus, *:active {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul, li {
  list-style-type: none;
}

ul, li, a {
  text-decoration: none;
}

.font-one {
  font-family: 'Muller', sans-serif;
}

.font-two {
  font-family: 'Hardcore', sans-serif;
}

html {
  scroll-behavior: smooth;
}

nav {
  position: relative;
}

body {
  background: #FFF6EE;
  font-family: 'Muller', sans-serif;
}

/*Global Class Styles*/
.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.section-container {
  position: relative;
  max-width: 1280px;
  width: 100%;
  padding: 0 50px;
  margin: 0 auto;
}

.grid {
  display: grid;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

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

.justify-center {
  justify-content: center;
}

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

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

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.flex-col {
  flex-direction: column;
}

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

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

@media (max-width: 992px) {
  .section-container {
    padding: 0 36px;
  }
}

@media (max-width: 600px) {
  .section-container {
    padding: 0 20px;
  }
}

@media (max-width: 320px) {
  body {
    min-width: 320px;
    overflow-x: auto;
  }
}

/*Buttons Start*/
.btn {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #545454;
  cursor: pointer;
  border-radius: 46px;
}

.btn_poster {
  display: block;
  padding: 20px;
  max-width: 360px;
  width: 100%;
  background-color: var(--workshop-btn-color);
  margin-top: 20px;
}

.btn_technique {
  max-width: 380px;
  width: 100%;
  padding: 20px;
  background-color: #f2377c;
  color: #fff6ee;
  margin-top: 30px;
}

.btn_priceWorkshop {
  width: 100%;
  max-width: 100%;
  background-color: #f2377c;
  color: #fff6ee;
  border-radius: 50px;
  padding: 20px;
  margin-top: 20px;
}

.btn_prices {
  border-radius: 50px;
  padding: 18px;
  background-color: #5fd9ce;
  max-width: 330px;
  width: 100%;
}

/*Media*/
@media (max-width: 768px) {
  .btn_prices {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .btn_poster {
    margin-top: 0;
    max-width: 80%;
  }
}

/*Buttons End*/
/*Header Start*/
.header {
  background: #FFF6EE;
  padding: 23px 0;
  position: fixed;
  z-index: 110;
  width: 100%;
}

.tablet-equalizer {
  width: 40px;
  display: none;
}

.header__nav_list {
  gap: 20px;
  max-width: 620px;
  width: 100%;
}

.header__list_item {
  gap: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #545454;
  position: relative;   
  padding: 5px 0; 
}

.header__list_item span {
  margin-top: 2px;
}

.header__list_item a {
  color: #545454;
}

.header__list_item.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 25px;
  width: 210px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
}
.header__list_item .sub-menu li {
  margin-top: 3px;
}
.header__list_item .sub-menu li:first-child {
  margin-top: 0;
}
.header__list_item .sub-menu li a {
  width: 100%;
  padding: 3px;
  font-size: 16px;
  line-height: 1.1;
  transition: color .1s linear;
}
.header__list_item .sub-menu li a:hover {
  color: #f2377c;
}
.header__mobile_item.menu-item-has-children.active {
  color: #f2377c;
}
.header__mobile_item.menu-item-has-children .sub-menu {
  display: none;
  margin-top: 15px;
  padding: 15px;
  border-radius: 12px;
  background-color: rgba(242, 55, 124, .1);
}
.header__mobile_item.menu-item-has-children .sub-menu li {
  font-size: 18px;
  padding: 10px 0;
}

.header__social {
  gap: 13px;
}
.header__social img {
  transition: all 0.2s linear;
}
.header__social img:hover {
  filter: contrast(300%);
}

.header__burger {
  display: none;
}

.header__mobile {
  display: none;
}

@media (max-width: 1200px) {
  .tablet-equalizer {
    display: block;
  }
  .header__nav,
  .header__social {
    display: none;
  }
  .header__burger {
    display: block;
  }
  .header__burger_close {
    position: absolute;
    top: 23px;
    right: 20px;
  }
  .header__mobile {
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 75px 50px;
    background: #FFF6EE;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 120;
  }
  .header__mobile.open {
    display: flex;
  }
  .header__mobile_list {
    gap: 25px;
  }
  .header__mobile_item {
    font-size: 25px;
    text-align: center;
    color: #545454;
    padding: 5px 10px;
    width: 100%;
  }
  .header__mobile_item:hover {
    color:#f2377c;
  }
  .header__mobile_social {
    display: flex;
    margin-top: 35px;
  }
}

/*Header End*/
/*Footer Start*/
.footer {
  padding: 38px 0 63px 0;
  background: #FFF6EE;
}

@media (max-width: 992px) {
  .footer {
    padding: 30px 0 30px 0;
  }
}

.footer__top {
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 992px) {
  .footer__top {
    margin-bottom: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.footer__caption {
  color: #545454;
  font-family: 'Muller';
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}

@media (max-width: 992px) {
  .footer__caption {
    text-align: center;
  }
}

.footer__caption a {
  color: #545454;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer__policy {
    margin-top: 40px;
  }
}

.footer__policy a {
  color: #545454;
  font-family: 'Muller';
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
}

.footer__middle {
  margin-bottom: 21px;
}

@media (max-width: 992px) {
  .footer__middle {
    margin-bottom: 40px;
  }
}

.footer__middle ul {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  gap: 19px;
}

@media (max-width: 992px) {
  .footer__middle ul {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .footer__middle ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__middle ul li {
  display: flex;
  justify-content: center;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 992px) {
  .footer__bottom {
    flex-direction: column;
    justify-content: center;
  }
}

.footer__bcaption {
  color: #aaaaaa;
  font-family: 'Muller';
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}

@media (max-width: 992px) {
  .footer__bcaption {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .footer__logo {
    display: none;
  }
}

.footer__meta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer__credits {
  color: #545454;
  font-family: 'Muller';
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}

.footer__credits a {
  color: #545454;
  text-decoration: underline;
}

.footer__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__payments img {
  display: block;
  height: 22px;
  width: auto;
}

.footer__legal {
  max-width: 640px;
  color: #545454;
  font-family: 'Muller';
  font-size: 13px;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
}

@media (max-width: 600px) {
  .footer__meta {
    margin-top: 20px;
    gap: 14px;
  }

  .footer__payments {
    gap: 10px;
  }

  .footer__payments img {
    height: 20px;
  }

  .footer__legal {
    font-size: 12px;
  }
}

/*Footer End*/

/*Promo Start*/
.promo {
  position: relative;
  background: #FDD6D1;
  padding: 82px 0 100px;
}

.promo__container_mob {
  display: none;
}

.promo__container {
  position: relative;
  background: #F2377C;
  max-width: 1325px;
  padding-right: 20px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.promo__container_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
}

.promo__container_img {
  position: relative;
}

.promo__container_img::before {
  content: url(../img/promo-decor-img-2.png);
  position: absolute;
  left: -150px;
  bottom: -140px;
}

.promo__container_img::after {
  content: url(../img/promo-decor-img-3.png);
  position: absolute;
  right: -720px;
  bottom: -330px;
}

.promo__container_img img {
  height: 100%;
  object-fit: cover;
}

.promo__container_content {
  position: relative;
  max-width: 380px;
  width: 100%;
}

.promo__container_content-studio {
  max-width: 480px;
}

.promo__container_title {
  font-size: 55px;
  color: #fff6ee;
  letter-spacing: -0.03em;
}

.promo__container_buttons {
  margin-top: 45px;
  gap: 20px;
}

.btn_promo {
  border-radius: 50px;
  padding: 18px;
  width: 100%;
  background-color: var(--workshop-btn-color, #5fd9ce);
  color: var(--workshop-btn-txt-color, #545454);
}

.btn_promo:hover {
  background-color: var(--workshop-btn-color-hover, #b7ede8);
}

.promoWorkshop .btn_promo {
  height: 56px;
}

.promo__title_wrap {
  position: relative;
  max-width: 780px;
  margin-top: -40px;
  padding: 50px 0;
}

.promo__title_wrap::after {
  content: url(../icons/promo-arrow.svg);
  position: absolute;
  right: -85px;
  bottom: -125px;
}

.promo__title {
  position: relative;
  font-size: 70px;
  line-height: 86%;
  letter-spacing: 0.05em;
  color: #f2377c;
  transform: rotate(-5deg);
  max-width: 600px;
  z-index: 1;
}

.promo__container_txt {
  margin-top: 70px;
  max-width: 700px;
}

.promo__container_txt p {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  color: #545454;
  margin-top: 20px;
}

.promo__container_txt-studio p {
  text-align: left;
  color: #fff;
}

.page-template-template-povod .promo__container_title,
.single-povod .promo__container_title,
.page-template-template-povod .promoWorkshop__container_txt p,
.single-povod .promoWorkshop__container_txt p {
  color: var(--workshop-block-color-txt, #fff);
}
.page-template-template-povod .promoWorkshop__container_buttons p,
.single-povod .promoWorkshop__container_buttons p {
  color: var(--workshop-btn-color, #fff);
}

@media (max-width: 1600px) {
  .promo__container_title {
    font-size: 45px;
  }
  .promo__container {
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }
}

@media (max-width: 1400px) {
  .promo__container {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  .promo__container_title {
    font-size: 35px;
  }
  .promo__container_content {
    max-width: 300px;
  }
  .promo__container_img::before,
  .promo__container_img::after {
    display: none;
  }
  .promo__container_buttons {
    margin-top: 35px;
  }
  .promo__container_txt {
    max-width: 600px;
  }
  .promo__container_txt p {
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
  .promo {
    padding: 88px 0 100px;
  }
  .promo__title {
    font-size: 50px;
  }
}

@media (max-width: 992px) {
  .promo {
    background: #F2377C;
    padding: 150px 0 70px;
  }
  .promo__container_title {
    font-size: 40px;
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
  }
  .promo__container {
    padding: 0;
    border-radius: 0;
  }
  .promo__container_content {
    display: none;
  }
  .promo__container_img,
  .promo__container_img picture,
  .promo__container_img img {
    width: 100%;
  }
  .promo__container_mob {
    display: flex;
  }
  .promo__container_txt {
    max-width: 540px;
  }
  .promo__container_txt p {
    font-size: 22px;
    color: #fff6ee;
  }
  .promo__title_wrap::after {
    content: url(../icons/promo-arrow-mob.svg);
    position: absolute;
    right: 15px;
    bottom: -35px;
  }
}

@media (max-width: 768px) {
  .promo__container_title {
    font-size: 35px;
  }
  .promo__title {
    font-size: 40px;
  }
  .promo__container_txt {
    margin-top: 45px;
  }
  .promo__container_txt p {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .promo__container_title {
    max-width: 340px;
  }
  .promo__title_wrap {
    padding: 30px 0;
    margin-top: -30px;
  }
  .promo__title_wrap .services__img_bg {
    max-width: calc(100% - 4px);
    margin-left: auto;
    margin-right: auto;
  }
  .promo__container_txt {
    max-width: 320px;
  }
}
@media (max-width: 420px) {
  .promo__title_wrap {
    padding: 30px 20px;
  }
  .promo__title {
    font-size: 32px;
  }
}

/*Promo End*/
/*Service Start*/
.services {
  padding: 100px 0 100px;
}

.services__title {
  position: relative;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff6ee;
}

.services__title_bg {
  position: relative;
  max-width: 960px;
  padding: 50px 0;
}

.services__img_bg {
  position: absolute;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.services__img_arrow-left {
  position: absolute;
  left: 5%;
  bottom: -160px;
}

.services__img_arrow-right {
  position: absolute;
  right: 9%;
  bottom: -90px;
}

.services__tabs_wrap {
  max-width: 780px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 65px;
  margin-bottom: 40px;
}

.services__tabs_item {
  position: relative;
  cursor: pointer;
  padding: 40px 0;
}

.services__tabs_item-name {
  position: relative;
  z-index: 1;
  font-size: 28px;
  text-align: center;
  color: #545454;
  padding-bottom: 4px;
}

.services__tabs_item.active .services__tabs_item-name {
  border-bottom: 4px solid;
}

.services__content {
  display: none;
}

.services__content.active {
  display: block;
}

.services__content_item {
  gap: 28px;
}

.services__content_block-img--wrap {
  width: fit-content;
  max-width: 100%;
  margin-left: -150px;
}

.services__content_item:nth-child(2n) .services__content_block-img--wrap {
  margin-left: 0;
  margin-right: -150px;
  order: 1;
}

.services__content_block-img {
  max-width: 100%;
}

.services__content_block-txt {
  max-width: 480px;
  width: 100%;
}

.services__content_block-title {
  font-size: 40px;
  color: #545454;
  margin-top: 45px;
}

.services__content_item:nth-child(2n) .services__content_block-title {
  text-align: right;
}

.services__content_block-title:nth-of-type(1) {
  margin-top: 0;
}

.services__content_block-desc {
  font-size: 18px;
  line-height: 130%;
  color: #545454;
  margin-top: 20px;
}

.services__content_item:nth-child(2n) .services__content_block-desc {
  text-align: right;
}

.services__content_block-buttons {
  gap: 37px;
  margin-top: 30px;
}

.services__content_item:nth-child(2n) .services__content_block-buttons {
  justify-content: flex-end;
}

.btn_service {
  border-radius: 50px;
  padding: 18px 46px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #545454;
  cursor: pointer;
}

a.btn_service {
  background: #b7ede8;
}

button.btn_service {
  background: #5fd9ce;
}

.services__content-second .btn_service {
  color: #fff;
  background: #f2377c;
}

.services__content-second a.btn_service {
  color: #f2377c;
  background: #fdd6d1;
}

@media (max-width: 1440px) {
  .services__content_block-img--wrap {
    margin-left: 0;
  }
  .services__content_item:nth-child(2n) .services__content_block-img--wrap {
    margin-right: 0;
  }
  .services__content_block-img {
    height: 100%;
    object-fit: cover;
  }
  .services__content_block-title {
    font-size: 30px;
  }
  .services__content_block-desc {
    font-size: 16px;
    margin-top: 15px;
  }
}

@media (max-width: 1200px) {
  .services__title {
    font-size: 50px;
  }
  .services__tabs_item-name {
    font-size: 24px;
    padding-bottom: 2px;
  }
  .services__tabs_item.active .services__tabs_item-name {
    border-bottom: 3px solid;
  }
  .services__img_arrow-right {
    bottom: -105px;
  }
  .services__content_item {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 45px;
  }
  .services__content_block-img--wrap {
    margin-left: 0;
  }
  .services__content_block-img--wrap,
  .services__content_item:nth-child(2n) .services__content_block-img--wrap {
    order: 0;
  }
  .services__content_block-img {
    height: auto;
  }
  .services__content_block-txt {
    max-width: 700px;
    order: 1;
  }
  .services__content_item:nth-child(2n) .services__content_block-title {
    text-align: left;
  }
  .services__content_item:nth-child(2n) .services__content_block-desc {
    text-align: left;
  }
  .services__content_item:nth-child(2n) .services__content_block-buttons {
    justify-content: flex-start;
  }
  .services__content_block-title {
    font-size: 38px;
  }
  .services__content_block-desc {
    font-size: 19px;
  }
}

@media (max-width: 992px) {
  .services__img_arrow-left {
    width: 80px;
    bottom: -100px;
  }
  .services__img_arrow-right {
    width: 65px;
    bottom: -7.5vw;
  }
}

@media (max-width: 768px) {
  .services__title {
    font-size: 35px;
  }
  .services__tabs_item-name {
    font-size: 18px;
  }
  .services__tabs_item.active .services__tabs_item-name {
    border-bottom: 2px solid;
  }
  .services__content_block-title {
    font-size: 30px;
  }
  .services__content_block-desc {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .services {
    padding: 70px 0;
  }
  .services__title_bg {
    padding: 30px 0;
  }
  .services .services__title_bg {
    padding: 22px 20px;
  }
  .services__title {
    font-size: 32px;
  }
  .services__tabs_wrap {
    grid-template-columns: 1fr;
    margin-top: 25px;
    gap: 0;
  }
  .services__tabs_item {
    padding: 32px 0;
  }
  .services__tabs_item .services__img_bg {
    width: fit-content;
    max-width: 275px;
  }
  .services__img_arrow-left {
    width: 50px;
    left: 4vw;
    bottom: -70px;
  }
  .services__img_arrow-right {
    width: 45px;
    right: 4vw;
    bottom: -145px;
  }
  .services__content_block-desc {
    font-size: 14px;
  }
  .services__content_block-buttons {
    flex-wrap: wrap;
    gap: 20px 30px;
  }
  .btn_service {
    padding: 15px 35px;
    width: 100%;
  }
}

/*Service End*/
/*Poster Start*/
.poster {
  position: relative;
  padding: 60px 0;
}

.poster::before {
  content: url(../img/poster-decor-img-1.png);
  position: absolute;
  left: 0;
  top: -250px;
}

.poster::after {
  content: url(../img/poster-decor-img-2.png);
  position: absolute;
  right: 0;
  top: -250px;
}

.poster__block {
  position: relative;
}

.poster__block_img {
  border-radius: 40px;
}

.poster__block_link {
  position: absolute;
  border-radius: 50px;
  padding: 18px 30px;
  margin-top: 5%;
  background-color: #f2377c;
  font-size: 16px;
  text-align: center;
  color: #fff6ee;
}

@media (max-width: 1600px) {
  .poster::before,
  .poster::after {
    display: none;
  }
}

@media (max-width: 992) {
  .poster {
    padding-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .poster__block_img {
    border-radius: 10px;
  }
  .poster__block_link {
    bottom: -26px;
  }
}

/*Poster End*/
/*Sale Time Start*/
.saleTime {
  position: relative;
  max-width: 100%;
  min-height: 682px;
  padding: 100px 0;
}
.page-template-page-price .saleTime {
  padding-top: 182px;
}

.saleTime_bg {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.saleTime__block {
  background-color: #fff;
  border: 6px solid #5fd9ce;
  border-radius: 40px;
  padding: 45px;
}

.saleTime__title {
  font-size: 80px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #f2377c;
  margin-bottom: 40px;
}

.saleTime__subtitle {
  font-size: 35px;
  line-height: 130%;
  text-align: center;
  color: #545454;
}

.saleTime__form {
  max-width: 980px;
  width: 100%;
  margin-top: 30px;
}

.saleTime__form_wrap {
  grid-template-columns: 1fr 38.4% 1fr;
  gap: 22px;
}

.saleTime__form input[type="text"],
.saleTime__form input[type="tel"] {
  width: 100%;
  padding: 20px 40px;
  border: 2px solid #5fd9ce;
  border-radius: 50px;
  font-weight: 500;
  font-size: 20px;
  color: #545454;
}

.saleTime__form input::placeholder {
  color: #aaa;
}

.saleTime__form_submit {
  max-width: 100%;
  width: 100%;
}

.btn_submit {
  width: 100%;
  border-radius: 50px;
  padding: 20px;
  background: #f2377c;
  text-align: center;
  color: #fff;
}

.saleTime__form_checkbox {
  /* margin-top: 30px; */
}

.saleTime__form input[type="checkbox"] {
  display: none;
}

.saleTime__form label {
  position: relative;
  font-size: 10px;
  padding: 4px 5px 4px 30px;
  cursor: pointer;
}

.saleTime__form label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #aaa;
}

.saleTime__form label::after {
  content: "";
  display: none;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #aaa;
}

.saleTime__form_checkbox.check label::after {
  display: block;
}

.saleTime-thanks {
  display: none;
  border-radius: 30px;
  padding: 30px 40px;
  max-width: 980px;
  background: #f2377c;
}

.saleTime-thanks--content {
  max-width: 700px;
}

.saleTime-thanks--txt {
  font-weight: 400;
  font-size: 30px;
  line-height: 130%;
  text-align: center;
  color: #fff6ee;
}

.saleTime-thanks--content img {
  margin: 10px auto 0;
}

@media (max-width: 1400px) {
  .saleTime__title {
    font-size: 70px;
  }
  .saleTime__subtitle {
    font-size: 30px;
  }
}

@media (max-width: 1200px) {
  .saleTime__title {
    font-size: 50px;
  }
  .saleTime__subtitle {
    font-size: 25px;
  }
}

@media (max-width: 992px) {
  .saleTime__form_wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .saleTime__form_input {
    width: calc(100%/2 - 11px);
  }
  .saleTime__form_checkbox {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .saleTime__title {
    font-size: 45px;
  }
  .saleTime__subtitle {
    font-size: 25px;
  }
  .saleTime-thanks {
    padding: 25px;
  }
  .saleTime-thanks--txt {
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  .saleTime__title {
    margin-bottom: 30px;
  }
  .saleTime__subtitle {
    font-size: 30px;
    margin-top: 15px;
  }
  .saleTime__block {
    padding: 30px 20px;
    border-radius: 20px;
    border-width: 3px;
  }
  .saleTime__form_input {
    width: 100%;
  }
  .saleTime__form_checkbox {
    justify-content: center;
  }
  .saleTime-thanks--txt {
    font-size: 20px;
  }
}

/*Sale Time End*/
/*Workshop Start*/
.promoWorkshop {
  background-color: #FFF6EE;
  overflow: hidden;
}

.promoWorkshop-bg {
  position: relative;
}

.promoWorkshop-bg img {
  position: absolute;
  width: 100%;
  pointer-events: none;
}

.promoWorkshop__container {
  gap: 50px;
  background: var(--workshop-block-color);
}

.promoWorkshop__container_img {
  position: relative;
}

.promoWorkshop__container_content {
  max-width: 480px;
  padding: 130px 0 80px;
}

.promoWorkshop__container_title {
  max-width: var(--workshop-container-title);
}

.promoWorkshop__container_txt {
  margin-top: 40px;
  height: 100%;
}

.promoWorkshop__container_txt p:first-child {
  margin-top: 0;
}

.promoWorkshop__container_txt p {
  text-align: left;
  color: #fff;
}

.promoWorkshop__container_buttons {
  margin-top: 40px;
}

.promoWorkshop__container_buttons p {
  font-size: 30px;
  line-height: 1;
  color: #fff6ee;
}

.promoWorkshop__container_form {
  grid-template-columns: 58% 1fr;
  gap: 20px;
  margin-top: 40px;
}

.promoWorkshop__container_form input[type="tel"] {
  padding: 16px 25px;
  max-width: 280px;
  width: 100%;
  border: 2px solid var(--workshop-btn-color);
  border-radius: 26px;
  font-weight: 500;
  font-size: 20px;
  color: #545454;
}
.promoWorkshop__container_form input[type="tel"]::placeholder {
 color: #aaa;
}

.posterWorkshop {
  position: relative;
  max-width: 1180px;
  border-radius: 40px;
  margin-top: 100px;
}

.poster .posterWorkshop {
	margin-top: 0;
}

.sweetGift .posterWorkshop {
  margin-top: 0;
  margin-bottom: 100px;
}

.posterWorkshop__bg {
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 8 / 4.7;
}

.posterWorkshop__container {
  position: absolute;
  top: 0;
  right: 0;
  width: 410px;
  height: 100%;
  background-color: var(--workshop-bg-color);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.posterWorkshop__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 100%;
  height: 100%;
}

.posterWorkshop-first .posterWorkshop__container::before {
  background: url(../img/promoWorkshop/promoWorkshop-img-poster-container.png) 0% 50%/cover no-repeat;
}

.posterWorkshop-second .posterWorkshop__container::before {
  left: -50%;
  background: url(../img/promoWorkshop/promoWorkshop-img-poster-container-2.png) 0% 50%/cover no-repeat;
}

.posterWorkshop__container_inner {
  position: relative;
  height: 100%;
  padding-top: 100px;
  padding-right: 20px;
  padding-bottom: 35px;
}

.posterWorkshop__title {
  font-size: 45px;
  line-height: 120%;
  color: #fff6ee;
}

.posterWorkshop-first .posterWorkshop__title {
  text-align: center;
}

.posterWorkshop__desc {
  font-size: 22px;
  line-height: 100%;
  color: #ffe8e5;
  margin-top: 10px;
}

.posterWorkshop__container_info {
  width: fit-content;
  margin-top: 30px;
  padding-left: 25px;
}

.posterWorkshop__container_info p {
  color: var(--workshop-info-color);
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  max-width: 240px;
}

.posterWorkshop__container_info span {
  display: block;
  margin-top: -10px;
  margin-left: -20px;
}

.techniqueWorkshop {
  max-width: 1180px;
  margin-top: 130px;
  gap: 30px;
}

.techniqueWorkshop__item_slider {
  max-width: 652px;
  width: 652px;
  position: relative;
}

.techniqueWorkshop__item_slide {
  margin: 0 4px;
}
.techniqueWorkshop__item_slide {
  aspect-ratio: 4/3;
}
.techniqueWorkshop__item_slide img {
  border-radius: 40px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.techniqueWorkshop__item_txt {
  max-width: 490px;
}

.techniqueWorkshop__item_txt * {
  margin-top: 0;
}

.techniqueWorkshop__item_txt h2,
.techniqueWorkshop__item_txt h3,
.techniqueWorkshop__item_txt h4 {
  font-weight: 700;
  font-size: 60px;
  color: #f2377c;
}

.techniqueWorkshop__item_txt p {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #545454;
  margin-top: 25px;
}

.techniqueWorkshop__item_txt a {
  color: #f2377c;
  text-decoration: underline;
}

.techniqueWorkshop__item_info {
  margin-top: 85px;
}

.techniqueWorkshop__item_info p {
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #5fd9ce;
  max-width: 260px;
  transform: rotate(-8deg);
}

.techniqueWorkshop__item_info span {
  margin-top: -110px;
  margin-left: -40px;
}

/*Media*/
@media (max-width: 1200px) {
  .promoWorkshop__container {
    gap: 0;
  }
  .promoWorkshop__container_content {
    max-width: 360px;
  }
  .promoWorkshop__container_txt {
    margin-top: 25px;
  }
  .promoWorkshop__container_txt p {
    font-size: 22px;
  }
  .promoWorkshop__container_form {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .promoWorkshop__container_buttons p {
    font-size: 25px;
  }
  .promoWorkshop__container_form input[type="tel"] {
    max-width: 100%;
  }
  .posterWorkshop__container {
    width: 310px;
  }
  .posterWorkshop__container_inner {
    justify-content: center;
    gap: 30px;
  }
  .posterWorkshop-second .posterWorkshop__container::before {
    left: -66%;
  }
  .posterWorkshop__title {
    font-size: 35px;
  }
  .posterWorkshop__desc {
    font-size: 18px;
  }
  .posterWorkshop__container_info p {
    font-size: 16px;
    max-width: 185px;
  }
  .posterWorkshop__container_info span {
    margin-top: -20px;
  }
  .posterWorkshop__container_info span svg {
    width: 59px;
  }
  .techniqueWorkshop__item_slider {
    max-width: 550px;
  }
  .techniqueWorkshop__item_txt h2,
  .techniqueWorkshop__item_txt h3,
  .techniqueWorkshop__item_txt h4 {
    font-size: 45px;
  }
  .techniqueWorkshop__item_info p {
    font-size: 20px;
    max-width: 220px;
  }
  .techniqueWorkshop__item_info {
    margin-top: 70px;
  }
  .techniqueWorkshop__item_info span {
    margin-top: -95px;
    margin-left: -40px;
  }
  .techniqueWorkshop__item_info span svg {
    width: 45px;
  }
}

@media (max-width: 992px) {
  .promoWorkshop {
    padding-top: 88px;
    padding-bottom: 50px;
  }
  .promoWorkshop__container {
    flex-wrap: wrap;
  }
  .promoWorkshop__container-bg {
    max-width: 722px;
    height: auto;
    aspect-ratio: 1/1.05;
  }
  .promoWorkshop__container_img {
    max-width: 700px;
  }
  .promoWorkshop__container_content {
    display: flex;
    max-width: 100%;
    padding: 0 36px 60px;
    margin-top: 40px;
  }
  .promoWorkshop__container_title {
    font-size: 30px;
    text-align: left;
    max-width: 100%;
    margin: 0;
  }
  .promoWorkshop .promo__container_txt {
    max-width: 100%;
    margin-top: 30px;
  }
  .promoWorkshop__container_buttons {
    margin-top: 30px;
  }
  .promoWorkshop__container_form {
    grid-template-columns: 58% 1fr;
    max-width: 600px;
  }
  .techniqueWorkshop {
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 100px;
  }
  .techniqueWorkshop__item {
    max-width: 100%;
  }
  .techniqueWorkshop__item_txt {
    max-width: 100%;
  }
  .techniqueWorkshop__item.first {
    order: 1;
  }
  .techniqueWorkshop__item_slider {
    max-width: 100%;
  }
  .techniqueWorkshop__item_slide {
    aspect-ratio: 3/2;
  }
  .techniqueWorkshop__item_txt p {
    font-size: 20px;
    margin-top: 20px;
  }
  .techniqueWorkshop__item_info {
    display: none;
  }
}

@media (max-width: 768px) {
  .posterWorkshop {
    border-radius: 20px;
    margin-top: 80px;
    overflow: visible;
    min-height: 340px;
  }
  .sweetGift .posterWorkshop {
    margin-bottom: 80px;
  }
  .posterWorkshop__bg {
    height: auto;
    object-fit: cover;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .posterWorkshop__container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }
  .posterWorkshop__container::before {
    content: "";
    position: absolute;
    top: -18vw;
    left: 0;
    height: 150px;
  }
  .posterWorkshop-first .posterWorkshop__container::before {
    background: url(../img/promoWorkshop/promoWorkshop-img-poster-container-mob-1.png) 50% 0%/cover no-repeat;
  }
  .posterWorkshop-second .posterWorkshop__container::before {
    top: -40%;
    left: 0;
    background: url(../img/promoWorkshop/promoWorkshop-img-poster-container-mob-2.png) 50% 0%/cover no-repeat;
  }
  .posterWorkshop__container_inner {
    position: relative;
    height: 100%;
    padding: 10px 20px 40px;
  }
  .posterWorkshop__title {
    font-size: 28px;
    text-align: center;
  }
  .posterWorkshop-second .posterWorkshop__title {
    max-width: 275px;
    margin-left: auto;
    margin-right: auto;
  }
  .posterWorkshop__desc {
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
  }
  .posterWorkshop__container_bottom {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -30px;
  }
  .posterWorkshop__container_info {
    display: none;
  }
  .techniqueWorkshop__item_slide {
    aspect-ratio: 1;
  }
  .techniqueWorkshop__item_slide img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .sweetGift .posterWorkshop {
    margin-bottom: 60px;
  }
  .promoWorkshop__container_content {
    padding: 0 20px 40px;
    margin-top: 30px;
  }
  .promoWorkshop__container_form {
    grid-template-columns: 1fr;
  }
  .posterWorkshop__container_inner {
    padding-top: 0;
    height: 120px;
  }
  .techniqueWorkshop {
    gap: 30px;
  }
}

@media (max-width: 500px) {
  .posterWorkshop__title {
    font-size: 24px;
  }
}

/*Workshop End*/
/*Workshop Slider Start*/
.techniqueWorkshop__item_slider .slick-list {
  border-radius: 40px;
}

.techniqueWorkshop__item_slider .slick-dots,
.videoGallery__slider .slick-dots {
  margin: 30px auto 0;
  padding: 0;
  max-width: 100px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.techniqueWorkshop__item_slider .slick-dots li,
.videoGallery__slider .slick-dots li {
  position: relative;
  font-size: 0;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #d9d9d9;
}

.techniqueWorkshop__item_slider .slick-dots li button {
  height: inherit;
  width: inherit;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

.techniqueWorkshop__item_slider .slick-dots li.slick-active {
  background-color: #f2377c;
}

.technique-controls {
  bottom: -10px;
}

.technique-controls--left {
  left: calc(50% - 100px);
}

.technique-controls--right {
  right: calc(50% - 100px);
}

/*Workshop Slider End*/
/*Video Gallery Slider Start*/
.video-controls {
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.video-controls--left {
  left: calc(50% - 300px);
}

.video-controls--right {
  right: calc(50% - 300px);
}

.videoGallery__slider .slick-dots {
  margin-top: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.videoGallery__slider .slick-dots li.slick-active {
  background-color: #5fd9ce;
}

/*Media*/
@media (max-width: 1600px) {
  .video-controls--left {
    left: calc(50% - 250px);
  }
  .video-controls--right {
    right: calc(50% - 250px);
  }
}

@media (max-width: 992px) {
  .video-controls--left {
    left: calc(50% - 220px);
  }
  .video-controls--right {
    right: calc(50% - 220px);
  }
}

@media (max-width: 600px) {
  .video-controls--left {
    left: 20px;
  }
  .video-controls--right {
    right: 20px;
  }
  .videoGallery__slider .slick-dots {
    margin-top: 30px;
  }
  .techniqueWorkshop__item_slider .slick-dots {
    margin-top: 20px;
  }
  .technique-controls {
    display: none !important;
  }
}

/*Video Gallery Slider end*/
/*Price Workshop Start*/
.priceWorkshop {
  padding: 50px 0 100px;
}

.priceWorkshop__container {
  grid-template-columns: 710px 1fr;
  gap: 47px;
  max-width: 1407px;
}

.priceWorkshop .services__title_bg {
  padding: 42px 0;
}

.priceWorkshop__title {
  font-size: 60px;
  text-align: center;
  color: #fff6ee;
}

.title__block_txt {
  font-family: var(--font-one);
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  color: #d2a8ff;
  padding-right: 50px;
}

.title__block_txt *:first-child {
  margin-top: 0;
}

.title__block_txt p {
  margin-top: 15px;
}

.title__block_txt ul,
.title__block_txt ol {
  padding-left: 24px;
}

.title__block_txt ul li {
  list-style: disc;
}

.title__block_txt ol li {
  list-style: decimal;
}

.priceWorkshop__list {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 20px;
  margin-top: 60px;
}

.priceWorkshop__list::before {
  content: url(../img/priceWorkshop/price-workshop-decor-img-2.png);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.priceWorkshop__listitem {
  background: rgba(242, 55, 124, 0.05);
  border-radius: 40px;
  padding: 20px;
}

.priceWorkshop__listitem_top img {
  border-radius: 28px;
  aspect-ratio: 3.4/4;
  object-fit: cover;
}

.priceWorkshop__listitem_top h3 {
  font-weight: 700;
  font-size: 40px;
  color: #f2377c;
  margin: 20px 0;
}

.priceWorkshop__listitem_top p {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #545454;
  margin-top: 20px;
}

.priceWorkshop__listitem_bottom {
  margin-top: 20px;
  gap: 20px;
}

.priceWorkshop__listitem_cost {
  gap: 20px;
}

.priceWorkshop__listitem_cost-name {
  max-width: 175px;
  width: 100%;
  font-weight: 700;
  font-size: 28px;
  color: #f2377c;
}

.priceWorkshop__listitem_cost-value {
  border-radius: 20px;
  padding: 17px 21px;
  background: #fff6ee;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #f2377c;
}

/*Media*/
@media (max-width: 1400px) {
  .priceWorkshop__listitem_top h3 {
    font-size: 35px;
  }
  .priceWorkshop__listitem_cost-name,
  .priceWorkshop__listitem_cost-value {
    font-size: 25px;
  }
  .priceWorkshop__listitem_cost-value {
    padding: 12px 18px;
    border-radius: 16px;
  }
  .priceWorkshop__list::before {
    display: none;
  }
}

@media (max-width: 1200px) {
  .priceWorkshop__container {
    grid-template-columns: 1fr;
  }
  .priceWorkshop .services__title_bg {
    padding: 30px;
    max-width: 570px;
  }
  .title__block_txt {
    padding: 0 50px;
  }
  .priceWorkshop__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .priceWorkshop__title {
    font-size: 45px;
  }
  .title__block_txt {
    padding: 0 36px;
    font-size: 20px;
  }
  .priceWorkshop__list {
    margin-top: 50px;
  }
  .priceWorkshop__listitem {
    padding: 20px 15px;
  }
  .priceWorkshop__listitem_top h3 {
    font-size: 30px;
    margin: 16px 0;
  }
  .priceWorkshop__listitem_top p {
    font-size: 16px;
    margin-top: 16px;
  }
  .priceWorkshop__listitem_bottom {
    gap: 12px;
  }
  .priceWorkshop__listitem_cost-name {
    font-size: 20px;
  }
  .priceWorkshop__listitem_cost-value {
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .priceWorkshop {
    padding: 50px 0;
  }
  .priceWorkshop__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .priceWorkshop .services__title_bg {
    padding: 20px 16px;
  }
  .priceWorkshop__list {
    grid-template-columns: 1fr;
    max-width: 410px;
  }
  .priceWorkshop__listitem_bottom {
    margin-top: 30px;
  }
  .title__block_txt {
    padding: 0 20px;
  }
}

/*Price Workshop End*/
.studios {
  padding: 44px 0 56px 0;
  background-image: url("../img/studios/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #FFF6EE;
}

@media (max-width: 992px) {
  .studios {
    padding: 44px 0 27px 0;
  }
}

@media (max-width: 768px) {
  .studios {
    background-image: none;
  }
}

@media (max-width: 768px) {
  .studios .section-container {
    padding: 0;
  }
}

.studios__top {
  display: grid;
  grid-template-columns: 660px 1fr;
  gap: 47px;
  max-width: 1407px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .studios__top {
    grid-template-columns: 1fr;
    max-width: 1280px;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .studios__top {
    padding: 0 36px;
    gap: 38px;
  }
}

@media (max-width: 600px) {
  .studios__top {
    padding: 0 20px;
    gap: 10px;
  }
}

.studios__top_vertical {
  grid-template-columns: 1fr;
  margin: 120px auto 0 auto;
}

.studios__title {
  z-index: 10;
  position: relative;
  color: #fff6ee;
  font-family: 'Muller';
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 992px) {
  .studios__title {
    font-size: 45px;
  }
}

.studios__title-content {
  display: flex;
  justify-content: center;
}

.studios__img_bg {
  position: absolute;
  width: 100%;
  min-height: 100%;
  object-fit: contain;
}

.studios__title_bg {
  position: relative;
  max-width: 870px;
  width: 100%;
  padding: 46px 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .studios__title_bg {
    max-width: 570px;
  }
}

@media (max-width: 992px) {
  .studios__title_bg {
    max-width: 439px;
  }
}

.studios__text {
  display: flex;
  align-items: center;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  color: #545454;
}

@media (max-width: 992px) {
  .studios__text {
    font-size: 20px;
  }
}

.studios__text_cutWidth {
  max-width: 580px;
  text-align: center;
  margin: 0 auto;
}

.studios__wrapper {
  margin-top: 120px;
}

@media (max-width: 1200px) {
  .studios__wrapper {
    margin-top: 100px;
  }
}

@media (max-width: 992px) {
  .studios__wrapper {
    margin-top: 57px;
  }
}

@media (max-width: 768px) {
  .studios__wrapper {
    background-image: url("../img/studios/bg-mob.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    background-color: #FFF6EE;
  }
}

.studios__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .studios__items {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 20px;
  }
}

@media (max-width: 992px) {
  .studios__items {
    grid-template-columns: 1fr;
    row-gap: 80px;
  }
}

@media (max-width: 768px) {
  .studios__items {
    padding: 0 36px;
  }
}

@media (max-width: 600px) {
  .studios__items {
    padding: 0 20px;
  }
}

.studios__image {
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  .studios__image {
    justify-content: flex-start;
  }
}

.studios__image img {
  border-radius: 35px;
}

@media (max-width: 992px) {
  .studios__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .studios__image img {
    height: 358px;
  }
}

.studios__descr {
  display: flex;
  flex-direction: column;
}

.studios__content {
  padding: 0 10px;
}

.studios__name {
  margin-top: 40px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 40px;
  line-height: 102%;
}

@media (max-width: 992px) {
  .studios__name_pc {
    display: none;
  }
}

.studios__name_mob {
  display: none;
}

@media (max-width: 992px) {
  .studios__name_mob {
    display: block;
    margin-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .studios__name {
    margin-top: 30px;
    font-size: 32px;
    max-width: 70%;
  }
}

@media (max-width: 992px) {
  .studios__name {
    max-width: 100%;
    margin-top: 0;
    font-size: 30px;
    text-align: center;
  }
}

.studios__name-part-1 {
  color: #F2377C;
}

.studios__name-part-2 {
  color: #545454;
}

.studios__list {
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .studios__list {
    margin-top: 30px;
  }
}

@media (max-width: 992px) {
  .studios__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .studios__list {
    grid-template-columns: 1fr;
  }
}

.studios__listitem {
  position: relative;
  padding-left: 37px;
  margin-bottom: 1px;
}

.studios__listitem:nth-child(2n) {
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .studios__listitem:nth-child(2n) {
    margin-bottom: 0;
  }
}

.studios__listitem:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .studios__listitem {
    margin-bottom: 0;
    padding-left: 25px;
  }
}

.studios__listitem::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-65%);
  border-radius: 100%;
  width: 10px;
  height: 10px;
  background-color: #5FD9CE;
}

.studios__listitem_vsn {
  visibility: hidden;
}

@media (max-width: 992px) {
  .studios__listitem_vsn {
    display: none;
  }
}

.studios__listitem_vsn::before {
  visibility: hidden;
}

.studios__listitem p {
  font-family: 'Muller';
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
}

.studios__link {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 992px) {
  .studios__link {
    justify-content: center;
  }
}

.studios__link a {
  border-radius: 50px;
  margin-left: 7px;
  padding: 19px 98px;
  background-color: #F2377C;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #FFF6EE;
}

.reviews {
  background-image: url("../img/reviews/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #FFF6EE;
  padding: 130px 0 217px 0;
}

@media (max-width: 1200px) {
  .reviews {
    padding: 80px 0 217px 0;
  }
}

@media (max-width: 768px) {
  .reviews {
    background-image: url("../img/reviews/bg-mob.png");
    background-position: top;
  }
}

.reviews__title {
  z-index: 10;
  position: relative;
  color: #fff6ee;
  font-family: 'Muller';
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 992px) {
  .reviews__title {
    font-size: 45px;
  }
}

.reviews__title-content {
  display: flex;
  justify-content: center;
}

.reviews__img_bg {
  position: absolute;
  width: 100%;
  min-height: 100%;
  object-fit: contain;
}

.reviews__title_bg {
  margin-top: -1%;
  position: relative;
  max-width: 706px;
  width: 100%;
  padding: 46px 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .reviews__title_bg {
    max-width: 570px;
  }
}

@media (max-width: 992px) {
  .reviews__title_bg {
    max-width: 439px;
  }
}

.reviews__text {
  max-width: 700px;
  margin: 75px auto 0 auto;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  text-align: center;
  color: #545454;
}

@media (max-width: 992px) {
  .reviews__text {
    margin: 30px auto 0 auto;
    font-size: 20px;
  }
}

.reviews__slider {
  max-width: 580px;
  margin: 85px auto 0 auto;
  border: 30px solid #96B3FF;
  border-radius: 40px;
}

@media (max-width: 992px) {
  .reviews__slider {
    margin: 45px auto 0 auto;
  }
}

.reviews__item {
  background: #96B3FF;
}

.reviews__item img {
  width: 100%;
  border-radius: 35px;
}

@media (max-width: 992px) {
  .reviews__item img {
    height: 573px;
    object-fit: cover;
  }
}

.reviews__slider-wrapper {
  position: relative;
}

.reviews__arrows {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .reviews__arrows {
    display: none;
  }
  .reviews__text {
    margin-top: 10px;
  }
}

.reviews .reviews__arrow-left {
  cursor: pointer;
  position: relative;
  left: 200px;
}

@media (max-width: 1200px) {
  .reviews .reviews__arrow-left {
    left: 100px;
  }
}

@media (max-width: 992px) {
  .reviews .reviews__arrow-left {
    left: 0;
  }
}

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

.reviews .reviews__arrow-right {
  cursor: pointer;
  position: relative;
  right: 200px;
}

@media (max-width: 1200px) {
  .reviews .reviews__arrow-right {
    right: 100px;
  }
}

@media (max-width: 992px) {
  .reviews .reviews__arrow-right {
    right: 0;
  }
}

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

.reviews .slick-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.reviews .slick-dots li {
  margin-left: 10px;
}

.reviews .slick-dots li:first-child {
  margin-left: 0;
}

.reviews .slick-dots .slick-active button {
  background-color: #96B3FF;
}

.reviews .slick-dots button {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #D9D9D9;
  font-size: 0;
  cursor: pointer;
}

.reviews__page {
  /* the slides */
  /* the parent */
}

.reviews__page .reviews__slider {
  max-width: 980px;
  border: none;
}

.reviews__page .reviews__item {
  border: 15px solid #96B3FF;
  border-radius: 40px;
}

.reviews__page .slick-slide {
  margin: 0 10px;
}

.reviews__page .slick-list {
  margin: 0 -10px;
}

.reviews__page .reviews__arrow-left {
  left: 25px;
}

.reviews__page .reviews__arrow-right {
  right: 25px;
}

.gift {
  background: #FDD6D1;
  background-image: url("../img/gift/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 0 87px 0;
  /* the parent */
}

@media (max-width: 992px) {
  .gift {
    overflow: hidden;
    padding: 47px 0 47px 0;
  }
}

@media (max-width: 768px) {
  .gift .section-container {
    padding: 0;
  }
}

.gift__wrapper {
  position: relative;
  z-index: 100;
}

.gift__wrapper::before {
  content: url("../img/gift/text1.svg");
  position: absolute;
  left: -22%;
  bottom: -8%;
  z-index: 10;
}

@media (max-width: 1400px) {
  .gift__wrapper::before {
    left: -23%;
    bottom: -4.6%;
  }
}

@media (max-width: 992px) {
  .gift__wrapper::before {
    display: none;
  }
}

.gift__title {
  z-index: 10;
  position: relative;
  color: #fff6ee;
  font-family: 'Muller';
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 992px) {
  .gift__title {
    max-width: 80%;
    text-align: left;
    font-size: 45px;
    color: #545454;
  }
}

@media (max-width: 768px) {
  .gift__title {
    padding: 0 36px;
    line-height: 45px;
  }
}

@media (max-width: 600px) {
  .gift__title {
    padding: 0 20px;
  }
}

.gift__title-content {
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .gift__title-content {
    justify-content: flex-start;
  }
}

.gift__img_bg {
  position: absolute;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .gift__img_bg {
    display: none;
  }
}

.gift__title_bg {
  position: relative;
  margin-top: -11%;
  max-width: 870px;
  padding: 46px 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .gift__title_bg {
    margin-top: initial;
    left: 0;
    bottom: 0;
    justify-content: flex-start;
    max-width: 100%;
    padding: 0;
  }
}

.gift__caption {
  max-width: 700px;
  margin: 61px auto 0 auto;
  color: #545454;
  font-family: 'Muller';
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 992px) {
  .gift__caption {
    margin: 30px auto 0 auto;
    text-align: left;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .gift__caption {
    padding: 0 36px;
    margin: 30px 0 0 0;
  }
}

@media (max-width: 600px) {
  .gift__caption {
    padding: 0 20px;
  }
}

.gift__list {
  margin-top: 80px;
  position: relative;
  z-index: 100;
}

@media (max-width: 992px) {
  .gift__list {
    margin-top: 45px;
  }
}

.gift__list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1400px) {
  .gift__list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .gift__list ul {
    grid-template-columns: 1fr;
  }
}

.gift__item {
  background: #FFF6EE;
  border-radius: 40px;
  padding: 0px 10px 20px 10px;
}

@media (max-width: 600px) {
  .gift__item {
    padding: 0px 15px 15px;
  }
}

.gift__item-context {
  display: flex;
  flex-direction: column;
}

.gift__item-top {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

@media (max-width: 600px) {
  .gift__item-top {
    padding-top: 15px;
  }
}

.gift__item-top img {
  border-radius: 28px;
}

.gift__item-main {
  margin-top: 20px;
}

.gift__item-name {
  color: #F2377C;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  text-align: center;
}

.gift__item-subname {
  margin-top: 1px;
  color: #545454;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
}

.gift__item-text {
  margin-top: 15px;
  height: 87px;
  overflow: hidden;
  color: #000000;
  font-family: 'Muller';
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
}

@media (max-width: 1200px) {
  .gift__item-text {
    height: 65px;
  }
}

.gift__item-link {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.gift__item-link a {
  background-color: #FDD6D1;
  border-radius: 50px;
  padding: 19px 47px;
  color: #F2377C;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.gift__btn {
  margin-top: 84px;
  display: flex;
  justify-content: center;
  position: relative;
}

@media (max-width: 992px) {
  .gift__btn {
    margin-top: 50px;
  }
}

.gift__btn a {
  display: inline-block;
  background-color: #F2377C;
  border-radius: 50px;
  padding: 17px 85px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #FFF6EE;
}

.gift .slick-slide {
  margin: 0 10px;
}

.gift .slick-list {
  margin: 0 -10px;
}

.gallery {
  padding: 50px 0 91px 0;
  background: #FFF6EE;
  background-image: url("../img/bottom-slider/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

@media (max-width: 992px) {
  .gallery {
    padding: 50px 0 53px 0;
  }
}

.gallery__title {
  margin-bottom: 80px;
  color: #545454;
  font-family: 'Muller';
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 992px) {
  .gallery__title {
    font-size: 45px;
    text-align: left;
    margin-bottom: 33px;
  }
}

.gallery__text {
  max-width: 780px;
  width: 100%;
  text-align: center;
  margin: 0 auto 69px auto;
  font-family: 'Muller';
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 992px) {
  .gallery__text {
    font-size: 20px;
    text-align: left;
    margin-bottom: 34px;
  }
}

.gallery__text a {
  color: #f2377c;
  text-decoration: underline;
}

.gallery__slider {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 992px) {
  .gallery__slider {
    max-width: 660px;
  }
}

.gallery__slider .slick-list {
  border-radius: 40px;
}

.gallery__item img {
  border-radius: 40px;
}

@media (max-width: 992px) {
  .gallery__item img {
    height: 345px;
    width: 100%;
    object-fit: cover;
  }
}

.gallery__arrows {
  position: absolute;
  top: 50%;
  transform: translate3d(0, -138%, 0);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .gallery__arrows {
    display: none;
  }
}

.gallery .gallery__arrow-left {
  cursor: pointer;
  position: relative;
  left: -100px;
}

@media (max-width: 1400px) {
  .gallery .gallery__arrow-left {
    left: -75px;
  }
}

@media (max-width: 1200px) {
  .gallery .gallery__arrow-left {
    left: -40px;
  }
}

.gallery .gallery__arrow-right {
  cursor: pointer;
  position: relative;
  right: -100px;
}

@media (max-width: 1400px) {
  .gallery .gallery__arrow-right {
    right: -75px;
  }
}

@media (max-width: 1200px) {
  .gallery .gallery__arrow-right {
    right: -40px;
  }
}

.gallery .slick-dots {
  margin-top: 31px;
  display: flex;
  justify-content: center;
}

.gallery .slick-dots li {
  margin-left: 10px;
}

.gallery .slick-dots li:first-child {
  margin-left: 0;
}

.gallery .slick-dots .slick-active button {
  background-color: #5FD9CE;
}

.gallery .slick-dots button {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #D9D9D9;
  font-size: 0;
  cursor: pointer;
}

.contacts {
  background: #ffe8e5;
  padding: 89px 0 33px 0;
}

@media (max-width: 1400px) {
  .contacts {
    padding: 38px 0 0 0;
  }
}

@media (max-width: 992px) {
  .contacts {
    padding: 40px 0 0 0;
  }
}

.contacts__wrapper {
  display: flex;
  margin-left: calc((100% - 1180px) / 2);
}

@media (max-width: 1400px) {
  .contacts__wrapper {
    flex-direction: column;
    margin-left: 0;
  }
}

.contacts__info {
  flex-shrink: 0;
  margin-right: 14px;
  width: 480px;
}

@media (max-width: 1400px) {
  .contacts__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1280px;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .contacts__info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .contacts__info {
    padding: 0 36px;
  }
}

.contacts__info-top {
  margin-bottom: 46px;
}

@media (max-width: 1400px) {
  .contacts__info-top {
    margin-bottom: 38px;
  }
}

@media (max-width: 992px) {
  .contacts__info-top {
    margin-bottom: 50px;
  }
}

.contacts__info-heading {
  margin-bottom: 20px;
  color: #545454;
  font-family: 'Muller';
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: left;
}

@media (max-width: 992px) {
  .contacts__info-heading {
    font-size: 45px;
  }
}

.contacts__info-tels a {
  color: #f2377c;
  font-family: 'Muller';
  font-size: 28px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0%;
  text-align: left;
}

.contacts__info-middle {
  margin-bottom: 40px;
}

.contacts__info-middle .contacts__info-heading {
  margin-bottom: 8px;
}

.contacts__info-addresses li {
  margin-bottom: 19px;
}

.contacts__info-addresses:last-child {
  margin-bottom: 0;
}

.contacts__info-name {
  font-family: 'Muller';
  font-size: 28px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0%;
  text-align: left;
}

.contacts__info-purple {
  color: #f2377c;
}

.contacts__info-black {
  color: #545454;
}

.contacts__info-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}

.contacts__info-socials {
  display: flex;
}

@media (max-width: 1400px) {
  .contacts__info-socials_desk {
    display: none;
  }
}

@media (max-width: 992px) {
  .contacts__info-socials_desk {
    display: flex;
  }
}

.contacts__info-socials_tab {
  display: none;
}

@media (max-width: 1400px) {
  .contacts__info-socials_tab {
    margin-top: 20px;
    display: flex;
  }
}

@media (max-width: 992px) {
  .contacts__info-socials_tab {
    display: none;
  }
}

.contacts__info-socials :first-child {
  margin-left: 0;
}

.contacts__info-socials li {
  max-width: 55px;
  margin-left: 20px;
}

.contacts__map {
  width: calc(100% - 480px - 14px);
  background: #FFFFFF;
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .contacts__map {
    margin-top: 70px;
  }
}

.contacts__map iframe {
  width: 100%;
  height: revert-layer;
}

@media (max-width: 992px) {
  .contacts__map iframe {
    height: 481px;
  }
}

.stages__page {
  background-color: #FFF6EE;
}

.stages {
  padding: 95px 0 110px;
}

.stages__title {
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #545454;
}

.stages__wrapper {
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 20px;
  margin-top: 105px;
}

.stages__item {
  position: relative;
  padding: 75px 28px 35px;
  border-radius: 40px;
}

.stages__item_img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.stages__item h3 {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #fff6ee;
  margin-bottom: 20px;
}

.stages__item li,
.stages__item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  color: #000;
  margin-top: 12px;
}

@media (max-width: 1400px) {
  .stages__wrapper {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 85px;
  }
}

@media (max-width: 768px) {
  .stages__wrapper {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }
  .stages__title {
    font-size: 45px;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .stages {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .stages__wrapper {
    gap: 50px;
    margin-top: 50px;
    padding-right: 20px;
  }
  .stages__item {
    padding-top: 35px;
    border-radius: 20px;
  }
  .stages__item_img {
    top: -20px;
    left: auto;
    transform: translateX(0);
    right: -20px;
  }
  .stages__item h3 {
    font-size: 30px;
    text-align: left;
  }
  .stages__item li,
  .stages__item p {
    font-size: 16px;
    text-align: left;
  }
  .stages__item ul {
    padding-left: 20px;
  }
  .stages__item li {
    list-style-type: disc;
    margin-top: 4px;
  }
}

.prices {
  padding: 100px 0;
}

.prices__title {
  font-family: 'Muller';
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  color: #545454;
  max-width: 967px;
  margin: 0 auto;
}

.prices__caption {
  font-family: 'Muller';
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  text-align: center;
  color: #545454;
  max-width: 780px;
  margin: 80px auto 0 auto;
}

.prices__dropdowns {
  margin: 35px auto 0 auto;
  max-width: 980px;
}

.prices .accordionjs .acc_section {
  border-radius: 20px;
  overflow: auto;
  border: none;
  margin-bottom: 40px;
}

.prices .accordionjs .acc_section .acc_head {
  padding: 30px 50px;
  background: var(--accordion-item-color, #FFE8E5);
  font-family: 'Muller';
  font-weight: 500;
  font-size: 30px;
  color: #545454;
  border: none;
  cursor: pointer;
}

.prices .accordionjs .acc_section .acc_content {
  padding: 0;
  border-radius: 0 0 20px 20px;
}

.prices__menu {
  background: var(--accordion-item-color, #FFE8E5);
  padding: 20px 50px;
}

.prices__menu *:first-child {
  margin-top: 0;
}

.prices__menu ul {
  margin-top: 30px;
}

.prices__menu ul li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.prices__menu p {
  font-family: 'Muller';
  font-weight: 500;
  font-size: 18px;
  color: #f2377c;
}

.prices__menu li,
.prices__menu-name {
  font-weight: 500;
  font-size: 18px;
  color: #545454;
}

.prices__menu-middle {
  vertical-align: bottom;
  border-bottom: 1px solid #AAAAAA;
  position: relative;
  top: -5px;
  flex-grow: 2;
  margin: 0 10px;
}

.prices__menu-cost {
  font-weight: 700;
  font-size: 20px;
  color: #F2377C!important;
  text-decoration: none!important;
  text-align: right;
}

.prices__content {
  max-width: 770px;
  margin: 100px auto 0 auto;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #545454;
}

.prices__btn {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.prices__btn a,
.prices__btn button {
  border-radius: 50px;
  padding: 20px 84px;
  background-color: #F2377C;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #FFF6EE;
}

.prices__caption_workshop {
  margin-top: 50px;
}

.accordionjs .acc_section:first-of-type {
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
}

.accordionjs .acc_section:last-of-type {
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
}

.accordion-top {
  display: grid;
  grid-template-columns: 1fr 35px;
  gap: 30px;
}

.accordion-top span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  transition: all 0.2s linear;
}

.acc_section.acc_active .accordion-top span {
  transform: rotate(-180deg);
}

.prices__callback {
  gap: 20px;
  border-radius: 20px;
  padding: 30px 50px;
  background-color: var(--prices-item-color, #b7ede8);
}

.prices__callback_name {
  font-size: 30px;
  color: #545454;
  max-width: 505px;
  width: 100%;
}

/*Media*/
@media (max-width: 768px) {
  .prices {
    padding: 50px 0;
  }
  .prices__title {
    font-size: 45px;
    text-align: left;
  }
  .prices__caption {
    font-size: 20px;
    text-align: left;
    margin-top: 30px;
  }
  .prices .accordionjs .acc_section {
    margin-bottom: 20px;
  }
  .prices .accordionjs .acc_section .acc_head {
    font-size: 20px;
    padding: 16px 20px;
  }
  .accordion-top {
    grid-template-columns: 1fr 20px;
  }
  .accordion-top span {
    width: 20px;
    height: 20px;
  }
  .prices__menu {
    padding: 5px 20px;
  }
  .prices__menu li,
  .prices__menu-name,
  .prices__menu p {
    font-size: 16px;
  }
  .prices__menu-middle {
    display: none;
  }
  .prices__menu-cost {
    font-size: 16px;
  }
  .prices__menu ul {
    margin-top: 20px;
  }
  .prices__callback {
    flex-wrap: wrap;
    padding: 16px 20px;
  }
  .prices__callback_name {
    font-size: 20px;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .prices__menu li,
  .prices__menu-name,
  .prices__menu p {
    font-size: 14px;
  }
  .prices__menu-cost {
    font-size: 16px;
    padding-left: 8px;
  }
  .prices__callback_name {
    font-size: 18px;
  }
}

.popularMasters {
  background-color: #FDD6D1;
  padding: 60px 0;
}

.popularMasters__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.popularMasters__item {
  position: relative;
  height: fit-content;
  border-radius: 40px;
  padding: 17px 20px 38px 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popularMasters__image {
  border-radius: 28px;
}

.popularMasters__image img {
  border-radius: 28px;
  aspect-ratio: 3.4 / 4;
  object-fit: cover;
}

.popularMasters__name {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #F2377C;
  height: 92px;
  overflow: hidden;
}

.popularMasters__body {
  width: 100%;
  display: none;
}

.popularMasters__text {
  margin-top: 20px;
  font-family: 'Muller';
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #545454;
}

.popularMasters__text p {
  margin-bottom: 20px;
}

.popularMasters__text p:last-child {
  margin-bottom: 0;
}

.popularMasters__bottom {
  margin-top: 20px;
}

.popularMasters__bottom ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.popularMasters__bottom ul li:last-child {
  margin-bottom: 0;
}

.popularMasters__descr {
  font-family: 'Muller';
  font-weight: 700;
  font-size: 28px;
  color: #F2377C;
}

.popularMasters__price {
  border-radius: 20px;
  background-color: #FDD6D1;
  padding: 17px 21px;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #F2377C;
}

.popularMasters__book {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.popularMasters__book a {
  width: 100%;
  padding: 20px;
  border-radius: 50px;
  background-color: #F2377C;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #FFF6EE;
}

.popularMasters__arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-50%, 50%, 0);
  cursor: pointer;
}

.popularMasters__arrow_hide {
  display: none;
}

.popularMasters__arrow_hide.active {
  display: block;
}

.popularMasters__arrow_show {
  display: none;
}

.popularMasters__arrow_show .active {
  display: block;
}

.popularMasters__arrow_show.active {
  display: block;
}

.birthday {
  padding: 158px 0 158px 0;
}

.birthday__title {
  margin: 0 auto;
  max-width: 500px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 60px;
  line-height: 115%;
  text-align: center;
  color: #F2377C;
}

.birthday__photo {
  margin: 50px auto 0 auto;
  max-width: 980px;
  border-radius: 40px;
}

.birthday__photo img {
  border-radius: 40px;
}

.birthday__list {
  margin: 88px auto 0 auto;
  max-width: 980px;
}

.birthday__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.birthday__item {
  position: relative;
  border-radius: 40px;
  padding: 50px 15px 30px 15px;
}

.birthday__item:nth-child(1) {
  background-color: #D2A8FF;
}

.birthday__item:nth-child(2) {
  background-color: #FF8DBE;
}

.birthday__item:nth-child(3) {
  background-color: #5FD9CE;
}

.birthday__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.birthday__name {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 81px;
  overflow: hidden;
  margin-bottom: 20px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 35px;
  text-align: center;
  color: #FFF6EE;
}

.birthday__content {
  font-family: 'Muller';
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #000000;
}

.birthday__content p {
  margin-bottom: 20px;
}

.birthday__content p:last-child {
  margin-bottom: 0;
}

.likeit {
  padding: 180px 0;
}

.likeit__wrapper {
  display: flex;
  gap: 70px;
}

.likeit__image img {
  border-radius: 40px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.likeit__descr {
  max-width: 480px;
  width: 100%;
}

.likeit__content {
  max-width: 480px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.likeit__title {
  margin-bottom: 20px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 50px;
  color: #F2377C;
}

.likeit__text {
  font-family: 'Muller';
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #545454;
}

.likeit__text p {
  margin-bottom: 20px;
}

.likeit__text p:last-child {
  margin-bottom: 0;
}

.organize {
  padding: 100px 0;
}

.organize__title {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 60px;
  line-height: 115%;
  text-align: center;
  color: #545454;
}

.organize__list {
  margin-top: 66px;
}

.organize__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 21px;
}

.organize__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 36px 60px;
  margin-left: 40px;
  border-radius: 20px;
}

.organize__item:nth-child(1) {
  background-color: #5FD9CE;
}

.organize__item:nth-child(2) {
  background-color: #96B3FF;
}

.organize__item:nth-child(3) {
  background-color: #FF8DBE;
}

.organize__item:nth-child(4) {
  background-color: #D2A8FF;
}

.organize__icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.organize__content {
  font-family: 'Muller';
  font-weight: 700;
  font-size: 30px;
  color: #FFF6EE;
}

/*Video Gallery Start*/
.videoGallery {
  padding: 110px 0 160px;
  background-color: #ffe8e5;
}

.videoGallery__slider {
  max-width: 1920px!important;
}

.videoGallery__slide {
  position: relative;
  z-index: 4;
  margin: 0 120px;
}

.videoGallery__slide_link {
  position: relative;
  display: block;
  width: fit-content;
}

.videoGallery__slide_link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 53px;
  width: 53px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.videoGallery__slide.slick-current .videoGallery__slide_link::after {
  background: url(../img/play-button.png) center center/cover no-repeat;
}

/*Media*/
@media (max-width: 1600px) {
  .videoGallery__slide {
    margin: 0 80px;
  }
}

@media (max-width: 992px) {
  .videoGallery__slide {
    margin: 0 40px;
  }
}

@media (max-width: 600px) {
  .videoGallery {
    padding: 90px 0 120px;
  }
  .videoGallery__slide {
    max-width: 80%;
    margin: 0 40px;
  }
}

/*Video Gallery End*/
/*Modal Start*/

.overflow-h {
  overflow: hidden;
}
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 150;
  overflow: hidden;
}
.overlay-block {
  position: relative;
  display: none;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 60px 40px;
}
.modal {
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: #fff6ee;
  border: 6px solid #5fd9ce;
  border-radius: 40px;
  padding: 40px 50px;
}

.modal__title {
  font-weight: 700;
  font-size: 40px;
  color: #545454;
}
.modal__form {

}
.modal__form input[type="text"],
.modal__form input[type="tel"] {
  padding: 20px 41px;
  border: 2px solid #5fd9ce;
  border-radius: 50px;
  max-width: 600px;
  width: 100%;
  color: #545454;
}
.modal__form_inner {
  margin-top: 20px;
}
.modal__form_inner label {
  display: block;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #aaa;
  margin-bottom: 10px;
}
.modal__form_submit {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}
.modal__form_checkbox input[type="checkbox"] {
	display: none;
}
.modal__form_checkbox label {
  position: relative;
	display: block;
  font-size: 10px;
  padding: 4px 5px 4px 30px;
  cursor: pointer;
}
.modal__form_checkbox label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #aaa;
}
.modal__form_checkbox label::after {
  content: "";
  display: none;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #aaa;
}
.modal__form_checkbox.check label::after {
  display: block;
}
.modal__form input[type="submit"] {
  border-radius: 50px;
  padding: 20px 40px;
  background-color: #5fd9ce;
  max-width: 220px;
  width: 100%;
  height: 55px;
  cursor: pointer; 
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  padding: 10px;
}

@media (max-width: 991px) {
  .overlay-block {
      padding: 40px 10px 25px;
  }
}
@media (max-width: 600px) {
  .modal {
      padding: 60px 8vw 50px;
  }
  .modal__title {
      font-size: 30px;
  }
  .modal__form_inner {
      margin-top: 30px;
  }
  .modal__form_submit {
      flex-wrap: wrap;
      gap: 30px;
  }

  #consultation-main .modal__form input[type="submit"] {
    min-width: 100%;
  }
  .modal__form_submit > div {
    width: 100%;
  }
}

/*Modal end*/

.promo-artBox__title-big {
  font-family: 'Muller';
  font-weight: 700;
  font-size: 80px;
  color: #F2377C;
}

.promo-artBox__title-small {
  font-family: 'Muller';
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  color: #F2377C;
}

.promo-artBox__title-small span {
  text-decoration: underline;
}

.promo-artBox__text {
  font-family: 'Muller';
  font-weight: 400;
  font-size: 28px;
  color: #545454;
}

.promo-artBox__btns {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.promo-artBox__bnt-box {
  display: inline-block;
  padding: 20px 87px;
  border-radius: 50px;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #FFF6EE;
  background-color: #F2377C;
}

.promo-artBox__btn-sale {
  display: inline-block;
  padding: 20px 70px;
  border-radius: 50px;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #545454;
  background-color: #5FD9CE;
}

.sweetGift__title {
  font-family: 'Muller';
  font-weight: 700;
  font-size: 45px;
  line-height: 100%;
}

.sweetGift__caption {
  margin-top: 10px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
}

.sweetGift__btn {
  margin-top: 60px;
}

.sweetGift__btn a {
  display: inline-block;
  padding: 20px 140px;
  border-radius: 46px;
  background-color: #5FD9CE;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #545454;
}

.watch__title {
  margin-bottom: 53px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  color: #F2377C;
}

.benefits {
  padding: 100px 0;
  background-color: #FFF6EE;
}

.benefits__title {
  max-width: 563px;
  width: 100%;
  margin: 0 auto;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  color: #545454;
}

.benefits__list {
  margin-top: 135px;
}

.benefits__list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefits__list ul li {
  position: relative;
  border-radius: 20px;
  padding: 88px 28px 23px 28px;
}

.benefits__list ul li:nth-child(1) {
  background-color: #F1E4FF;
}

.benefits__list ul li:nth-child(1) .benefits__top {
  background-color: #9F4FF5;
}

.benefits__list ul li:nth-child(1) .benefits__promocode {
  background-color: #9F4FF5;
}

.benefits__list ul li:nth-child(2) {
  background-color: #DEEEFA;
}

.benefits__list ul li:nth-child(2) .benefits__top {
  background-color: #4D78EB;
}

.benefits__list ul li:nth-child(2) .benefits__promocode {
  background-color: #4D78EB;
}

.benefits__list ul li:nth-child(3) {
  background-color: #C6EFEC;
}

.benefits__list ul li:nth-child(3) .benefits__top {
  background-color: #00B49D;
}

.benefits__list ul li:nth-child(3) .benefits__promocode {
  background-color: #00B49D;
}

.benefits__list ul li:nth-child(4) {
  background-color: #FFE8E5;
}

.benefits__list ul li:nth-child(4) .benefits__top {
  background-color: #F2377C;
}

.benefits__list ul li:nth-child(4) .benefits__promocode {
  background-color: #F2377C;
}

.benefits__top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 100%;
  aspect-ratio: 1 / 1;
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits__top-content {
  font-family: 'Hardcore';
  font-weight: 400;
  font-size: 60px;
  text-transform: capitalize;
  text-align: center;
  color: #FFFFFF;
}

.benefits__text {
  margin-bottom: 20px;
  font-family: 'Muller';
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #000000;
}

.benefits__promocode {
  border-radius: 10px;
  padding: 11px 24px;
  text-align: center;
}

.benefits__name {
  font-family: 'Muller';
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #FFE8E5;
}

.benefits__code {
  font-family: 'Muller';
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #FFE8E5;
}

.benefits__caption {
  margin-top: 32px;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 16px;
  line-height: 180%;
  text-align: center;
  color: #AAAAAA;
}

.simple {
  padding: 100px 0 150px 0;
  background-color: #FFF6EE;
}

.simple__title {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  color: #545454;
}

.simple__text {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-family: 'Muller';
  font-weight: 500;
  font-size: 25px;
  line-height: 120%;
  color: #545454;
}

.simple__left {
  padding: 0 30px;
  position: relative;
  display: flex;
  align-items: center;
}

.simple__left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #FF8DBE;
  border-radius: 10px;
}

.simple__right {
  padding: 0 30px;
  position: relative;
  display: flex;
  align-items: center;
}

.simple__right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #FF8DBE;
  border-radius: 10px;
}

.simple__btns {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.simple__btns-content {
  display: flex;
  gap: 20px;
}

.simple__btn {
  padding: 8px 50px;
  border-radius: 20px;
  background-color: #FDD6D1;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #000000;
}

.simple__video {
  margin-top: 50px;
}

.whyus {
  padding: 117px 0 173px 0;
  background-color: #FFE8E5;
}

.whyus__title {
  font-family: 'Muller';
  font-weight: 700;
  font-size: 60px;
  line-height: 115%;
  text-align: center;
  color: #545454;
}

.whyus__items {
  margin-top: 77px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.whyus__item {
  position: relative;
  border-radius: 20px;
  padding: 37px 30px 23px 30px;
}

.whyus__item:nth-child(1) {
  background-color: #FF8DBE;
}

.whyus__item:nth-child(2) {
  background-color: #96B3FF;
}

.whyus__item:nth-child(3) {
  background-color: #5FD9CE;
}

.whyus__top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, -60%, 0);
}

.whyus__name {
  margin-bottom: 10px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #FFF6EE;
}

.whyus__text {
  font-family: 'Muller';
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #000000;
}

.technique {
  padding: 90px 0;
  background-color: #FFF6EE;
}

.technique__top {
  display: grid;
  grid-template-columns: 660px 1fr;
  gap: 47px;
  max-width: 1407px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .technique__top {
    grid-template-columns: 1fr;
    max-width: 1280px;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .technique__top {
    padding: 0 36px;
    gap: 38px;
  }
}

@media (max-width: 600px) {
  .technique__top {
    padding: 0 20px;
  }
}

.technique__top_vertical {
  grid-template-columns: 1fr;
  margin: 120px auto 0 auto;
}

.technique__title {
  z-index: 10;
  position: relative;
  color: #fff6ee;
  font-family: 'Muller';
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 992px) {
  .technique__title {
    font-size: 45px;
  }
}

.technique__title-content {
  display: flex;
  justify-content: center;
}

.technique__img_bg {
  position: absolute;
  width: 100%;
  min-height: 100%;
  object-fit: contain;
}

.technique__title_bg {
  position: relative;
  max-width: 870px;
  width: 100%;
  padding: 46px 19px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .technique__title_bg {
    max-width: 570px;
  }
}

@media (max-width: 992px) {
  .technique__title_bg {
    max-width: 439px;
  }
}

.technique__text {
  display: flex;
  align-items: center;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  color: #AAAAAA;
}

@media (max-width: 992px) {
  .technique__text {
    font-size: 20px;
  }
}

.technique__text_cutWidth {
  max-width: 580px;
  text-align: center;
  margin: 0 auto;
}

.technique__body {
  margin-top: 46px;
}

.technique__line {
  display: flex;
  align-items: center;
}

.technique__line:nth-child(even) {
  flex-direction: row-reverse;
}

.technique__line:nth-child(even) .technique__name {
  text-align: left;
}

.technique__line:nth-child(even) .technique__text-content {
  text-align: left;
  max-width: 400px;
}

.technique__line:nth-child(even) .technique__btn {
  justify-content: flex-start;
}

.technique__line:nth-child(even) .technique__right {
  margin-right: 30px;
}

.technique__line:nth-child(even) .technique__img {
  width: 728px;
}

.technique__line:nth-child(odd) {
  flex-direction: row;
}

.technique__line:nth-child(odd) .technique__btn {
  justify-content: flex-end;
}

.technique__line:nth-child(odd) .technique__right {
  margin-left: 121px;
}

.technique__line:nth-child(odd) .technique__img {
  width: 580px;
}

.technique__row {
  margin-bottom: 40px;
}

.technique__row:last-child {
  margin-bottom: 0;
}

.technique__name {
  margin-bottom: 20px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 40px;
  text-align: right;
  color: #545454;
}

.technique__text-content {
  margin-bottom: 29px;
  font-family: 'Muller';
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: right;
  color: #545454;
}

.technique__btn {
  display: flex;
}

.technique__btn a {
  display: inline-block;
  padding: 20px 44px;
  border-radius: 50px;
  background-color: #F2377C;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #FFF6EE;
}

.technique__img img {
  width: 100%;
}

.discountForm {
  padding: 100px 0;
  background-color: #FFF6EE;
}

.discountForm__wrapper {
  border: 6px solid #5FD9CE;
  border-radius: 40px;
  padding: 50px 100px 30px 100px;
  background-color: #fff;
}

.discountForm__title {
  margin-bottom: 30px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #545454;
}

.discountForm__subtitle {
  margin-bottom: 30px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #5FD9CE;
}

.discountForm__form {
  display: grid;
  grid-template-columns: 280px 380px 280px;
  gap: 24px;
}

.discountForm__input {
  border: 2px solid #5FD9CE;
  border-radius: 50px;
  padding: 17px 41px;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 20px;
  color: #000000;
}

.discountForm__input::placeholder {
  font-family: 'Muller';
  font-weight: 500;
  font-size: 20px;
  color: #545454;
}

.discountForm__input:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}

.discountForm__input:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}

.discountForm__btn {
  grid-column: 3/4;
  grid-row: 1/2;
}

.discountForm__btn button {
  padding: 17px;
  border-radius: 50px;
  background-color: #5FD9CE;
  width: 100%;
  height: 100%;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #545454;
  cursor: pointer;
}

.discountForm__checkbox {
  grid-column: 3/4;
  grid-row: 2/3;
}

.faq {
  padding: 100px 0;
  background-color: #FFF6EE;
}

.faq__title {
  font-family: 'Muller';
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  color: #545454;
  max-width: 967px;
  margin: 0 auto;
}

.faq__caption {
  font-family: 'Muller';
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  text-align: center;
  color: #545454;
  max-width: 780px;
  margin: 50px auto 0 auto;
}

.faq__dropdowns {
  margin: 35px auto 0 auto;
  max-width: 980px;
}

.faq__dropdowns .accordionjs .acc_section {
  border-radius: 20px;
  border: none;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  margin-bottom: 40px;
}

.faq__dropdowns .accordionjs .acc_section .acc_head {
  padding: 30px 50px;
  background: #FFE8E5;
  font-family: 'Muller';
  font-weight: 500;
  font-size: 30px;
  color: #545454;
  border-radius: 20px;
  border: none;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
}

.faq__dropdowns .accordionjs .acc_section .acc_content {
  padding: 0;
  border-radius: 0 0 20px 20px;
}

.faq__dropdowns .accordionjs .acc_active .acc_head {
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  border-radius: 0 !important;
}

.faq__answer {
  background: #FFE8E5;
  padding: 20px 50px;
}

.faq__answer ul li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.artists {
  padding: 53px 0;
  background-color: #FFF6EE;
}

.artists__title {
  margin-bottom: 50px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  color: #545454;
}

.artists__text {
  font-family: 'Muller';
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  text-align: center;
  color: #545454;
  max-width: 700px;
  margin: 0 auto;
}

.artists__list {
  margin-top: 50px;
}

.artists__list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.artists__list ul li {
  padding: 10px;
}

.artists__img {
  border-radius: 100%;
  background: #FFE8E5;
  width: 100%;
  max-height: 260px;
  height: 100%;
  aspect-ratio: 3 / 4;
}

.artists__name {
  margin-top: 20px;
  font-family: 'Muller';
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #F2377C;
}

.artists__descr {
  margin-top: 20px;
  font-family: 'Muller';
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: #000000;
}

.pallete {
  padding: 100px 0;
  background: #FFF6EE;
}

.pallete__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  column-gap: 20px;
  row-gap: 30px;
}

.pallete__item:nth-child(odd) {
  background-color: #DEE7FF;
}

.pallete__item:nth-child(even) {
  background-color: #FFE8E5;
}

@media (max-width: 768px) {
  .poster__block_img {
    width: 100%;
  }
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content {
	padding: 0;
	aspect-ratio: 9.6/5.4;
	max-width: 960px;
}

/*# sourceMappingURL=style.css.map */
