.regular {
  font-family: 'Regular';
}
.medium {
  font-family: 'Medium';
}
.bold {
  font-family: 'Bold';
}
.troika {
  font-family: 'Troika';
}
*:focus {
  outline: none;
  box-shadow: none;
}
* {
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
}
input,
button {
  appearance: none;
  -webkit-appearance: none;
}
body,
html {
  min-height: 100%;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  background: #ffffff;
  font-size: 18px;
  color: black;
  font-family: 'Regular';
  line-height: 28px;
}
.link-404 {
  color: #ff9d00;
  transition: 0.3s all;
}
.link-404:hover {
  color: #ea8700;
}
.container-404 {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.container-404 .soc-404 {
  margin: 0 10px;
  display: inline-block;
}
.container-404 .soc-404 svg path {
  transition: 0.3s all;
  fill: #ff9d00;
}
.container-404 .soc-404:hover svg path {
  fill: #ea8700;
}
a {
  cursor: pointer;
  color: white;
}
p {
  margin-bottom: 12px;
}
h1, .h1 {
  font-size: 66px;
  line-height: 72px;
  font-family: 'Troika';
}
h2, .h2 {
  font-size: 60px;
  line-height: 68px;
  font-family: 'Troika';
}
h3, .h3 {
  font-size: 48px;
  line-height: 54px;
  font-family: 'Troika';
}
.big-text {
  font-size: 24px;
  line-height: 36px;
}
.main-text {
  font-size: 18px;
  line-height: 28px;
}
form br {
  display: none;
}
.btn-up {
  transition: 0.3s all;
  visibility: hidden;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  background: transparent;
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid black;
  right: 15px;
  bottom: 70px;
}
.btn-up.visible {
  visibility: visible;
  opacity: 0.3;
}
.btn-up::after {
  transition: 0.3s all;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(135deg);
  display: block;
  width: 15px;
  height: 15px;
  border-bottom: 3px solid black;
  border-left: 3px solid black;
}
.btn-up:hover {
  border: 3px solid #ff9d00;
}
.btn-up:hover::after {
  border-bottom: 3px solid #ff9d00;
  border-left: 3px solid #ff9d00;
}
header {
  overflow: hidden;
  z-index: 10;
  padding-top: 145px;
  position: relative;
  background: #0eafdd;
}
header .header-desktop {
  position: fixed;
  opacity: 1;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 3;
  animation: header_fixed 0.5s ease-out;
  box-shadow: none;
  background: none;
}
header .header-desktop.fixed {
  background: #0eafdd;
  position: fixed;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  animation: header_fixed 0.5s ease-out;
  opacity: 1;
}
@keyframes header_fixed {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header .header-desktop.fade {
  background: #0eafdd;
  visibility: hidden;
  opacity: 0;
  animation: header_fixed_fade 0.5s ease-out;
}
@keyframes header_fixed_fade {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
header .header-top {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-top nav ul {
  width: 483px;
  display: flex;
  justify-content: space-between;
}
header .header-top nav ul a {
  display: block;
  color: white;
  font-size: 16px;
  line-height: 26px;
  transition: 0.3s all;
}
header .header-top nav ul a:hover,
header .header-top nav ul .current-menu-item a {
  color: #ffe99d;
}
header .header-top .block-time {
  display: flex;
  align-items: center;
}
header .header-top .block-time svg {
  vertical-align: middle;
  margin-right: 10px;
}
header .header-top .block-time__text {
  font-size: 16px;
  line-height: 26px;
  color: white;
}
header .header-top .block-phone {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-top .block-phone:hover svg path {
  fill: white;
}
header .header-top .block-phone:hover .block-phone__box .block-phone__text:hover {
  color: #ffe99d;
}
header .header-top .block-phone:hover .block-phone__box .block-phone__text::after,
header .header-top .block-phone:hover .block-phone__text::before {
  top: 35%;
}
header .header-top .block-phone:hover .block-phone__box .block-phone__text::after {
  transform: rotate(-225deg);
}
header .header-top .block-phone:hover .block-phone__box .block-phone__text::before {
  transform: rotate(45deg);
}
header .header-top .block-phone:hover .block-phone__box .block-phone__dropdown {
  top: -5px;
  visibility: visible;
  opacity: 1;
}
header .header-top .block-phone svg {
  vertical-align: middle;
  margin-right: 10px;
}
header .header-top .block-phone__box {
  position: relative;
}
header .header-top .block-phone svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
}
header .header-top .block-phone svg path {
  fill: #ffe99d;
  transition: 0.3s all;
}
header .header-top .block-phone__text {
  z-index: 1;
  display: block;
  font-family: 'Bold';
  margin-right: 56px;
  font-size: 20px;
  line-height: 30px;
  color: white;
  position: relative;
  transition: 0.3s all;
}
header .header-top .block-phone__text::after,
header .header-top .block-phone__text::before {
  transition: 0.3s all;
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background: white;
  border-radius: 1px;
  right: -30px;
  top: 65%;
}
header .header-top .block-phone__text::after {
  transform-origin: left;
  transform: rotate(-135deg);
}
header .header-top .block-phone__text::before {
  transform-origin: left;
  transform: rotate(-45deg);
}
header .header-top .block-phone__dropdown {
  padding: 35px 0px 0px 45px;
  border-radius: 4px;
  background: #ff9d00;
  transition: 0.3s all;
  position: absolute;
  left: -45px;
  top: 130%;
  opacity: 0;
  visibility: hidden;
}
header .header-top .block-phone__dropdown-item {
  display: flex;
  align-items: center;
}
header .header-top .block-phone__dropdown-link {
  transition: 0.3s all;
  white-space: nowrap;
  font-family: 'Bold';
  color: white;
  font-size: 20px;
  line-height: 30px;
}
header .header-top .block-phone__dropdown-link svg {
}
header .header-top .block-phone__dropdown-link:hover {
  color: #ffe99d;
}
header .header-top .block-phone__feedback-btn {
  font-family: 'Bold';
  font-size: 16px;
  line-height: 26px;
  color: #ffe99d;
  letter-spacing: 0.08em;
  transition: 0.3s all;
}
header .header-top .block-phone__feedback-btn:hover {
  color: #ff9d00;
}
header .header-line {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 2px;
  background: #9be9ff;
  opacity: 0.25;
}
header .header-bottom {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-bottom .logo {
  margin-right: 25px;
  display: flex;
  align-items: center;
}
header .header-bottom .logo svg {
  margin-right: 16px;
  width: 40px;
  height: 52px;
}
header .header-bottom .logo svg path {
  transition: 0.5s all;
  fill: white;
}
header .header-bottom .logo .logo-text__top {
  white-space: nowrap;
  font-family: 'Troika';
  font-size: 52px;
  line-height: 60px;
  transition: 0.5s all;
}
header .header-bottom .logo .logo-text__bottom {
  transition: 0.5s all;
  white-space: nowrap;
  margin-top: -9px;
  font-size: 16px;
  line-height: 26px;
  color: #ffe99d;
}
header .header-bottom .logo:hover svg path {
  fill: #ffe99d;
}
header .header-bottom .logo:hover .logo-text__top {
  color: #ffe99d;
}
header .header-bottom .logo:hover .logo-text__bottom {
  color: #ffe99d;
}
header .header-bottom nav {
  position: relative;
  z-index: 2;
}
header .header-bottom nav .catalog-list {
  width: 755px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-bottom nav .catalog-list__item {
  padding-top: 11px;
  padding-bottom: 11px;
  position: relative;
}
header .header-bottom nav .catalog-list__item-link {
  display: block;
  font-family: 'Bold';
  font-size: 24px;
  position: relative;
  /* transition: 0s all .6s; */
  transition: 0.5s all ease-out;
}
header .header-bottom nav .catalog-list__item-link.active {
  color: #ffe99d;
}
header .header-bottom nav .catalog-list__item-link:hover {
  /* color: #FFE99D; */
}
header .header-bottom nav .catalog-list__item-link.focus::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: 0.5s all;
}
header .header-bottom nav .catalog-list__item-link::after {
  content: '';
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  position: absolute;
  width: 14px;
  height: 14px;
  border-top: 7px solid transparent;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid white;
  left: 50%;
  top: 100%;
}
header .header-bottom nav .catalog-list__item-link.focus {
  animation: catalog_link 0.5s ease-out;
  color: #ffe99d;
}
@keyframes catalog_link {
  from {
    /* letter-spacing: 0px; */
    transform: scale(1);
  }
  50% {
    /* letter-spacing: 2px; */
    transform: scale(1.05);
  }
  to {
    /* letter-spacing: 0px; */
    transform: scale(1);
  }
}
header .header-bottom nav .catalog-list__item-link.focus .catalog-list__item-focus {
  display: none;
  opacity: 1;
  top: 0px;
  left: 0px;
  /* transform: rotate(0deg); */

  width: 100%;
}
header .header-bottom nav .catalog-list__item-focus {
  display: none;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  top: 0;
  left: 0;

  z-index: 0;
  transition: 0.6s all;
  position: absolute;
  display: block;
  /* opacity: 0; */
  color: #ffe99d;
  /* width: 100%; */
  height: 100%;
  /* top: -15px; */
  /* left: 20px; */
  /* transform-origin: right; */
  /* transform: rotate(8deg); */
}
header .header-bottom nav #catalogDrop {
  position: absolute;
  transform: scale(1) rotateX(-90deg);
  transition: 0.3s all;
  visibility: hidden;
  opacity: 0;
  top: 0%;
}
header .header-bottom nav #catalogDrop.active {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transform: scale(1) perspective(200px) rotateX(0);
}
header .header-bottom nav .catalog-list__dropdown {
  display: none;
  min-width: 500px;
  position: absolute;
  border-radius: 4px;
  background: white;
  padding: 24px 36px 36px 36px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}
header .header-bottom nav .catalog-list__dropdown-container {
  position: relative;
}
header .header-bottom nav .catalog-list__dropdown-main {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 280px;
  overflow: auto;
  padding-bottom: 35px;
}
header .header-bottom nav .catalog-list__dropdown-main::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 35px;
  width: 100%;
  background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
}
header .header-bottom nav .catalog-list__dropdown-item {
  margin-bottom: 12px;
}
header .header-bottom nav .catalog-list__dropdown-link {
  position: relative;
  color: black;
  font-size: 18px;
  line-height: 30px;
}
header .header-bottom nav .catalog-list__dropdown-link:hover {
  color: #ff9d00;
}
header .header-bottom nav .catalog-list__dropdown-line {
  margin-top: 0;
  margin-bottom: 22px;
  background: #0eafdd;
  opacity: 0.2;
  height: 3px;
  width: 100%;
}
header .header-bottom nav .catalog-list__dropdown-all {
  color: black;
  position: relative;
  line-height: normal;
}
header .header-bottom nav .catalog-list__dropdown-all:hover {
  color: #ff9d00;
}
header .header-bottom nav .catalog-list__dropdown-all:hover::after {
  border-bottom: 3px solid #ff9d00;
  border-right: 3px solid #ff9d00;
  animation: arrow_move 0.7s linear infinite;
}
@keyframes arrow_move {
  from {
    top: 50%;
    transform: translate(0px, -35%) rotate(-45deg);
  }
  50% {
    top: 50%;
    transform: translate(-4px, -35%) rotate(-45deg);
  }
  to {
    top: 50%;
    transform: translate(0px, -35%) rotate(-45deg);
  }
}
header .header-bottom nav .catalog-list__dropdown-all::after {
  content: '';
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-bottom: 3px solid black;
  border-right: 3px solid black;
  border-radius: 2px;
  transform: translateY(-35%) rotate(-45deg);
  top: 50%;
  right: -23px;
}
header .header-bottom .header-order {
  transition: 1s all;
  overflow: hidden;
  position: relative;
  font-family: 'Bold';
  background: #ff9d00;
  border-radius: 24px;
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
  min-width: 250px;
  margin-left: 25px;
  max-width: 330px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.08em;
}
header .header-bottom .header-order:hover {
  background: #ea8700;
}
header .header-bottom .header-order:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
header .header-bottom .header-order:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
header .header-bottom .header-order::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
header .header-bottom .header-order::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: #ff9d00;
  border-radius: 50%;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  opacity: 0;
  transition: 0.5s all;
}
header .header-mobile {
  display: none;
}
header .main-section {
  min-height: calc(100vh - 145px);
  /* min-height: 695px; */
  position: relative;
  display: flex;

  /* align-items: center; */
}
header .main-section__address {
  position: relative;
  margin-bottom: 22px;
  padding-left: 50px;
}
header .main-section__address svg {
  width: 24px;
  top: 0;
  position: absolute;
  left: 0px;
  top: 5px;
}
header .main-section__address-bottom {
  font-size: 16px;
  color: #ffe99d;
}
header .main-section__phone {
  position: relative;
  margin-bottom: 22px;
  padding-left: 50px;
}
header .main-section__phone svg {
  width: 22px;
  top: 0;
  position: absolute;
  left: 0px;
  top: 5px;
}
header .main-section__phone-item {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
header .main-section__phone-item span {
  color: #9be9ff;
}
header .main-section__phone-message a {
  margin-left: 10px;
  font-size: 16px;
  line-height: 34px;
  color: #ffe99d;
}
header .main-section__mail {
  padding-left: 50px;
  position: relative;
  margin-bottom: 37px;
}
header .main-section__mail svg {
  width: 24px;
  top: 0;
  position: absolute;
  left: 0px;
  top: 5px;
}
header .main-section__social {
  padding-left: 50px;
  display: flex;
  align-items: center;
}
header .main-section__social-item {
  margin-right: 24px;
}
header .main-section__left {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  margin-top: 135px;
  max-width: 820px;
}
header .main-section__left-back {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: #e2f9ff;
  font-size: 18px;
  line-height: 28px;
}
header .main-section__left-back svg {
  margin-right: 12px;
  width: 28px;
}
header .main-section__left-back svg path {
  fill: #e2f9ff;
}
header .main-section__left-title {
  margin-bottom: 9px;
  font-family: 'Troika';
  color: white;
}
header .main-section__left-box {
  font-size: 24px;
  line-height: 36px;
  font-family: 'Bold';
  color: white;
}
header .main-section__left-list {
  color: #9be9ff;
  font-size: 24px;
  line-height: 34px;
  display: flex;
  align-items: center;
  margin-bottom: 37px;
}
header .main-section__left-item {
  position: relative;
  margin-right: 42px;
  color: #9be9ff;
  font-size: 24px;
  line-height: 26px;
  white-space: nowrap;
  font-family: 'Bold';
}
header .main-section__left-item::before {
  content: '';
  opacity: 1;
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/star-icon.png) no-repeat center center;
  background-size: contain;
  left: -27.5px;
  top: 50%;
  transform: translateY(-50%);
  animation: star 2s ease-out 2.5s;
}
@keyframes star {
  from {
    transform: translateY(-50%) rotate(0);
    opacity: 0;
  }
  40% {
    transform: translateY(-50%) rotate(1turn);
    opacity: 1;
  }
  to {
    transform: translateY(-50%) rotate(1turn);
    opacity: 1;
  }
}
header .main-section__left-item:first-child::before {
  visibility: hidden;
}
header .main-section__left-order {
  text-align: center;
  transition: 1s all;
  overflow: hidden;
  position: relative;
  background: #ff9d00;
  border-radius: 30px;
  font-size: 16px;
  text-transform: uppercase;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Bold';
  max-width: 540px;
  width: 100%;
  height: 60px;
  margin-bottom: 144px;
  letter-spacing: 0.08em;
}
header .main-section__left-order:hover {
  background: #ea8700;
}
header .main-section__left-order:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
header .main-section__left-order:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
header .main-section__left-order::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
header .main-section__left-order::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: #ff9d00;
  border-radius: 50%;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  opacity: 0;
  transition: 0.5s all;
}
header .main-section__left-scroll {
  z-index: 3;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: none;
  color: white;
  font-size: 16px;
  position: absolute;
  bottom: 35px;
  left: 0;
}
header .main-section__left-scroll:hover .scroll-wrap {
  border: transparent solid 2px;
}
header .main-section__left-scroll:hover .scroll-wrap::before,
header .main-section__left-scroll:hover .scroll-wrap::after {
  background: #9be9ff;
}
header .main-section__left-scroll .scroll-wrap::before {
  animation: scroll_circle 2s ease-in-out infinite;
}
@keyframes scroll_circle {
  from {
    transform: translate(-50%, -50%) scale(0.5);
  }
  30% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  to {
    transform: translate(-50%, -50%) scale(0.5);
  }
}
header .main-section__left-scroll .scroll-wrap::after {
  animation: scroll_circle2 2s ease-in-out 0.5s infinite;
}
@keyframes scroll_circle2 {
  from {
    transform: translate(-50%, -50%) scale(0.5);
  }
  30% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  to {
    transform: translate(-50%, -50%) scale(0.5);
  }
}
header .main-section__left-scroll:hover .scroll-wrap .scroll-dot {
  height: 12px;
  animation: scroll_arrow 3s ease-in-out 0.8s infinite;
}
@keyframes scroll_arrow {
  from {
    transform: translate(-50%, 0px);
  }
  25% {
    transform: translate(-50%, -3px);
  }
  50% {
    transform: translate(-50%, 0px);
  }
  75% {
    transform: translate(-50%, -3px);
  }
  to {
    transform: translate(-50%, 0px);
  }
}
header .main-section__left-scroll:hover .scroll-wrap .scroll-dot::before {
  top: 6px;
  transform: translateX(-50%) rotate(-35deg);
  height: 8px;
}
header .main-section__left-scroll:hover .scroll-wrap .scroll-dot::after {
  top: 6px;
  transform: translateX(-50%) rotate(35deg);
  height: 8px;
}
header .main-section__left-scroll .scroll-wrap {
  position: relative;
  width: 18px;
  height: 28px;
  border-radius: 9px;
  border: white solid 2px;
  margin-right: 12px;
  transition: 0.4s all;
}
header .main-section__left-scroll .scroll-wrap::before {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #9be9ff;
  opacity: 0;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
}
header .main-section__left-scroll .scroll-wrap::after {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #9be9ff;
  opacity: 0;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
}
header .main-section__left-scroll .scroll-wrap .scroll-dot {
  transition: 0.4s all;
  position: absolute;
  width: 2px;
  height: 4px;
  background: white;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1px;
}
header .main-section__left-scroll .scroll-wrap .scroll-dot::before {
  transition: 0.6s all;
  content: '';
  display: block;
  position: absolute;
  width: 2px;
  height: 4px;
  background: white;
  border-radius: 1px;
  top: 0px;
  left: 50%;
  transform-origin: bottom;
  transform: translateX(-50%) rotate(0);
}
header .main-section__left-scroll .scroll-wrap .scroll-dot::after {
  transition: 0.6s all;
  content: '';
  display: block;
  position: absolute;
  width: 2px;
  height: 4px;
  background: white;
  border-radius: 1px;
  top: 0px;
  left: 50%;
  transform-origin: bottom;
  transform: translateX(-50%) rotate(0);
}
header .main-section__right {
  z-index: 1;
  flex-grow: 1;
  position: relative;
  align-self: center;
}
header .main-section__right-circle {
  position: relative;
}
header .main-section__right-circle::before {
  border-radius: 50%;
  display: block;
  content: '';
  position: absolute;
  width: 1000px;
  height: 1000px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #9be9ff;
  opacity: 0.1;
}
header .main-section__right-box {
  transition: 0.8s all;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
  border-radius: 50%;
  width: 600px;
  height: 600px;
  overflow: hidden;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
header .main-section__right-box:hover {
  transform: scale(1.04);
}
header .main-section__right-img {
  position: relative;
}
header .main-section__right-cake {
  z-index: 1;
  max-width: 168px;
  position: absolute;
  bottom: 0;
  left: 100px;
  width: 100%;
  animation: main_svg 3s;
}
@keyframes main_svg {
  from {
    width: 0px;
  }
  40% {
    width: 0px;
  }
  to {
    width: 100%;
  }
}
header .main-section__right-hats {
  max-width: 284px;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 25px;
  width: 100%;
  animation: main_svg 3s;
}
header .main-section__right .contact-box .form-mask-1,
header .main-section__right .contact-box .form-mask-2,
header .main-section__right .contact-box .form-mask-3 {
  display: none;
}
header .main-section__right .contact-box {
  position: relative;
  z-index: 1;
  margin: auto;
  max-width: 820px;
}
header .main-section__right .contact-box .form-wrap {
  margin-top: 140px;
  color: white;
  position: relative;
  z-index: 1;
}
header .main-section__right .contact-box .form-wrap .form__title {
  font-family: 'Troika';
  margin-bottom: 22px;
}
header .main-section__right .contact-box .form-wrap .form__desc {
  font-family: 'Medium';
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 25px;
}
header .main-section__right .contact-box form .form__line {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  border-radius: 30px;
  border: 2px solid #ff9d00;
  max-width: 588px;
  background: white;
  padding: 0px 26px;
}
header .main-section__right .contact-box form .form__line-area {
  height: 120px;
}
header .main-section__right .contact-box form .form__line-area svg {
  margin-top: -60px;
}
header .main-section__right .contact-box form .form__line svg {
  margin-right: 12px;
}
header .main-section__right .contact-box form .form__line svg path {
  fill: #ff9d00;
}
header .main-section__right .contact-box form .form__line svg:nth-child(1) {
  width: 27px;
  height: 27px;
}
header .main-section__right .contact-box form .form__line svg:nth-child(2) {
  width: 24px;
  height: 24px;
}
header .main-section__right .contact-box form .form__line svg:nth-child(3) {
  width: 26px;
  height: 26px;
}
header .main-section__right .contact-box form .form__line input,
header .main-section__right .contact-box form .form__line textarea {
  width: 100%;
  line-height: 24px;
  flex-grow: 1;
  font-family: 'Regular';
  font-size: 18px;
  color: #7e7e7e;
}
header .main-section__right .contact-box form .form__line textarea {
  resize: none;
  height: 75%;
}
.wpcf7-recaptcha > div {
  width: 100% !important;
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
header .main-section__right .contact-box form .form__check .wpcf7-list-item label input {
  display: none;
}
header
  .main-section__right
  .contact-box
  form
  .form__check
  .wpcf7-list-item
  label
  .wpcf7-list-item-label {
  padding-left: 37px;
  position: relative;
  margin-bottom: 24px;
  display: inline-block;
  margin: auto;
  margin-bottom: 25px;
  text-align: left;
}
header
  .main-section__right
  .contact-box
  form
  .form__check
  .wpcf7-list-item
  label
  .wpcf7-list-item-label::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 6px;
  width: 23px;
  height: 23px;
  border: 2px solid #ff9d00;
  background: white;
  left: 0;
  top: 14px;
  transform: translateY(-50%);
}
header
  .main-section__right
  .contact-box
  form
  .form__check
  .wpcf7-list-item
  label
  input:checked
  + .wpcf7-list-item-label::before {
  background: #ff9d00;
}
header
  .main-section__right
  .contact-box
  form
  .form__check
  .wpcf7-list-item
  label
  .wpcf7-list-item-label::after {
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 8px;
  border-bottom: 3px solid white;
  border-left: 3px solid white;
  border-radius: 3px;
  left: 6px;
  top: 9px;
  transform: rotate(-45deg);
}
header .main-section__right .contact-box form .form__submit {
  margin-bottom: 77px;
  position: relative;
  width: 100%;
  max-width: 436px;
  height: 60px;
  background: #ff9d00;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  transition: 1s all;
  overflow: hidden;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: 'Bold';
}
header .main-section__right .contact-box form .form__submit:hover {
  background: #ea8700;
}
header .main-section__right .contact-box form .form__submit:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
header .main-section__right .contact-box form .form__submit:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
header .main-section__right .contact-box form .form__submit::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
header .main-section__right .contact-box form .form__submit::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: #ff9d00;
  border-radius: 50%;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  opacity: 0;
  transition: 0.5s all;
}
header .main-section__right .contact-box form .focus-label {
  border: 2px solid #e62323;
}
header .main-section__right .contact-box form .focus-label svg path {
  fill: #e62323;
}
header .main-section__right .contact-box .form-wrap .form-mask-1 {
  z-index: -1;
  position: absolute;
  top: -577px;
  left: -124px;
}
header .main-section__right .contact-box .form-wrap .form-mask-2 {
  z-index: -1;
  position: absolute;
  top: -395px;
  left: -124px;
}
header .main-section__right .contact-box .form-wrap .form-mask-3 {
  z-index: -1;
  position: absolute;
  top: -331px;
  left: -175px;
}
header .header-waves__box {
  overflow: hidden;
  position: absolute;
  width: 574px;
  right: -153.6px;
  top: 40%;
  display: flex;
  justify-content: flex-end;
  transform: translateY(-50%);
  animation: waves 2s linear;
}
@keyframes waves {
  from {
    width: 0;
  }
  to {
    width: 574px;
  }
}
header .header-circle__blue {
  position: absolute;
  width: 458px;
  height: 458px;
  border-radius: 50%;
  background: #9be9ff;
  opacity: 0.4;
  right: -83.6px;
  top: 88px;
}
header .header-circle__orange {
  position: absolute;
  width: 358px;
  height: 358px;
  border-radius: 50%;
  right: -40px;
  top: 49%;
  border: 20px solid #ffe99d;
  transform: translateY(-70px);
}
header .header-circle__blue-2 {
  position: absolute;
  width: 458px;
  height: 458px;
  border-radius: 50%;
  background: #9be9ff;
  opacity: 0.4;
  right: 53.4px;
  top: 191px;
}
header .header-circle__purple {
  position: absolute;
  width: 308px;
  height: 308px;
  border-radius: 50%;
  border: 30px solid #ff8484;
  right: -30.6px;
  top: 87px;
}
.header-tape-1 {
  z-index: 0;
  position: absolute;
  width: 56.5px;
  top: 64px;
  right: 136px;
  animation: tape_up 2.2s ease-out;
  /* , tape_shake 1.5s ease-in-out 2.2s infinite; */
}
@keyframes tape_up {
  from {
    transform: translate(-100px, 1000px);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes tape_shake {
  from {
    transform: translateY(0);
  }
  25% {
    transform: translateY(3px);
  }
  75% {
    transform: translateY(-3px);
  }
  to {
    transform: translateY(0);
  }
}
.header-tape-2 {
  z-index: 0;
  width: 54px;
  top: 458px;
  right: 79px;
  position: absolute;
  animation: tape_up 2.5s ease-out;
}
.header-tape-3 {
  z-index: 0;
  width: 19px;
  top: 345px;
  right: 51px;
  position: absolute;
  animation: tape_up 1.5s ease-out;
}
.header-tape-4 {
  z-index: 0;
  width: 54px;
  top: 224px;
  right: -86px;
  position: absolute;
  animation: tape_up 2.4s ease-out;
}
.catalog-section {
  z-index: 0;
  position: relative;
  background: #e2f9ff;
  padding-top: 72px;
  padding-bottom: 72px;
  margin-bottom: 58px;
}
.catalog-section .header-tape-1 {
  z-index: 0;
  position: absolute;
  width: 56.5px;
  top: 64px;
  left: 50px;
  animation: tape_up 2.2s ease-out;
}
.catalog-section .header-tape-4 {
  left: 13px;
  z-index: 1;
  width: 54px;
  top: 327px;
  position: absolute;
  animation: tape_up 2.4s ease-out;
}
.catalog-section .first-row {
  position: relative;
  padding-bottom: 72px;
  margin-left: -10px;
  margin-right: -10px;
}
.catalog-section .first-row__col {
  padding: 10px;
  height: 36vw;
  max-height: 600px;
  min-height: 400px;
}
.catalog-section .first-row__col .first-row__box {
  cursor: pointer;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.catalog-section .first-row__col .first-row__box:hover .first-row__box-title span::before {
  transform: translate(-55%, -30%) scale(1);
}
.catalog-section .first-row__col .first-row__box:hover .first-row__box-line {
  width: 64px;
}
.catalog-section .first-row__col .first-row__box:hover .first-row__box-all {
  color: white;
}
.catalog-section .first-row__col .first-row__box:hover .first-row__box-img {
  transform: scale(1);
  bottom: -340px;
  right: -340px;
}
.catalog-section .first-row__col .first-row__box:hover .first-row__box-all::before {
  left: 0;
  opacity: 1;
}
.catalog-section .first-row__col .first-row__box:hover .first-row__box-all::after {
  border-bottom: 2px solid white;
  border-right: 2px solid white;
}
.catalog-section .first-row__col .first-row__box-title {
  padding: 25px 36px 25px;
  color: white;
  z-index: 1;
  position: relative;
  font-family: 'Troika';
}
.catalog-section .first-row__col .first-row__box-title span {
  position: relative;
}
.catalog-section .first-row__col .first-row__box-title span::before {
  position: absolute;
  font-size: 120px;
  left: 50%;
  top: 50%;
  transition: 0.3s all;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0.3;
}
.catalog-section .first-row__col .first-row__box-list {
  position: relative;
  z-index: 2;
  color: black;
  padding: 0 36px 34px 36px;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Medium';
  flex-grow: 1;
}
.catalog-section .first-row__col .first-row__box-item {
  margin-bottom: 12px;
}
.catalog-section .first-row__col .first-row__box-line {
  z-index: 2;
  position: absolute;
  left: 36px;
  bottom: 80px;
  height: 3px;
  width: 32px;
  background: #ff9d00;
  transition: 0.5s all;
  opacity: 0.3;
}
.catalog-section .first-row__col .first-row__box-all {
  text-transform: uppercase;
  z-index: 2;
  display: inline-block;
  color: black;
  position: relative;
  font-size: 16px;
  margin-bottom: 25px;
  font-family: 'Bold';
  padding: 8px 50px 12px 36px;
  transition: 0.3s all ease-out;
}
.catalog-section .first-row__col .first-row__box-all::after {
  transition: 0.3s all;
  content: '';
  position: absolute;
  display: block;
  border-bottom: 2px solid #333333;
  border-right: 2px solid #333333;
  width: 12px;
  height: 12px;
  transform: rotate(-45deg) translateY(-50%);
  right: 28.5px;
  top: 43%;
}
.catalog-section .first-row__col .first-row__box-all::before {
  opacity: 0;
  z-index: -1;
  transition: 0.5s all;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -300px;
  background: #ff9d00;
  width: 100%;
  height: 100%;
}
.catalog-section .first-row__col .first-row__box-img {
  transform: scale(0.2);
  z-index: 1;
  position: absolute;
  width: 680px;
  height: 680px;
  bottom: -700px;
  right: -700px;
  transition: 0.4s all ease-out;
  overflow: hidden;
  border-radius: 50%;
}
.catalog-section .first-row__col .first-row__box-img img {
  position: relative;
  top: 50%;
  left: 50%;
  max-height: 450px;
  transform: translate(-50%, -100%);
}
.catalog-section .first-row__col .first-row__box--programms {
  background: #ffe99d;
}
.catalog-section .first-row__col .first-row__box--programms .programms-mask-1 {
  position: absolute;
  left: -78.5px;
  top: -275px;
}
.catalog-section .first-row__col .first-row__box--programms .programms-mask-2 {
  position: absolute;
  left: -62.5px;
  top: -157px;
}
.catalog-section .first-row__col .first-row__box--programms .programms-mask-3 {
  position: absolute;
  left: -84.5px;
  top: -146px;
}
.catalog-section .first-row__col .first-row__box--animators .first-row__box-title {
  color: #0eafdd;
}
.catalog-section
  .first-row__col
  .first-row__box--programms
  .first-row__box-title
  span::before {
  content: 'Ш';
}
.catalog-section
  .first-row__col
  .first-row__box--animators
  .first-row__box-title
  span::before {
  content: 'А';
}
.catalog-section
  .first-row__col
  .first-row__box--holidays
  .first-row__box-title
  span::before {
  content: 'П';
}
.catalog-section
  .first-row__col
  .first-row__box--services
  .first-row__box-title
  span::before {
  content: 'У';
}
.catalog-section .first-row__col .first-row__box--animators .first-row__box-line {
  background: #0eafdd;
}
.catalog-section .first-row__col .first-row__box--animators .animators-waves {
  position: absolute;
  top: 290px;
  left: -376px;
}
.catalog-section .first-row__col .first-row__box--holidays {
  background: #fff5ea;
}
.catalog-section .first-row__col .first-row__box--holidays .first-row__box-title {
  color: #ff9d00;
}
.catalog-section .first-row__col .first-row__box--holidays .holidays-circle-1 {
  background: #ff9d00;
  border-radius: 50%;
  opacity: 0.1;
  width: 410px;
  height: 410px;
  position: absolute;
  left: 195px;
  top: -185px;
}
.catalog-section .first-row__col .first-row__box--holidays .holidays-circle-2 {
  background: #ff9d00;
  border-radius: 50%;
  opacity: 0.1;
  width: 705px;
  height: 705px;
  position: absolute;
  left: -78px;
  top: -323px;
}
.catalog-section .first-row__col .first-row__box--services {
  background: #0eafdd;
  background-color: #0eafdd;
}
.catalog-section .first-row__col .first-row__box--services .first-row__box-title {
  color: white;
}
.catalog-section .first-row__col .first-row__box--services .first-row__box-list {
  color: white;
}
.catalog-section .first-row__col .first-row__box--services .first-row__box-line {
  background: white;
}
.catalog-section .first-row__col .first-row__box--services .services-circle-1 {
  border: 16px solid #ffe99d;
  border-radius: 50%;
  width: 176px;
  height: 176px;
  position: absolute;
  top: 244px;
  left: -127.5px;
}
.catalog-section .first-row__col .first-row__box--services .services-circle-2 {
  border: 16px solid #ffe99d;
  border-radius: 50%;
  opacity: 0.5;
  width: 264px;
  height: 264px;
  position: absolute;
  top: 288px;
  left: -154.5px;
}
.catalog-section .first-row__col .first-row__box--services .services-circle-3 {
  border: 16px solid #ffe99d;
  border-radius: 50%;
  opacity: 0.8;
  width: 264px;
  height: 264px;
  position: absolute;
  bottom: 100.5px;
  right: -35px;
}
.catalog-section .first-row__col .first-row__box--services .services-circle-4 {
  border: 20px solid #ffe99d;
  border-radius: 50%;
  width: 466px;
  height: 466px;
  position: absolute;
  bottom: -122.5px;
  right: -359px;
}
.catalog-section .catalog-line {
  width: 100%;
  height: 3px;
  background: #9be9ff;
  opacity: 0.3;
}
.catalog-section .second-row {
  padding: 72px 0 0;
  margin-left: -10px;
  margin-right: -10px;
}
.catalog-section .second-row__col {
  padding: 0 10px;
}
.catalog-section .second-row__col-item {
  transition: 0.3s all;
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  height: 480px;
  margin-bottom: 20px;
}
.catalog-section .second-row__col-img {
  display: block;
  position: absolute;
}
.catalog-section .second-row__col-item:hover {
  transform: scale(1.04);
}
.catalog-section .second-row__col-title {
  position: relative;
  z-index: 1;
  max-width: 340px;
  color: black;
  padding: 25px 36px;
  font-family: 'Troika';
}
.catalog-section .second-row__col-item--birthday {
  background: #fff5ea;
}
.catalog-section .second-row__col-item--birthday img {
  width: 276px;
  bottom: 27px;
  right: 30.7px;
  transform: rotate(2deg);
}
.catalog-section .second-row__col-item--exclusive {
  background: #e2f9ff;
}
.catalog-section .second-row__col-item--exclusive img {
  width: 314.5px;
  bottom: 35.7px;
  right: 19.2px;
}
.catalog-section .second-row__col-item--newyear {
  height: 230px;
  background: #9be9ff;
}
.catalog-section .second-row__col-item--newyear img {
  width: 180px;
  bottom: 26px;
  right: 20px;
}
.catalog-section .second-row__col-item--graduation {
  background: white;
}
.catalog-section .second-row__col-item--graduation img {
  width: 422px;
  top: 22px;
  right: -50.7px;
}
.catalog-section .second-row__col-item--wedding {
  background: white;
}
.catalog-section .second-row__col-item--wedding img {
  width: 307px;
  bottom: 48px;
  right: 36px;
}
.catalog-section .second-row__col-item--event {
  height: 230px;
  background: #fff5ea;
}
.catalog-section .second-row__col-item--event img {
  width: 498px;
  top: 38.6px;
  left: -44.7px;
}
.catalog-section .catalog-portfolio {
  position: relative;
  margin-top: -150px;
  margin-left: 140px;
}
.catalog-section .catalog-portfolio__title {
  max-width: 421px;
  font-family: 'Troika';
}
.catalog-section .catalog-portfolio__slider {
  position: relative;
  max-width: 600px;
  margin-bottom: 0;
}
.catalog-section .catalog-portfolio__slider img {
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  transition: 0.5s all;
}
.catalog-section .catalog-portfolio__slider img:hover {
  transform: scale(1.05);
}
.catalog-section .catalog-portfolio__slider .slick-dots {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  width: initial;
  bottom: 6px;
  left: 639px;
}
.catalog-section .catalog-portfolio__slider .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 15px;
  transition: 0.3s all;
}
.catalog-section .catalog-portfolio__slider .slick-dots li button {
  position: relative;
  width: 16px;
  height: 16px;
  background: #9be9ff;
  transition: 0.3s all;
  border-radius: 50%;
}
.catalog-section .catalog-portfolio__slider .slick-dots li button:hover {
  background: #0eafdd;
}
.catalog-section .catalog-portfolio__slider .slick-dots li button::before {
  transition: 0.3s all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid #0eafdd;
  opacity: 0;
  border-radius: 50%;
  transition: 0.3s all;
}
.catalog-section .catalog-portfolio__slider .slick-dots .slick-active {
  width: 12px;
  height: 12px;
}
.catalog-section .catalog-portfolio__slider .slick-dots .slick-active button {
  background: #0eafdd;
  width: 12px;
  height: 12px;
}
.catalog-section .catalog-portfolio__slider .slick-dots .slick-active button::before {
  opacity: 1;
}
.catalog-section .catalog-portfolio__desc {
  display: block;
  position: absolute;
  max-width: 495px;
  bottom: 120px;
  left: 480px;
}
.catalog-section .catalog-portfolio__desc-item {
  position: relative;
  background: white;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  padding: 21px 69px 25px 26px;
  margin-right: 30px;
  color: black;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Bold';
}
.catalog-section .catalog-portfolio__desc-item:hover::before {
  background: #ea8700;
}
.catalog-section .catalog-portfolio__desc-item::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  background: #ff9d00;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  transition: 0.3s all;
}
.catalog-section .catalog-portfolio__desc-item::after {
  content: '';
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border-right: white 3px solid;
  border-bottom: white 3px solid;
  transform-origin: right;
  transform: rotate(-45deg) translate(75%, -50%);
  right: 0;
  top: 50%;
}
.catalog-section .catalog-portfolio__desc .slick-dots {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  width: initial;
  bottom: 6px;
  left: 639px;
}
.catalog-section .catalog-portfolio__desc .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 15px;
  transition: 0.3s all;
}
.catalog-section .catalog-portfolio__desc .slick-dots li button {
  position: relative;
  width: 16px;
  height: 16px;
  background: #9be9ff;
  transition: 0.3s all;
  border-radius: 50%;
}
.catalog-section .catalog-portfolio__desc .slick-dots li button:hover {
  background: #0eafdd;
}
.catalog-section .catalog-portfolio__desc .slick-dots li button::before {
  transition: 0.3s all 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid #0eafdd;
  opacity: 0;
  border-radius: 50%;
  transition: 0.3s all;
}
.catalog-section .catalog-portfolio__desc .slick-dots .slick-active {
  width: 12px;
  height: 12px;
}
.catalog-section .catalog-portfolio__desc .slick-dots .slick-active button {
  background: #0eafdd;
  width: 12px;
  height: 12px;
}
.catalog-section .catalog-portfolio__desc .slick-dots .slick-active button::before {
  opacity: 1;
}
.popular-section__title {
  font-family: 'Troika';
  text-align: center;
  margin-bottom: 37px;
}
.popular-section__slider {
  margin-bottom: 36px;
}
.popular-section__slider .slick-list {
  margin: 0 -10px;
}
.popular-section__slider .slick-arrow:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.popular-section__slider .slick-arrow:hover svg path {
  fill: white;
}
.popular-section__slider .slick-arrow svg path {
  transition: 0.3s all;
  fill: #ff9d00;
}
.popular-section__slider .slick-arrow::before {
  background: white;
  z-index: -1;
  transition: 0.3s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 2px #ff9d00 solid;
  box-shadow: 0px 10px 20px rgba(255, 157, 0, 0.15);
  opacity: 1;
}
.popular-section__slider .slick-arrow::after {
  background: #ff9d00;
  z-index: -1;
  transition: 0.6s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  width: 64px;
  height: 64px;
  opacity: 0;
}
.popular-section__slider .slick-prev {
  left: -81px;
  width: 28px;
  height: initial;
}
.popular-section__slider .slick-next {
  right: -81px;
  width: 28px;
  height: initial;
}
.popular-section__slider .slick-dots {
  position: static;
  display: block;
  margin-top: 16px;
}
.popular-section__slider .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 15px;
  transition: 0.3s all;
}
.popular-section__slider .slick-dots li button {
  position: relative;
  width: 16px;
  height: 16px;
  background: #9be9ff;
  border-radius: 50%;
  transition: 0.3s all;
}
.popular-section__slider .slick-dots li button:hover {
  background: #0eafdd;
}
.popular-section__slider .slick-dots li button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid #0eafdd;
  opacity: 0;
  border-radius: 50%;
  transition: 0.3s all;
}
.popular-section__slider .slick-dots .slick-active {
  width: 12px;
  height: 12px;
}
.popular-section__slider .slick-dots .slick-active button {
  background: #0eafdd;
  width: 12px;
  height: 12px;
}
.popular-section__slider .slick-dots .slick-active button::before {
  opacity: 1;
}
.popular-section__slide {
  padding: 0 10px;
  position: relative;
}
.popular-section__slide-link {
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}
.popular-section__slide-link:hover img {
  transform: scale(1.05);
}
.popular-section__slide-link:hover .popular-section__slide-title {
  margin-bottom: 10px;
}
.popular-section__slide-link:hover .popular-section__slide-show {
  margin-bottom: 21px;
  color: #ffe99d;
}
.popular-section__slide-link:hover .popular-mask-1 {
  left: -65px;
  bottom: -155px;
}
.popular-section__slide-link:hover .popular-mask-2 {
  left: -48px;
  bottom: -99px;
}
.popular-section__slide-img {
  width: 100%;
  transition: 0.3s all;
}
.popular-section__slide-box {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  text-align: center;
}
.popular-section__slide-title {
  transition: 0.3s all;
  font-size: 24px;
  line-height: 30px;
  font-family: 'Bold';
  margin-bottom: 21px;
}
.popular-section__slide-show {
  font-size: 12px;
  font-family: 'Bold';
  text-transform: uppercase;
  transition: 0.3s all;
  margin-bottom: -28px;
}
.popular-section__slide .popular-mask-1 {
  position: absolute;
  bottom: -165px;
  left: -100px;
  transition: 0.3s all;
}
@keyframes mask_slow {
  from {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-5%, -2px);
  }
  50% {
    transform: translate(0, 2px);
  }
  75% {
    transform: translate(5%, -2px);
  }
  to {
    transform: translate(0, 0);
  }
}
.popular-section__slide .popular-mask-2 {
  position: absolute;
  bottom: -109px;
  left: -36px;
  transition: 0.3s all;
}
@keyframes mask_medium {
  from {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5%, -5px);
  }
  50% {
    transform: translate(0, 5px);
  }
  75% {
    transform: translate(-5%, -5px);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes mask_fast {
  from {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-3%, -7px);
  }
  50% {
    transform: translate(0, 7px);
  }
  75% {
    transform: translate(3%, -7px);
  }
  to {
    transform: translate(0, 0);
  }
}
.popular-section__buttons {
  max-width: 680px;
  margin: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 72px;
}
.popular-section__buttons-all {
  letter-spacing: 0.08em;
  position: relative;
  width: 100%;
  max-width: 330px;
  height: 48px;
  background: #ff9d00;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  transition: 1s all;
  overflow: hidden;
  font-size: 16px;
  font-family: 'Bold';
}
.popular-section__buttons-all:hover {
  background: #ea8700;
}
.popular-section__buttons-all:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
.popular-section__buttons-all:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
.popular-section__buttons-all::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
.popular-section__buttons-all::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: #ff9d00;
  border-radius: 50%;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  opacity: 0;
  transition: 0.5s all;
}
.popular-section__buttons-consultation {
  letter-spacing: 0.08em;
  position: relative;
  width: 100%;
  max-width: 330px;
  height: 48px;
  border: #ffe99d 3px solid;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: #ff9d00;
  cursor: pointer;
  transition: 1s all;
  overflow: hidden;
  font-size: 16px;
  font-family: 'Bold';
}
.popular-section__buttons-consultation:hover {
  border: #ff9d00 3px solid;
}
.popular-section__buttons-consultation:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
.popular-section__buttons-consultation:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
.popular-section__buttons-consultation::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
.popular-section__buttons-consultation::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: #ff9d00;
  border-radius: 50%;
  border-right: 3px solid #ea8700;
  border-bottom: 3px solid #ea8700;
  opacity: 0;
  transition: 0.5s all;
}
.like-section {
  padding: 58px 0 0px;
  background: #e2f9ff;
}
.like-section__title {
  font-family: 'Troika';
  text-align: center;
  margin-bottom: 37px;
}
.like-section__slider {
  padding-bottom: 72px;
  border-bottom: 3px solid rgba(14, 175, 221, 0.2);
}
.like-section__slider .slick-list {
  margin: 0 -10px;
}
.like-section__slider .slick-arrow:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.like-section__slider .slick-arrow:hover svg path {
  fill: white;
}
.like-section__slider .slick-arrow svg path {
  transition: 0.3s all;
  fill: #ff9d00;
}
.like-section__slider .slick-arrow::before {
  background: white;
  z-index: -1;
  transition: 0.3s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 2px #ff9d00 solid;
  box-shadow: 0px 10px 20px rgba(255, 157, 0, 0.15);
  opacity: 1;
}
.like-section__slider .slick-arrow::after {
  background: #ff9d00;
  z-index: -1;
  transition: 0.6s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  width: 64px;
  height: 64px;
  opacity: 0;
}
.like-section__slider .slick-prev {
  left: -81px;
  width: 28px;
  height: initial;
}
.like-section__slider .slick-next {
  right: -81px;
  width: 28px;
  height: initial;
}
.like-section__slider .slick-dots {
  position: static;
  display: block;
  margin-top: 16px;
}
.like-section__slider .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 15px;
  transition: 0.3s all;
}
.like-section__slider .slick-dots li button {
  position: relative;
  width: 16px;
  height: 16px;
  background: #9be9ff;
  border-radius: 50%;
  transition: 0.3s all;
}
.like-section__slider .slick-dots li button:hover {
  background: #0eafdd;
}
.like-section__slider .slick-dots li button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid #0eafdd;
  opacity: 0;
  border-radius: 50%;
  transition: 0.3s all;
}
.like-section__slider .slick-dots .slick-active {
  width: 12px;
  height: 12px;
}
.like-section__slider .slick-dots .slick-active button {
  background: #0eafdd;
  width: 12px;
  height: 12px;
}
.like-section__slider .slick-dots .slick-active button::before {
  opacity: 1;
}
.like-section__slide {
  padding: 0 10px;
  position: relative;
}
.like-section__slide-link {
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}
.like-section__slide-link:hover img {
  transform: scale(1.05);
}
.like-section__slide-link:hover .like-section__slide-title {
  margin-bottom: 10px;
}
.like-section__slide-link:hover .like-section__slide-show {
  margin-bottom: 21px;
  color: #ffe99d;
}
.like-section__slide-link:hover .popular-mask-1 {
  left: -65px;
  bottom: -155px;
}
.like-section__slide-link:hover .popular-mask-2 {
  left: -48px;
  bottom: -99px;
}
.like-section__slide-img {
  object-fit: cover;
  width: 100%;
  transition: 0.3s all;
}
.like-section__slide-box {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  text-align: center;
}
.like-section__slide-title {
  transition: 0.3s all;
  font-size: 24px;
  line-height: 30px;
  font-family: 'Bold';
  margin-bottom: 21px;
}
.like-section__slide-show {
  font-size: 12px;
  font-family: 'Bold';
  text-transform: uppercase;
  transition: 0.3s all;
  margin-bottom: -28px;
}
.like-section__slide .popular-mask-1 {
  position: absolute;
  bottom: -165px;
  left: -100px;
  transition: 0.3s all;
}
@keyframes mask_slow {
  from {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-5%, -2px);
  }
  50% {
    transform: translate(0, 2px);
  }
  75% {
    transform: translate(5%, -2px);
  }
  to {
    transform: translate(0, 0);
  }
}
.like-section__slide .popular-mask-2 {
  position: absolute;
  bottom: -109px;
  left: -36px;
  transition: 0.3s all;
}
@keyframes mask_medium {
  from {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5%, -5px);
  }
  50% {
    transform: translate(0, 5px);
  }
  75% {
    transform: translate(-5%, -5px);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes mask_fast {
  from {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-3%, -7px);
  }
  50% {
    transform: translate(0, 7px);
  }
  75% {
    transform: translate(3%, -7px);
  }
  to {
    transform: translate(0, 0);
  }
}
.like-section__buttons {
  max-width: 680px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 72px;
}
.like-section__buttons-all {
  letter-spacing: 0.08em;
  position: relative;
  width: 100%;
  max-width: 330px;
  height: 48px;
  background: #ff9d00;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  transition: 1s all;
  overflow: hidden;
  font-size: 16px;
  font-family: 'Bold';
}
.like-section__buttons-all:hover {
  background: #ea8700;
}
.like-section__buttons-all:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
.like-section__buttons-all:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
.like-section__buttons-all::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
.like-section__buttons-all::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: #ff9d00;
  border-radius: 50%;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  opacity: 0;
  transition: 0.5s all;
}
.like-section__buttons-consultation {
  letter-spacing: 0.08em;
  position: relative;
  width: 100%;
  max-width: 330px;
  height: 48px;
  border: #ffe99d 3px solid;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: #ff9d00;
  cursor: pointer;
  transition: 1s all;
  overflow: hidden;
  font-size: 16px;
  font-family: 'Bold';
}
.like-section__buttons-consultation:hover {
  border: #ff9d00 3px solid;
}
.like-section__buttons-consultation:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
.like-section__buttons-consultation:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
.like-section__buttons-consultation::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
.like-section__buttons-consultation::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: #ff9d00;
  border-radius: 50%;
  border-right: 3px solid #ea8700;
  border-bottom: 3px solid #ea8700;
  opacity: 0;
  transition: 0.5s all;
}
.section-line {
  background: #0eafdd;
  opacity: 0.2;
  width: 100%;
  height: 2px;
  margin-bottom: 72px;
}
.add-section {
  position: relative;
  padding-bottom: 72px;
}
.add-section__title {
  font-family: 'Troika';
  text-align: center;
  margin-bottom: 22px;
  transition: 0.3s all;
}
.add-section__desc {
  text-align: center;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Medium';
  margin-bottom: 61px;
}
.add-section__container {
  margin: auto;
  max-width: 1380px;
}
.add-section__box {
  position: relative;
  margin-left: -45px;
  margin-right: -45px;
}
.add-section__box-col {
  padding: 0 45px;
}
.add-section__item {
  display: block;
  border-radius: 4px;
  position: relative;
  height: 120px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  margin-bottom: 72px;
}
.add-section__item:hover .add-section__item-title {
  color: #ff9d00;
}
.add-section__item:hover .add-section__item-bg {
  transform: scale(1);
}
.add-section__item-bg {
  transform: scale(0);
  transition: 0.3s all;
}
.add-section__item-bg--1 {
  position: absolute;
  top: -49px;
  left: -4px;
}
.add-section__item-img--1 {
  position: absolute;
  top: -24px;
  left: 19px;
}
.add-section__item-bg--2 {
  position: absolute;
  top: -45px;
  left: 0px;
}
.add-section__item-img--2 {
  position: absolute;
  top: -19px;
  left: 24px;
}
.add-section__item-bg--3 {
  position: absolute;
  top: -1px;
  left: 21.5px;
}
.add-section__item-img--3 {
  position: absolute;
  top: -36px;
  left: 34px;
}
.add-section__item-bg--4 {
  position: absolute;
  top: -29px;
  left: 10px;
}
.add-section__item-img--4 {
  position: absolute;
  top: -36px;
  left: 24px;
}
.add-section__item-bg--5 {
  position: absolute;
  top: -47px;
  left: -8px;
}
.add-section__item-img--5 {
  position: absolute;
  top: -36px;
  left: 24px;
}
.add-section__item-bg--6 {
  position: absolute;
  top: -49px;
  left: -10px;
}
.add-section__item-img--6 {
  position: absolute;
  top: -19px;
  left: 24px;
}
.add-section__item-title {
  transition: 0.3s all;
  color: black;
  position: absolute;
  left: 184px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bold';
  font-size: 24px;
  line-height: 36px;
}
.add-section__btn {
  letter-spacing: 0.08em;
  margin: auto;
  position: relative;
  width: 100%;
  max-width: 284px;
  height: 48px;
  background: #ff9d00;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  overflow: hidden;
  transition: 1s all;
  font-size: 16px;
  font-family: 'Bold';
}
.add-section__btn:hover {
  background: #ea8700;
}
.add-section__btn:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
.add-section__btn:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
.add-section__btn::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
.add-section__btn::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  opacity: 0;
  transition: 0.5s all;
}
.review-section {
  overflow: hidden;
  background: #e2f9ff;
  position: relative;
  padding: 58px 0 72px;
}
.review-section__title {
  font-family: 'Troika';
  text-align: center;
}
.review-section__slider {
  position: relative;
  z-index: 1;
}
.review-section__slider .slick-list {
  margin: 0 -10px;
  padding: 37px 0 72px;
}
.review-section__slider .slick-arrow:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.review-section__slider .slick-arrow:hover svg path {
  fill: white;
}
.review-section__slider .slick-arrow svg path {
  transition: 0.3s all;
  fill: #ff9d00;
}
.review-section__slider .slick-arrow::before {
  background: white;
  z-index: -1;
  transition: 0.3s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 2px #ff9d00 solid;
  box-shadow: 0px 10px 20px rgba(255, 157, 0, 0.15);
  opacity: 1;
}
.review-section__slider .slick-arrow::after {
  background: #ff9d00;
  z-index: -1;
  transition: 0.6s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  width: 64px;
  height: 64px;
  opacity: 0;
}
.review-section__slider .slick-prev {
  left: -81px;
  width: 28px;
  height: initial;
}
.review-section__slider .slick-next {
  right: -81px;
  width: 28px;
  height: initial;
}
.review-section__slider .slick-dots {
  position: static;
  display: block;
  margin-top: 12px;
}
.review-section__slider .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 15px;
  transition: 0.3s all;
}
.review-section__slider .slick-dots li button {
  position: relative;
  width: 16px;
  height: 16px;
  background: #9be9ff;
  border-radius: 50%;
  transition: 0.3s all;
}
.review-section__slider .slick-dots li button:hover {
  background: #0eafdd;
}
.review-section__slider .slick-dots li button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid #0eafdd;
  opacity: 0;
  border-radius: 50%;
  transition: 0.3s all;
}
.review-section__slider .slick-dots .slick-active {
  width: 12px;
  height: 12px;
}
.review-section__slider .slick-dots .slick-active button {
  background: #0eafdd;
  width: 12px;
  height: 12px;
}
.review-section__slider .slick-dots .slick-active button::before {
  opacity: 1;
}
.review-section__slide {
  margin: 0 10px;
  background: white;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  position: relative;
  padding: 36px;
}
.review-section__slide-quotes {
  position: absolute;
  font-family: 'Bold';
  font-size: 200px;
  color: #ffe99d;
  left: 20px;
  top: 40px;
}
.review-section__slide-desc {
  margin-bottom: 24px;
}
.review-section__slide-flex {
  display: flex;
  align-items: center;
}
.review-section__slide-img {
  margin-right: 12px;
}
.review-section__slide-author {
  font-size: 24px;
  line-height: 36px;
  font-family: 'Bold';
  margin-bottom: 8px;
}
.review-section__slide-date {
  font-size: 14px;
  color: #7e7e7e;
}
.review-section .review-waves__box {
  top: 203px;
  z-index: 0;
  position: absolute;
  height: 352px;
  width: 3240px;
  background: url(../img/review-waves.webp);
}
.review-section .waves-left {
  right: 3240px;
  animation: waves_left 70s linear infinite;
}
@keyframes waves_left {
  from {
    right: 3240px;
  }
  to {
    right: 0px;
  }
}
.review-section .waves-right {
  right: 0px;
  animation: waves_right 70s linear infinite;
}
@keyframes waves_right {
  from {
    right: 0px;
  }
  to {
    right: -3240px;
  }
}
.form-section {
  position: relative;
  background: #e2f9ff;
  padding: 0px 0 72px;
}
.form-section .form-box {
  overflow: visible;
  background: #ffe99d;
  position: relative;
  z-index: 1;
  margin: auto;
  max-width: 820px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}
