/**
 * Breakpoints
 * WordPress Breakpoints: 782px 600px
 * Other Breakpoints: 1280px 960px 425px
 * Example usage:
 *
 *   .container {
 *     flex-direction: column;
 *     @include above(782px) {
 *       flex-direction: row;
 *     }
 *   }
 *
 */
#wpadminbar {
  background: none;
}
#wpadminbar ul.ab-top-menu:before {
  content: " ";
  background-color: rgba(29, 35, 39, 0.9);
  width: 10px;
  height: 46px;
  display: block;
  float: left;
}
@media (min-width: 782px) {
  #wpadminbar ul.ab-top-menu:before {
    height: 32px;
  }
}
#wpadminbar ul.ab-top-menu:after {
  content: " ";
  width: 40px;
  height: 46px;
  display: block;
  background: rgba(29, 35, 39, 0.9);
  border-radius: 0 0 10px 0;
  float: left;
}
@media (min-width: 782px) {
  #wpadminbar ul.ab-top-menu:after {
    height: 32px;
  }
}
#wpadminbar ul.ab-top-menu > li {
  background: rgba(29, 35, 39, 0.9);
}
#wpadminbar ul.ab-top-menu #wp-admin-bar-site-name a:after {
  content: " Dashboard";
}
#wpadminbar ul.ab-top-menu #wp-admin-bar-site-name .ab-sub-wrapper {
  display: none;
}
#wpadminbar ul.ab-top-secondary {
  display: none;
}

.container {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 400px);
}
@media (max-width: 1400px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 60px);
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

summary::-webkit-details-marker {
  display: none;
}

html {
  line-height: 1;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=submit],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
}

select {
  display: block;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
}

@font-face {
  font-family: "Supernett cn Bold";
  src: url("fonts/supernett-cn-bold.woff2") format("woff2"), url("fonts/supernett-cn-bold.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}
h1, h2, h3, h4, h5 {
  font-family: "Supernett cn Bold", sans-serif;
  color: #1E2656;
  text-transform: uppercase;
}

p, a, li {
  font-family: "fot-seurat-pron", sans-serif;
  color: #1E2656;
  line-height: 1.36;
}

.accordion {
  position: relative;
  padding: 185px 0;
  background: #FFC62B;
}
@media (max-width: 600px) {
  .accordion {
    padding: 75px 0;
  }
}
.accordion .container {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 960px) {
  .accordion .container {
    display: block;
  }
}
.accordion__content {
  grid-column: span 5;
}
@media (max-width: 1200px) {
  .accordion__content {
    grid-column: span 7;
  }
}
.accordion__heading {
  font-size: clamp(56px, 4.1666666667vw, 80px);
}
.accordion__text {
  font-size: clamp(16px, 1.1458333333vw, 22px);
  margin: 52px 0 66px;
}
.accordion__item {
  margin: 0 0 66px;
}
@media (max-width: 600px) {
  .accordion__item {
    margin: 0 0 30px;
  }
}
.accordion__item[open] .icon:after {
  transform: translate(-50%, -50%) rotate(0);
}
.accordion__item summary {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #1E2656;
  padding: 0 0 16px;
  cursor: pointer;
  font-family: "Supernett cn Bold", sans-serif;
  text-transform: uppercase;
  color: #1E2656;
  font-size: 30px;
}
@media (max-width: 600px) {
  .accordion__item summary {
    font-size: 26px;
  }
}
.accordion__item .icon {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #1E2656;
  transition: background 0.3s;
}
.accordion__item .icon:before, .accordion__item .icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background: #1E2656;
  transform: translate(-50%, -50%);
  transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), background 0.3s;
}
.accordion__item .icon:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.accordion__item p {
  font-size: clamp(16px, 1.1458333333vw, 22px);
  margin: 40px 0 0;
}
@media (max-width: 600px) {
  .accordion__item p {
    margin: 20px 0 40px;
  }
}
.accordion__character {
  position: relative;
  top: 20px;
  left: -14px;
  grid-column: 8/span 4;
}
@media (max-width: 960px) {
  .accordion__character {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    top: 0;
    left: 0;
    display: block;
  }
}
@media (max-width: 960px) {
  .accordion__character {
    display: none;
  }
}
.accordion .border {
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-100%);
}

