/* USER VARIABLES SECTION */

:root {
	--accent: #2D2E87;
  --orange: #F49600;
  --white:#FFFFFF;
  --red: #E42313;
  --green: #00A68B;
  --pink: #E71E6C;
  --blue: #009FE3;
  --purple: #56106F;
  --yellow: #FFE900;
	--text: #000000;
  --link: #3D6FB6;
  --accent2: #D6FBF5;
	--regular-text: 16px;
	--lineheight: 1.5;
	--userfont: raleway, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --trs: all .4s ease;
  --border-40: 40px;
  --border-60: 40px;
  --container: 1280px;
  --container-2: 1400px;
  --header-height: -152.73px;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: 1.25rem; }
.row, .row > * { --bs-gutter-x: 2.5rem; }

/* FONTS LOAD SECTION */
@font-face { src: url("../fonts/raleway-regular.woff2") format("woff2"); font-family: "raleway"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/raleway-semibold.woff2") format("woff2"); font-family: "raleway"; font-weight: 600; font-style: normal; }
@font-face { src: url("../fonts/raleway-bold.woff2") format("woff2"); font-family: "raleway"; font-weight: 700; font-style: normal; }
@font-face { src: url("../fonts/rounds-black.woff2") format("woff2"); font-family: "rounds"; font-weight: 400; font-style: normal; }

/* GENERAL CSS SETTINGS */

::placeholder { color: var(--white); }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

/* USER STYLES */
.image {
	max-width: 100%;
	margin-bottom: var(--bs-gutter-x);
}
.accent {
	color: var(--accent);
}
.color-link {
	color: var(--link);
}
a, a:hover {
  color: var(--text);
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}
h1.title {
  font-size: 56px;
  line-height: 64px;
}
h2.title {
  font-size: 64px;
  line-height: 56px;
  margin: 0 0 72px;
}
h3.title {
  font-size: 56px;
  line-height: 64px;
}
h4.title {
  font-size: 40px;
  line-height: 56px;
}
h5.title {
  font-size: 32px;
  line-height: 38px;
  margin: 0 0 30px;
}
h6.title {
  font-size: 28px;
  line-height: 32px;
  margin: 0 0 24px;
}
.section-title,
.page-title {
  font-family: "rounds", sans-serif;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.page-title {
  margin-bottom: 72px;
}
.section-title {
  text-align: center;
}
.sm-text {
  font-size: 14px;
}
.bg-orange {
  background-color: var(--orange);
}
.color-white {
  color: var(--white) !important;
}
.p-relative {
  position: relative;
}
.text-right {
  text-align: right;
}
.text-uppercase {
  text-transform: uppercase;
}
.btn {
  display: inline-block;
  border: 2px solid var(--red);
  text-decoration: none;
  padding: 18px 24px;
  border-radius: var(--border-40);
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  -webkit-border-radius: var(--border-40);
  -moz-border-radius: var(--border-40);
  -ms-border-radius: var(--border-40);
  -o-border-radius: var(--border-40);
  font-weight: 600;
}
.btn.btn-green {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
  padding: 14px 28px;
  font-size: 12px;
  line-height: 1;
}
.btn.btn-green2 {
  background-color: var(--green);
  padding: 18px 46px 16px;
  border: none;
  color: var(--white);
  text-transform: uppercase;
}
.btn.btn-white {
  background-color: var(--white);
  border-color: #35C2FE;
  text-transform: uppercase;
  padding: 22px 60px;
  color: var(--blue);
}
.btn.btn-sm {
  font-size: 12px;
  line-height: 1;
}
.btn.btn-md {
  font-size: 14px;
  line-height: 1;
}
.btn.btn-blue {
  background: #35C2FE;
  border-color: #35C2FE;
  color: var(--white);
  text-transform: uppercase;
  padding: 18px 52px;
}
.btn.btn-accent {
  background-color: var(--accent);
  padding: 18px 46px 16px;
  border: none;
  color: var(--white);
  text-transform: uppercase;
}
.btn.btn-accent_light {
  background-color: var(--white);
  padding: 18px 46px 16px;
  border-color: var(--accent);
  color: var(--accent);
  text-transform: uppercase;
}
.btn.btn-red {
  color: var(--red);
}
.accent2-bg {
  background-color: var(--accent2);
}
.btn.btn-orange {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  font-weight: 700;
  padding: 19px 40px;
}
.btn.btn-inactive {
  pointer-events: none;
  opacity: .4;
}
.pt-80 {
  padding-top: 80px !important;
}
.page-wrapper {
  position: relative;
  contain: paint;
}
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  transform: translateY(-1px);
  overflow: hidden;
}
.header__top {
  position: relative;
  z-index: 2;
  background-color: var(--white);
}
.header__bottom {
  margin-top: -4px;
  position: relative;
}
.header__bottom::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--white);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: -1;
  display: none;
}
.header .logotype {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.logotype {
  display: block;
  max-width: 180px;
}
.logotype img {
  max-width: 100%;
}
.page-content {
  position: relative;
  padding-top: 88px;
  overflow: hidden;
}
.page-content.is-landing {
  padding-top: 0;
  margin-top: var(--header-height);
}
.progress-pagination .swiper-pagination {
  position: relative;
  bottom: 0;
  line-height: 0;
  margin-top: 12px;
}
.progress-pagination .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 32px;
  height: 2px;
  background: rgba(0,0,0,.3);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  margin: 0 4px;
  opacity: 1;
}
.progress-pagination .swiper-pagination .swiper-pagination-bullet b {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: 2;
  background-color: var(--text);
}
.progress-pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active b {
  animation-name: countingBar;
  animation-duration: 5s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-direction: alternate ;
  animation-fill-mode:forwards;
}
@keyframes countingBar {
  0% {width: 0;}
  100% {width:100%;}
}
.green-title {
  color: var(--green);
}
.icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.icon.icon-lg {
  width: 48px;
  height: 48px;
}
.icon.icon-md {
  width: 24px;
  height: 24px;
}
.icon.icon-sm {
  width: 16px;
  height: 16px;
}
.close-icon {
  background-image: url(../images/icons/close-white.svg);
  cursor: pointer;
}
.main-header {
  position: relative;
  padding: 22px 40px 48px;
}
.main-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 111%;
  height: 100%;
  background-image: url(../images/icons/menu_new.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  z-index: -1;
}
.header.header-colored .header__bottom {
  background-color: #F3FDFF;
}
.header.header-colored .header__bottom::after {
  display: none;
}
.header.header-colored .main-header::after {
  display: none;
}
.header.header-colored .main-header {
    padding: 22px 40px;
}
.header.header-colored .logotype {
  max-width: 150px;
}
.header.header-colored .main-header .location-items {
	background: #F3FDFF;
}
.main-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.main-nav li {
  margin: 0;
}
.main-nav li:not(:last-child) {
  margin: 0 22px 0 0;
}
.main-nav li a {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  color: var(--text);
}
.main-nav li a.selected {
  color: var(--link);
  font-weight: 600;
}
.callback-link {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}
.callback-link:hover {
  color: var(--text);
}
.main-header .right .callback-link {
  margin-left: 24px;
}
.main-header__bottom {
  margin-top: 15px;
}
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: #F5F5F5;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
}
.main-header .hamburger {
  margin-right: 14px;
}
.main-header .location-picker {
  margin-right: 58px;
}
.location-picker {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.location-picker span {
  display: inline-block;
  margin-right: 7px;
}
.phone-block {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
}
.phone-block .icon {
  margin-right: 14px;
}
.phone-block__content > a {
  display: block;
  text-decoration: none;
  font-weight: 600;
}
.phone-block__content > span {
  font-size: 12px;
  opacity: 0.5;
}
.social-icons {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-icons li:not(:last-child) {
  margin: 0 10px 0 0;
}
.social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--text);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: center center;
}
.social-icons li a.social-tt {
  background-image: url(../images/icons/tt.svg);
}
.social-icons li a.social-tg {
  background-color: var(--blue);
  background-image: url(../images/icons/tg.svg);
}
.social-icons li a.social-ok {
  background-color: #F49600;
  background-image: url(../images/icons/ok.svg);
}
.social-icons li a.social-yt {
  background-color: #E42313;
  background-image: url(../images/icons/yt.svg);
}
.social-icons li a.social-vk {
  background-color: #3D6FB6;
  background-image: url(../images/icons/vk.svg);
}
.main-header .social-icons {
  margin-right: 30px;
}
.main-header .buy-online {
  min-width: 183px;
}
.hero-section {
  position: relative;
  background-image: url(../images/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  min-height: 808px;
  padding-top: 270px;
  overflow: hidden;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 345px;
  background-image: url(../images/white.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.hero-section__title,
.hero-section__descr {
  font-family: "rounds", sans-serif;
  color: var(--white);
  text-align: center;
}
.hero-section__title {
  font-size: 90px;
  line-height: 1;
}
.hero-section__descr {
  display: block;
  line-height: 1;
  font-size: 42px;
  margin-bottom: 26px;
}
.hero-left-image {
  transform: translate(-99px,66px);
  -webkit-transform: translate(-99px,66px);
  -moz-transform: translate(-99px,66px);
  -ms-transform: translate(-99px,66px);
  -o-transform: translate(-99px,66px);
}
.hero-left-image img {
  max-width: 430px;
}
.hero-right-image {
  position: relative;
  transform: translate(-47px, 27px);
  -webkit-transform: translate(-47px, 27px);
  -moz-transform: translate(-47px, 27px);
  -ms-transform: translate(-47px, 27px);
  -o-transform: translate(-47px, 27px);
}
.hero-right-image img {
  max-width: 420px;
}
.hero-right-image img:nth-child(2) {
  position: absolute;
  right: -203px;
  bottom: 27px;
  max-width: 260px;
}
.hero-section__list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-section__list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: var(--white);
}
.hero-section__list li:not(:first-child) {
  margin-left: 32px;
}
.hero-section__list li i {
  position: relative;
  top: -1px;
  margin-right: 8px;
}
.section {
  min-height: 100vh;
}
.footer {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #6BD5FF 0%, #3D6FB6 0.01%), linear-gradient(0deg, #FFFFFF, #FFFFFF);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: 50px 0 20px;
}
.footer__bottom {
  padding: 60px 0 44px;
}
.footer-label {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: var(--white);
  margin-bottom: 30px;
}
.footer-menu {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}
.footer-menu li {
  font-size: 16px;
  line-height: 1;
  color: var(--white);
}
.footer-menu li:not(:last-child) {
  margin-bottom: 24px;
}
.footer-menu li a {
  color: var(--white);
  text-decoration: none;
}
.footer .phone-block {
  margin-bottom: 24px;
}
.footer .phone-block__content,
.footer .phone-block__content a {
  color: var(--white);
}
.footer .social-icons {
  margin-top: 30px;
}
.footer-copyright {
  color: var(--white);
  opacity: .5;
  font-size: 14px;
  line-height: 1;
  padding: 32px 0 28px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.footer-copyright a {
  color: var(--white);
  text-decoration: none;
}
.footer-copyright p {
  margin: 0;
}
.map img {
  margin: 0;
}
.contact-icons {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.contact-icons li a {
  display: block;
  width: 32px;
  height: 32px;
}
.contact-icons li:not(:last-child) {
  margin-right: 16px;
}
.contact-icons li img {
  max-width: 100%;
}
.inline-form__title {
  color: var(--white);
  font-weight: 600;
  font-size: 21px;
  line-height: 28px;
  max-width: 388px;
}
.inline-form .form-item input {
  min-width: 254px;
}
.inline-form .form-item input,
.inline-form .form-item input[type="submit"],
.inline-form .form-item button[type="submit"] {
  height: 58px;
}
.inline-form .form-item:not(:last-child) {
  margin-right: 15px;
}
.inline-form .police-privacy {
  text-align: right;
  margin-top: 21px;
}
.form-item input {
  text-transform: uppercase;
  padding: 22px 30px;
  background-color: rgba(255,255,255,.3);
  border-radius: var(--border-60);
  -webkit-border-radius: var(--border-60);
  -moz-border-radius: var(--border-60);
  -ms-border-radius: var(--border-60);
  -o-border-radius: var(--border-60);
  border: none;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
.police-privacy {
  font-size: 12px;
  line-height: 1;
}
.police-privacy a {
  color: var(--blue);
  text-decoration: none;
}
.about-section {
  position: relative;
  margin-top: -195px;
  overflow: hidden;
}
.about-section .video-wrapper {
  padding: 0;
  max-width: 896px;
}
.video-box {
  position: relative;
  display: block;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  padding-bottom: 56%;
}
.video-box > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-box .pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}
.video-wrapper {
  position: relative;
  z-index: 2;
  max-width: 71%;
  padding: 50px;
  border-radius: 50px;
  margin: 0 auto;
  background-color: var(--white);
}
.video-description {
  font-weight: 600;
  font-size: 42px;
  line-height: 60px;
  color: var(--link);
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.video-section {
  overflow: hidden;
}
.video-section .video-description {
  margin-top: 50px;
}
.video-section.transformed-video-section {
  transform: translateY(-250px);
  margin-bottom: -250px;
  z-index: 9 !important;
  position: relative;
}
.video-section .animation-icons img:first-child {
  top: 300px;
  left: 0;
}
.video-section .animation-icons img:nth-child(2) {
  bottom: 300px;
  left: 40px;
}
.video-section .animation-icons img:nth-child(3) {
  top: 350px;
  right: 80px;
}
.video-section .animation-icons img:nth-child(4) {
  bottom: 20px;
  right: 20px;
}
.pulse {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.pulse svg {
  position: relative;
  left: 2px;
}
.pulse::before,
.pulse::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}
.pulse::before {
  animation: pulse 2s ease-out infinite;
  -webkit-animation: pulse 2s ease-out infinite;
}
.pulse::after {
  animation: pulse 2s ease-out infinite;
  -webkit-animation: pulse 2s 1s ease-out infinite;
}
@keyframes pulse {
  100% {
    transform: scale(2.5);
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    opacity: 0;
  }
}
.about-section .adv-items-list {
  margin: 120px auto 80px;
  max-width: var(--container);
}
.adv-items-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.adv-item {
  display: block;
  text-decoration: none;
  background: var(--accent2);
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  text-align: center;
  padding: 48px 48px 54px;
  color: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .7s ease;
}
.adv-item:hover {
  color: var(--blue);
  transform: scale(1.05);
}
.adv-item__title {
  text-transform: uppercase;
  font-family: "rounds", sans-serif;
}
.adv-item__descr {
  font-weight: 700;
  margin: 0 0 40px;
  font-size: 20px;
  line-height: 26px;
}
.adv-item__icon {
  max-width: 200px;
  margin: 0 auto;
}
.adv-items-list-2 .adv-item {
  background: none;
  color: var(--link);
  padding: 0;
  justify-content: flex-start;
}
.adv-items-list-2 .adv-item:hover {
  transform: none;
  color: var(--link);
}
.adv-items-list-2 .adv-item__descr {
  margin: 48px 0 0;
  font-size: 28px;
  line-height: 32px;
}
.adv-items-list-sm .adv-item__icon {
  width: 120px;
  height: 120px;
}
.animation-icons img {
  position: absolute;
  z-index: 1;
}
.about-section  .animation-icons img:first-child {
  top: -438px;
  left: -58px;
}
.about-section  .animation-icons img:nth-child(2) {
  top: -175px;
  left: -186px;
}
.about-section  .animation-icons img:nth-child(3) {
  bottom: 164px;
  left: -125px;
}
.about-section  .animation-icons img:nth-child(4) {
  top: -371px;
  right: -193px;
}
.about-section  .animation-icons img:nth-child(5) {
  top: -260px;
  right: -236px;
}
.about-section  .animation-icons img:nth-child(6) {
  bottom: -203px;
  right: -258px;
}
.rates-section {
  position: relative;
  background-image: url(../images/tarif-shape2.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 50px;
  padding-bottom: 250px;
  overflow: hidden;
  margin-top: -100px;
}
.rates-green-section-circle {
  text-align: right;
  transform: translate(205px, 800px);
  z-index: 1;
  position: relative;
  margin-top: -900px;
  pointer-events: none;
}
.rates-green-section-circle .animation-icons img:first-child {
  top: 15px;
  left: 190px;
  max-width: 240px;
}
.rates-green-section-circle2 {
  transform: translate(240px, -475px);
  z-index: 1;
  position: relative;
  pointer-events: none;
  margin-bottom: -475px;
}
.rates-section.rates-green-section {
  background-image: url(../images/fon_akva.svg);
  padding-bottom: 140px;
  padding-top: 140px;
  margin-top: 0;
  border-radius: 60px;
}
.rates-section.rates-green-section .animation-icons img:first-child {
  top: unset;
  bottom: 40px;
  left: -100px;
  opacity: .4;
}
.rates-section.rates-green-section .section-title {
  margin-bottom: 40px;
}
.rates-section-top {
  width: 100%;
  height: 200px;
  background-image: url(../images/tarif-shape.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: 34px;
}
.rates-section-top.green-color {
  background-image: url(../images/tarif-shape-green.svg);
}
.rates-block {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.rates-block .download {
  margin-left: 32px;
  font-size: 16px;
  line-height: 32px;
}
.tabs {
  font-size: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.tabs.tabs-auto {
  width: 100%;
}
.tabs.tabs-auto .tab-button {
  flex: 1;
}
.tabs .tab-button:not(:last-child) {
  margin-right: 32px;
}
.tabs .tab-button a {
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  padding: 22px;
  background-color: rgba(255,255,255,.4);
  display: block;
  text-decoration: none;
  color: var(--accent);
  outline: none;
}
.tabs .tab-button a > b {
  opacity: .6;
}
.tabs .tab-button a[aria-selected="true"] {
  background-color: var(--white);
}
.tabs .tab-button a i {
  position: relative;
  top: -2px;
  display: inline-block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.tabs-content {
  padding-top: 48px;
}
.rates-block .tabs .tab-button {
  width: 408px;
  height: auto;
}
.rates-section  .animation-icons img:first-child {
  top: -16px;
  left: -206px;
}
.rates-section  .animation-icons img:nth-child(2) {
  top: 100px;
  right: -110px;
}
.rates-section  .animation-icons img:nth-child(3) {
  bottom: -142px;
  right: -192px;
}
.download {
  color: var(--accent);
  text-decoration: none;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.download:hover {
  color: var(--accent);
}
.download .icon {
  top: -3px;
  margin-right: 12px;
}
.price-tabs-left {
  background-color: var(--white);
  padding: 32px 0 16px;
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
}
.price-tabs-left .tabs {
  flex-direction: column;
}
.price-tabs-left .tabs .tab-button {
  width: auto;
  margin-right: 0;
  margin-bottom: 10px;
}
.price-tabs-left .tabs .tab-button a {
  padding: 14px 16px 14px 40px;
  text-align: left;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  text-transform: none;
  display: flex;
}
.price-tabs-left > span {
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  padding: 0 16px 0 40px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.price-tabs-left .tabs .tab-button:not(.not-selected-bg) a[aria-selected="true"] {
  background-color: rgba(45, 46, 135, 0.15);
}
.price-tabs-right .tabs-content {
  background-color: var(--white);
  border-radius: 32px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  -ms-border-radius: 32px;
  -o-border-radius: 32px;
  padding-top: 0;
  padding-bottom: 45px;
}
.ticket-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ticket-type {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}
.ticket-type::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 87%;
  background: var(--text);
  opacity: 0.1;
}
.ticket-type:nth-child(3n)::after,
.ticket-type:last-child::after {
  display: none;
}
.ticket-type__img {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}
.ticket-type__img img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.ticket-type__img.ticket-type__img-md img {
  width: 85%;
  height: 85%;
}
.ticket-type__img.ticket-type__img-sm img {
  width: 75%;
  height: 75%;
}
.ticket-type__price {
  font-weight: 600;
  margin: 6px 0 16px;
}
.ticket-type__descr {
  font-size: 14px;
  line-height: 1;
  opacity: 0.5;
}
.ticket-type__button {
  margin-top: 40px;
}
.ticket-type .height-arrow {
  position: absolute;
  bottom: 5px;
  left: 0;
}
.height-arrow {
  position: relative;
  align-self: baseline;
}
.height-arrow::before,
.height-arrow::after {
  content: "";
  position: absolute;
  left: -6.7px;
  height: 16px;
  width: 16px;
  border-top: 3px solid rgba(230, 230, 230, 1);
  border-left: 3px solid rgba(230, 230, 230, 1);
}
.height-arrow::before {
  top: -1px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.height-arrow::after {
  bottom: -1px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
}
.height-arrow__inner {
  position: relative;
  display: block;
  height: 150px;
  width: 3px;
  background: rgba(230, 230, 230, 1);
}
.height-arrow__inner::before {
  content: attr(data-text);
  position: absolute;
  top: 68px;
  left: -27px;
  width: 20px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(230, 230, 230, 1);
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
.maps-section {
  position: relative;
  margin-top: -280px;
  overflow: hidden;
  padding-bottom: 180px;
}
.maps-section::after {
  content: "";
  position: absolute;
  top: 280px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-circle-shape.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto;
  z-index: -2;
  transform: translateY(-478px);
  -webkit-transform: translateY(-478px);
  -moz-transform: translateY(-478px);
  -ms-transform: translateY(-478px);
  -o-transform: translateY(-478px);
}
.maps-section .map-block {
  margin-top: -80px;
}
.maps-section__title {
  text-align: center;
  margin-left: 27px;
}
.swiper.theme-carousel {
  overflow: visible;
}
.page-section {
  position: relative;
  padding: 160px 0;
}
.p-80 {
  padding: 80px 0;
}
.p-140 {
  padding: 140px 0;
}
.theme-carousel-section {
  overflow-x: hidden;
}
.theme-carousel-section.purple-color {
  background-color: #EEF0FA;
}
.theme-carousel-section.pink-color {
  background-color: #FFF4F3;
}
.theme-carousel-container {
  position: relative;
  max-width: var(--container-2);
  margin: 0 auto;
}
.theme-carousel-animation {
  position: relative;
}
.theme-carousel-animation .animation-icons img:first-child {
  top: -52px;
  left: 100px;
}
.theme-carousel-animation .animation-icons img:nth-child(2) {
  top: -200px;
  right: 0;
}
.info-box {
  position: relative;
  background: var(--white);
  overflow: hidden;
  border-radius: var(--border-40);
  -webkit-border-radius: var(--border-40);
  -moz-border-radius: var(--border-40);
  -ms-border-radius: var(--border-40);
  -o-border-radius: var(--border-40);
}
.info-box__inner {
  display: flex;
}
.info-box__inner .info-box__content {
  flex: 0 0 55%;
}
.info-box__inner .info-box__img {
  flex: 1;
}
.info-box__img img {
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.info-box__content {
  padding: 50px 60px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.info-box__title {
  font-weight: 600;
}
.info-box__title span {
  color: var(--red);
}
.info-box__descr {
  max-width: 468px;
  margin: 0 0 32px;
}
.info-box__btn {
  border-width: 2px;
  color: var(--red)
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  display: none;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  outline: none;
}
.swiper .swiper-button-prev::before,
.swiper .swiper-button-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 22px 16px;
  background-position: center center;
  background-image: url(../images/icons/carousel-arrow.svg);
  outline: none;
}
.swiper .swiper-button-next::before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.swiper .swiper-button-prev {
  left: 80px;
}
.swiper .swiper-button-next {
  right: 80px;
}
.swiper .swiper-button-prev.swiper-button-disabled,
.swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.swiper.navs-top .swiper-button-prev,
.swiper.navs-top .swiper-button-next {
  top: -104px;
  left: unset;
}
.swiper.navs-top .swiper-button-prev {
  right: 70px;
}
.swiper.navs-top .swiper-button-next {
  right: 0;
}
.swiper.equal-height .swiper-slide {
  height: auto;
}
.swiper.navs-top-bordered .swiper-button-prev,
.swiper.navs-top-bordered .swiper-button-next {
  border: 2px solid var(--accent);
}
.swiper.accent-navs .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 12px;
  background: transparent;
  border: 1.5px solid var(--accent);
  opacity: 1;
}
.swiper.accent-navs .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent);
}
.swiper.accent-navs.pagination-orange .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet {
  background: var(--white);
  border-color: var(--white);
}
.swiper.accent-navs.pagination-orange .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--orange);
  border-color: var(--white);
}
.swiper {
  z-index: 2;
}
.gallery-section {
  position: relative;
  overflow: hidden;
}
.gallery-section.purple-color {
  background-color: #EEF0FA;
}
.gallery-section.orange-color {
  background-color: #FFF1D9;
}
.gallery-section.pink-color {
  background-color: #FFF4F3;
}
.marquee-gallery {
  display: flex;
  position: relative;
  z-index: 2;
}
.marquee-gallery__inner {
  display: flex;
  flex-shrink: 0;
}
.marquee-gallery-image {
  position: relative;
  margin-bottom: 30px;
  margin-right: 30px;
  overflow: hidden;
}
.marquee-gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.marquee-gallery-image__wrap:nth-child(4n + 1) .marquee-gallery-image {
  width: 590px;
  height: 590px;
}
.marquee-gallery-image__wrap:nth-child(4n - 2) .marquee-gallery-image:first-child {
  width: 332px;
  height: 332px;
}
.marquee-gallery-image__wrap:nth-child(4n - 2) .marquee-gallery-image:last-child {
  width: 166px;
  height: 166px;
}
.marquee-gallery-image__wrap:nth-child(4n - 1) .marquee-gallery-image:first-child {
  width: 273px;
  height: 273px;
  margin-top: 59px;
}
.marquee-gallery-image__wrap:nth-child(4n - 1) .marquee-gallery-image:last-child {
  width: 332px;
  height: 332px;
  left: -166px;
}
.marquee-gallery-image__wrap:nth-child(4n) {
  margin-left: -59px;
}
.marquee-gallery-image__wrap:nth-child(4n) .marquee-gallery-image:first-child {
  width: 166px;
  height: 166px;
}
.marquee-gallery-image__wrap:nth-child(4n) .marquee-gallery-image:last-child {
  width: 332px;
  height: 332px;
}
.gallery-section-animations,
.gallery-section-animations-2 {
  position: relative;
}
.gallery-section-animations .animation-icons img:first-child {
  top: -200px;
  left: -60px;
}
.gallery-section-animations .animation-icons img:nth-child(2) {
  top: 50px;
  right: 352px;
}
.gallery-section-animations-2 .animation-icons img:first-child {
  top: -225px;
  left: 575px;
}
.gallery-section-animations-2 .animation-icons img:nth-child(2) {
  top: -276px;
  left: 712px;
}
.gallery-section-animations-2 .animation-icons img:nth-child(3) {
  top: -310px;
  right: 0;
}
.event-carousel-section {
  overflow: hidden;
}
.event-carousel-section .event-carousel {
  padding-bottom: 180px;
  overflow: visible;
}
.event-carousel.swiper .swiper-pagination {
  display: none;
  bottom: 40px;
}
.event-carousel .news-box {
  height: 100%;
}
.event-section-animations {
  position: relative;
}
.event-section-animations .animation-icons img:first-child {
  top: -165px;
  left: 0;
  max-width: 175px;
}
.news-box {
  position: relative;
  box-shadow: 0px 8px 80px 0px rgba(88, 89, 171, 0.07);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  display: flex;
  flex-direction: column;
}
.news-box__image {
  position: relative;
  padding-bottom: 57.36%;
  pointer-events: none;
  overflow: hidden;
}
.news-box__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.news-box__body {
  padding: 38px 60px 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.news-box__title {
  margin-bottom: 16px;
  font-weight: 600;
}
.news-box__title a {
  text-decoration: none;
}
.news-box__descr {
  margin-bottom: 18px;
}
.news-box__descr p,
.news-box__descr ul {
  margin: 0;
}
.stars-list {
  display: flex;
  padding: 0;
  margin: 0;
}
.star-item {
  display: block;
  margin: 0 4px 0 0;
  padding: 0;
  width: 18px;
  height: 18px;
  background-image: url(../images/star.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.reviews-carousel-section {
  overflow: hidden;
}
.reviews-carousel-section .section-title {
  padding-top: 15px;
}
.reviews-section-animations {
  position: relative;
}
.reviews-section-animations .animation-icons img:first-child {
  top: -170px;
  left: -63px;
}
.reviews-section-animations .animation-icons img:nth-child(2) {
  bottom: -776px;
  right: 11px;
}
.theme-carousel .swiper-pagination {
  bottom: -56px;
  display: none;
}
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}
.review-box {
  position: relative;
  padding: 40px;
  box-shadow: 0px 8px 80px 0px rgba(88, 89, 171, 0.1);
  border-radius: 40px;
  background: var(--white);
}
.review-box__head {
  display: flex;
}
.review-box__user {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-box .stars-list {
  margin-bottom: 32px;
}
.review-box__head .review-box__content {
  padding-left: 24px;
}
.review-box__label {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 16px;
}
.review-box__date {
  display: inline-block;
  line-height: 1;
  opacity: .5;
}
.review-box__text {
  position: relative;
  padding-left: 56px;
  padding-bottom: 32px;
  font-size: 18px;
  line-height: 28px;
}
.review-box__text::before,
.review-box__text::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url(../images/icons/quote.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.review-box__text::before {
  left: 0;
  top: 0;
}
.review-box__text::after {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}
.user-avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.user-avatar img,
.user-avatar svg {
  position: relative;
  z-index: 1;
  max-width: 100%;
  border-radius: 50%;
}
.user-avatar::after {
  content: "";
  position: absolute;
  top: -17px;
  left: -35px;
  width: 130px;
  height: 97px;
  background: var(--pink);
  transform: rotate(146deg);
  border-radius: 50%;
}
.request-block {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.request-block__inner {
  position: relative;
  text-align: center;
  color: var(--white);
  padding-top: 125px;
  padding-bottom: 100px;
}
.request-block__inner::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/fon2.png);
  background-position: top center;
  z-index: -1;
}
.request-block__content {
  position: relative;
  z-index: 3;
}
.request-block__content .logo {
  max-width: 235px;
}
.request-block__title {
  font-size: 46px;
  line-height: 50px;
  font-weight: 600;
  margin: 0 0 30px;
}
.request-block__descr {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 30px;
}
.request-block__btn.btn {
  border-color: transparent;
  color: var(--text);
  padding: 20px 60px;
}
.request-block__leftimg {
  position: absolute;
  bottom: -70px;
  left: -205px;
  max-width: 530px;
  z-index: 2;
}
.request-block__rightimg {
  position: absolute;
  bottom: -160px;
  right: -205px;
  max-width: 420px;
  z-index: 2;
}
.request-block .r-svg,
.request-block .r-svg-2 {
	position: absolute;
	z-index: 1;
}
.request-block .r-svg {
  bottom: 30px;
  left: 460px;
}
.request-block .r-svg-2 {
  bottom: 80px;
  right: 360px;
}
.questions-section-animations {
  position: relative;
}
.questions-section-animations .animation-icons img:first-child {
  top: -165px;
  left: 0;
  max-width: 175px;
}
.questions-section-animations .animation-icons img:nth-child(2) {
  bottom: -1125px;
  right: 0;
}
.questions-section-animations .animation-icons img:nth-child(3) {
  top: 360px;
  left: 0;
}
.questions-section {
  padding: 140px 0;
}
.questions-section__inner {
  max-width: var(--container);
}
.questions-section .accordion-block {
  max-width: 65.74%;
}
.download-box {
  position: relative;
  background-color: var(--green);
  border-radius: 32px;
  padding: 64px 32px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  z-index: 2;
}
.download-box.purple-color {
  background-color: var(--accent);
}
.download-box.orange-color {
  background-color: #F49600;;
}
.download-box.pink-color {
  background-color: #56106F;;
}
.download-box::before,
.download-box::after {
  content: "";
  position: absolute;
  opacity: .4;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.download-box::before {
  top: -18px;
  left: -35px;
  width: 268px;
  height: 214px;
  background-image: url(../images/animation/19.svg);
}
.download-box::after {
  top: -45px;
  right: -95px;
  width: 269px;
  height: 254px;
  background-image: url(../images/animation/18.svg);
}
.download-box__title {
  font-weight: 600;
  margin: 0 0 40px;
}
.download-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.download-list li > a {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
.download-list li .icon {
  margin-right: 16px;
  top: -2px;
}
.questions-section .download-box {
    margin-top: 73px;
    margin-bottom: 140px;
}
.accordion-ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.accordion-ul .acc_head {
  position: relative;
  padding: 26px 80px 26px 40px;
  cursor: pointer;
  font-size: 20px;
  line-height: 32px;
}
.accordion-ul li {
  margin-bottom: 24px;
}
.accordion-ul .acc_head .arrow {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
.accordion-ul .acc_head,
.accordion-ul .acc_content {
  position: relative;
  z-index: 2;
  border: 1px solid #3D6FB6;
  border-radius: 32px;
  font-weight: 600;
  color: #3D6FB6;
  background-color: var(--white);
}
.acc_section.acc_active .acc_head {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}
.accordion-ul .acc_content {
  padding: 0 40px 26px 40px;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.adv-section .animation-icons img:first-child {
  top: 80px;
  left: 0;
}
.adv-section .animation-icons img:nth-child(2) {
  bottom: 180px;
  right: 80px;
}
.adv-section .animation-icons img:nth-child(3) {
  top: 0;
  right: 10px;
}
.animation-icons > div {
  position: absolute;
  z-index: -1;
}
.adv-section-2 .animation-icons > div:first-child {
  top: 95px;
  right: 150px;
}
.adv-section-2 .animation-icons.green-color > div:first-child {
  top: 165px;
  left: 60px;
}
.banner-section {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
}
.banner-section::after {
  content: "";
  position: absolute;
  bottom: -42px;
  left: 0;
  width: 484px;
  height: 160px;
  background-image: url(../images/banner-wave.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 2;
}
.banner-section::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--white);
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  z-index:3;
}
.banner-section__mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: none;
}
.banner-section .temp-list {
  position: absolute;
  bottom: 260px;
  right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 22.8%;
}
.banner-section__content {
  padding-top: 330px;
  padding-bottom: 300px;

}
.banner-section__content .container {
    position: relative;
    z-index: 3; 
}
.banner-section .dark-bg
{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
  opacity: .4;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  z-index: 1;
}
.banner-section-md .banner-section__content {
  padding-top: 330px;
  padding-bottom: 300px;
}
.banner-section-sm .banner-section__content {
  padding-top: 480px;
  padding-bottom: 180px;
}
.banner-section__title {
  color: var(--white);
  text-align: left;
  max-width: 76%;
}
.banner-section__title.full-width {
  max-width: 100%;
}
.banner-section .breadcrumb .breadcrumb__item,
.banner-section .breadcrumb .breadcrumb__item a {
  color: var(--white);
}
.temp-list {
  margin: 0;
  padding: 0;
  padding: 48px;
  list-style: none;
  background-color: var(--white);
  border-radius: 32px;
}
.temp-list li {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}
.temp-list li:not(:last-child) {
  margin-bottom: 20px;
}
.breadcrumb {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb__item {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  margin: 0 20px 0 0;
}
.breadcrumb__item,
.breadcrumb__item a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.breadcrumb__item::after {
  content: "/";
  position: absolute;
  top: 0;
  right: -12px;
  color: #CBCED1;
  font-size: 12px;
}
.breadcrumb__item:last-child::after {
  display: none;
}
.section-description {
  color: var(--white);
  text-align: center;
  font-size: 24px;
  line-height: 34px;
  max-width: 1160px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 2;
}
.section-description span {
  color: var(--accent);
  font-family: "rounds", sans-serif;
}
.adv-section {
  position: relative;
}
.tariff-section {
  position: relative;
  background-image: url(../images/tariff-background.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  overflow: hidden;
}
.tariff-section.furniture-bg {
  background-image: none;
  padding: 120px 0 200px !important;
}
.tariff-section.furniture-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/divan.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 100%;
  width: 1920px;
}
.tariff-section .section-title {
  margin-bottom: 40px;
}
.tariff-section .rates-block > .tabs-content {
  padding-bottom: 48px;
}
.tariff-section .price-tabs-right .tabs-content {
  padding: 40px;
}
.tariff-section .text-boxes {
  max-width: var(--container);
  margin: 88px auto 0;
}
.tariff-section .animation-icons img:first-child {
  bottom: 70px;
  left: 0;
  opacity: .15;
  transform: scale(1.4);
}
.tariff-section .animation-icons img:nth-child(2) {
  bottom: 500px;
  right: 150px;
}
.tariff-s-animate-1 {
  position: relative;
  height: 120px;
}
.tariff-s-animate-1 .animation-icons img:first-child {
  top: -10px;
  right: 88px;
}
.tariff-s-animate-1 .animation-icons img:nth-child(2) {
  top: 400px;
  right: 0;
}
.ticket-box__wrapper {
  display: flex;
  flex-direction: column;
}
.ticket-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}
.ticket-boxes[data-col="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.ticket-box__wrapper .title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.ticket-box__wrapper > .btn {
  width: 100%;
  margin-top: 24px;
}
.tabs-content .buy-ticket {
  width: 100%;
  margin-top: 24px;
}
.collapsed-tabs-wrapper .ticket-box__wrapper .title {
  display: none;
}
.ticket-box__wrapper .title span {
  opacity: .6;
}
.ticket-box {
  position: relative;
  padding: 14px 8px;
  text-align: center;
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 132px;
}
.ticket-box__wrapper .ticket-box {
  flex: 1;
}
.ticket-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: 32px;
}
.ticket-box.ticket-box-unactive {
  border: none;
  background-color: rgba(45, 46, 135, .1);
  pointer-events: none;
}
.ticket-box.ticket-box-unactive::after {
  display: none;
}
.ticket-box.ticket-box-unactive .ticket-box__list li {
  opacity: .3;
}
.ticket-box__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ticket-box__list li {
  display: flex;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: var(--accent);
}
.ticket-box__list li .icon {
  margin-right: 12px;
  top: -4px;
}
.ticket-box__list li:not(:last-child) {
  margin-bottom: 8px;
}
.show-all {
  background-color: var(--accent);
  color: var(--white);
  padding: 20px 48px;
  border-radius: 60px;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  outline: none;
}
.show-all:hover {
  color: var(--white);
}
.show-all .icon {
  top: -3px;
  margin-right: 16px;
}
.text-center {
  text-align: center;
}
.text-boxes {
  position: relative;
  z-index: 2;
}
.text-box {
  padding: 40px;
  border: 2px solid var(--white);
  border-radius: 32px;
  display: flex;
  color: var(--white);
}
.text-box.text-box-accent {
  border-color: var(--accent);
  color: var(--accent);
}
.text-box.text-box-accent .text-box__icon svg path {
  fill: var(--accent);
}
.title.text-box__title {
  font-weight: 500;
  margin: 0 0 24px;
}
.text-box__icon {
  width: 64px;
  flex: 0 0 64px;
  margin-right: 40px;
}
.text-box__content {
  flex: 1;
}
.text-box__descr {
  font-size: 16px;
  line-height: 24px;
}
.btn.text-box__btn {
  color: var(--accent);
  text-transform: none;
  border-color: transparent;
  padding: 19px 40px;
  margin-top: 32px;
}
.page-section.adv-section-2 {
  overflow: hidden;
  padding: 80px 0;
}
.text-adv-section {
  position: relative;
  overflow: hidden;
}
.text-adv-section .text-adv-items {
  margin-top: 72px;
}
.text-adv-items {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.text-adv {
  border: 2px solid var(--link);
  border-radius: 32px;
  padding: 40px;
  background-color: var(--white);
}
.text-adv__head {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--link);
}
.text-adv__body {
  margin-top: 32px;
}
.text-adv__icon {
  flex: 0 0 40px;
  width: 40px;
  margin-right: 24px;
}
.text-adv__title.title {
  color: var(--link);
  font-weight: 700;
  margin: 0;
}
.text-adv__content {
  color: var(--link);
  font-weight: 700;
}
.text-content {
  font-size: 20px;
  line-height: 28px;
}
.text-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.text-content ul li:not(:last-child) {
  margin-bottom: 24px;
}
.text-content ul li {
  display: flex;
}
.text-content ul li::before {
  content: "●";
  display: block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  margin-top: -2px;
}
.text-adv-section .animation-icons img:first-child {
  top: 100px;
  left: 0;
}
.text-adv-section .animation-icons img:nth-child(2) {
  top: 0;
  right: 0;
}
.text-adv-section .animation-icons img:nth-child(3) {
  bottom: 140px;
  right: 90px;
}
.attractions-section {
  position: relative;
  overflow: hidden;
}
.attractions-section .table-content {
  margin-top: 72px;
}
.attractions-section .band-items {
  margin-top: 72px;
  margin-bottom: 72px;
}
.attractions-section .animation-icons img:first-child {
  top: 110px;
  left: 0;
}
.attractions-section .animation-icons img:nth-child(2) {
  top: 0;
  right: 250px;
}
.attractions-section .animation-icons img:nth-child(3) {
  top: 30px;
  right: 0;
}
.attractions-section .animation-icons img:nth-child(4) {
  bottom: 500px;
  left: 40px;
}
.band-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.band-item {
  text-align: center;
}
.band-item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background-color: var(--blue);
  border-radius: 50%;
  margin: 0 auto 32px;
}
.band-item__icon.pink {
  background-color: var(--pink);
}
.band-item__icon.yellow {
  background-color: var(--yellow);
}
.band-item__title.title {
  font-weight: bold;
  margin: 0 0 16px;
}
.band-item__descr {
  font-size: 20px;
  line-height: 28px;
  opacity: .4;
}
.attractions-carousel {
  margin: -100px;
  padding: 100px;
  overflow: visible;
}
.attractions-carousel .swiper-slide {
  width: 440px;
}
.attractions-carousel .attraction-item {
  height: 100%;
}
.attraction-item {
  position: relative;
  box-shadow: 0px 8px 80px 0px #5859AB1A;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.attraction-item__img {
  position: relative;
  padding-bottom: 123.84%;
  border-radius: 40px;
  overflow: hidden;
}
.attraction-item__img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.attraction-item__content {
  padding: 40px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.attraction-item__title {
  margin: 0 0 24px;
  font-family: "rounds", sans-serif;
  color: var(--link);
}
.attraction-item .band-items {
  position: absolute;
  display: flex;
  top: 40px;
  right: 40px;
  grid-gap: 0;
  margin: 0 !important;
}
.attraction-item .band-items .band-item:not(:last-child) {
  margin-right: 20px;
}
.attraction-item .band-items .band-item__icon {
  margin: 0;
  width: 64px;
  height: 64px;
}
.attraction-item .band-items .band-item__icon svg {
  width: 42px;
}
.param-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.param-list > li {
  max-width: 70px;
  height: 70px;
  border: 1px solid var(--link);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.param-list > li > span {
  display: inline-block;
  font-size: 15px;
  line-height: 18px;
  color: var(--link);
  margin-top: 8px;
  font-weight: 700;
}
.table-content {
  position: relative;
  background-color: var(--link);
  color: var(--white);
  border-radius: 32px;
  padding: 40px;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}
.table-content__col {
  display: flex;
}
.table-content__col > div {
  position: relative;
  border-right: 1px solid var(--white);
  flex: 1;
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
}
.table-content__col > div:first-child {
  padding-left: 0;
}
.table-content__col > div:last-child {
  padding-right: 0;
  border-right: 0;
}
.table-content__col > div > div:first-child {
  margin-bottom: 24px;
  font-weight: 700;
}
.table-content__col:not(:first-child) > div > div:first-child {
  display: none;
}
.table-content__col > div > div:not(:first-child) {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* style only for attractions-table content */
.attractions-table .table-content__col > div:first-child {
  flex: 0 0 135px;
}
.attractions-table .table-content__col > div:nth-child(3) {
  flex: 0 0 45%;
}
.attractions-table .table-content__col > div:first-child > div:not(:first-child) {
  justify-content: flex-start;
}
/* end style only for attractions-table content */
.menu-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.menu-item {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0px 8px 80px 0px #5859AB1A;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}
.menu-item__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
}
.menu-item__title {
  font-weight: 600;
}
.menu-item__content {
  font-size: 20px;
  line-height: 32px;
}
.menu-item__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-item__content b {
  font-weight: 600;
}
.menu-item__info {
  margin-top: 40px;
}
.menu-item__image {
  position: relative;
  padding-bottom: 59.1%;
}
.menu-item__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px !important;
}
.menu-section .animation-icons img:first-child {
  top: 80px;
  left: 0;
}
.menu-section .animation-icons img:nth-child(2) {
  bottom: 300px;
  left: 0;
}
.menu-section .animation-icons img:nth-child(3) {
  top: 300px;
  right: 0;
}
.menu-section .animation-icons img:nth-child(4) {
  bottom: 400px;
  right: 40px;
}
.menu-section .animation-icons img:nth-child(5) {
  bottom: 60px;
  right: 40px;
}
.box-advantages-section {
  overflow: hidden;
  position: relative;
  background-color: #FFF7EA;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
}
.box-advantages-section .animation-icons img:first-child {
  top: 144px;
  right: 20px;
}
.box-adv-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}
.box-adv-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--link);
  padding: 48px 24px;
  border-radius: 32px;
  color: var(--link);
}
.title.box-adv-item__title {
  text-transform: uppercase;
  font-family: "rounds", sans-serif;
  text-align: center;
}
.title.box-adv-item__title {
  margin-bottom: 48px;
}
.inline-tickets-section {
  position: relative;
  background-color: #FFF7EA;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.inline-tickets-section .animation-icons img:first-child {
  top: 120px;
  left: 0;
}
.inline-tickets-section .animation-icons img:nth-child(2) {
  top: -40px;
  right: 0;
}
.inline-tickets-section .animation-icons img:nth-child(3) {
  bottom: 0;
  right: 20px;
}
.inline-tickets-section .animation-icons img:nth-child(4) {
  bottom: -185px;
  left: 0;
}
.inline-tickets {
  position: relative;
  z-index: 2;
}
.inline-ticket-item {
  display: flex;
  align-items: center;
  background-color: var(--white);
  padding: 14px 16px 14px 40px;
  border: 1px solid #E1E1E1;
  border-radius: 32px;
  color: var(--link);
}
.inline-ticket-item:not(:last-child) {
  margin-bottom: 24px;
}
.inline-ticket-item__title {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  margin: 0;
  flex: 0 0 36%;
}
.inline-ticket-item__title .icon {
  margin-right: 24px;
  top: -2px;
}
.inline-ticket-item__content {
  flex: 0 0 50%;
  padding: 0 24px 0 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
}
.inline-ticket-item__content .t-price {
    margin-right: 56px;
}
.inline-ticket-item .btn {
  margin-left: auto;
}
.staff-section {
  position: relative;
}
.staff-section .section-title {
  max-width: 75%;
  text-align: center;
  margin: 0 auto 72px;
}
.staff-item {
  position: relative;
  padding: 40px;
  border-radius: 40px;
  box-shadow: 0px 8px 80px 0px #5859AB1A;
}
.staff-item__label {
  background-color: var(--orange);
  font-weight: 600;
  color: var(--white);
  padding: 1px 12px;
  border-radius: 12px;
  position: absolute;
  top: 12px;
  right: 24px;
}
.staff-item__head {
  display: flex;
}
.staff-item__icon {
  flex: 0 0 64px;
  margin-right: 32px;
}
.staff-item__title {
  font-weight: 600;
}
.staff-item__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.staff-item__body ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--link);
}
.staff-item__body ul li:first-child {
  padding-top: 0;
}
.staff-item__body ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.swiper.staff-carousel {
  overflow: visible;
}
.staff-carousel.swiper .swiper-pagination {
  display: none;
}
.staff-carousel .staff-item {
  height: 100%;
}
.staff-carousel .staff-item__title {
  max-width: 200px;
}
.simple-tabs {
  position: relative;
  z-index: 3;
}
.tab-categories-section {
  position: relative;
  background-color: #FFF7EA;
  background-image: url(../images/orange-bg.svg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 1350px;
}
.tab-categories-section .animation-icons img:first-child {
  bottom: 60px;
  right: -160px;
}
.tab-categories-section .animation-icons img:nth-child(2) {
  top: -285px;
  right: -170px;
}
.tab-categories-section .animation-icons img:nth-child(3) {
  bottom: 0;
  left: -180px;
}
.program-descr {
  color: var(--white);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  max-width: 80%;
}
.program-item {
  position: relative;
  padding: 40px;
  border: 2px solid var(--white);
  border-radius: 32px;
  color: var(--white);
  font-weight: 600;
}
.program-item__title {
  font-size: 32px;
  line-height: 1;
  max-width: 90%;
}
.program-item__content {
  margin-top: 24px;
}
.program-item__list {
  margin-top: 32px;
}
.program-item__list > div {
  margin-bottom: 16px;
}
.program-item__list > div:nth-child(even) {
  margin-bottom: 32px;
}
.program-item__list > div .icon {
  margin-right: 12px;
}
.btn.program-item__btn {
  border: none;
  margin-top: 8px;
  padding: 19px 40px;
  text-transform: none;
  color: var(--orange);
}
.swiper.program-carousel {
  overflow: visible;
  padding-top: 54px;
}
.swiper.program-carousel .swiper-pagination {
  display: none;
}
.swiper.program-carousel.navs-top .swiper-button-prev,
.swiper.program-carousel.navs-top .swiper-button-next {
  top: -22px;
}
.simple-tabs .tabs {
  max-width: 100%;
  overflow-x: scroll;
}
.simple-tabs .tabs .tab-button a {
  white-space: nowrap;
  padding: 22px 34px;
}
.simple-tabs.orange .tabs .tab-button a {
  color: var(--orange);
}
.tab-categories-section .tabs-content {
  padding-top: 54px;
}
.no-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.no-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.no-scroll::-webkit-scrollbar-thumb {
  background: transparent;
}
.no-scroll::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
.bday-calculate-animation {
  position: relative;
  height: 120px;
  z-index: -1;
}
.bday-calculate-animation .animation-icons img:first-child {
  top: -120px;
  left: 100px;
}
.bday-calculate {
  position: relative;
  clip-path: polygon(calc(100% - 242.43px) 18.413px, calc(100% - 242.43px) 18.413px, calc(100% - 245.92166px) 15.189500512px, calc(100% - 249.63328px) 12.269958216px, calc(100% - 253.54482px) 9.662701364px, calc(100% - 257.63624px) 7.376058208px, calc(100% - 261.8875px) 5.418357px, calc(100% - 266.27856px) 3.797925992px, calc(100% - 270.78938px) 2.523093436px, calc(100% - 275.39992px) 1.602187584px, calc(100% - 280.09014px) 1.043536688px, calc(100% - 284.84px) 0.855469px, 60px 0.855469px, 60px 0.855469px, 50.2676847px 1.640768168px, 41.0353536px 3.914310624px, 32.4265389px 7.552563796px, 24.5647728px 12.431995112px, 17.5735875px 18.429072px, 11.5765152px 25.420261888px, 6.6970881px 33.282032204px, 3.0588384px 41.890850376px, 0.7852983px 51.123183832px, 9.9333241925913E-31px 60.8555px, 0px calc(100% - 284.814px), 0px calc(100% - 284.814px), 0.18843588px calc(100% - 280.060895px), 0.74817024px calc(100% - 275.36704px), 1.67084316px calc(100% - 270.752625px), 2.94809472px calc(100% - 266.23784px), 4.571565px calc(100% - 261.842875px), 6.53289408px calc(100% - 257.58792px), 8.82372204px calc(100% - 253.493165px), 11.43568896px calc(100% - 249.5788px), 14.36043492px calc(100% - 245.865015px), 17.5896px calc(100% - 242.372px), 242.429px calc(100% - 17.7px), 242.429px calc(100% - 17.7px), 245.921039px calc(100% - 14.477px), 249.633152px calc(100% - 11.5576px), 253.545233px calc(100% - 8.9502000000002px), 257.637176px calc(100% - 6.6632px), 261.888875px calc(100% - 4.7049999999999px), 266.280224px calc(100% - 3.0839999999998px), 270.791117px calc(100% - 1.8086000000001px), 275.401448px calc(100% - 0.88720000000012px), 280.091111px calc(100% - 0.32820000000015px), 284.84px calc(100% - 0.14000000000033px), calc(100% - 60px) calc(100% - 0.1400000000001px), calc(100% - 60px) calc(100% - 0.1400000000001px), calc(100% - 50.26698px) calc(100% - 0.92548999999985px), calc(100% - 41.03424px) calc(100% - 3.1995199999999px), calc(100% - 32.42526px) calc(100% - 6.83843px), calc(100% - 24.56352px) calc(100% - 11.71856px), calc(100% - 17.5725px) calc(100% - 17.71625px), calc(100% - 11.57568px) calc(100% - 24.70784px), calc(100% - 6.6965399999999px) calc(100% - 32.56967px), calc(100% - 3.0585599999999px) calc(100% - 41.17808px), calc(100% - 0.78522000000021px) calc(100% - 50.40941px), calc(100% - 0px) calc(100% - 60.14px), calc(100% - 0px) 285.525px, calc(100% - 0px) 285.525px, calc(100% - 0.18849999999975px) 280.771895px, calc(100% - 0.74839999999949px) 276.07804px, calc(100% - 1.6713000000002px) 271.463625px, calc(100% - 2.9487999999999px) 266.94884px, calc(100% - 4.5725px) 262.553875px, calc(100% - 6.5340000000001px) 258.29892px, calc(100% - 8.8249000000001px) 254.204165px, calc(100% - 11.4368px) 250.2898px, calc(100% - 14.3613px) 246.576015px, calc(100% - 17.59px) 243.083px, calc(100% - 242.43px) 18.413px);
  background: linear-gradient(180deg, #F37FAC 0%, #56106F 96.82%);
}
.bday-calculate::before {
  content: "";
  position: absolute;
  top: -240px;
  left: 100px;
  width: 470px;
  height: 738px;
  background-image: url(../images/animation/56.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: -1;
}
.bday-calculate .section-title {
  max-width: 90%;
  margin: 0 auto 72px;
}
.bday-calculate .animation-icons img:first-child {
  bottom: 0;
  right: 0;
}
.calculate-form {
  position: relative;
  color: var(--accent);
  z-index: 3;
}
.calculate-form__title.title {
  font-family: "rounds", sans-serif;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.calculate-form__content {
  background-color: var(--white);
  border-radius: 32px;
  padding: 40px 32px;
}
.calculate-form__content.p-32 {
  padding: 32px;
}
.calculate-form__descr {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 32px;
}
.calculate-form__descr ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.calculate-form__descr ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.calculate-form__descr ul li i {
  position: relative;
  top: -2px;
  margin-right: 16px;
  display: block;
  width: 24px;
  height: 24px;
}
.calculate-form__row {
  display: grid;
  grid-template-columns: 59.45% auto;
  grid-gap: 32px;
}
.form-t {
  opacity: .4;
  margin-bottom: 24px;
  color: #000000;
}
.form-t2 {
  font-weight: 600;
  margin: 0 0 28px;
}
.form-t3 {
  opacity: .5;
  font-weight: 700;
}
.form-item {
  position: relative;
}
.form-item.equal-after::after {
  content: "=";
  position: absolute;
  top: 0;
  right: -25px;
  font-size: 40px;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
}
.form-radio input {
  display: none;
}
.form-radio input:checked + label {
  opacity: 1;
  background-color: transparent;
}
.form-radio input:checked + label::after {
  opacity: 1;
}
.form-radio label {
  position: relative;
  padding: 20px;
  line-height: 18px;
  background-color: rgba(45, 46, 135, .1);
  border-radius: 40px;
  opacity: .5;
  cursor: pointer;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-radio label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 2px solid var(--accent);
  border-radius: 40px;
  opacity: 0;
}
.form-radio label b {
  font-size: 20px;
}
.form-input input {
  border: 2px solid var(--accent);
  color: var(--accent);
  text-align: center;
  padding: 16px 12px;
  width: 100%;
  height: 100%;
}
.form-input input:disabled {
  opacity: .5;
  border: none;
  background-color: rgba(45, 46, 135, .1);
}
.form-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 32px;
  margin-bottom: 32px;
}
.form-items:last-child {
  margin-bottom: 0;
}
.calculate-form .download {
  margin-top: 32px;
  justify-content: center;
}
.calculate-form__result {
  padding: 30px 40px 40px 40px;
  border: 2px solid var(--white);
  border-radius: 32px;
  margin-top: 32px;
  color: var(--white);
  font-size: 20px;
  line-height: 24px;
}
.calculate-form__result ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.calculate-form__result ul li {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.calculate-form__btn.btn {
  width: 100%;
  border: none;
  font-size: 20px;
  line-height: 24px;
  text-transform: none;
  color: var(--accent);
  padding: 24px 16px;
  margin-top: 16px;
}
.result-value {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
.result-value span:last-child {
  font-size: 28px;
}
.result-value.result-value__top {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.result-value.result-value__bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.5);
  margin-top: 24px;
}
.shadow-textblock {
  position: relative;
  z-index: 2;
  box-shadow: 0px 8px 80px 0px #5859AB1A;
  background-color: var(--white);
  padding: 60px;
  border-radius: 40px;
}
.shadow-textblock__inner {
  display: flex;
}
.shadow-textblock__inner .shadow-textblock__content {
  padding-right: 60px;
}
.shadow-textblock__inner .shadow-textblock__img {
  flex: 0 0 53.15%;
}
.shadow-textblock__img {
  position: relative;
  height: 450px;
}
.shadow-textblock__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.shadow-textblock__content {
  font-size: 24px;
  line-height: 30px;
}
.shadow-textblock__content h1,
.shadow-textblock__content h2,
.shadow-textblock__content h3,
.shadow-textblock__content h4,
.shadow-textblock__content h5,
.shadow-textblock__content h6 {
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 30px;
}
.shadow-textblock__content p {
  margin-bottom: 24px;
}
.shadow-textblock .bg-text {
  margin-top: 60px;
}
.bg-text {
  font-weight: 600;
  padding: 48px;
  border-radius: 32px;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}
.bg-text p {
  margin-bottom: 24px;
}
.bg-text.purple {
  background: #56106F1A;
  color: var(--accent);
}
.bg-text .btn {
  margin-top: 16px;
}
.shadow-text-section {
  position: relative;
}
.shadow-text-section .animation-icons img:first-child {
  top: 160px;
  left: -60px;
}
.shadow-text-section .animation-icons img:nth-child(2) {
  top: -60px;
  right: 0;
}
.text-note {
  position: relative;
  padding: 44px 48px 42px;
  background-color: rgba(231, 30, 108, .05);
  border-radius: 32px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  height: 100%;
}
.text-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 29px;
  width: 38px;
  height: 44px;
  background-image: url(/images/svg/note.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.text-note h1,
.text-note h2,
.text-note h3,
.text-note h4,
.text-note h5,
.text-note h6 {
  font-size: 24px;
  line-height: 1;
  color: var(--pink);
  margin: 0 0 20px;
  font-weight: 700;
  padding-left: 28px;
}
.text-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.text-note ul li {
    position: relative;
    padding-left: 28px;
}
.text-note ul li:not(:last-child) {
    margin-bottom: 6px;
}
.text-note ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background-image: url(/images/svg/pink-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 12px;
}
.social-box {
  padding: 40px 20px;
  border: 1px solid var(--accent);
  border-radius: 32px;
  text-align: center;
  font-weight: 600;
  height: 100%;
}
.social-box h1, .social-box h2, .social-box h3, .social-box h4, .social-box h5, .social-box h6 {
  font-family: var(--userfont);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 0 24px;
}
.social-box .btn {
  margin-top: 32px;
}
.social-box .btn i {
  top: -2px;
  position: relative;
  margin-right: 12px;
  display: inline-block;
}
.step-line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E9E9E9;
  margin: 64px 0 48px;
}
.step-line__inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--accent);
  z-index: 2;
}
.order_block {
  font-weight: 700;
}
.order_block .title {
  font-weight: 600;
  margin: 0 0 40px;
}
.order_block .order_block__title.title {
  margin-bottom: 40px;
}
.order_block__head {
  margin-bottom: 64px;
}
.order_block .btn {
  text-transform: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  height: 76px;
  white-space: nowrap;
}
.order_block .btn .icon {
  margin-right: 16px;
}
.order_block .text-box {
  margin-bottom: 40px;
}
.order_block .text-box .text-box__descr {
  font-size: 18px;
}
.w-100 {
  width: 100% !important;
}
.pay-icons {
  font-weight: bold;
  padding-left: 48px;
}
.pay-icons img {
  margin-left: 20px;
}
.warning-text {
  margin: 20px 0;
  font-size: 13px;
  line-height: 18px;
  color: var(--pink);
  font-weight: bold;
}
.warning-text ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.warning-text ul li {
  display: flex;
}
.warning-text ul li::before {
  content: "";
  display: block;
  position: relative;
  top: 2px;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background-image: url(/images/svg/warning-pink.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 12px;
}
.warning-text ul li:not(:last-child) {
  margin-bottom: 5px;
}



.header {
    overflow: unset;
}
.hamburger {
    background: url('/images/svg/burger.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #F5F5F5;
}
.hamburger.close {
    background: url('/images/svg/close.svg');
}
.align-items-center {

}
.main-header__bottom {

}
.dropdown-menu {
    display: none;
    width: 419px;
}
.dropdown-menu.active {
    display: block;
    position: absolute;
    top: -50px;
    left: 17.5px;
    background: #fff;
    width: fit-content;
    padding: 30px;
    z-index: 1;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}
.dropdown-menu.active::before {
	content: "";
	position: absolute;
	top: -45px;
	left: 0;
	width: 40px;
	height: 60px;
	background: #FFF;
}
.dropdown-menu ul {
    display: flex;
    flex-direction: column;
    margin: 0px 10px;
}
.dropdown-menu ul li {
    margin: 0 !important;
}
.dropdown-menu ul li:last-child {
    margin-bottom: 0;
}
.dropdown-menu__container {
    position: sticky;
    top:153px;
    z-index: 100;
}
.dropdown-menu .main-nav li a {
    margin-bottom: 20px;
}
.dropdown-menu .main-nav li a:hover {
    text-decoration: underline;
}
.dropdown-menu ul li:last-child  a {
    margin-bottom: 10px;
}
.header.header-colored .dropdown-menu.active,
.header.header-colored .dropdown-menu.active::before {
    background: #F3FDFF;
    top: -25px;
}
@media(max-width: 512px) {
    .dropdown-menu__container {
        z-index: 8;
    }
    .dropdown-menu.active {
        top: -30px;
        padding-top: 50px;
    }
    .dropdown-menu::before {
        display: none;
    }
    .header__bottom {
        padding: 22px 0;
        z-index: 9;
    }
}
.doc_container {
    display: flex;
}
.doc_container img {
    flex-basis: 50%;
}
@media(max-width: 512px) {
    .doc_container {
        flex-direction: column;
    }
    .doc_container img {
        flex-basis: unset;
    }
}


.contacts-info {
	display: flex;
	gap: 72px;
}
.contacts-text {
	width: 50%;
	border-radius: 20px;
	padding: 72px 48px;
}
.contacts-text--bg {
	background-color: #00A68B;
	color: #fff;
}
.contacts-text p {
	margin-bottom: 0;
}
.mb-100 {
	margin-bottom: 100px;
}
.contacts-full-text {
	border-radius: 20px;
	padding: 48px;
	background-color: #D6FBF5;
}
.contacts-full-text p {
	margin-bottom: 0;
}
.page {
	padding-top: 210px;
}
.page-title {
	color: #2D2E87;
	font-weight: 900;
}
.rotate_animate {
	animation: spin 30s linear infinite;
}
@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}
.bottom-nav {
	position: relative;
	display: flex;
	overflow: hidden;
}
.bottom-nav-color {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
}
.bottom-nav-color.r {
	left: unset;
	right: 0;
}
.bottom-nav-item {
	display: flex;
    align-items: center;
	padding: 40px 0;
	font-weight: 600;
}
.bottom-nav-item,
.bottom-nav-item:hover {
	color: var(--white);
	text-decoration: none;
}
.bottom-nav-item__content {
	display: flex;
    align-items: center;
	flex: 1;
	justify-content: center;
	transform: translateX(-30px);
}
.bottom-nav-item__content > span {
	font-size: 24px;
	line-height: 32px;
}
.bottom-nav-item__content .icon {
	margin-left: 40px;
}
.bottom-nav-item__content .icon svg {
	width: 32px;
	height: 32px;
}
.bottom-nav-item.reversed {
	flex-direction: row-reverse;
}
.bottom-nav-item.reversed .bottom-nav-item__content {
	flex-direction: row-reverse;
	transform: translateX(30px);
}
.bottom-nav-item.reversed .bottom-nav-item__content .icon {
	margin-left: 0;
	margin-right: 40px;
}
.bottom-nav-item.reversed > .icon {
	transform: rotate(180deg);
}
.pagination {
	display: flex;
	justify-content: center;
	padding-top: 88px;
}
.pagination__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 60px;
	font-size: 20px;
	text-decoration: none;
}
.pagination__item.active {
	border: 1px solid #2D2E87;
}
.pagination__item.next {
	background-image: url('../images/pagination-arrow.svg');
	background-position: center;
	background-repeat: no-repeat;
}
.pagination__item.prev {
	background-image: url('../images/pagination-arrow.svg');
	transform: rotate(180deg);
	background-position: center;
	background-repeat: no-repeat;
}
.contacts-map {
	margin-bottom: 80px;
}
.popup-form-item {
	display: flex;
	align-items: center;
}
.popup-form-item:not(:last-child) {
	margin-bottom: 24px;
}
.popup-form-item label {
	color: #000000;
    font-weight: 700;
    width: 140px;
    flex: 0 0 140px;
}
.popup-form-item input {
    flex: 1;
    width: 100%;
    border: 1px solid var(--accent);
    border-radius: 32px;
    background-color: transparent;
    padding: 0 24px;
    height: 44px;
}
.popup-form-item textarea {
    flex: 1;
    width: 100%;
    border: 1px solid var(--accent);
    border-radius: 32px;
    background-color: transparent;
    padding: 24px;
    resize: none;
    height: 100px;
}
.popup-form-item input[type="submit"] {
    height: auto;
}
.popup-form-checkbox {
	margin-bottom: 24px;
}
.popup-form-checkbox input {
	display: none;
}
.popup-form-checkbox label {
	position: relative;
	padding-left: 40px;
	font-size: 14px;
	line-height: 18px;
	cursor: pointer;
}
.popup-form-checkbox label::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-image: none;
	background-size: 14px 14px;
    background-position: center center;
    background-repeat: no-repeat;
	border: 1px solid var(--accent);
	transition: all .4s ease;
}
.popup-form-checkbox input:checked + label::before {
	background-color: var(--accent);
	background-image: url(/images/svg/check-solid-white.svg);
}
.form-note {
    font-size: 20px;
    line-height: 24px;
    color: var(--green);
}
.swipe-menu {
    position: absolute;
    background: #FFF;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    z-index: 101;
    overflow: auto;
    min-height: auto;
    box-shadow: 2px 0 4px rgba(0,0,0,.1);
    padding: 24px 20px 100%;
    transition: all .4s ease;
    left: -100%;
    opacity: 0;
    visibility: hidden;
    display: none;
}
.swipe-menu.show {
    left: 0;
    opacity: 1;
    visibility: visible;
}
.swipe-menu .buy-online {
    border-radius: 6px;
    text-transform: unset;
    font-size: 14px;
    padding: 9px 11px !important;
}
.swipe-menu__close {
	position: relative;
	display: block;
	transform: rotate(45deg);
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.swipe-menu__close::before,
.swipe-menu__close::after {
	content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 24px;
    height: 1.5px;
    background: #000;
    transition: ease .3s;
}
.swipe-menu__close::after {
	transform: translateX(-50%) rotate(90deg);
}
.swipe-menu__body {
	margin: 30px 0;
}
.swipe-menu-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.swipe-menu-list li {
	margin-bottom: 15px;
}
.swipe-menu-list li a {
	text-decoration: none;
	font-size: 16px;
    line-height: 28px;
}
.swipe-menu .phone-block {
	display: flex !important;
}
.swipe-menu .callback-link {
	font-size: 12px;
    line-height: 18px;
    margin-left: 46px;
    margin-top: 10px;
    font-weight: 600;
    opacity: .6;
}
.swipe-menu .social-icons {
    margin-top: 30px;
    justify-content: center;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal__container {
  background-color: #fff;
  padding: 48px;
  width: 600px;
  max-height: 100vh;
  border-radius: 40px;
  overflow-y: auto;
  box-sizing: border-box;
}

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

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 32px;
  color: var(--accent);
  box-sizing: border-box;
  font-family: "rounds", sans-serif;
  text-transform: uppercase;
}

.modal__close {
  background: transparent;
  border: 0;
}
.modal__close:focus,
.modal__close:active {
  outline: none;
}

.modal__header .modal__close:before {
  content: "\2715";
  color: var(--accent);
  font-size: 24px;
}

.modal__content {
  margin-top: 48px;
}



/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}
.bday-calculate .download {margin-top: 40px;}
.bday-calculate .download,
.bday-calculate .download span {
  font-family: var(--userfont);
  color: var(--white);
  display: inline-flex;
}
.bday-calculate .download svg path {
  fill: var(--white);
}
@media (max-width:756px) {
    .contacts-info {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    .contacts-info .contacts-text {
        width: 100%;
    }
}

.personal-link:hover {
    opacity: 0.5;
}
.main-header__top .personal-link {
    margin-left: 15px;
}
.main-header__bottom .personal-link {
    display: none;
}
@media (max-width:991px) {
    .main-header__bottom .personal-link {
        display: block;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 0px;
    }
    .text-adv-items {
        
    }
}

.text-adv-section .advant-items {
    display: none;
}
.info-box__inner .info-box__content {
    flex: 0 0 60%;
}
.personal-link img {
    width: 28px;
    height: 28px;
}

.about_fish-spa {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--link);
    margin: 0 0 55px;
    position: relative;
    z-index: 2;
}

.dr__textblock {
  position: relative;
  background: #56106F;
  color: #FFFFFF;
  border-radius: 32px;
  padding: 64px 102px;
  text-align: center;
  overflow: hidden;
  font-size: var(--regular-text);
  margin-bottom: 140px;
  z-index: 2;
}
.dr__textblock::before {
    content: "";
    position: absolute;
    opacity: .4;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    top: 0;
    left: -35px;
    width: 268px;
    height: 214px;
    background-image: url(../images/animation/19.svg);
}
.dr__textblock a {
    text-decoration: none;
}
.dr__textblock a:hover {
    text-decoration: underline;
}
.dr_text_block .animation-icons img:first-child {
    bottom: -20px;
    left: -50px;
    top: auto;
    max-width: 300px;
}
.dr_text_block .animation-icons img:nth-child(2) {
    top: -100px;
    right: 0;
}
.info-box__btn_white {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}
footer .phone-block {
    font-size: 16px;
}

.video-box {
    padding-bottom: 0 !important;
}
.pulse {
    cursor: pointer;
}
.hidden {
    display: none !important;
}
iframe {
  border-radius: 20px;
}
.main-user-consent-request-popup .main-user-consent-request-popup-cont {
	border-radius: 40px;
}
.main-user-consent-request-popup-buttons .main-user-consent-request-popup-button {
	padding: 18px 24px 16px;
	text-transform: uppercase;
	border: none;
	border: 1px solid var(--border-color);
    font-weight: 600;
	height: auto;
	border-radius: var(--border-40);
	font-size: 18px;
    line-height: 22px;
}
.main-user-consent-request-popup-buttons .main-user-consent-request-popup-button.main-user-consent-request-popup-button-acc {
	background: var(--accent);
	color: var(--white);
}
.page-notfound {
	position: relative;
	padding-top: 314px;
	text-align: center;
	padding-bottom: 240px;
	overflow: hidden;
}
.page-notfound .title {
	line-height: 88px;
	margin: 0 0 24px;
}
.page-notfound .descr {
	font-size: 20px;
	line-height: 24px;
	color: var(--accent);
	font-weight: 700;
	margin: 0 0 56px;
}
.page-notfound .btn {
	text-transform: none;
}
.page-notfound .notfound-img {
	position: absolute;
	bottom: -20px;
	right: 5%;
}