.form-section .form-box .form-wrap {
  overflow: hidden;
  background: #ffe99d;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  padding: 58px 116px 72px;
}
.form-section .form-box .form-wrap .form__title {
  text-align: center;
  font-family: 'Troika';
  margin-bottom: 22px;
}
.form-section .form-box .form-wrap .form__desc {
  text-align: center;
  font-family: 'Medium';
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 25px;
}
.form-section .form-box .form-wrap .form__line {
  height: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  border-radius: 30px;
  border: 2px solid #ff9d00;
  max-width: 588px;
  background: white;
  padding: 0px 26px;
}
.form-section .form-box .form-wrap .form__line-area {
  height: 120px;
}
.form-section .form-box .form-wrap .form__line-area svg {
  margin-top: -60px;
}
.form-section .form-box .form-wrap .form__line svg {
  margin-right: 12px;
}
.form-section .form-box .form-wrap .form__line svg path {
  fill: #ff9d00;
}
.form-section .form-box .form-wrap .form__line svg:nth-child(1) {
  min-width: 27px;
  height: 27px;
}
.form-section .form-box .form-wrap .form__line svg:nth-child(2) {
  min-width: 24px;
  height: 24px;
}
.form-section .form-box .form-wrap .form__line svg:nth-child(3) {
  min-width: 26px;
  height: 26px;
}
.form-section .form-box .form-wrap .form__line input,
.form-section .form-box .form-wrap .form__line textarea {
  line-height: 24px;
  flex-grow: 1;
  font-family: 'Regular';
  font-size: 18px;
  color: #7e7e7e;
}
.form-section .form-box .form-wrap .form__line textarea {
  resize: none;
  height: 75%;
}
/* .form-section .form-box .form-wrap .form__check {
  display: none;
}
.form-section .form-box .form-wrap .form__check:checked + .form__check-label::before {
  background: #FF9D00;
}
.form-section .form-box .form-wrap .form__check-label {
  padding-left: 37px;
  position: relative;
  margin-bottom: 24px;
  display: inline-block;
  margin: auto;
  margin-bottom: 25px;
  text-align: left;
}
.form-section .form-box .form-wrap .form__check-label::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 6px;
  width: 23px;
  height: 23px;
  border: 2px solid #FF9D00;
  background: white;
  left: 0;
  top: 14px;
  transform: translateY(-50%);
}
.form-section .form-box .form-wrap .form__check-label::after {
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 8px;
  border-bottom: 3px solid white;
  border-left: 3px solid white;
  border-radius: 3px;
  left: 6px;
  top: 9px;
  transform: rotate(-45deg);
}
.form-section .form-box .form-wrap .form__check-label span {
  text-decoration: underline;
} */
.form-section .form-box .form-wrap .form__check .wpcf7-list-item label input {
  display: none;
}
.form-section .form-box .form-wrap .form__check .wpcf7-list-item label .wpcf7-list-item-label {
  padding-left: 37px;
  position: relative;
  margin-bottom: 24px;
  display: inline-block;
  margin: auto;
  margin-bottom: 25px;
  text-align: left;
}
.form-section
  .form-box
  form
  .form__check
  .wpcf7-list-item
  label
  .wpcf7-list-item-label::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 6px;
  width: 23px;
  height: 23px;
  border: 2px solid #ff9d00;
  background: white;
  left: 0;
  top: 14px;
  transform: translateY(-50%);
}
.form-section
  .form-box
  form
  .form__check
  .wpcf7-list-item
  label
  input:checked
  + .wpcf7-list-item-label::before {
  background: #ff9d00;
}
.form-section
  .form-box
  form
  .form__check
  .wpcf7-list-item
  label
  .wpcf7-list-item-label::after {
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 8px;
  border-bottom: 3px solid white;
  border-left: 3px solid white;
  border-radius: 3px;
  left: 6px;
  top: 9px;
  transform: rotate(-45deg);
}