.banner {
  background: #98DEFB;
  text-align: center;
  padding: 64px 0 150px;
}
.banner .container {
  width: calc(100% - 156px);
}
@media (max-width: 600px) {
  .banner .container {
    width: calc(100% - 60px);
  }
}
.banner .logo {
  width: 226px;
  height: auto;
}
@media (max-width: 600px) {
  .banner .logo {
    width: 150px;
  }
}
.banner .bubbles-left {
  position: absolute;
  top: -6px;
  left: 124px;
  width: 316px;
  overflow: visible;
}
@media (max-width: 960px) {
  .banner .bubbles-left {
    display: none;
  }
}
.banner .bubbles-right {
  position: absolute;
  top: 24px;
  right: 124px;
  width: 184px;
  overflow: visible;
}
@media (max-width: 960px) {
  .banner .bubbles-right {
    display: none;
  }
}
.banner__heading {
  font-size: clamp(56px, 4.1666666667vw, 80px);
  margin: 22px 0 32px;
}
.banner__text {
  max-width: 740px;
  margin: 0 auto 72px;
}
.banner__text p {
  font-size: 16px;
  line-height: 1.78;
}
.banner__text strong {
  font-family: "Supernett cn Bold", sans-serif;
  font-size: 18px;
}
.banner__slider {
  position: relative;
}
.banner__item {
  text-align: left;
}
.banner__item * {
  opacity: 0.2;
  transition: opacity 0.5s;
}
.banner__item.swiper-slide-active * {
  opacity: 1;
}
.banner__item.swiper-slide-active .banner__image {
  transform: rotate(5deg);
}
@media (max-width: 600px) {
  .banner__item.swiper-slide-active .banner__image {
    transform: rotate(2deg);
  }
}
.banner__item.swiper-slide-active .banner__promo {
  transform: scale(1);
}
.banner__image {
  width: 100%;
  aspect-ratio: 1/0.7;
  border-radius: 16px;
  transform: rotate(-6deg);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.5s;
}
@media (max-width: 600px) {
  .banner__image {
    transform: rotate(-3deg);
  }
}
.banner__title {
  font-size: clamp(32px, 2.0833333333vw, 40px);
  margin: 52px 0 14px;
}
@media (max-width: 600px) {
  .banner__title {
    margin: 32px 0 14px;
  }
}
.banner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 26px;
  margin: 0 0 26px;
}
.banner__tags p {
  font-size: 12px;
}
.banner__promo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: -36px;
  left: -82px;
  width: 134px;
  height: 134px;
  border-radius: 50%;
  background: #FFC62B;
  padding: 10px;
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.5s;
}
@media (max-width: 960px) {
  .banner__promo {
    left: -22px;
  }
}
.banner__promo p {
  font-family: "Supernett cn Bold", sans-serif;
  text-transform: uppercase;
  color: #1E2656;
  font-size: 21px;
  line-height: 1.19;
}
.banner__controls {
  position: absolute;
  width: 100%;
  display: flex;
  top: 50%;
  transform: translateY(-50%);
  justify-content: space-between;
  z-index: 2;
}
@media (max-width: 600px) {
  .banner__controls {
    top: auto;
    bottom: -40px;
    transform: translateY(100%);
  }
}
.banner__prev, .banner__next {
  transition: opacity 0.3s;
  cursor: pointer;
}
.banner__prev:hover, .banner__next:hover {
  opacity: 0.7;
}
.banner__prev.swiper-button-disabled, .banner__next.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.banner__prev svg, .banner__next svg {
  width: 56px;
  height: auto;
}

.button {
  display: inline-block;
  background: #ED7433;
  color: #FFFFFF;
  font-family: "fot-seurat-pron", sans-serif;
  border: 0;
  padding: 12px 52px;
  font-size: 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s, opacity 0.3s;
}
.button:hover {
  background: #ab460f;
}