.form-section .form-box .form-wrap .form__submit {
  margin: auto;
  position: relative;
  width: 100%;
  max-width: 436px;
  height: 60px;
  background: #ff9d00;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  transition: 1s all;
  overflow: hidden;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: 'Bold';
}
.form-section .form-box .form-wrap .form__submit:hover {
  background: #ea8700;
}
.form-section .form-box .form-wrap .form__submit:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
.form-section .form-box .form-wrap .form__submit:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
.form-section .form-box .form-wrap .form__submit::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
.form-section .form-box .form-wrap .form__submit::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: #ff9d00;
  border-radius: 50%;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  opacity: 0;
  transition: 0.5s all;
}
.form-section .form-box .form-wrap .focus-label {
  border: 2px solid #e62323;
}
.form-section .form-box .form-wrap .focus-label svg path {
  fill: #e62323;
}
.form-section .form-box .form-wrap .form-mask-1 {
  z-index: -1;
  position: absolute;
  top: -577px;
  left: -124px;
}
.form-section .form-box .form-wrap .form-mask-2 {
  z-index: -1;
  position: absolute;
  top: -395px;
  left: -124px;
}
.form-section .form-box .form-wrap .form-mask-3 {
  z-index: -1;
  position: absolute;
  top: -331px;
  left: -175px;
}
.form-section .form-circle__white {
  z-index: 0;
  position: absolute;
  width: 458px;
  height: 458px;
  background: white;
  border-radius: 50%;
  right: -166px;
  top: -72px;
}
.form-section .form-circle__orange {
  z-index: 0;
  position: absolute;
  width: 358px;
  height: 358px;
  border-radius: 50%;
  border: 20px solid #ffe99d;
  right: -252px;
  top: 149px;
}
.form-section .header-tape-1 {
  z-index: 0;
  position: absolute;
  width: 56.5px;
  top: 64px;
  left: 136px;
  animation: tape_up 2.2s ease-out;
}
@keyframes tape_up {
  from {
    transform: translate(-100px, 1000px);
  }
  to {
    transform: translate(0, 0);
  }
}
.form-section .header-tape-2 {
  z-index: 0;
  width: 54px;
  top: 458px;
  right: 79px;
  position: absolute;
  animation: tape_up 2.5s ease-out;
}
.form-section .header-tape-3 {
  z-index: 0;
  width: 19px;
  top: 345px;
  left: 51px;
  position: absolute;
  animation: tape_up 1.5s ease-out;
}
.form-section .header-tape-4 {
  z-index: 0;
  width: 54px;
  top: 42px;
  right: 86px;
  position: absolute;
  animation: tape_up 2.4s ease-out;
}
.main-description {
  padding: 58px 0 72px;
}
.main-description__title {
  text-align: center;
  font-family: 'Troika';
  margin-bottom: 37px;
}
.main-description__desc {
  margin-left: -10px;
  margin-right: -10px;
}
.main-description__desc-item {
  padding: 0 10px;
}
.animators-section {
  padding: 58px 0 144px;
  background: #e2f9ff;
}
.animators-section__title {
  font-family: 'Troika';
  text-align: center;
  margin-bottom: 22px;
}
.animators-section__desc {
  text-align: center;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Medium';
  margin-bottom: 37px;
}
.animators-section__filter {
  font-family: 'Bold';
  font-size: 16px;
  margin: auto;
  max-width: 820px;
  margin-bottom: 48px;
}
.animators-section__filter-gender {
  display: flex;
  justify-content: center;
}
.animators-section__filter-gender svg {
  margin-right: 22px;
}
.animators-section__filter-gender label {
  transition: 0.3s all;
  cursor: pointer;
  text-transform: uppercase;
  padding: 0 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  background: white;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  height: 68px;
  margin: 0 6px;
}
.animators-section__filter-gender label input {
  display: none;
}
.animators-section__filter-gender label:hover {
  transform: scale(1.04);
  background: #ffe99d;
}
.animators-section__filter-line {
  height: 3px;
  width: 100%;
  background: #9be9ff;
  opacity: 0.3;
  margin: 12px 0;
}
.animators-section__filter-age {
  display: flex;
  justify-content: center;
}
.animators-section__filter-age label {
  transition: 0.3s all;
  cursor: pointer;
  text-transform: uppercase;
  padding: 0 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin: 0 6px;
  background: white;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  height: 68px;
}
.animators-section__filter-age label input {
  display: none;
}
.animators-section__filter-age label:hover {
  transform: scale(1.04);
  background: #ffe99d;
}
.animators-section__filter label.active {
  background: #9be9ff;
}
.animators-section__block {
  margin: 0 -10px;
}
.animators-section__item {
  padding: 0 10px;
  position: relative;
  margin-bottom: 36px;
}
.animators-section__item-link {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}
.animators-section__item-link:hover img {
  transform: scale(1.05);
}
.animators-section__item-link:hover .popular-section__slide-title {
  margin-bottom: 10px;
}
.animators-section__item-link:hover .popular-section__slide-show {
  margin-bottom: 21px;
  color: #ffe99d;
}
.animators-section__item-link:hover .popular-mask-1 {
  left: -65px;
  bottom: -155px;
}
.animators-section__item-link:hover .popular-mask-2 {
  left: -48px;
  bottom: -99px;
}
.animators-section__item-img {
  width: 100%;
  transition: 0.3s all;
}
.animators-section__item-box {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  text-align: center;
}
.animators-section__item-title {
  transition: 0.3s all;
  font-size: 24px;
  line-height: 30px;
  font-family: 'Bold';
  margin-bottom: 21px;
}
.animators-section__item-show {
  font-size: 12px;
  font-family: 'Bold';
  text-transform: uppercase;
  transition: 0.3s all;
  margin-bottom: -28px;
}
.animators-section__item .popular-mask-1 {
  position: absolute;
  bottom: -165px;
  left: -100px;
  transition: 0.3s all;
}
.animators-section__item .popular-mask-2 {
  position: absolute;
  bottom: -109px;
  left: -36px;
  transition: 0.3s all;
}
/* .pagination {
  margin: 12px -6px 0;
  display: flex;
  justify-content: center;
}
.pagination-item {
  padding: 0 6px;
}
.pagination-link {
  transition: .3s all;
  cursor: pointer;
  color: black;
  font-size: 16px;
  font-family: 'Bold';
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  border-radius: 4px;
}
.pagination-link:hover {
  background: #FFE99D;
}
.pagination-link:hover svg {
  fill: black;
  transition: .3s all;
}
.pagination-link.active {
  background: #9BE9FF;
}
.pagination-link svg {
  fill: #ff9d00;
  width: 28px;
} */
.pagination .nav-links {
  margin: 12px -6px 0;
  display: flex;
  justify-content: center;
}

.page-numbers {
  display: block;
  margin: 0 6px;
  transition: 0.3s all;
  cursor: pointer;
  color: black;
  font-size: 16px;
  font-family: 'Bold';
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  border-radius: 4px;
}
.page-numbers:hover {
  background: #ffe99d;
}
.page-numbers:hover svg {
  fill: black;
  transition: 0.3s all;
}
.page-numbers.current {
  background: #9be9ff;
}
.page-numbers svg {
  fill: #ff9d00;
  width: 28px;
}
.animator-section {
  padding-bottom: 72px;
  background: #e2f9ff;
}
.animator-section .svg-mask {
  position: absolute;
}
.animator-section .path-bg-1 {
  top: -613px;
  left: -539px;
  position: absolute;
  width: 165%;
}
.animator-section .path-bg-2 {
  left: -525px;
  top: -405px;
  position: absolute;
  width: 165%;
}
.animator-section .animator-video {
  position: absolute;
  width: 120px;
  height: 80px;
}
.animator-section .animator-gallery__item {
  /* padding-top: 240px; */
  height: 100%;
}
.animator-section .animator-gallery__box {
  width: 100%;
  height: 100%;
}
.animator-section .animator-gallery img {
  display: block;
  width: 100%;
  /* height: 100%; */
}
.animator-section .animator-gallery .lslide img {
  position: relative;
  top: 240px;
}
.animator-section .animator-gallery .lSSlideOuter {
  position: relative;
  margin-top: -240px;
}
.animator-section .animator-gallery .lSSlideWrapper {
  width: 100%;
  clip-path: url(#slideMask);
}
.animator-section .animator-gallery .lSPager {
  max-width: 500px;
  display: flex;
  flex-wrap: wrap;
  z-index: 0;
  margin: 0 auto;
  position: relative;
  margin-bottom: 20px;
}
.animator-section .animator-gallery .lSPager li {
  margin-bottom: 20px;
}
.animator-section .animator-gallery .lSPager li.active {
  border-radius: 4px;
  border: 2px solid #ffe99d;
}
.animator-section .animator-gallery .lSPager li,
.animator-section .animator-gallery .lSPager li:hover {
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s all;
  border-radius: 4px;
}
.animator-section .animator-gallery .lSPager li:hover {
  border: 2px solid #ff9d00;
}
.animator-section .animator-block {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
.animator-section .animator-block__back {
  display: flex;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 24px;
  color: #0eafdd;
  font-size: 18px;
  line-height: 28px;
}
.animator-section .animator-block__back svg {
  margin-right: 12px;
  width: 28px;
  fill: #0eafdd;
}
.animator-section .animator-block__title {
  margin-bottom: 24px;
  font-family: 'Troika';
}
.animator-section .animator-block__attributes {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
}
.animator-section .animator-block__attributes ul {
  display: flex;
  flex-wrap: wrap;
}
.animator-section .animator-block__attributes ul li {
  margin-bottom: 6px;
  margin-right: 12px;
  background: white;
  padding: 2px;
  border-radius: 24px;
}
.animator-section .animator-block__attributes ul li a {
  white-space: nowrap;
  border-radius: 24px;
  padding: 0 15px;
  transition: 0.3s all;
  display: flex;
  align-items: center;
  color: #7e7e7e;
  font-size: 14px;
}
.animator-section .animator-block__attributes ul li a svg {
  margin-right: 12px;
}
.animator-section .animator-block__attributes ul li a:hover {
  background: #e2f9ff;
  color: #0eafdd;
}
.animator-section .animator-block__desc {
  color: black;
  margin-bottom: 25px;
}
.animator-section .animator-block__price {
  font-family: 'Troika';
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
.animator-section .animator-block__price-old {
  position: relative;
  font-size: 30px;
  margin-right: 33px;
}
.animator-section .animator-block__price-old::after {
  background: #ff9d00;
  position: absolute;
  content: '';
  display: block;
  width: 160%;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}
.animator-section .animator-block__price-special {
  font-size: 48px;
  line-height: 54px;
}
.animator-section .animator-block__order {
  letter-spacing: 0.08em;
  transition: 1s all;
  overflow: hidden;
  position: relative;
  font-family: 'Bold';
  background: #ff9d00;
  border-radius: 30px;
  font-size: 18px;
  text-transform: uppercase;
  width: 100%;
  min-width: 250px;
  max-width: 400px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.animator-section .animator-block__order:hover {
  background: #ea8700;
}
.animator-section .animator-block__order:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
.animator-section .animator-block__order:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
.animator-section .animator-block__order::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
.animator-section .animator-block__order::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: #ff9d00;
  border-radius: 50%;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  opacity: 0;
  transition: 0.5s all;
}
.price-section {
  padding: 72px 0;
}
.price-section .price-block {
  position: relative;
  display: flex;
  max-width: 1240px;
  margin: auto;
}
.price-section .price-block__programm {
  width: 100%;
  max-width: 563.5px;
  padding-right: 53px;
  border-right: 3px solid rgba(14, 175, 221, 0.2);
  margin-right: 79px;
}
.price-section .price-block__programm-title {
  font-family: 'Bold';
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 27px;
}
.price-section .price-block__programm ul {
  font-size: 18px;
  line-height: 28px;
}
.price-section .price-block__programm ul li {
  top: 5px;
  margin-bottom: 6px;
  position: relative;
  padding-left: 33.5px;
}
.price-section .price-block__programm ul li::before {
  width: 12px;
  height: 12px;
  background: url(../img/star-icon.png);
  display: block;
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
}
.price-section .price-block__price {
  width: 100%;
  /* max-width: 426px; */
  max-width: unset;
}
.price-section .price-block__price-title {
  font-family: 'Bold';
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 23px;
}
.price-section .price-block__price ul {
  font-size: 18px;
  line-height: 28px;
}
.price-section .price-block__price ul li {
  margin-bottom: 12px;
  display: flex;
}
.price-section .price-block__price ul li .price-block__price-variation {
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
  width: 100%;
  /* max-width: 290px; */
  max-width: unset;
}
.price-section .price-block__price ul li .price-block__price-variation::after {
  width: 100%;
  height: 1px;
  background: #0eafdd;
  display: block;
  content: '';
  margin: 0 10px;
  margin-bottom: 6px;
}
.price-section .price-block__price ul li .price-block__price-price {
  font-family: 'Bold';
  white-space: nowrap;
}
.price-section .price-block__right {
  top: 45.5px;
  position: absolute;
  right: -280px;
  width: 315px;
}
.price-section .price-block__left {
  top: 72px;
  position: absolute;
  left: -350px;
  width: 340px;
}
.details-section {
  padding: 0 0 72px;
}
.details-section .details-block {
  max-width: 1240px;
  margin: auto;
}
.details-section .details-block .details-title {
  font-family: 'Troika';
  text-align: center;
  margin-bottom: 37px;
}
.details-section .details-block .big-text {
  font-family: 'Bold';
}
.details-section .details-block ul li,
.details-section .details-block ol li {
  position: relative;
  padding-left: 29px;
}
.details-section .details-block ul li::before,
.details-section .details-block ol li::before {
  content: '';
  display: block;
  background: url(../img/star-icon.png);
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 6px;
}
.details-section .details-block__video {
  margin: 0 -10px 36px;
}
.details-section .details-block__video-item {
  padding: 0 10px;
}
.details-section .details-block__video .slick-dots {
  position: static;
  display: block;
  margin-top: 10px;
  margin-bottom: 26px;
}
.details-section .details-block__video .slick-dots li {
  padding-left: 0;
  width: 16px;
  height: 16px;
  margin: 0 15px;
  transition: 0.3s all;
}
.details-section .details-block__video .slick-dots li::before {
  display: none;
}
.details-section .details-block__video .slick-dots li button {
  position: relative;
  width: 16px;
  height: 16px;
  background: #9be9ff;
  border-radius: 50%;
  transition: 0.3s all;
}
.details-section .details-block__video .slick-dots li button:hover {
  background: #0eafdd;
}
.details-section .details-block__video .slick-dots li button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid #0eafdd;
  opacity: 0;
  border-radius: 50%;
  transition: 0.3s all;
}
.details-section .details-block__video .slick-dots .slick-active {
  width: 12px;
  height: 12px;
}
.details-section .details-block__video .slick-dots .slick-active button {
  background: #0eafdd;
  width: 12px;
  height: 12px;
}
.details-section .details-block__video .slick-dots .slick-active button::before {
  opacity: 1;
}
.details-section .video {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
}
.details-section .video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.video__wrap {
  cursor: pointer;
  transition: 0.7s all;
  visibility: visible;
  overflow: hidden;
  background: #0eafdd;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video__wrap svg {
  width: 120px;
  height: 120px;
  position: relative;
}
.video__wrap img {
  width: 100%;
  display: block;
  position: absolute;
  opacity: 0.5;
}
.video__wrap.hide {
  opacity: 0;
  visibility: hidden;
}
.blog-section {
  background: #e2f9ff;
  padding: 57px 0 72px;
}
.blog-section__title {
  color: white;
  position: relative;
  text-align: center;
  font-family: 'Troika';
  margin-bottom: 72px;
}
.blog-section__block {
  margin: 0 -10px 12px;
}
.blog-section__item {
  padding: 0 10px;
  position: relative;
  margin-bottom: 36px;
}
.blog-section__item-link {
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}
.blog-section__item-link:hover img {
  transform: scale(1.05);
}
.blog-section__item-img {
  display: block;
  width: 100%;
  transition: 0.3s all;
  height: 100%;
}
.blog-section__item-box {
  position: relative;
  height: 153px;
  padding: 24px 24px 35px;
  background: white;
  width: 100%;
}
.blog-section__item-title {
  color: black;
  transition: 0.3s all;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Bold';
  line-height: 32px;
  margin-bottom: 21px;
}
.blog-section__item-date {
  max-width: 150px;
  padding: 0 40px 0 24px;
  text-align: right;
  left: 0;
  top: -90px;
  position: absolute;
}
.blog-section__item .blog-mask {
  top: -160px;
  position: absolute;
  width: 213px;
  left: -48px;
}
.article-section {
  padding: 72px 0;
}
.article-section .small-text {
  margin-top: 24px;
  border-top: 3px solid rgba(14, 175, 221, 0.2);
  padding-top: 24px;
  font-size: 16px;
  line-height: 26px;
}
.article-section .article-block {
  max-width: 1100px;
}
.article-section .article-block ul li a {
  color: black;
}
.article-section .article-block p {
  margin-bottom: 24px;
}
.article-section .article-block .big-text {
  margin-bottom: 37px;
}
.article-section .article-block h3, .article-section .article-block .h3 {
  margin-bottom: 25px;
}
.article-section .article-block__box {
  margin: 0 -18px 24px;
}
.article-section .article-block__box-item {
  padding: 0 18px;
}
.article-section .article-block__box-item .article-slider {
  border-radius: 4px;
  overflow: hidden;
}
.article-section .article-block__box-item .article-slider .slick-arrow {
  z-index: 1;
  transition: 0.3s all;
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-section .article-block__box-item .article-slider .slick-arrow::before {
  display: none;
}
.article-section .article-block__box-item .article-slider .slick-arrow:hover {
  background: #ff9d00;
}
.article-section .article-block__box-item .article-slider .slick-arrow:hover svg path {
  fill: white;
}
.article-section .article-block__box-item .article-slider .slick-arrow svg {
  width: 28px;
}
.article-section .article-block__box-item .article-slider .slick-arrow svg path {
  transition: 0.3s all;
  fill: #ff9d00;
}
.article-section .article-block__box-item .article-slider .slick-arrow.slick-prev {
  left: 12px;
}
.article-section .article-block__box-item .article-slider .slick-arrow.slick-next {
  right: 12px;
}
.article-section .article-block__box-item .article-video {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
}
.article-section .article-block__box-item .article-video iframe {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.article-section .article-block__box-item .article-video__wrap {
  cursor: pointer;
  transition: 0.7s all;
  visibility: visible;
  overflow: hidden;
  background: #0eafdd;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-section .article-block__box-item .article-video__wrap svg {
  position: relative;
}
.article-section .article-block__box-item .article-video__wrap img {
  display: block;
  position: absolute;
  opacity: 0.5;
}
.article-section .article-block__box-item .article-video__wrap.hide {
  opacity: 0;
  visibility: hidden;
}
.article-section .article-block__line {
  height: 3px;
  background: rgba(14, 175, 221, 0.2);
  width: 100%;
  margin: 48px 0 24px;
}
.article-section .article-block__social {
  display: flex;
  align-items: center;
}
.article-section .article-block__social-text {
  margin-right: 34px;
}
.article-section .article-block__social-link {
  display: block;
  margin-right: 24px;
}


.details-section .details-block__line {
  height: 3px;
  background: rgba(14, 175, 221, 0.2);
  width: 100%;
  margin: 48px 0 24px;
}
.details-section .details-block__social {
  display: flex;
  align-items: center;
}
.details-section .details-block__social-text {
  margin-right: 34px;
}
.details-section .details-block__social-link {
  display: block;
  margin-right: 24px;
}


.read-section {
  background: #e2f9ff;
  padding: 58px 0 72px;
}
.read-section__title {
  margin-bottom: 37px;
}
.read-section__slider .slick-dots {
  position: static;
  display: block;
  margin-top: -20px;
}
.read-section__slider .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 15px;
  transition: 0.3s all;
}
.read-section__slider .slick-dots li button {
  position: relative;
  width: 16px;
  height: 16px;
  background: #9be9ff;
  border-radius: 50%;
  transition: 0.3s all;
}
.read-section__slider .slick-dots li button:hover {
  background: #0eafdd;
}
.read-section__slider .slick-dots li button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid #0eafdd;
  opacity: 0;
  border-radius: 50%;
  transition: 0.3s all;
}
.read-section__slider .slick-dots .slick-active {
  width: 12px;
  height: 12px;
}
.read-section__slider .slick-dots .slick-active button {
  background: #0eafdd;
  width: 12px;
  height: 12px;
}
.read-section__slider .slick-dots .slick-active button::before {
  opacity: 1;
}
.read-section__slide {
  padding: 0 10px;
  position: relative;
  margin-bottom: 36px;
}
.read-section__slide-link {
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}
.read-section__slide-link:hover img {
  transform: scale(1.05);
}
.read-section__slide-img {
  width: 100%;
  transition: 0.3s all;
  height: 100%;
}
.read-section__slide-box {
  position: relative;
  height: 153px;
  padding: 24px 24px 35px;
  background: white;
  width: 100%;
}
.read-section__slide-title {
  color: black;
  transition: 0.3s all;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Bold';
  margin-bottom: 21px;
}
.read-section__slide-date {
  max-width: 150px;
  padding: 0 24px;
  text-align: right;
  left: 0;
  top: -90px;
  position: absolute;
}
.read-section__slide .blog-mask {
  top: -160px;
  position: absolute;
  width: 213px;
  left: -48px;
}
.all-price-section .all-price__box {
  position: relative;
  background: white;
}
.all-price-section .all-price__tab {
  margin: auto;
  max-width: 960px;
  margin-bottom: 37px;
}
.all-price-section .all-price__tab-title {
  margin-top: 13px;
  text-align: center;
  margin-bottom: 25px;
}
.all-price-section .all-price__tab-list {
  margin: auto;
  width: 100%;
}
.all-price-section .all-price__tab-list li {
  border-bottom: 1px solid #9be9ff;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.all-price-section .all-price__tab-box {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.all-price-section .all-price__tab button {
  cursor: pointer;
  padding: 0 18px;
  background: none;
  color: #ff9d00;
  font-size: 18px;
  line-height: 34px;
}
.all-price-section .all-price__tab-name {
  font-size: 24px;
}
.all-price-section button,
.all-price-section .all-price__tab-price {
  flex-shrink: 0;
}
.all-price-section .all-price__tab-price span {
  font-family: 'Bold';
  font-size: 24px;
}
.portfolio-section {
  background: #e2f9ff;
  padding: 57px 0 72px;
}
.portfolio-section__title {
  position: relative;
  text-align: center;
  margin-bottom: 46px;
  color: white;
}
.portfolio-section__desc {
  position: relative;
  text-align: center;
  margin-bottom: 49px;
  color: black;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Medium';
}
.portfolio-section__block {
  margin: 0 -40px;
}
.portfolio-section__item {
  padding: 0 40px;
  position: relative;
}
.portfolio-section__item-link {
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  display: block;
  position: absolute;
  transition: 0.3s all;
  cursor: pointer;
  background: white;
  bottom: -55px;
  right: -36px;
  color: black;
  height: 110px;
  width: 100%;
  padding: 24px;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Bold';
  line-height: 32px;
}
.portfolio-section__item-link:hover {
  color: #ff9d00;
}
.portfolio-section__item-img {
  transition: 0.3s all;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  width: 100%;
  display: block;
}
.portfolio-section__item-img:hover {
  transform: scale(1.04);
}
.portfolio-section__item-box {
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  display: block;
  margin-bottom: 91px;
}
.gallery-section {
  padding: 61px 0 52px;
}
.gallery-section .gallery__title {
  text-align: center;
  margin-bottom: 37px;
}
.gallery-section .gallery__gallery {
  margin: 0 -10px;
}
.gallery-section .gallery__gallery-item {
  border-radius: 4px;
  display: block;
  padding: 0 10px;
  padding-bottom: 20px;
}
.gallery-section .gallery__gallery-item img {
  display: block;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}
.video-gallery {
  position: relative;
  /* background: #0EAFDD; */
}
.video-gallery img {
  opacity: 0.3;
}
.video-gallery::before {
  border-radius: inherit;
  content: '';
  display: block;
  position: absolute;
  background: #0eafdd;
  width: 100%;
  height: 100%;
}
.video-gallery::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../img/gallery-play.png);
  background-size: contain;
}
.animator-section .animator-gallery .lSPager .video-gallery::after {
  width: 20px;
  height: 20px;
}
.gallery-section + .form-section {
  padding: 144px 0 72px;
}
.all-review-section {
  padding: 0px 0 72px;
  background: #e2f9ff;
}
.all-review-section .all-review__box {
  margin: 0 -45px;
  position: relative;
  background: #e2f9ff;
}
.all-review-section .all-review__col {
  padding: 0 45px;
}
.all-review-section .all-review__item {
  position: relative;
  margin-bottom: 34px;
  padding: 36px;
  background: white;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}