.footer p, .footer a {
  color: #FFFFFF;
  opacity: 0.6;
}
.footer__characters {
  height: 400px;
  position: relative;
  background: #98DEFB;
}
@media (max-width: 1200px) {
  .footer__characters {
    height: 300px;
  }
}
@media (max-width: 960px) {
  .footer__characters {
    height: 40vw;
  }
}
.footer__characters .clouds {
  position: absolute;
  bottom: 182px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  transform: translateX(100%);
}
@media (max-width: 1200px) {
  .footer__characters .clouds {
    width: 150%;
    bottom: 110px;
  }
}
.footer__characters .characters {
  display: block;
  margin: 0 auto;
  width: calc(100% - 200px);
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -90px;
  overflow: visible;
}
@media (max-width: 1200px) {
  .footer__characters .characters {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .footer__characters .characters {
    bottom: -10px;
  }
}
.footer__characters .border {
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-100%);
}
.footer__characters .wave {
  position: absolute;
  bottom: -56px;
  left: 0;
  width: 100vw;
  height: auto;
  overflow: visible;
}
@media (max-width: 960px) {
  .footer__characters .wave {
    bottom: -10px;
  }
}
.footer__main {
  position: relative;
  background: #1E2656;
  padding: 12px 0 125px;
  z-index: 2;
}
.footer__main .container {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 1200px) {
  .footer__main .container {
    display: block;
  }
}
@media (max-width: 600px) {
  .footer__main {
    padding: 50px 0;
  }
}
.footer__message {
  font-family: "Supernett cn Bold", sans-serif;
  font-size: clamp(32px, 2.0833333333vw, 40px);
  grid-column: span 12;
  margin: 0 0 36px;
}
@media (max-width: 1200px) {
  .footer__message {
    text-align: center;
    max-width: 620px;
    margin: 24px auto 0;
  }
}
.footer__map-holder {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 28%;
  grid-column: 1/span 9;
}
@media (max-width: 1200px) {
  .footer__map-holder {
    margin: 50px 0;
  }
}
@media (max-width: 600px) {
  .footer__map-holder {
    padding-bottom: 58%;
  }
}
.footer__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.footer__bubbles-top, .footer__bubbles-bottom {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.footer__bubbles-top {
  top: -16px;
  right: -32px;
}
.footer__bubbles-bottom {
  bottom: -16px;
  left: -14px;
}
.footer__column {
  display: flex;
  flex-direction: column;
  grid-column: 11/span 2;
}
@media (max-width: 1200px) {
  .footer__column {
    text-align: center;
    margin: 24px 0 0;
  }
}
.footer__bottom p, .footer__bottom a {
  font-size: 15px;
  margin: 0 0 24px;
}
.footer__bottom a {
  display: inline-block;
  text-decoration: underline;
}
.footer__bottom a:hover {
  text-decoration: none;
}
.footer__copyright {
  font-size: 15px;
  margin: auto 0 0;
}
@media (max-width: 1200px) {
  .footer__copyright {
    text-align: center;
  }
}

.gallery {
  position: relative;
  padding: 185px 0;
  background: #98DEFB;
}
@media (max-width: 600px) {
  .gallery {
    padding: 75px 0;
  }
}
.gallery__heading {
  font-size: clamp(56px, 4.1666666667vw, 80px);
}
.gallery__video-holder {
  position: relative;
  margin: 130px auto 0;
  width: calc(100% - 260px);
  padding-bottom: 53.5%;
  height: 0;
}
@media (max-width: 1400px) {
  .gallery__video-holder {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .gallery__video-holder {
    margin: 75px 0 0;
  }
}
@media (max-width: 600px) {
  .gallery__video-holder {
    padding-bottom: 68%;
  }
}
.gallery iframe, .gallery__video {
  width: 100%;
  display: block;
  border-radius: 22px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.gallery__video-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  border-radius: 22px;
  cursor: pointer;
  transition: opacity 0.3s, filter 0.3s;
  z-index: 3;
}
.gallery__video-play:hover {
  filter: brightness(0.9);
}
.gallery__video-play.hide {
  opacity: 0;
  pointer-events: none;
}
.gallery__video-play svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 226px;
  height: auto;
}
@media (max-width: 960px) {
  .gallery__video-play svg {
    width: 126px;
  }
}
@media (max-width: 600px) {
  .gallery__video-play svg {
    width: 75px;
  }
}
.gallery__promo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: -74px;
  left: -85px;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  background: #BAF0FF;
  padding: 32px;
  z-index: 4;
}
@media (max-width: 1400px) {
  .gallery__promo {
    left: -35px;
  }
}
@media (max-width: 960px) {
  .gallery__promo {
    display: none;
  }
}
.gallery__promo p {
  font-family: "Supernett cn Bold", sans-serif;
  text-transform: uppercase;
  color: #1E2656;
  font-size: 28px;
  line-height: 1.1;
}
.gallery__bubbles-top {
  position: absolute;
  top: -80px;
  right: -30px;
  z-index: 4;
}
@media (max-width: 600px) {
  .gallery__bubbles-top {
    display: none;
  }
}
.gallery__bubbles-bottom {
  position: absolute;
  bottom: -46px;
  left: -30px;
  z-index: 4;
}
@media (max-width: 600px) {
  .gallery__bubbles-bottom {
    display: none;
  }
}
.gallery .character {
  position: absolute;
  top: 160px;
  right: -244px;
  -webkit-animation: none;
          animation: none;
  transform: rotate(59deg);
  width: 405px;
  height: auto;
}
@media (max-width: 1400px) {
  .gallery .character {
    display: none;
  }
}
.gallery .swiper-scrollbar {
  height: 13px;
  width: 100%;
  margin: 0 30px 0 0;
  border-radius: 11px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.1);
}
.gallery .swiper-scrollbar-drag {
  height: 100%;
  background: #FFFFFF;
  border-radius: 11px;
}
.gallery__images {
  margin: 180px 0 125px;
  cursor: -webkit-grab;
  cursor: grab;
}
@media (max-width: 600px) {
  .gallery__images {
    margin: 75px 0 30px;
  }
}
.gallery__slide.swiper-slide-active .gallery__image {
  transform: rotate(-6deg);
}
@media (max-width: 600px) {
  .gallery__slide.swiper-slide-active .gallery__image {
    transform: rotate(-2deg);
  }
}
.gallery__image {
  border-radius: 16px;
  overflow: hidden;
  transform: rotate(5deg);
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.5s;
}
.gallery__image-inner {
  width: 100%;
}