.all-review-section .all-review__item-quotes {
  position: absolute;
  font-family: 'Bold';
  font-size: 200px;
  color: #ffe99d;
  left: 30px;
  top: 40px;
}
.all-review-section .all-review__item-desc {
  margin-bottom: 24px;
}
.all-review-section .all-review__item-flex {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.all-review-section .all-review__item-img {
  margin-right: 12px;
}
.all-review-section .all-review__item-author {
  font-size: 24px;
  line-height: 36px;
  font-family: 'Bold';
  margin-bottom: 8px;
}
.all-review-section .all-review__item-date {
  font-size: 14px;
  color: #7e7e7e;
}
.all-review-section .all-review__item-response {
  border-top: #0eafdd 1px dashed;
  padding-top: 24px;
  margin-bottom: 9px;
}
.all-review-section .all-review__item-admin {
  font-size: 20px;
  color: #ff6969;
  text-align: right;
}
.all-review-section .form-box {
  overflow: visible;
  background: #ffe99d;
  position: relative;
  z-index: 1;
  margin: auto;
  max-width: 820px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}
.all-review-section .form-box .form-wrap {
  overflow: hidden;
  background: #ffe99d;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  padding: 34px 48px 48px;
}
.all-review-section .form-box .form-wrap .form__title {
  text-align: center;
  font-family: 'Troika';
  margin-bottom: 22px;
}
.all-review-section .form-box form .form__line {
  height: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  border-radius: 30px;
  border: 2px solid #ff9d00;
  max-width: 588px;
  background: white;
  padding: 0px 26px;
}
.all-review-section .form-box form .form__line-area {
  height: 120px;
}
.all-review-section .form-box form .form__line-area svg {
  margin-top: -60px;
}
.all-review-section .form-box form .form__line svg {
  width: 27px;
  height: 27px;
  margin-right: 12px;
}
.all-review-section .form-box form .form__line svg path {
  fill: #ff9d00;
}
.all-review-section .form-box form .form__line svg:nth-child(1) {
  width: 27px;
  height: 27px;
}
.all-review-section .form-box form .form__line svg:nth-child(2) {
  width: 24px;
  height: 24px;
}
.all-review-section .form-box form .form__line svg:nth-child(3) {
  width: 26px;
  height: 26px;
}
.all-review-section .form-box form .form__line input,
.all-review-section .form-box form .form__line textarea {
  width: 100%;
  line-height: 24px;
  flex-grow: 1;
  font-family: 'Regular';
  font-size: 18px;
  color: #7e7e7e;
}
.all-review-section .form-box form .form__line textarea {
  resize: none;
  height: 75%;
}
.all-review-section .form-box form .form__check {
  display: none;
}
.all-review-section .form-box form .form__check:checked + .form__check-label::before {
  background: #ff9d00;
}
.all-review-section .form-box form .form__check-label {
  padding-left: 37px;
  position: relative;
  margin-bottom: 24px;
  display: inline-block;
  margin: auto;
  margin-bottom: 25px;
  text-align: left;
}
.all-review-section .form-box form .form__check-label::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 6px;
  width: 23px;
  height: 23px;
  border: 2px solid #ff9d00;
  background: white;
  left: 0;
  top: 14px;
  transform: translateY(-50%);
}
.all-review-section .form-box form .form__check-label::after {
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 8px;
  border-bottom: 3px solid white;
  border-left: 3px solid white;
  border-radius: 3px;
  left: 6px;
  top: 9px;
  transform: rotate(-45deg);
}
.all-review-section .form-box form .form__check-label span {
  text-decoration: underline;
}

.all-review-section .form-box form .form__submit {
  margin: auto;
  position: relative;
  width: 100%;
  max-width: 436px;
  height: 60px;
  background: #ff9d00;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  transition: 1s all;
  overflow: hidden;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: 'Bold';
}
.all-review-section .form-box form .form__submit:hover {
  background: #ea8700;
}
.all-review-section .form-box form .form__submit:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
.all-review-section .form-box form .form__submit:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
.all-review-section .form-box form .form__submit::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
.all-review-section .form-box form .form__submit::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: #ff9d00;
  border-radius: 50%;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  opacity: 0;
  transition: 0.5s all;
}
.all-review-section .form-box form .focus-label {
  border: 2px solid #e62323;
}
.all-review-section .form-box form .focus-label svg path {
  fill: #e62323;
}
.all-review-section .form-box .form-wrap .form-mask-1 {
  z-index: -1;
  position: absolute;
  top: -577px;
  left: -124px;
}
.all-review-section .form-box .form-wrap .form-mask-2 {
  z-index: -1;
  position: absolute;
  top: -395px;
  left: -124px;
}
.all-review-section .form-box .form-wrap .form-mask-3 {
  z-index: -1;
  position: absolute;
  top: -331px;
  left: -175px;
}
.all-review-section .pagination {
  justify-content: flex-start;
}
.about-us-section {
  overflow: hidden;
}
.about-us-section .svg-mask {
  position: absolute;
  width: 0;
  height: 0;
}
.about-us-section .path-bg-1 {
  top: -326px;
  left: -535px;
  position: absolute;
  width: 165%;
}
.about-us-section .path-bg-2 {
  left: -576px;
  top: -358px;
  position: absolute;
  width: 184%;
}
.about-us-section .about-us__play {
  top: 70%;
  right: 0;
  position: absolute;
  z-index: 1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}