html {
  background: #98DEFB;
}

::-moz-placeholder {
  color: #a9a9a9;
}

:-ms-input-placeholder {
  color: #a9a9a9;
}

::placeholder {
  color: #a9a9a9;
}

::-moz-selection {
  background: #ACCEF7;
  color: #FFFFFF;
}

::selection {
  background: #ACCEF7;
  color: #FFFFFF;
}

body {
  opacity: 0;
  transition: opacity 1.4s;
}
body.is-ready {
  opacity: 1;
}

.gform_wrapper .gform_body .gfield {
  margin: 0 0 42px;
}
.gform_wrapper .gform_body .gfield .gfield_label {
  display: none;
}
.gform_wrapper .gform_body .gfield input[type=text],
.gform_wrapper .gform_body .gfield input[type=number],
.gform_wrapper .gform_body .gfield input[type=tel],
.gform_wrapper .gform_body .gfield input[type=email] {
  padding: 6px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-family: "fot-seurat-pron", sans-serif;
  font-size: 12px;
  width: 100%;
  color: #FFFFFF;
  border-radius: 0;
  opacity: 1;
}
.gform_wrapper .gform_body .gfield input[type=text]::-moz-placeholder, .gform_wrapper .gform_body .gfield input[type=number]::-moz-placeholder, .gform_wrapper .gform_body .gfield input[type=tel]::-moz-placeholder, .gform_wrapper .gform_body .gfield input[type=email]::-moz-placeholder {
  font-size: 12px;
  color: #FFFFFF;
  opacity: 0.7;
}
.gform_wrapper .gform_body .gfield input[type=text]:-ms-input-placeholder, .gform_wrapper .gform_body .gfield input[type=number]:-ms-input-placeholder, .gform_wrapper .gform_body .gfield input[type=tel]:-ms-input-placeholder, .gform_wrapper .gform_body .gfield input[type=email]:-ms-input-placeholder {
  font-size: 12px;
  color: #FFFFFF;
  opacity: 0.7;
}
.gform_wrapper .gform_body .gfield input[type=text]::placeholder,
.gform_wrapper .gform_body .gfield input[type=number]::placeholder,
.gform_wrapper .gform_body .gfield input[type=tel]::placeholder,
.gform_wrapper .gform_body .gfield input[type=email]::placeholder {
  font-size: 12px;
  color: #FFFFFF;
  opacity: 0.7;
}
.gform_wrapper .gform_body .gfield select {
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-family: "fot-seurat-pron", sans-serif;
  font-size: 12px;
  color: #FFFFFF;
  width: 100%;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.8 5.69'%3E%3Cpath d='M10.8,0l-2.7,2.85-2.7,2.85L2.7,2.85,0,0' style='fill:%23fff; opacity:.7;'/%3E%3C/svg%3E");
  background-color: transparent;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center right 18px;
  -webkit-appearance: none;
}
.gform_wrapper .gform_body .gfield select::-moz-placeholder {
  font-size: 12px;
  color: #FFFFFF;
  opacity: 0.7;
}
.gform_wrapper .gform_body .gfield select:-ms-input-placeholder {
  font-size: 12px;
  color: #FFFFFF;
  opacity: 0.7;
}
.gform_wrapper .gform_body .gfield select::placeholder {
  font-size: 12px;
  color: #FFFFFF;
  opacity: 0.7;
}
.gform_wrapper .gform_body .gfield .screen-reader-text {
  display: none;
}
.gform_wrapper .gform_footer img {
  display: none;
}
.gform_wrapper .gform_footer .gform_button {
  display: block;
  margin-left: auto;
}
.gform_wrapper .validation_message {
  color: #fa5252;
  font-size: 10px;
  margin: 10px 0 0;
  font-family: "fot-seurat-pron", sans-serif;
}