.about-us-section .about-us__play::before {
  transition: 0.3s all;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ff8484;
  z-index: -1;
  width: 300px;
  content: '';
  display: block;
  position: absolute;
  height: 300px;
  border-radius: 50%;
}
.about-us-section .about-us__play:hover .about-us__play-promo svg {
  fill: #ffe99d;
}
.about-us-section .about-us__play:hover::before {
  opacity: 0.3;
  width: 350px;
  height: 350px;
}
.about-us-section .about-us__play-promo {
  padding: 0 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: #ff6969;
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-family: 'Troika';
  font-size: 36px;
  line-height: 42px;
}
.about-us-section .about-us__play-promo svg {
  transition: 0.3s all;
  fill: white;
  margin-top: 6px;
  display: block;
}
.about-us-section .about-us__path {
  left: -50px;
  position: relative;
  top: -95px;
}
.about-us-section .about-us__img {
  width: 100%;
  -webkit-clip-path: url(#slideMask);
  clip-path: url(#slideMask);
}
.about-us-section .about-us__right {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
.about-us-section .about-us__title {
  margin-top: 13px;
  margin-bottom: 37px;
}
.about-us-section .about-us__desc {
  font-size: 24px;
  line-height: 36px;
  font-family: 'Medium';
  margin-bottom: 72px;
}
.about-us-section .about-us__bottom-desc {
  margin: 0 -40px;
}
.about-us-section .about-us__bottom-item {
  padding: 0 40px;
}
.why-section {
  padding: 61px 0 72px;
}
.why-section .why__title {
  text-align: center;
  margin-bottom: 61px;
}
.why-section .why__box {
  margin: 0 -45px;
}
.why-section .why__box .slick-list {
  overflow: visible;
}
.why-section .why__box .slick-dots {
  position: static;
  display: block;
  margin-top: 16px;
}
.why-section .why__box .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 15px;
  transition: 0.3s all;
}
.why-section .why__box .slick-dots li button {
  position: relative;
  width: 16px;
  height: 16px;
  background: #9be9ff;
  border-radius: 50%;
  transition: 0.3s all;
}
.why-section .why__box .slick-dots li button:hover {
  background: #0eafdd;
}
.why-section .why__box .slick-dots li button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid #0eafdd;
  opacity: 0;
  border-radius: 50%;
  transition: 0.3s all;
}
.why-section .why__box .slick-dots .slick-active {
  width: 12px;
  height: 12px;
}
.why-section .why__box .slick-dots .slick-active button {
  background: #0eafdd;
  width: 12px;
  height: 12px;
}
.why-section .why__box .slick-dots .slick-active button::before {
  opacity: 1;
}
.why-section .why__col {
  padding: 0 45px;
  margin: auto;
}
.why-section .why__item {
  cursor: pointer;
  display: block;
  border-radius: 4px;
  position: relative;
  height: 120px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}
.why-section .why__item:hover .why__item-title {
  color: #ff9d00;
}
.why-section .why__item:hover .why__item-bg {
  transform: rotateY(180deg);
}
.why-section .why__item:hover .why__item-bg path {
  fill: #ff9d00;
}
.why-section .why__item-bg {
  transition: 0.5s all;
}
.why-section .why__item-bg path {
  transition: 0.5s all;
  fill: #9be9ff;
}
.why-section .why__item-bg--1 {
  position: absolute;
  width: 143px;
  top: -15px;
}
.why-section .why__item-img--1 {
  position: absolute;
  width: 120px;
  top: -30px;
  left: 25px;
}
.why-section .why__item-bg--2 {
  position: absolute;
  width: 197px;
  top: -45px;
  left: -5px;
}
.why-section .why__item-img--2 {
  top: -30px;
  position: absolute;
  width: 120px;
  left: 32px;
}
.why-section .why__item-bg--3 {
  top: 5px;
  position: absolute;
  width: 120px;
  left: 20px;
}
.why-section .why__item-img--3 {
  position: absolute;
  width: 102px;
  top: -35px;
  left: 35px;
}
.why-section .why__item-title {
  transition: 0.3s all;
  color: black;
  position: absolute;
  left: 184px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bold';
  font-size: 24px;
  line-height: 36px;
  line-height: 30px;
}
.command-section {
  position: relative;
  background: #e2f9ff;
  padding: 61px 0 72px;
}
.command-section__title {
  margin-bottom: 25px;
  text-align: center;
}
.command-section__desc {
  position: relative;
  max-width: 1100px;
  text-align: center;
  margin: auto;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Medium';
  margin-bottom: 36px;
}
.command-section .command-waves__box {
  top: 207px;
  z-index: 0;
  position: absolute;
  height: 352px;
  width: 3240px;
  background: url(../img/review-waves.png);
}
.command-section .waves-left {
  right: 3240px;
  animation: waves_left 70s linear infinite;
}
.command-section .waves-right {
  right: 0px;
  animation: waves_right 70s linear infinite;
}
.command-section__slider {
  margin: auto;
  max-width: 1310px;
}
.command-section__slider .slick-arrow {
  top: 35%;
}
.command-section__slider .slick-arrow:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.command-section__slider .slick-arrow:hover svg path {
  fill: white;
}
.command-section__slider .slick-arrow svg path {
  transition: 0.3s all;
  fill: #ff9d00;
}
.command-section__slider .slick-arrow::before {
  background: white;
  z-index: -1;
  transition: 0.3s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 2px #ff9d00 solid;
  box-shadow: 0px 10px 20px rgba(255, 157, 0, 0.15);
  opacity: 1;
}
.command-section__slider .slick-arrow::after {
  background: #ff9d00;
  z-index: -1;
  transition: 0.6s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  width: 64px;
  height: 64px;
  opacity: 0;
}
.command-section__slider .slick-prev {
  left: -81px;
  width: 28px;
  height: initial;
}
.command-section__slider .slick-next {
  right: -81px;
  width: 28px;
  height: initial;
}
.command-section__slider .slick-dots {
  position: static;
  display: block;
  margin-top: 12px;
}
.command-section__slider .slick-dots li {
  width: 16px;
  height: 16px;
  margin: 0 15px;
  transition: 0.3s all;
}
.command-section__slider .slick-dots li button {
  position: relative;
  width: 16px;
  height: 16px;
  background: #9be9ff;
  border-radius: 50%;
  transition: 0.3s all;
}
.command-section__slider .slick-dots li button:hover {
  background: #0eafdd;
}
.command-section__slider .slick-dots li button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 24px;
  height: 24px;
  border: 2px solid #0eafdd;
  opacity: 0;
  border-radius: 50%;
  transition: 0.3s all;
}
.command-section__slider .slick-dots .slick-active {
  width: 12px;
  height: 12px;
}
.command-section__slider .slick-dots .slick-active button {
  background: #0eafdd;
  width: 12px;
  height: 12px;
}
.command-section__slider .slick-dots .slick-active button::before {
  opacity: 1;
}
.command-section__slide-box {
  border-radius: 50%;
  margin: auto;
  overflow: hidden;
  width: 190px;
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}
.command-section__slide-title {
  text-align: center;
  font-family: 'Troika';
  font-size: 36px;
  line-height: 44px;
}
.command-section__slide-desc {
  padding: 0 8px;
  text-align: center;
  line-height: 1.25;
}
.page-section {
  padding: 57px 0 24px;
  background: #e2f9ff;
}
.page-section .page__title {
  width: 100%;
  color: white;
  position: relative;
  text-align: center;
  font-family: 'Troika';
  margin-bottom: 72px;
}
.page-section .page__desc {
  position: relative;
  text-align: center;
  margin-bottom: 49px;
  color: black;
  font-size: 24px;
  line-height: 36px;
  font-family: 'Medium';
}
.page-section .page__buttons {
  position: relative;
  display: flex;
  justify-content: center;
}
.page-section .page__buttons li {
  background: white;
  margin: 0 6px;
  height: 68px;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(14, 175, 221, 0.15);
}
.page-section .page__buttons li.current-menu-item {
  background: #9be9ff;
}
.page-section .page__buttons li a {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s all;
  cursor: pointer;
  color: black;
  border-radius: 4px;
  /* background: white; */
  letter-spacing: 0.02em;
  font-size: 16px;
  font-family: 'Bold';
  height: 100%;
  width: 100%;
  padding: 0 24px;
}
.page-section .page__buttons li a:hover {
  background: #9be9ff;
}
.page-section .page__buttons li button {
  white-space: nowrap;
  transition: 0.3s all;
  cursor: pointer;
  border-radius: 4px;
  letter-spacing: 0.02em;
  font-size: 16px;
  font-family: 'Bold';
  height: 100%;
  width: 100%;
  padding: 0 24px;
  background: white;
}
.page-section .page__buttons li button.active {
  background: #9be9ff;
}
.page-section .page__buttons li button:hover {
  background: #9be9ff;
}
.header-mask-1 {
  position: absolute;
  width: 1158px;
  top: -390px;
  left: 50%;
  transform: translateX(-50%);
}
.header-mask-2 {
  position: absolute;
  width: 1260.5px;
  top: -556px;
  left: 47%;
  transform: translateX(-50%);
}
.header-mask-3 {
  position: absolute;
  width: 812px;
  top: -186px;
  left: 47%;
  transform: translateX(-50%);
}
footer {
  overflow: hidden;
  position: relative;
  /* position: absolute;
  bottom: 0; */
  width: 100%;
  background: #e2f9ff;
  padding: 36px 0;
}
footer .footer-flex {
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-flex nav .footer-flex__list {
  margin-bottom: 66px;
  display: flex;
  justify-content: space-between;
  width: 490px;
}
footer .footer-flex nav .footer-flex__list-link {
  color: black;
  transition: 0.3s all;
}
footer .footer-flex nav .footer-flex__list-link:hover {
  color: #ff9d00;
}
footer .footer-flex__contacts-item {
  margin-bottom: 22px;
}
footer .footer-flex__contacts-item svg {
  margin-right: 10px;
  vertical-align: middle;
}
footer .footer-flex__contacts-item:last-child {
  margin-bottom: 0;
}
footer .footer-flex__contacts-feedback {
  white-space: nowrap;
  font-family: 'Bold';
  font-size: 14px;
  color: #0eafdd;
  margin-left: 13px;
  cursor: pointer;
  transition: 0.3s all;
}
footer .footer-flex__contacts-phone {
  color: black;
}
footer .footer-flex__contacts-feedback:hover {
  color: #ff9d00;
}
footer .footer-flex__social-links {
  margin-bottom: 46px;
}
footer .footer-flex__social-link:hover svg {
  fill: #ff9d00;
}
footer .footer-flex__social-link svg {
  vertical-align: middle;
  margin-left: 24px;
  fill: #0eafdd;
  transition: 0.3s all;
}
footer .footer-flex__social-author img {
  margin-right: 12px;
  vertical-align: middle;
  animation: logo_site 0.7s linear 0.7s infinite;
}
@keyframes logo_site {
  from {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-4px);
  }
  to {
    transform: translateX(0px);
  }
}
footer .footer-flex__social .footer-flex__author-link {
  color: black;
  transition: 0.3s all;
}
footer .footer-flex__social .footer-flex__author-link:hover {
  color: #ff9d00;
}
footer .footer-waves__box {
  position: absolute;
  left: 656px;
  top: -44px;
  background: url(../img/wave-footer.png);
  width: 201.38px;
  height: 574.08px;
  animation: waves_footer 3s linear;
}
@keyframes waves_footer {
  from {
    height: 0;
  }
  to {
    height: 574.08px;
  }
}
footer .footer-circle__blue {
  position: absolute;
  width: 458px;
  height: 458px;
  border-radius: 50%;
  background: #0eafdd;
  opacity: 0.2;
  left: 442.5px;
  top: -44px;
}
footer .footer-circle__orange {
  position: absolute;
  width: 308px;
  height: 308px;
  border-radius: 50%;
  border: 20px solid #ffe99d;
  left: 334.4px;
  top: 119px;
}
footer.footer-white {
  background: white;
}
.modal-wrap {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s all ease-out;
  position: absolute;
  z-index: 11;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal-box {
  /* overflow: hidden !important; */
  display: block;
  height: 0;
  width: 100%;
  z-index: 12;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out !important;
  left: 50%;
  top: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%) rotateY(-90deg);
  background: #ffe99d;
  max-width: 820px;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
}

.modal-box__close {
  z-index: 2;
  width: 50px;
  height: 50px;
  transition: 0.3s all;
  top: 0px;
  cursor: pointer;
  position: absolute;
  right: 0;
  background: none;
}
.modal-box__close-strip:first-child,
.modal-box__close-strip:last-child {
  position: absolute;
  transition: 0.5s all;
  top: 50%;
  width: 35px;
  height: 6px;
  background: white;
  border-radius: 10px;
}
.modal-box__close:hover .modal-box__close-strip:first-child,
.modal-box__close:hover .modal-box__close-strip:last-child {
  background: #ea8700;
}
.modal-box__close-strip:first-child {
  transform: rotate(45deg);
}
.modal-box__close-strip:last-child {
  transform: rotate(-45deg);
}
.modal-box__close:hover .modal-box__close-strip:first-child {
  transform: rotate(-45deg);
}
.modal-box__close:hover .modal-box__close-strip:last-child {
  transform: rotate(45deg);
}
.modal-box .form-wrap {
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  padding: 58px 116px 72px;
}
.modal-box .form-wrap .form__title {
  text-align: center;
  font-family: 'Troika';
  margin-bottom: 10px;
}
.modal-box .form-wrap .form__desc {
  text-align: center;
  font-family: 'Medium';
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 10px;
}
.modal-box form .form__line {
  height: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
  border-radius: 30px;
  border: 2px solid #ff9d00;
  max-width: 588px;
  background: white;
  padding: 0px 26px;
}
.modal-box form .form__line-area {
  height: 120px;
}
.modal-box form .form__line-area svg {
  margin-top: -60px;
}
.modal-box form .form__line svg {
  margin-right: 12px;
}
.modal-box form .form__line svg path {
  fill: #ff9d00;
}
.modal-box form .form__line svg {
  width: 25px;
}
.modal-box form .form__line .nice-select {
  position: static;
  height: 24px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #7e7e7e;
}
.modal-box form .form__line .nice-select::after {
  right: 35px;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid #ff9d00;
  border-right: 2px solid #ff9d00;
  top: 45%;
  transform-origin: center center;
  transform: rotate(45deg) translateY(-50%);
}
.modal-box form .form__line .nice-select .list {
  max-height: 240px;
  overflow-y: scroll;
  width: 100%;
  border-radius: 20px;
}
.modal-box form .form__line .nice-select .option:hover,
.modal-box form .form__line .nice-select .option.focus,
.modal-box form .form__line .nice-select .option.selected.focus {
  background: #ffe99d;
}
.modal-box form .form__line .nice-select.open::after {
  top: 60%;
  border-bottom: transparent;
  border-right: transparent;
  border-top: 2px solid #e62323;
  border-left: 2px solid #e62323;
}
.modal-box form .form__line input,
.modal-box form .form__line textarea,
.modal-box form .form__line .nice-select {
  line-height: 24px;
  flex-grow: 1;
  font-family: 'Regular';
  font-size: 18px;
  color: #7e7e7e;
}
.modal-box form .form__line textarea {
  resize: none;
  height: 75%;
}
.modal-box form .form__check .wpcf7-list-item label input {
  display: none;
}
.modal-box form .form__check .wpcf7-list-item label .wpcf7-list-item-label {
  padding-left: 37px;
  position: relative;
  margin-bottom: 24px;
  display: inline-block;
  margin: auto;
  margin-bottom: 25px;
  text-align: left;
}
.modal-box form .form__check .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 6px;
  width: 23px;
  height: 23px;
  border: 2px solid #ff9d00;
  background: white;
  left: 0;
  top: 14px;
  transform: translateY(-50%);
}
.modal-box
  form
  .form__check
  .wpcf7-list-item
  label
  input:checked
  + .wpcf7-list-item-label::before {
  background: #ff9d00;
}
.modal-box form .form__check .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: '';
  display: block;
  position: absolute;
  width: 13px;
  height: 8px;
  border-bottom: 3px solid white;
  border-left: 3px solid white;
  border-radius: 3px;
  left: 6px;
  top: 9px;
  transform: rotate(-45deg);
}
.modal-box form .form__submit {
  margin: auto;
  position: relative;
  width: 100%;
  max-width: 436px;
  height: 60px;
  background: #ff9d00;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  transition: 1s all;
  overflow: hidden;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: 'Bold';
}
.modal-box form .form__submit:hover {
  background: #ea8700;
}
.modal-box form .form__submit:hover::after {
  opacity: 1;
  right: 14px;
  background: transparent;
  border-radius: 0;
  transform: translateY(-50%) rotate(-45deg) scale(1);
  animation: btn_order 0.7s linear 0.7s infinite;
}
@keyframes btn_order {
  from {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
  50% {
    transform: translate(-4px, -50%) rotate(-45deg) scale(1);
  }
  to {
    transform: translate(0px, -50%) rotate(-45deg) scale(1);
  }
}
.modal-box form .form__submit:hover::before {
  opacity: 1;
  left: 100%;
  background: transparent;
  border-radius: inherit;
}
.modal-box form .form__submit::before {
  transition: 0.7s all;
  content: '';
  display: block;
  position: absolute;
  border-radius: 0;
  background: #ea8700;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  opacity: 0;
}
.modal-box form .form__submit::after {
  content: '';
  display: block;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg) scale(0);
  width: 15px;
  height: 15px;
  background: #ff9d00;
  border-radius: 50%;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  opacity: 0;
  transition: 0.5s all;
}
.modal-box form .focus-label {
  border: 2px solid #e62323;
}
.modal-box form .focus-label svg path {
  fill: #e62323;
}
.modal-box .form-mask-1 {
  z-index: -1;
  position: absolute;
  top: -577px;
  left: -124px;
}
.modal-box .form-mask-2 {
  z-index: -1;
  position: absolute;
  top: -395px;
  left: -124px;
}
.modal-box .form-mask-3 {
  z-index: -1;
  position: absolute;
  top: -331px;
  left: -175px;
}
.modal-wrap.active {
  border-radius: 0;
  visibility: visible;
  opacity: 1;
}
.modal-box.active {
  overflow: scroll;
  height: initial;
  max-height: 100%;
  display: block;
  transition: all 0.7s ease-out 0.5s;
  transform: translate(-50%, -50%) rotateY(0) perspective(200px);
  visibility: visible;
  opacity: 1;
}
.preloader-wrap {
  transition: 0.3s all;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0eafdd;
  left: 0;
  top: 0;
}
.preloader-wrap .preloader-item {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffe99d;
  box-shadow: 0px 10px 20px rgba(14, 175, 221, 0.15);
  top: 50%;
  left: 50%;
  animation: preloader 1.5s linear 0s infinite;
}
@keyframes preloader {
  from {
    transform: translate(-250px, 0);
  }
  10% {
    transform: translate(-200px, -100px);
  }
  20% {
    transform: translate(-150px, 0);
  }
  30% {
    transform: translate(-100px, -100px);
  }
  40% {
    transform: translate(-50px, 0);
  }
  50% {
    transform: translate(0px, -100px);
  }
  60% {
    transform: translate(50px, 0);
  }
  70% {
    transform: translate(100px, -100px);
  }
  80% {
    transform: translate(150px, 0);
  }
  90% {
    transform: translate(200px, -100px);
  }
  to {
    transform: translate(250px, 0);
  }
}
.preloader-wrap.active {
  opacity: 1;
  visibility: visible;
}
.overflow-hide {
  overflow: hidden;
}
.overflow-visible {
  overflow: scroll;
}