.gform_confirmation_wrapper .gform_confirmation_message {
  font-family: "Supernett cn Bold", sans-serif;
  text-transform: uppercase;
  color: #1E2656;
  font-size: 28px;
  color: #FFFFFF;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 22px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 9999;
}
.modal[data-modal-status=open] {
  opacity: 1;
  pointer-events: auto;
}
.modal__window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-width: 744px;
  max-height: calc(100% - 40px);
  overflow: scroll;
  z-index: 2;
}
.modal__header {
  position: relative;
  background: #98DEFB;
  padding: 58px 68px;
}
@media (max-width: 960px) {
  .modal__header {
    padding: 40px;
  }
}
.modal__heading {
  font-size: 81px;
  max-width: 440px;
  line-height: 1.09;
}
@media (max-width: 960px) {
  .modal__heading {
    font-size: 60px;
    max-width: 320px;
  }
}
@media (max-width: 600px) {
  .modal__heading {
    font-size: 48px;
    max-width: 270px;
  }
}
.modal__text {
  max-width: 50%;
  line-height: 2.28;
  margin: 46px 0 70px;
  font-size: 14px;
}
@media (max-width: 960px) {
  .modal__text {
    max-width: 450px;
    margin: 20px 0 40px;
  }
}
.modal .character {
  position: absolute;
  bottom: -50px;
  right: 20px;
  -webkit-animation: bounce 6s infinite ease-in-out;
          animation: bounce 6s infinite ease-in-out;
}
@media (max-width: 960px) {
  .modal .character {
    display: none;
  }
}
.modal__form {
  position: relative;
  background: #1E2656;
  padding: 20px 68px 52px;
}
@media (max-width: 960px) {
  .modal__form {
    padding: 20px 40px 40px;
  }
}
.modal__wave {
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-100%);
  overflow: visible;
}
.modal__close {
  position: absolute;
  top: 32px;
  right: 38px;
  cursor: pointer;
}
.modal__close svg {
  width: 9px;
  height: 15px;
}
.modal__bubbles {
  position: absolute;
  width: 75px;
  top: 110px;
  left: 40px;
  overflow: visible;
}
@media (max-width: 960px) {
  .modal__bubbles {
    top: 40px;
    left: 10px;
  }
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 38, 86, 0.3);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

@-webkit-keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