/* Медиа-запросы */
@media (max-width: 1875px) {
  .price-section .price-block__left {
    display: none;
  }
  .price-section .price-block__right {
    display: none;
  }
}
@media (max-width: 1440px) {
  header .header-desktop .header-top {
    flex-wrap: wrap;
  }
  header .header-desktop .header-top .block-phone__feedback-btn {
    display: none;
  }
  header .header-desktop .header-bottom {
    flex-wrap: wrap;
  }
  header .header-desktop .header-bottom .logo .logo-text__top {
    font-size: 42px;
  }
  header .header-desktop .header-bottom .logo .logo-text__bottom {
    font-size: 14px;
    margin-top: -18px;
  }
  header .header-desktop .header-bottom nav .catalog-list {
    width: 600px;
  }
  header .header-desktop .header-bottom nav .catalog-list__item-link {
    font-size: 22px;
  }
  header .header-desktop .header-bottom .header-order {
    width: 250px;
  }
  header .main-section__left-item {
    white-space: normal;
  }
  .catalog-section .first-row__col .first-row__box-title {
    padding: 25px 15px 25px;
  }
  .catalog-section .first-row__col .first-row__box-list {
    padding: 0px 15px 34px;
  }
  .catalog-section .first-row__col .first-row__box-line {
    left: 15px;
  }
  .catalog-section .first-row__col .first-row__box-all {
    padding: 12px 50px 12px 15px;
  }
  .catalog-section .second-row__col-title {
    font-size: 24px;
    line-height: 36px;
  }
  .all-review-section .all-review__box {
    margin: 0 -15px;
  }
  .all-review-section .all-review__col {
    padding: 0 15px;
  }
}
@media (max-width: 1200px) {
  h1 {
    font-size: 44px;
    line-height: 56px;
  }
  header .header-desktop .header-top nav ul {
    width: 400px;
  }
  header .header-desktop .header-top nav ul a {
    font-size: 14px;
  }
  header .header-desktop .header-top .block-time__text {
    font-size: 14px;
  }
  header .header-desktop .header-top .block-phone__text {
    font-size: 14px;
    margin-right: 0;
  }
  header .header-desktop .header-top .block-phone__text::before,
  header .header-desktop .header-top .block-phone__text::after {
    display: none;
  }
  header .header-desktop .header-bottom {
    padding-top: 11px;
  }
  header .header-desktop .header-bottom .logo svg {
    width: 30px;
    margin-right: 8px;
  }
  header .header-desktop .header-bottom .logo .logo-text__top {
    font-size: 30px;
    line-height: 30px;
  }
  header .header-desktop .header-bottom .logo .logo-text__bottom {
    display: none;
  }
  header .header-desktop .header-bottom nav .catalog-list {
    width: 440px;
  }
  header .header-desktop .header-bottom nav .catalog-list__item-link {
    font-size: 16px;
  }
  header .header-desktop .header-bottom .header-order {
    font-size: 16px;
  }
  header .main-section__left-list {
    font-size: 20px;
    line-height: 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  header .main-section__left-item {
    padding-left: 23px;
    white-space: nowrap;
  }
  header .main-section__left-item::before {
    left: 0px;
  }
  header .main-section__left-item:first-child::before {
    visibility: visible;
  }
  header .main-section.main-section--contacts {
    flex-wrap: wrap;
  }
  .modal-box form {
    padding: 58px 50px 72px;
  }
  .catalog-section .catalog-portfolio {
    margin-top: 0;
  }
  .catalog-section .first-row__col .first-row__box {
    margin-bottom: 20px;
  }
  .catalog-section .catalog-portfolio {
    margin-left: 0;
  }
  .catalog-section .catalog-portfolio__desc {
    max-width: 450px;
  }
  .price-section .price-block__programm {
    margin-right: 53px;
  }
  .all-review-section .pagination {
    justify-content: center;
    margin-bottom: 34px;
  }
  .about-us-section .about-us__right {
    margin: auto;
    margin-top: 72px;
  }
  footer .footer-flex nav {
    margin-bottom: 37px;
  }
}
@media (max-width: 992px) {
  header .header-desktop .header-top nav ul {
    width: 290px;
  }
  header .header-desktop .header-top nav ul a {
    font-size: 12px;
  }
  header .header-desktop .header-top .block-time svg {
    margin-right: 5px;
    width: 15px;
    height: 15px;
  }
  header .header-desktop .header-top .block-time__text {
    font-size: 12px;
  }
  header .header-desktop .header-top .block-phone svg {
    margin-right: 5px;
    width: 14px;
    height: 14px;
  }
  header .header-desktop .header-top .block-phone__text {
    font-size: 12px;
  }
  header .header-desktop .header-bottom {
    padding: 11px 0;
  }
  header .header-desktop .header-bottom .logo svg {
    display: none;
  }
  header .header-desktop .header-bottom .logo .logo-text__top {
    font-size: 25px;
    line-height: 25px;
  }
  header .header-desktop .header-bottom nav .catalog-list {
    width: 367px;
  }
  header .header-desktop .header-bottom nav .catalog-list__item-link {
    font-size: 14px;
  }
  header .header-desktop .header-bottom .header-order {
    width: 160px;
    min-width: initial;
    font-size: 12px;
  }
  header .main-section__right-box {
    display: none;
  }
  header .main-section__right-cake,
  header .main-section__right-hats {
    display: none;
  }
  /* header .main-section.main-section--contacts {
    flex-wrap: wrap;
  } */
  .modal-box form {
    padding: 58px 20px 72px;
  }
  .catalog-section .catalog-portfolio {
    margin-top: 28px;
    margin-left: 0;
  }
  .catalog-section .catalog-portfolio__title {
    margin-bottom: 25px;
  }
  .catalog-section .catalog-portfolio__desc {
    margin-top: -12px;
    margin-bottom: 0;
    position: static;
    font-size: 18px;
    line-height: 26px;
  }
  .catalog-section .catalog-portfolio__desc .slick-list {
    overflow: visible;
  }
  .catalog-section .catalog-portfolio__desc .slick-dots {
    text-align: left;
    margin-top: 16px;
    display: block;
    position: static;
    left: 0;
    bottom: 0;
  }
  .catalog-section .catalog-portfolio__desc-item {
    margin-right: 0;
    margin-right: 10px;
    font-size: 18px;
    line-height: 26px;
    padding: 21px 20px 25px 26px;
  }
  .catalog-section .catalog-portfolio__desc-item::before {
    width: 35px;
    height: 35px;
  }
  .add-section__box {
    margin: 0 -23px;
  }
  .add-section__box-col {
    padding: 0 23px;
  }
  .price-section .price-block {
    flex-wrap: wrap;
  }
  .price-section .price-block__programm {
    max-width: initial;
    margin-right: 0;
    border: none;
    border-bottom: 3px solid rgba(14, 175, 221, 0.2);
    padding-bottom: 24px;
    margin-bottom: 22px;
    padding-right: 0;
  }
  .price-section .price-block__left {
    display: none;
  }
  .price-section .price-block__right {
    display: none;
  }
  .price-section .price-block__price {
    max-width: initial;
  }
  .price-section .price-block__price ul li {
    justify-content: space-between;
  }
  .price-section .price-block__price ul li .price-block__price-variation {
    max-width: initial;
    width: initial;
  }
  .price-section .price-block__price ul li .price-block__price-variation::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .modal-box .form-wrap {
    padding: 40px 15px;
  }
  /* .btn-up{
    display: none;
  } */
  /* *::before, *::after{
    animation: none;
  } */
  .animators-section__filter-gender label,
  .animators-section__filter-age label {
    padding: 0 10px;
  }

  .container {
    padding: 0 10px;
  }
  h1, .h1 {
    font-size: 36px;
    line-height: 42px;
  }
  h2, .h2 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.04em;
  }
  h3, .h3 {
    font-size: 28px;
    line-height: 34px;
  }
  .big-text {
    font-size: 18px;
    line-height: 28px;
  }
  .main-text,
  p {
    font-size: 16px;
    line-height: 26px;
  }
  .header-mask-1 {
    width: 547px;
    top: -178px;
    left: 50%;
  }
  .header-mask-2 {
    width: 525px;
    top: -214px;
    left: 50%;
  }
  .header-mask-3 {
    width: 503px;
    top: -165px;
    left: 50%;
  }
  header {
    padding-top: 50px;
  }
  header .header-desktop {
    display: none;
  }
  header .header-mobile {
    display: block;
    opacity: 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    animation: header_fixed_fade 0.5s ease-out;
  }
  @keyframes header_fixed_fade {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  header .header-mobile__top {
    position: relative;
    z-index: 1;
    background: #0eafdd;
  }
  header .header-mobile__top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
  }
  header .header-mobile__logo {
    display: flex;
    align-items: center;
  }
  header .header-mobile__logo svg {
    width: 22px;
    height: 28px;
    margin-right: 6.3px;
  }
  header .header-mobile__logo .logo-text__top {
    font-family: 'Troika';
    font-size: 30px;
    line-height: 28px;
  }
  header .header-mobile__logo .logo-text__bottom {
    margin-top: -5px;
    font-size: 10px;
    line-height: 9px;
    color: #ffe99d;
  }
  header .header-mobile__right {
    display: flex;
    align-items: center;
  }
  header .header-mobile__phone {
    max-height: 24px;
    display: block;
  }
  header .header-mobile__programm {
    max-height: 26px;
    margin-left: 15px;
    display: block;
  }
  header .header-mobile__menu {
    position: relative;
    margin-left: 15px;
    background: #ffe99d;
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }
  header .header-mobile__menu-strip {
    position: absolute;
    border-radius: 2px;
    width: 18px;
    height: 4px;
    background: #0eafdd;
    transition: 0.3s all;
    left: 50%;
    transform: translateX(-50%);
  }
  header .header-mobile__menu-strip:nth-child(1) {
    top: 9px;
  }
  header .header-mobile__menu-strip:nth-child(2) {
    top: 16px;
  }
  header .header-mobile__menu-strip:nth-child(3) {
    top: 23px;
  }
  header .header-mobile__menu.active {
    background: white;
  }
  header .header-mobile__menu.active .header-mobile__menu-strip:nth-child(1) {
    top: 16px;
    transform-origin: left;
    transform: rotate(-45deg) translateX(-50%);
  }
  header .header-mobile__menu.active .header-mobile__menu-strip:nth-child(2) {
    opacity: 0;
  }
  header .header-mobile__menu.active .header-mobile__menu-strip:nth-child(3) {
    top: 16px;
    transform-origin: left;
    transform: rotate(45deg) translateX(-50%);
  }
  header .header-mobile__phone-dropdown {
    position: absolute;
    transition: all 0.5s ease-in;
    display: flex;
    left: -769px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff5ea;
    width: 100%;
    transform-origin: left;
    transform: scale(0);
  }
  header .header-mobile__phone-dropdown li {
    display: flex;
    align-items: center;
  }
  header .header-mobile__phone-dropdown li svg {
    max-width: 30px;
  }
  header .header-mobile__phone-dropdown a {
    margin: 5px;
    /* margin-bottom: 10px;/ */
    display: flex;
    align-items: center;
    color: black;
  }
  header .header-mobile__phone-dropdown a svg {
    width: 22px;
    height: 22px;
  }
  header .header-mobile__phone-dropdown.open {
    left: 0;
    transform: scale(1);
  }
  header .header-mobile__dropdown {
    width: 100%;
    position: relative;
    visibility: hidden;
    height: 0px;
    color: black;
  }
  header .header-mobile__dropdown.open .catalog-list,
  header .header-mobile__dropdown.open .nav-list {
    opacity: 1;
    visibility: visible;
    transition: 0.3s all;
  }
  header .header-mobile__dropdown.open::after {
    transform: scale(75);
  }
  header .header-mobile__dropdown::after {
    z-index: -2;
    transition: 0.5s all;
    content: '';
    display: block;
    position: fixed;
    background: #fff5ea;
    width: 36px;
    height: 36px;
    right: 10px;
    top: -77px;
    border-radius: 50%;
  }
  header .header-mobile__dropdown .catalog-list {
    opacity: 0;
    visibility: hidden;
    margin: auto;
    max-width: 175px;
    width: 100%;
    margin-bottom: 12px;
  }
  header .header-mobile__dropdown .catalog-list__item {
    width: 100%;
    padding-bottom: 11px;
  }
  header .header-mobile__dropdown .catalog-list__item-link {
    display: block;
    width: 100%;
    color: black;
    position: relative;
  }
  header .header-mobile__dropdown .catalog-list__item-link::after {
    content: '';
    display: block;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    width: 16px;
    height: 16px;
    border-right: 3px solid #ff9d00;
    border-bottom: 3px solid #ff9d00;
  }
  header .header-mobile__dropdown .catalog-list__item .catalog-list__dropdown {
    visibility: hidden;
    opacity: 0;
    padding: 34px 16px 37px 36px;
    background: #fff5ea;
    position: absolute;
    overflow: auto;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: 0.3s all;
  }
  header .header-mobile__dropdown .catalog-list__item .catalog-list__dropdown-active {
    display: block;
    color: black;
    position: relative;
    margin-bottom: 23px;
  }
  header .header-mobile__dropdown .catalog-list__item .catalog-list__dropdown-active::before {
    content: '';
    display: block;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-225deg);
    width: 16px;
    height: 16px;
    border-right: 3px solid #ff9d00;
    border-bottom: 3px solid #ff9d00;
  }
  header .header-mobile__dropdown .catalog-list__item .catalog-list__dropdown-item {
    margin-bottom: 12px;
  }
  header .header-mobile__dropdown .catalog-list__item .catalog-list__dropdown-link {
    color: black;
    font-size: 16px;
    line-height: 24px;
  }
  header .header-mobile__dropdown .catalog-list__item .catalog-list__dropdown.open {
    z-index: 2;
    left: 0;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  header .header-mobile__dropdown .nav-list {
    opacity: 0;
    visibility: hidden;
    font-size: 16px;
    line-height: 24px;
    margin: auto;
    max-width: 175px;
    width: 100%;
  }
  header .header-mobile__dropdown .nav-list li {
    width: 100%;
    margin-bottom: 11px;
  }
  header .header-mobile__dropdown .nav-list li a {
    display: block;
    width: 100%;
    color: black;
  }
  header .header-mobile__container-wrapper {
    height: 100%;
    position: relative;
  }
  header .header-mobile__container-wrapper > .container {
    overflow: auto;
    height: 100%;
    padding: 35px 0;
  }
  header .header-mobile__dropdown.open {
    display: block;
    visibility: visible;
    padding: 0;
    padding-bottom: 175px;
    height: 100%;
    overflow: hidden;
    position: fixed;
  }
  header .header-mobile__contacts {
    z-index: 2;
    transition: 0.5s all 0.3s;
    padding: 10px 0;
    position: fixed;
    left: 0;
    bottom: -300px;
    width: 100%;
    background: #0eafdd;
  }
  header .header-mobile__contacts .block-time {
    display: flex;
  }
  header .header-mobile__contacts .block-time svg {
    margin-top: 13px;
    transform: translateY(-50%);
    margin-right: 10px;
  }
  header .header-mobile__contacts .block-time__text {
    font-size: 16px;
    line-height: 26px;
    color: white;
  }
  header .header-mobile__contacts .block-phone:hover svg path {
    fill: white;
  }
  header
    .header-mobile__contacts
    .block-phone:hover
    .block-phone__box
    .block-phone__text:hover {
    color: black;
  }
  header
    .header-mobile__contacts
    .block-phone:hover
    .block-phone__box
    .block-phone__text::after,
  header .header-mobile__contacts .block-phone:hover .block-phone__text::before {
    top: 35%;
  }
  header
    .header-mobile__contacts
    .block-phone:hover
    .block-phone__box
    .block-phone__text::after {
    transform: rotate(-225deg);
  }
  header
    .header-mobile__contacts
    .block-phone:hover
    .block-phone__box
    .block-phone__text::before {
    transform: rotate(45deg);
  }
  header .header-mobile__contacts .block-phone:hover .block-phone__box .block-phone__dropdown {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
  header .header-mobile__contacts .block-phone svg {
    margin-top: 15px;
    transform: translateY(-50%);
    margin-right: 10px;
  }
  header .header-mobile__contacts .block-phone__box {
    position: relative;
    display: flex;
  }
  header .header-mobile__contacts .block-phone svg {
    width: 22px;
    height: 22px;
  }
  header .header-mobile__contacts .block-phone svg path {
    fill: #ffe99d;
    transition: 0.3s all;
  }
  header .header-mobile__contacts .block-phone__text {
    z-index: 1;
    display: block;
    font-family: 'Bold';
    margin-right: 36px;
    font-size: 20px;
    line-height: 30px;
    color: white;
    position: relative;
    transition: 0.3s all;
  }
  header .header-mobile__contacts .block-phone__text::after,
  header .header-mobile__contacts .block-phone__text::before {
    transition: 0.3s all;
    content: '';
    display: block;
    position: absolute;
    width: 12px;
    height: 2px;
    background: white;
    border-radius: 1px;
    right: -30px;
    top: 52%;
  }
  header .header-mobile__contacts .block-phone__text::after {
    transform-origin: left;
    transform: rotate(-135deg);
  }
  header .header-mobile__contacts .block-phone__text::before {
    transform-origin: left;
    transform: rotate(-45deg);
  }
  header .header-mobile__contacts .block-phone__dropdown {
    padding: 35px 45px 0px 45px;
    border-radius: 4px;
    background: #ff9d00;
    transition: 0.3s all;
    position: absolute;
    left: -10px;
    top: 130%;
    opacity: 0;
    visibility: hidden;
  }
  header .header-mobile__contacts .block-phone__dropdown-link {
    transition: 0.3s all;
    white-space: nowrap;
    font-family: 'Bold';
    color: white;
    font-size: 20px;
    line-height: 30px;
  }
  header .header-mobile__contacts .block-phone__dropdown-link:hover {
    color: black;
  }
  header .header-mobile__contacts .block-phone__feedback-btn {
    margin-left: 32px;
    font-family: 'Bold';
    font-size: 16px;
    line-height: 26px;
    color: #ffe99d;
    letter-spacing: 0.08em;
    transition: 0.3s all;
  }
  header .header-mobile__contacts .block-phone__feedback-btn:hover {
    color: #ff9d00;
  }
  header .header-mobile__contacts.open {
    bottom: 0;
  }
  header .header-mobile.fixed {
    position: fixed;
    opacity: 1;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    animation: header_fixed 0.5s ease-out;
  }
  @keyframes header_fixed {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  header .main-section {
    min-height: calc(100vh - 50px);
    /* min-height: 590px; */
    position: relative;
    z-index: 1;
  }
  header .main-section__left {
    margin-top: 70px;
  }
  header .main-section__left-list {
    font-size: 20px;
    line-height: 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  header .main-section__left-box {
    font-size: 18px;
    line-height: 26px;
  }
  header .main-section__left-box svg {
    top: 2px;
  }
  header .main-section__left-item {
    padding-left: 23px;
    font-size: 20px;
    line-height: 28px;
    margin-right: 0;
  }
  header .main-section__left-item::before {
    left: 0;
  }
  header .main-section__left-item:first-child::before {
    visibility: visible;
  }
  header .main-section__left-order {
    margin: auto;
    margin-bottom: 106px;
    max-width: 340px;
  }
  header .main-section__left-order::after {
    display: none;
  }
  header .main-section__left-scroll {
    z-index: 3;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
  }
  header .main-section__right {
    top: -67px;
    left: 70px;
    position: absolute;
  }
  header .main-section__right-circle {
    width: 674px;
    height: 674px;
  }
  header .main-section__right-circle::before {
    width: 674px;
    height: 674px;
  }
  header .main-section__right-box {
    display: none;
  }
  header .main-section.main-section--contacts .main-section__phone-item {
    flex-wrap: wrap;
  }
  header .main-section.main-section--contacts .main-section__left-title {
    margin-bottom: 35px;
  }
  header .main-section.main-section--contacts .main-section__right {
    position: static;
  }
  header .main-section.main-section--contacts .main-section__right-circle {
    display: none;
  }
  header .main-section.main-section--contacts .main-section__right .contact-box form {
    margin-top: 70px;
  }
  header .main-section.main-section--contacts .main-section__right .contact-box .form__desc {
    font-size: 18px;
    line-height: 26px;
    max-width: 230px;
  }
  header .main-section.main-section--contacts .main-section__right .contact-box .form__submit {
    margin-bottom: 48px;
  }
  header .header-waves__box {
    right: -411px;
  }
  header .header-circle__blue {
    top: 105px;
    left: 217px;
  }
  header .header-circle__orange {
    bottom: 12.6;
    left: 265px;
  }
  header .header-circle__blue-2 {
    right: -227.6px;
    top: 132px;
  }
  header .header-circle__purple {
    right: -259.6px;
    top: 9px;
  }
  header .header-tape-1 {
    top: 90px;
    right: 14px;
  }
  .catalog-section {
    padding-top: 24px;
    padding-bottom: 52px;
    margin-bottom: 40px;
  }
  .catalog-section .first-row {
    margin: 0 -2px;
    padding: 0;
  }
  .catalog-section .first-row__col {
    padding: 2px;
    min-height: 330px;
  }
  .catalog-section .first-row__col .first-row__box {
    min-height: 256px;
    margin-bottom: 4px;
  }
  .catalog-section .first-row__col .first-row__box-title {
    padding: 30px 8px 30px 10px;
  }
  .catalog-section .first-row__col .first-row__box-list {
    display: none;
    font-size: 14px;
    line-height: 24px;
    padding: 0px 8px 12px 10px;
    height: initial;
  }
  .catalog-section .first-row__col .first-row__box-all {
    position: absolute;
    bottom: 0;
    padding: 11px 8px 12px 10px;
    margin-bottom: 13px;
    font-size: 12px;
    line-height: 16px;
  }
  .catalog-section .first-row__col .first-row__box-all::after {
    display: none;
  }
  /* .catalog-section .first-row__col .first-row__box-all::before {
    display: none;
  } */
  .catalog-section .first-row__col .first-row__box-img {
    display: none;
  }
  .catalog-section .first-row__col .first-row__box-line {
    left: 10px;
    bottom: 52px;
  }
  .catalog-section .first-row__col .first-row__box--programms .programms-mask-1 {
    top: -345px;
  }
  .catalog-section .first-row__col .first-row__box--programms .programms-mask-2 {
    top: -227px;
  }
  .catalog-section .first-row__col .first-row__box--programms .programms-mask-3 {
    top: -273px;
  }
  .catalog-section .first-row__col .first-row__box--animators .animators-waves {
    width: 296px;
    top: 113px;
    left: -153px;
  }
  .catalog-section .first-row__col .first-row__box--animators .animators-waves img {
    width: 100%;
  }
  .catalog-section .first-row__col .first-row__box--holidays .holidays-circle-1 {
    width: 172px;
    height: 172px;
    left: initial;
    right: -82px;
    top: -90px;
  }
  .catalog-section .first-row__col .first-row__box--holidays .holidays-circle-2 {
    width: 295px;
    height: 295px;
    left: initial;
    right: -108px;
    top: -140px;
  }
  .catalog-section .first-row__col .first-row__box--services .services-circle-1 {
    width: 71px;
    height: 71px;
    border-width: 8px;
    top: 131px;
    left: -48.5px;
  }
  .catalog-section .first-row__col .first-row__box--services .services-circle-2 {
    width: 114px;
    height: 114px;
    border-width: 8px;
    top: 149px;
    left: -68.5px;
  }
  .catalog-section .first-row__col .first-row__box--services .services-circle-3 {
    width: 114px;
    height: 114px;
    border-width: 8px;
    bottom: 52.5px;
    right: -30px;
  }
  .catalog-section .first-row__col .first-row__box--services .services-circle-4 {
    width: 195px;
    height: 195px;
    border-width: 10px;
    bottom: -42.5px;
    right: -149px;
  }
  .catalog-section .first-row .services-circle-1,
  .catalog-section .first-row .services-circle-2,
  .catalog-section .first-row .services-circle-3,
  .catalog-section .first-row .services-circle-4,
  .catalog-section .first-row .programms-mask-1,
  .catalog-section .first-row .programms-mask-2,
  .catalog-section .first-row .programms-mask-3,
  .catalog-section .first-row .holidays-circle-1,
  .catalog-section .first-row .holidays-circle-2 {
    animation: none !important;
  }
  .catalog-section .catalog-line {
    display: none;
  }
  .catalog-section .second-row {
    padding: 48px 0 0;
  }
  .catalog-section .second-row__col-item {
    display: flex;
    align-items: center;
    height: 120px;
    margin-bottom: 12px;
  }
  .catalog-section .second-row__col-title {
    max-width: 180px;
    color: black;
    padding: 21px 24px;
  }
  .catalog-section .second-row__col-item--birthday svg {
    max-width: 80px;
    bottom: 7px;
    right: 30.7px;
    transform: rotate(2deg);
  }
  .catalog-section .second-row__col-item--exclusive {
    background: #e2f9ff;
  }
  .catalog-section .second-row__col-item--exclusive svg {
    max-width: 101.6px;
    bottom: 5.8px;
    right: 19.2px;
  }
  .catalog-section .second-row__col-item--newyear {
    background: #9be9ff;
  }
  .catalog-section .second-row__col-item--newyear svg {
    max-width: 100px;
    bottom: 13px;
    right: 18px;
  }
  .catalog-section .second-row__col-item--graduation {
    background: white;
  }
  .catalog-section .second-row__col-item--graduation svg {
    max-width: 148.6px;
    top: -59.6px;
    right: 7px;
  }
  .catalog-section .second-row__col-item--wedding {
    background: white;
  }
  .catalog-section .second-row__col-item--wedding svg {
    max-width: 118px;
    bottom: 13px;
    right: 28px;
  }
  .catalog-section .second-row__col-item--event {
    background: #fff5ea;
  }
  .catalog-section .second-row__col-item--event svg {
    max-width: 234px;
    width: 100%;
    bottom: 0px;
    right: 15px;
    top: initial;
    left: initial;
  }
  .catalog-section .catalog-portfolio {
    margin-top: 28px;
    margin-left: 0;
  }
  .catalog-section .catalog-portfolio__title {
    text-align: center;
    margin-bottom: 25px;
  }
  .catalog-section .catalog-portfolio__desc {
    margin-top: -12px;
    margin-bottom: 0;
    position: static;
    font-size: 18px;
    line-height: 26px;
  }
  .catalog-section .catalog-portfolio__desc .slick-list {
    overflow: visible;
  }
  .catalog-section .catalog-portfolio__desc .slick-dots {
    text-align: center;
    margin-top: 16px;
    display: block;
    position: static;
    left: 0;
    bottom: 0;
  }
  .catalog-section .catalog-portfolio__desc-item {
    margin-right: 0;
    margin-right: 10px;
    font-size: 18px;
    line-height: 26px;
    padding: 21px 20px 25px 26px;
  }
  .catalog-section .catalog-portfolio__desc-item::before {
    width: 35px;
    height: 35px;
  }
  .popular-section__title {
    margin-bottom: 25px;
  }
  .popular-section__slider {
    margin-bottom: 28px;
  }
  .popular-section__slider .slick-list {
    margin: 0 -5px;
  }
  .popular-section__slider .slick-dots {
    margin-top: 16px;
  }
  .popular-section__slide {
    padding: 0 5px;
  }
  .popular-section__slide-title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 13px;
  }
  .popular-section__slide-show {
    display: none;
  }
  .popular-section__slide .popular-mask-1 {
    bottom: -206px;
    left: -133px;
  }
  .popular-section__slide .popular-mask-2 {
    bottom: -142px;
    left: -71px;
  }
  .popular-section__buttons {
    margin-bottom: 24px;
    flex-direction: column;
    align-items: center;
  }
  .popular-section__buttons-all {
    margin-bottom: 12px;
  }
  .popular-section__buttons-all::after {
    display: none;
  }
  .popular-section__buttons-consultation::after {
    display: none;
  }
  .like-section__title {
    margin-bottom: 25px;
  }
  .like-section__slider {
    margin-bottom: 0px !important;
    padding-bottom: 28px;
  }
  .like-section__slider .slick-list {
    margin: 0 -5px;
  }
  .like-section__slider .slick-dots {
    margin-top: 16px;
  }
  .like-section__slide {
    padding: 0 5px;
  }
  .like-section__slide-title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 13px;
  }
  .like-section__slide-show {
    display: none;
  }
  .like-section__slide .popular-mask-1 {
    bottom: -206px;
    left: -133px;
  }
  .like-section__slide .popular-mask-2 {
    bottom: -142px;
    left: -71px;
  }
  .like-section__buttons {
    margin-bottom: 24px;
    flex-direction: column;
    align-items: center;
  }
  .like-section__buttons-all {
    margin-bottom: 12px;
  }
  .section-line {
    margin-bottom: 16px;
  }
  .add-section {
    padding-bottom: 48px;
  }
  .add-section__title {
    margin-bottom: 11px;
  }
  .add-section__desc {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 23px;
  }
  .add-section__item {
    background: none;
    text-align: center;
    box-shadow: none;
    height: initial;
    margin-bottom: 23px;
  }
  .add-section__item-bg {
    display: none;
  }
  .add-section__item-img {
    display: none;
  }
  .add-section__item-title {
    position: static;
    transform: none;
    font-size: 18px;
    line-height: 26px;
  }
  .add-section__btn {
    max-width: 330px;
  }
  .add-section__btn::after {
    display: none;
  }
  .review-section {
    padding: 40px 0 22px;
  }
  .review-section__slider .slick-list {
    padding: 35px 0 0px;
  }
  .review-section__slider .slick-dots {
    margin-top: 3px;
  }
  .review-section__slide-desc {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 26px;
  }
  .review-section__slide-author {
    font-size: 18px;
    line-height: 26px;
  }
  .review-section .review-waves__box {
    top: 193px;
    animation: none;
  }
  .form-section {
    padding-bottom: 48px;
  }

  .form-section .form-box .form-wrap {
    padding: 40px 10px 48px;
  }
  .form-section .form-box .form-wrap .form__desc {
    font-size: 18px;
    line-height: 26px;
  }
  .form-section .form-box .form-wrap .form__submit {
    height: 48px;
  }
  .form-section .form-box .form-wrap .form__line input,
  .form-section .form-box .form-wrap .form__area input {
    /* width: 250px; */
    width: 100%;
  }
  .form-section .form-box .form-wrap .form__line input::placeholder,
  .form-section .form-box .form-wrap .form__area input::placeholder {
    font-size: 16px;
  }
  .form-section .form-box .form-wrap .form__check-label {
    font-size: 16px;
    line-height: 24px;
  }
  .form-section .form-box .form-wrap .form__check-label::before {
    top: 12px;
  }
  .form-section .form-box .form-wrap .form__check-label::after {
    top: 7px;
  }
  .form-section .form-box .form-circle__white {
    display: none;
  }
  .form-section .form-box .form-circle__orange {
    display: none;
  }
  .main-description {
    padding: 40px 0 48px;
  }
  .main-description__title {
    margin-bottom: 25px;
  }
  .main-description__desc-item {
    font-size: 16px;
    line-height: 24px;
  }
  .animators-section {
    padding: 40px 0 48px;
  }
  .animators-section__desc {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
  }
  .animators-section__filter {
    margin-bottom: 24px;
  }
  .animators-section__filter form {
    /* overflow: scroll; */
  }
  .animators-section__filter-gender li {
    padding: 0 8px;
    white-space: normal;
    margin: 0 4px;
  }
  .animators-section__filter-age li {
    line-height: 22px;
    text-align: center;
    padding: 0 8px;
    white-space: normal;
    margin: 0 4px;
  }
  .animators-section__block {
    margin: 0 -5px;
  }
  .animators-section__item {
    margin-bottom: 12px;
    padding: 0 5px;
  }
  .animators-section__item-title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 11px;
  }
  .animators-section__item-show {
    display: none;
  }
  .animators-section__item .popular-mask-1 {
    bottom: -206px;
    left: -133px;
  }
  .animators-section__item .popular-mask-2 {
    bottom: -142px;
    left: -71px;
  }
  .price-section {
    padding: 22px 0 25px;
  }
  .price-section .price-block__programm {
    padding-right: 0;
  }
  .price-section .price-block__programm-title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 13px;
  }
  .price-section .price-block__programm ul li {
    font-size: 16px;
    line-height: 24px;
  }
  .price-section .price-block__left {
    display: none;
  }
  .price-section .price-block__right {
    display: none;
  }
  .price-section .price-block__price {
    max-width: initial;
  }
  .price-section .price-block__price_title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 11px;
  }
  .price-section .price-block__price ul {
    padding-bottom: 13px;
    border-bottom: 3px solid rgba(14, 175, 221, 0.2);
  }
  .price-section .price-block__price ul li {
    justify-content: space-between;
  }
  .price-section .price-block__price ul li .price-block__price-variation {
    max-width: initial;
    width: initial;
    font-size: 16px;
    line-height: 26px;
    white-space: unset;
  }
  .price-section .price-block__price ul li .price-block__price-variation::after {
    display: none;
  }
  .price-section .price-block__price ul li .price-block__price-price {
    font-size: 16px;
    line-height: 26px;
    white-space: nowrap;
  }
  .details-section .details-block .details-title {
    margin-bottom: 25px;
  }
  .details-section .details-block p {
    font-size: 16px;
    line-height: 26px;
  }
  .blog-section {
    padding: 16px 0 48px;
  }
  .blog-section__title {
    margin-bottom: 49px;
  }
  .blog-section__item {
    margin-bottom: 12px;
  }
  .blog-section__item-box {
    height: 97px;
  }
  .blog-section__item-date {
    font-size: 16px;
    line-height: 22px;
    top: -80px;
  }
  .blog-section__item-title {
    font-size: 18px;
    line-height: 26px;
  }
  .article-section {
    padding: 36px 0 48px;
  }
  .article-section .article-block__box {
    margin-bottom: 0;
  }
  .article-section .article-block__social-text {
    white-space: nowrap;
    font-size: 12px;
    line-height: 26px;
  }
  .article-section .small-text {
    font-size: 12px;
    line-height: 20px;
    margin-top: 12px;
    padding-top: 12px;
  }
  .read-section {
    padding: 28px 0 22px;
  }
  .read-section__title {
    text-align: center;
    margin-bottom: 25px;
  }
  .read-section__slide {
    padding: 0;
  }
  .read-section__slide-box {
    height: 97px;
  }
  .read-section__slide-date {
    font-size: 16px;
    line-height: 22px;
  }
  .read-section__slide-title {
    font-size: 18px;
    line-height: 26px;
  }
  .read-section__social-text {
    font-size: 12px;
    line-height: 26px;
  }
  .all-price-section .all-price__buttons {
    overflow: scroll;
    justify-content: flex-start;
  }
  .all-price-section .all-price__tab-list li {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .all-price-section .all-price__tab-list li button {
    font-size: 14px;
    padding: 0;
  }
  .all-price-section .all-price__tab-box {
    width: 100%;
  }
  .all-price-section .all-price__tab-name {
    font-size: 18px;
  }
  .all-price-section .all-price__tab-price {
    white-space: nowrap;
    font-size: 18px;
  }
  .all-price-section .all-price__tab-price span {
    font-size: 24px;
  }
  .portfolio-section {
    padding: 16px 0 48px;
  }
  .portfolio-section__title {
    margin-bottom: 47px;
  }
  .portfolio-section__desc {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
  }
  .portfolio-section__item-box {
    margin-bottom: 97px;
  }
  .portfolio-section__item-link {
    height: 97px;
    left: 0;
    bottom: -85px;
    font-size: 18px;
    line-height: 26px;
  }
  .gallery-section {
    padding: 16px 0 28px;
  }
  .gallery-section .gallery__title {
    margin-bottom: 25px;
  }
  .gallery-section .gallery__gallery {
    margin: 0 -5px;
  }
  .gallery-section .gallery__gallery-item {
    padding: 0 5px;
    padding-bottom: 20px;
  }
  .gallery-section + .form-section {
    padding: 0 0 48px;
  }
  .all-review-section {
    padding: 10px 0 48px;
  }
  .all-review-section .pagination {
    margin-bottom: 48px;
  }
  .all-review-section .all-review__title {
    margin-bottom: 49px;
  }
  .all-review-section .all-review__item {
    padding: 36px 24px 24px;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 22px;
  }
  .all-review-section .all-review__item-author {
    font-size: 18px;
    line-height: 26px;
  }
  .all-review-section .all-review__item-response {
    padding-top: 20px;
  }
  .all-review-section .all-review__item-quotes {
    left: 10px;
    top: 55px;
  }
  .all-review-section .form-box form .form__line {
    font-size: 16px;
    line-height: 24px;
  }
  .all-review-section .form-box form .form__check-label {
    font-size: 16px;
    line-height: 24px;
  }
  .about-us-section .about-us__path {
    top: -50px;
  }
  .about-us-section .about-us__right {
    margin-top: -22px;
    padding: 0 25px;
  }
  .about-us-section .about-us__play {
    top: 62%;
    right: -35px;
    width: 130px;
    height: 130px;
  }
  .about-us-section .about-us__play-promo {
    width: 130px;
    height: 130px;
  }
  .about-us-section .about-us__play-promo span {
    display: none;
  }
  .about-us-section .about-us__play-promo svg {
    margin: 0;
  }
  .about-us-section .about-us__title {
    margin-bottom: 13px;
  }
  .about-us-section .about-us__desc {
    margin-bottom: 24px;
  }
  .why-section {
    padding: 28px 0 52px;
  }
  .why-section .why__item-title {
    font-size: 18px;
    line-height: 26px;
  }
  .command-section {
    padding: 40px 0 22px;
  }
  .command-section__title {
    position: relative;
  }
  .command-section__desc {
    position: relative;
    font-size: 18px;
    line-height: 26px;
  }
  .command-section__slider {
    margin: 0 -10px;
  }
  .command-section__slide-box {
    width: 160px;
    height: 160px;
  }
  .command-section__slide-title {
    font-size: 24px;
    line-height: 30px;
  }
  .animator-section {
    padding-bottom: 36px;
  }
  .animator-section .path-bg-1 {
    top: -291px;
    left: -226px;
  }
  .animator-section .path-bg-2 {
    left: -181px;
    top: -213px;
  }
  .animator-section .animator-gallery .lSSlideOuter {
    margin-top: -100px;
    left: -10px;
  }
  .animator-section .animator-gallery .lslide img {
    top: 50px;
  }
  .animator-section .animator-gallery .lSPager {
    justify-content: center;
  }
  .animator-section .animator-gallery .lSPager li {
    border: none;
    width: 16px;
    height: 16px;
    margin: 0 15px 15px;
    transition: 0.3s all;
    /* margin-bottom: 20px; */
  }

  .animator-section .animator-gallery .lSPager li.active,
  .animator-section .animator-gallery .lSPager li:hover {
    border: none;
  }
  .animator-section .animator-gallery .lSPager li a {
    overflow: visible;
    display: block;
    position: relative;
    width: 16px;
    height: 16px;
    background: #9be9ff;
    transition: 0.3s all;
    border-radius: 50%;
  }
  .animator-section .animator-gallery .lSPager li a:hover {
    background: #0eafdd;
  }
  .animator-section .animator-gallery .lSPager li a::before {
    transition: 0.3s all 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 24px;
    height: 24px;
    border: 2px solid #0eafdd;
    opacity: 0;
    border-radius: 50%;
    transition: 0.3s all;
  }
  .animator-section .animator-gallery .lSPager .active {
    width: 12px;
    height: 12px;
  }
  .animator-section .animator-gallery .lSPager .active a {
    display: block;
    background: #0eafdd;
    width: 12px;
    height: 12px;
  }
  .animator-section .animator-gallery .lSPager .active a::before {
    opacity: 1;
  }
  .animator-section .animator-block {
    padding: 0 25px;
  }
  .animator-section .animator-block__attributes {
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .animator-section .animator-block__attributes ul {
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .animator-section .animator-block__attributes ul li {
    margin-bottom: 6px;
  }
  .animator-section .animator-block__attributes ul li a {
    font-size: 14px;
  }
  .animator-section .animator-block__attributes ul:last-child li a {
    font-size: 18px;
  }
  .animator-section .animator-block__desc {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 14px;
  }
  .animator-section .animator-block__price {
    flex-direction: column;
    margin-bottom: 21px;
    justify-content: center;
  }
  .animator-section .animator-block__price-old {
    order: 2;
    margin-right: 0;
    font-size: 20px;
  }
  /* .animator-section .animator-block__price-old::after {
    width: 100px;
  } */
  .animator-section .animator-block__price-special {
    font-size: 28px;
    line-height: 34px;
  }
  .animator-section .animator-block__order {
    margin: auto;
  }
  .page-section {
    padding: 16px 0 24px;
  }
  .page-section .page__title {
    margin-bottom: 49px;
  }
  .page-section .page__buttons {
    overflow: scroll;
    justify-content: flex-start;
  }
  footer {
    padding: 34px 0 37px;
  }
  footer .footer-flex {
    font-size: 16px;
    line-height: 26px;
    padding: 0 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer-flex nav .footer-flex__list {
    margin-bottom: 22px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: initial;
  }
  footer .footer-flex nav .footer-flex__list-item {
    margin-bottom: 11px;
    margin-right: 24px;
  }
  footer .footer-flex__contacts {
    margin-bottom: 20px;
  }
  footer .footer-flex__contacts-item {
    margin-bottom: 16px;
  }
  footer .footer-flex__contacts-feedback {
    font-size: 14px;
  }
  footer .footer-flex__social-links {
    margin-bottom: 12px;
  }
  footer .footer-circle__blue {
    right: -283.6px;
    bottom: -112px;
    left: initial;
    top: initial;
  }
  footer .footer-circle__orange {
    bottom: -191.4px;
    left: 0;
    top: initial;
  }
  footer .footer-waves__box {
    left: 260px;
    bottom: -294px;
    top: initial;
  }
  .modal-box {
    /* top: 333px; */
  }
  /* .modal-box__close {
    font-size: 18px;
    right: 10px;
  } */
  .modal-box form {
    padding: 40px 10px 48px;
  }
  .modal-box form .form__desc {
    font-size: 18px;
    line-height: 26px;
  }
  .modal-box form .form__submit {
    height: 48px;
  }
  .modal-box form .form__line input,
  .modal-box form .form__area input {
    /* width: 250px; */
    width: 100%;
  }
  .modal-box form .form__line input::placeholder,
  .modal-box form .form__area input::placeholder {
    font-size: 16px;
  }
  .modal-box form .form__check-label {
    font-size: 16px;
    line-height: 24px;
  }
  .modal-box form .form__check-label::before {
    top: 12px;
  }
  .modal-box form .form__check-label::after {
    top: 7px;
  }
  /* .modal-box.active .modal-box__close {
    top: -39px;
  } */
}
@media (max-width: 576px) {
  .animators-section__filter-gender label {
    flex-direction: column;
    font-size: 14px;
  }
  .animators-section__filter-age label {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
  .animators-section__filter-gender label svg {
    margin: 0;
  }
  .all-review-section .form-box {
    margin-left: -15px;
    margin-right: -15px;
  }
  .all-review-section .form-box form {
    padding: 40px 10px 48px;
  }
  .animators-section__filter-gender li {
    flex-direction: column;
  }
  .animators-section__filter-gender li svg {
    margin-right: 0;
  }
}
@media (max-width: 360px) {
  .catalog-section .first-row__box-title {
    font-size: 22px;
  }
  .pagination {
    justify-content: space-between;
    margin: 12px 0 0;
  }
  .pagination li {
    padding: 0;
  }
  .all-review-section .pagination {
    justify-content: space-between;
  }
}
@media (min-width: 576px) {
  .animator-section.animator-block,
  .about-us-section .about-us__right {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .animator-section .animator-block,
  .about-us-section .about-us__right {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .animator-section .animator-block,
  .about-us-section .about-us__right {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .animator-section .animator-block,
  .about-us-section .about-us__right {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1690px;
  }
}
#ajaxFilter.active {
  animation: ajax_content 0.5s ease-out;
}
@keyframes ajax_content {
  from {
    transform: translateY(200px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
