@charset "UTF-8";
/*
Відступ як у контейнера для елементів, які поза ним
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #1e1e1e;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
html.no-scroll, body.no-scroll {
  overflow: hidden;
  touch-action: none;
}
html {
  height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #def6f2;
}
.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
section:not(.content):not(.banner):not(header):not(footer):not(.policy) {
  margin-top: 120px;
}
.container {
  width: 100%;
  max-width: 1830px;
  margin: 0 auto;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5 {
  font-family: "Oswald", sans-serif;
}
.title {
  color: #1e1e1e;
  line-height: 120%;
  font-family: "Oswald", sans-serif;
  font-size: clamp(40px, calc(40px
                  + (96 - 40)
                  * ((100vw - 320px) / (1830 - 320))), 96px);
  font-weight: 600;
  text-transform: uppercase;
}
.mini-title {
  color: #1e1e1e;
  line-height: 100%;
  font-family: "Oswald", sans-serif;
  font-size: clamp(32px, calc(32px
                  + (64 - 32)
                  * ((100vw - 320px) / (1830 - 320))), 64px);
  font-weight: 600;
  text-transform: uppercase;
}
.nano-title {
  color: #1e1e1e;
  line-height: 120%;
  font-family: "Oswald", sans-serif;
  font-size: clamp(20px, calc(20px
                  + (24 - 20)
                  * ((100vw - 320px) / (1830 - 320))), 24px);
  font-weight: 500;
  text-transform: uppercase;
}
.big-text {
  color: #1e1e1e;
  line-height: 120%;
  font-family: "Manrope", sans-serif;
  font-size: clamp(16px, calc(16px
                  + (24 - 16)
                  * ((100vw - 320px) / (1830 - 320))), 24px);
  font-weight: 500;
}
.text {
  color: #1e1e1e;
  line-height: 140%;
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, calc(14px
                  + (18 - 14)
                  * ((100vw - 320px) / (1830 - 320))), 18px);
  font-weight: 500;
}
.mini-text {
  color: #1e1e1e;
  line-height: 140%;
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, calc(14px
                  + (16 - 14)
                  * ((100vw - 320px) / (1830 - 320))), 16px);
  font-weight: 500;
}
input, textarea {
  all: unset;
}
a {
  color: #1e1e1e;
  text-decoration: none;
}
a > span {
  color: inherit;
}
.btn-1 {
  all: unset;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  width: 123px;
  height: 50px;
  font-weight: 600;
  line-height: 100%;
  background-color: #def6f2;
  border: 2px solid #00bc99;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}
.btn-1 .button_start, .btn-1 .button_end {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}
.btn-1 .button_start {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-1 .button_end {
  transform: translateY(250%) scale(0.7) rotateX(15deg);
}
.btn-1:hover .button_start {
  transform: translateY(-250%) scale(0.7) rotateX(15deg);
}
.btn-1:hover .button_end {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-1 .t_button {
  color: #1e1e1e;
  font-family: "Oswald", sans-serif;
  font-size: clamp(14px, calc(14px
                  + (16 - 14)
                  * ((100vw - 320px) / (1830 - 320))), 16px);
  font-weight: 600;
  user-select: none;
  transform-style: preserve-3d;
}
.btn-2 {
  all: unset;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  width: 123px;
  height: 50px;
  font-weight: 600;
  line-height: 100%;
  background-color: #fd3a5e;
  border: 2px solid #fd3a5e;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}
.btn-2 .button_start, .btn-2 .button_end {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}
.btn-2 .button_start {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-2 .button_end {
  transform: translateY(250%) scale(0.7) rotateX(15deg);
}
.btn-2:hover .button_start {
  transform: translateY(-250%) scale(0.7) rotateX(15deg);
}
.btn-2:hover .button_end {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-2 .t_button {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(14px, calc(14px
                  + (16 - 14)
                  * ((100vw - 320px) / (1830 - 320))), 16px);
  font-weight: 600;
  user-select: none;
  transform-style: preserve-3d;
}
.btn-3 {
  all: unset;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  width: 123px;
  height: 50px;
  font-weight: 600;
  line-height: 100%;
  background-color: #00bc99;
  border: 2px solid #00bc99;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}
.btn-3 .button_start, .btn-3 .button_end {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}
.btn-3 .button_start {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-3 .button_end {
  transform: translateY(250%) scale(0.7) rotateX(15deg);
}
.btn-3:hover .button_start {
  transform: translateY(-250%) scale(0.7) rotateX(15deg);
}
.btn-3:hover .button_end {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-3 .t_button {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(14px, calc(14px
                  + (16 - 14)
                  * ((100vw - 320px) / (1830 - 320))), 16px);
  font-weight: 600;
  user-select: none;
  transform-style: preserve-3d;
}
.btn-4 {
  all: unset;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  width: 123px;
  height: 50px;
  font-weight: 600;
  line-height: 100%;
  background-color: #fd3a5e;
  border: 2px solid #fd3a5e;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}
.btn-4 .button_start, .btn-4 .button_end {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}
.btn-4 .button_start {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-4 .button_end {
  transform: translateY(250%) scale(0.7) rotateX(15deg);
}
.btn-4:hover .button_start {
  transform: translateY(-250%) scale(0.7) rotateX(15deg);
}
.btn-4:hover .button_end {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-4 .t_button {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(14px, calc(14px
                  + (16 - 14)
                  * ((100vw - 320px) / (1830 - 320))), 16px);
  font-weight: 600;
  user-select: none;
  transform-style: preserve-3d;
}
.btn-5 {
  all: unset;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  width: 123px;
  height: 50px;
  font-weight: 600;
  line-height: 100%;
  background-color: #fff;
  border: 2px solid #fff;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}
.btn-5 .button_start, .btn-5 .button_end {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}
.btn-5 .button_start {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-5 .button_end {
  transform: translateY(250%) scale(0.7) rotateX(15deg);
}
.btn-5:hover .button_start {
  transform: translateY(-250%) scale(0.7) rotateX(15deg);
}
.btn-5:hover .button_end {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-5 .t_button {
  color: #1e1e1e;
  font-family: "Oswald", sans-serif;
  font-size: clamp(14px, calc(14px
                  + (16 - 14)
                  * ((100vw - 320px) / (1830 - 320))), 16px);
  font-weight: 600;
  user-select: none;
  transform-style: preserve-3d;
}
.btn-6 {
  all: unset;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  width: 123px;
  height: 50px;
  font-weight: 600;
  line-height: 100%;
  background-color: #1e1e1e;
  border: 2px solid #00bc99;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}
.btn-6 .button_start, .btn-6 .button_end {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}
.btn-6 .button_start {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-6 .button_end {
  transform: translateY(250%) scale(0.7) rotateX(15deg);
}
.btn-6:hover .button_start {
  transform: translateY(-250%) scale(0.7) rotateX(15deg);
}
.btn-6:hover .button_end {
  transform: translateY(0%) scale(1) rotateX(0deg);
}
.btn-6 .t_button {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(14px, calc(14px
                  + (16 - 14)
                  * ((100vw - 320px) / (1830 - 320))), 16px);
  font-weight: 600;
  user-select: none;
  transform-style: preserve-3d;
}
.marker ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.marker ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  line-height: 140%;
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, calc(14px
                  + (16 - 14)
                  * ((100vw - 320px) / (1830 - 320))), 16px);
  font-weight: 500;
}
.grecaptcha-badge {
  display: none !important;
}
section[id] {
  scroll-margin-top: 70px;
}
.tape {
  display: flex;
  flex-direction: row;
  background-color: #fd3a5e;
  width: 100%;
}
.tape .marquee {
  width: 100%;
  overflow: hidden;
}
.tape .tape-inner {
  display: flex;
  align-items: center;
  gap: clamp(15px, calc(15px
                  + (30 - 15)
                  * ((100vw - 600px) / (1830 - 600))), 30px);
  padding: 10px 10px;
  color: #ffffff;
}
.tape .icon {
  width: 60px;
  height: auto;
}
@media (max-width: 550px) {
  .tape .icon {
    width: 30px;
    height: auto;
  }
}
.tape .title, .tape .mini-title {
  color: inherit;
}
.header {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  padding: 20px 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  transition: top 0.3s ease-in-out;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  background-color: #def6f2;
}
.header.header-hidden {
  transform: translateY(-100%);
}
@media (max-width: 1830px) {
  .header {
    padding: 10px 10px;
  }
}
.header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1390px) {
  .header .container {
    width: 95%;
  }
}
.header .logo img {
  width: 128px;
}
@media (max-width: 1830px) {
  .header .logo img {
    width: 102px;
  }
}
@media (max-width: 1390px) {
  .header .menu {
    display: none;
  }
}
.header .menu ul {
  list-style: none;
  display: flex;
  gap: 60px;
}
.header .menu ul .hvr-underline-from-center {
  overflow: visible;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}
.header .menu ul .hvr-underline-from-center::before {
  background-color: #00bc99;
  height: 2px;
  bottom: -5px;
}
.header .menu ul .hvr-underline-from-center:hover {
  color: #fd3a5e;
}
.header .buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1390px) {
  .header .buttons {
    display: none;
  }
}
.header .buttons a {
  align-self: flex-start;
}
html[lang="ua"] .header .buttons .btn-1, html[lang="ua"] .header .buttons .btn-2 {
  width: 150px;
}
.header .buttons .btn-1 {
  background-color: #00bc99;
  border: 2px solid #00bc99;
}
.header .buttons .btn-1 .t_button {
  color: #fff;
}
.header .buttons .lang-switch {
  width: 40px;
  height: 40px;
  position: relative;
  overflow: visible;
  font-weight: 600;
}
.header .buttons .lang-switch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
}
.header .buttons .lang-switch:hover::before {
  height: 80px;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #00bc99;
  transition: all 0.4s ease;
}
body.error-page .header .buttons .lang-switch:hover::before {
  background: none;
}
.header .buttons .lang-switch__current {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #1e1e1e;
  text-transform: uppercase;
  z-index: 2;
  transition: all 0.4s ease;
}
.header .buttons .lang-switch__other {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #1e1e1e;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s ease;
}
.header .buttons .lang-switch:hover .lang-switch__current {
  top: 0;
  opacity: 1;
  color: #fff;
}
.header .buttons .lang-switch:hover .lang-switch__other {
  top: 40px;
  opacity: 1;
  color: #fff;
}
.header .burger {
  display: none;
  width: 40px;
  height: 40px;
  background-color: #fd3a5e;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1390px) {
  .header .burger {
    display: block;
  }
}
.header .burger span {
  display: block;
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.header .burger span:nth-child(1) {
  top: 10px;
}
.header .burger span:nth-child(2) {
  top: 19px;
}
.header .burger span:nth-child(3) {
  top: 28px;
}
.header .burger.active span:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}
.header .burger.active span:nth-child(2) {
  opacity: 0;
}
.header .burger.active span:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}
.header .burger.active html {
  overflow: hidden;
}
.mobile-menu {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #def6f2;
  z-index: 999;
  flex-direction: column;
  gap: 25px;
  padding-top: 120px;
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.active {
  display: flex;
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu.active html {
  overflow: hidden;
}
.mobile-menu .mobile-menu-title {
  font-size: 48px;
  text-transform: uppercase;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.mobile-menu ul a {
  text-transform: uppercase;
}
.mobile-menu ul .hvr-underline-from-center {
  overflow: visible;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}
.mobile-menu ul .hvr-underline-from-center::before {
  background-color: #00bc99;
  height: 2px;
  bottom: -5px;
}
.mobile-menu ul .hvr-underline-from-center:hover {
  color: #fd3a5e;
}
.mobile-menu .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: auto;
  padding-bottom: 25px;
  gap: 10px;
}
.mobile-menu .buttons .btn-1 {
  background-color: #00bc99;
  border: 2px solid #00bc99;
}
.mobile-menu .buttons .btn-1 .t_button {
  color: #fff;
}
.mobile-menu .buttons .account-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.mobile-menu .buttons .mobile-lang-switch {
  width: 40px;
  height: 40px;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  user-select: none;
}
.mobile-menu .buttons .mobile-lang-switch::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
  transform-origin: bottom center;
}
.mobile-menu .buttons .mobile-lang-switch__current, .mobile-menu .buttons .mobile-lang-switch__other {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease, color 0.4s ease;
}
.mobile-menu .buttons .mobile-lang-switch__current {
  opacity: 1;
  color: #1e1e1e;
}
.mobile-menu .buttons .mobile-lang-switch__other {
  opacity: 0;
  color: #1e1e1e;
}
.mobile-menu .buttons .mobile-lang-switch.is-open::before {
  height: 80px;
  border-radius: 20px;
  background: #00bc99;
}
.mobile-menu .buttons .mobile-lang-switch.is-open .mobile-lang-switch__current {
  color: #fff;
}
.mobile-menu .buttons .mobile-lang-switch.is-open .mobile-lang-switch__other {
  transform: translateY(-40px);
  opacity: 1;
  color: #fff;
}
.banner {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1050px) {
  .banner {
    display: none;
  }
}
.banner .banner-img-desktop {
  position: absolute;
  top: 80px;
  right: 0;
  width: auto;
  height: 85%;
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 1050px) {
  .banner .banner-img-desktop {
    object-position: calc(100% + 440px) center;
  }
}
@media (max-width: 1601px) and (min-width: 1590px) {
  .banner .banner-img-desktop {
    height: 75%;
    right: -150px;
  }
}
@media (max-width: 1450px) {
  .banner .banner-img-desktop {
    display: none;
  }
}
.banner .banner-img-tablet {
  display: none;
  position: absolute;
  top: 75px;
  right: 0;
  width: auto;
  height: 85%;
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 1050px) {
  .banner .banner-img-tablet {
    object-position: calc(100% + 440px) center;
  }
}
@media (max-width: 1450px) {
  .banner .banner-img-tablet {
    display: block;
  }
}
@media (max-width: 1290px) {
  .banner .banner-img-tablet {
    top: 75px;
    height: 55%;
  }
}
@media (min-width: 1200px) {
  .banner .banner-img-tablet {
    top: 75px;
    height: 75%;
  }
}
.banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 1830px) {
  .banner .container {
    padding: 10px 10px;
  }
}
@media (max-width: 1390px) {
  .banner .container {
    width: 95%;
  }
}
.banner .banner-inform {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 720px;
  padding-left: 20px;
}
@media (max-width: 1100px) {
  .banner .banner-inform {
    max-width: 550px;
    padding-left: 0;
  }
}
.banner .title {
  text-wrap: balance;
  letter-spacing: 2px;
}
.banner .banner-text {
  color: #1e1e1e;
  line-height: 110%;
  font-family: "Manrope", sans-serif;
  font-size: clamp(16px, calc(16px
                  + (20 - 16)
                  * ((100vw - 320px) / (1830 - 320))), 20px);
  font-weight: 500;
  align-self: flex-start;
  width: 100%;
  word-wrap: break-word;
}
.banner .buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  word-wrap: break-word;
}
.banner .buttons .btn-4, .banner .buttons .btn-3 {
  width: 50%;
  height: 60px;
}
@media (max-width: 700px) {
  .banner .buttons .btn-4, .banner .buttons .btn-3 {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .banner .buttons {
    flex-direction: column;
  }
}
.mobile-banner {
  display: none;
}
@media (max-width: 1050px) {
  .mobile-banner {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 550px) {
  .mobile-banner {
    display: flex;
    flex-direction: column;
  }
}
.mobile-banner .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 100px;
}
@media (max-width: 1830px) {
  .mobile-banner .container {
    padding: 10px 10px;
  }
}
@media (max-width: 1390px) {
  .mobile-banner .container {
    width: 95%;
    padding: 0;
  }
}
@media (max-width: 550px) {
  .mobile-banner .container {
    margin-top: 20px;
  }
}
.mobile-banner .banner-inform {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 650px;
}
@media (max-width: 550px) {
  .mobile-banner .banner-inform {
    width: 100%;
  }
}
.mobile-banner .title {
  max-width: 650px;
}
.mobile-banner .banner-text {
  color: #1e1e1e;
  line-height: 110%;
  font-family: "Manrope", sans-serif;
  font-size: clamp(16px, calc(16px
                  + (20 - 16)
                  * ((100vw - 320px) / (1830 - 320))), 20px);
  font-weight: 500;
  align-self: flex-start;
  width: 100%;
  word-wrap: break-word;
}
.mobile-banner .buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  word-wrap: break-word;
}
.mobile-banner .buttons .btn-4, .mobile-banner .buttons .btn-3 {
  width: 50%;
  height: 60px;
}
@media (max-width: 700px) {
  .mobile-banner .buttons .btn-4, .mobile-banner .buttons .btn-3 {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .mobile-banner .buttons {
    flex-direction: column;
  }
}
.why {
  width: 100%;
}
.why .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 1830px) {
  .why .container {
    padding: 10px 10px;
  }
}
@media (max-width: 1390px) {
  .why .container {
    width: 95%;
    padding: 0;
  }
}
.why .t-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .why .t-content {
    flex-direction: column;
    gap: 20px;
  }
}
.why .texts {
  max-width: 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .why .texts {
    max-width: 100%;
  }
}
.why .texts .big-text {
  max-width: 710px;
}
.why .texts .mini-texts {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 700px) {
  .why .texts .mini-texts {
    flex-direction: column;
  }
}
.why .images {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1290px) {
  .why .images {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }
}
.why .images .why-decor {
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 700px) {
  .why .images .why-decor {
    flex-direction: column;
    top: -20px;
    width: 28px;
  }
}
.why .images .photo-cont {
  flex: 1 1 30%;
  max-width: 100%;
  position: relative;
}
.why .images .why-photo {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
  filter: grayscale(100);
  transition: all 0.5s ease-in-out;
}
.why .images .why-photo:hover {
  filter: grayscale(0%);
}
@media (max-width: 1290px) {
  .why .images .why-photo {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}
.only .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1830px) {
  .only .container {
    padding: 10px 10px;
  }
}
@media (max-width: 1390px) {
  .only .container {
    width: 95%;
    padding: 0;
  }
}
.only .slot-machine {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 1390px) {
  .only .slot-machine {
    display: none;
  }
}
.only .slot-machine .reel {
  flex: 1 1 0;
  max-width: 350px;
  aspect-ratio: 350/200;
  position: relative;
  overflow: hidden;
}
.only .slot-machine .reel .reel-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100%;
}
.only .slot-machine .reel .reel-inner > * {
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 350/200;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fd3a5e;
}
.only .slot-machine .reel .reel-inner > * .texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 30px;
}
@media (max-width: 1830px) {
  .only .slot-machine .reel .reel-inner > * .texts {
    padding-left: 10px;
  }
}
.only .slot-machine .reel .reel-inner > * .texts > * {
  flex: 0 0 auto;
}
.only .slot-machine .reel .reel-inner > * .title {
  color: #fff;
  align-self: flex-start;
  line-height: 1;
}
.only .slot-machine .reel .reel-inner > * .text {
  color: #fff;
  align-self: flex-start;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-size: clamp(10px, calc(10px
                  + (20 - 10)
                  * ((100vw - 320px) / (1830 - 320))), 20px);
  font-weight: 500;
  text-transform: uppercase;
}
.only .slot-machine .reel .reel-inner > * img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.only .mobile-slot-machine {
  display: none;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
}
@media (max-width: 1390px) {
  .only .mobile-slot-machine {
    display: flex;
  }
}
.only .mobile-slot-machine .reel {
  flex: 1 1 0;
  max-width: 350px;
  height: calc(200px * 2 + 5px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  .only .mobile-slot-machine .reel {
    max-width: 250px;
    height: calc(100px * 2 + 5px);
  }
}
.only .mobile-slot-machine .reel .reel-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  height: auto;
}
.only .mobile-slot-machine .reel .reel-inner #win-card {
  background-color: #00bc99;
}
.only .mobile-slot-machine .reel .reel-inner > * {
  flex: 0 0 auto;
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fd3a5e;
}
@media (max-width: 700px) {
  .only .mobile-slot-machine .reel .reel-inner > * {
    height: 100px;
  }
}
.only .mobile-slot-machine .reel .reel-inner > * .texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 30px;
}
@media (max-width: 1830px) {
  .only .mobile-slot-machine .reel .reel-inner > * .texts {
    padding-left: 10px;
  }
}
@media (max-width: 700px) {
  .only .mobile-slot-machine .reel .reel-inner > * .texts {
    padding-left: 7px;
  }
}
.only .mobile-slot-machine .reel .reel-inner > * .texts > * {
  flex: 0 0 auto;
}
.only .mobile-slot-machine .reel .reel-inner > * .title {
  color: #fff;
  align-self: flex-start;
  line-height: 1;
}
.only .mobile-slot-machine .reel .reel-inner > * .text {
  color: #fff;
  align-self: flex-start;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-size: clamp(10px, calc(10px
                  + (20 - 10)
                  * ((100vw - 320px) / (1830 - 320))), 20px);
  font-weight: 500;
  text-transform: uppercase;
}
.only .mobile-slot-machine .reel .reel-inner > * img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.team {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  position: relative;
  justify-content: center;
  align-items: center;
}
.team .tape {
  background-color: #00bc99;
}
.team .persons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 1830px) {
  .team .persons {
    padding: 0 10px;
  }
}
@media (max-width: 1490px) {
  .team .persons {
    justify-content: center;
  }
}
@media (max-width: 750px) {
  .team .persons {
    display: none;
  }
}
.team .persons .person {
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team .persons .photo {
  overflow: hidden;
  width: 310px;
  height: 310px;
  filter: grayscale(100%);
  transition: all 0.5s ease-in-out;
}
.team .persons .photo:hover {
  filter: grayscale(0%);
}
.team .persons .photo video, .team .persons .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team .persons .social {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.team .persons .empty {
  width: 350px;
}
@media (max-width: 750px) {
  .team .persons .empty {
    display: none;
  }
}
.team .slider {
  display: none;
  position: relative;
  min-width: 0;
  width: 740px;
}
@media (max-width: 750px) {
  .team .slider {
    display: block;
  }
}
@media (max-width: 750px) {
  .team .slider {
    width: 360px;
  }
}
.team .slider .slick-track {
  display: flex !important;
  gap: 20px;
  margin-left: -10px;
}
@media (max-width: 750px) {
  .team .slider .slick-track {
    gap: 10px;
    margin-left: -5px;
  }
}
.team .slider .slick-slide {
  box-sizing: border-box;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  width: 350px !important;
}
.team .slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -30px;
}
.team .slider .slick-dots button {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.team .slider .slick-dots li {
  list-style: none;
  font-size: 0;
  width: 8px;
  height: 8px;
  background-color: #fff;
  margin: 0 10px;
}
.team .slider .slick-dots .slick-active {
  background-color: #fd3a5e;
}
.team .slider .person {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  width: 100%;
}
.team .slider .photo {
  overflow: hidden;
  width: 310px;
  height: 310px;
  transition: all 0.5s ease-in-out;
}
.team .slider .photo video, .team .slider .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team .slider .social {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.team .slider .social a {
  background-color: #fd3a5e;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 1830px) {
  .quick {
    padding: 10px 10px;
  }
}
@media (max-width: 1390px) {
  .quick {
    padding: 0;
  }
}
.quick .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #00bc99;
  padding: 30px 20px;
  gap: 30px;
}
@media (max-width: 1830px) {
  .quick .container {
    padding: 30px 20px;
  }
}
@media (max-width: 1390px) {
  .quick .container {
    width: 95%;
  }
}
@media (max-width: 1150px) {
  .quick .container {
    flex-direction: column;
  }
}
.quick .quick-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 55%;
}
@media (max-width: 1150px) {
  .quick .quick-content {
    max-width: 100%;
  }
}
.quick .mini-title {
  color: #fff;
}
.quick .text {
  color: #fff;
}
.quick .btn-5 {
  width: 300px;
  height: 60px;
}
@media (max-width: 1150px) {
  .quick .btn-5 {
    width: 230px;
    height: 50px;
  }
}
.partners .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1830px) {
  .partners .container {
    padding: 10px 10px;
  }
}
@media (max-width: 1390px) {
  .partners .container {
    width: 95%;
    padding: 0;
  }
}
@media (max-width: 1050px) {
  .partners .container {
    flex-direction: column;
  }
}
@media (max-width: 1510px) {
  .partners .container {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 1510px) {
  .partners .desktop-partners-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 550px) {
  .partners .desktop-partners-images {
    display: none;
  }
}
.partners .mobile-partners-images {
  display: none;
}
@media (max-width: 550px) {
  .partners .mobile-partners-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
.partners .columns-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  position: relative;
  overflow: hidden;
  height: 950px;
  max-width: 1090px;
}
@media (max-width: 1050px) {
  .partners .columns-wrapper {
    justify-content: center;
    width: 100%;
    gap: 20px;
    height: 600px;
    max-width: 720px;
  }
}
@media (max-width: 750px) {
  .partners .columns-wrapper {
    gap: 10px;
  }
}
.partners .columns-wrapper::before, .partners .columns-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}
.partners .columns-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, #def6f2, transparent);
}
.partners .columns-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, #def6f2, transparent);
}
.partners .column {
  flex: 1;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1050px) {
  .partners .column {
    width: 227px;
    flex: 0 0 auto;
  }
}
@media (max-width: 750px) {
  .partners .column {
    width: 170px;
  }
}
.partners .scroll-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 750px) {
  .partners .scroll-track {
    gap: 10px;
  }
}
.partners .logo-item {
  width: 350px;
  height: 220px;
  flex-shrink: 0;
}
@media (max-width: 1050px) {
  .partners .logo-item {
    width: 227px;
    height: 130px;
  }
}
@media (max-width: 750px) {
  .partners .logo-item {
    width: 170px;
    height: 100px;
  }
}
.partners .logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.media .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1830px) {
  .media .container {
    padding: 10px 10px;
  }
}
@media (max-width: 1390px) {
  .media .container {
    width: 95%;
    padding: 0;
  }
}
.media .empty {
  width: 350px;
}
@media (max-width: 1050px) {
  .media .empty {
    width: 227px;
  }
}
@media (max-width: 700px) {
  .media .empty {
    display: none;
  }
}
.media .mobile-media-images {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.media .mobile-media-images .lines-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.media .mobile-media-images .line {
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
}
.media .mobile-media-images .scroll-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 750px) {
  .media .mobile-media-images .scroll-track {
    gap: 10px;
  }
}
.media .mobile-media-images .logo-item {
  width: 350px;
  height: 220px;
  flex-shrink: 0;
}
@media (max-width: 1050px) {
  .media .mobile-media-images .logo-item {
    width: 227px;
    height: 130px;
  }
}
@media (max-width: 750px) {
  .media .mobile-media-images .logo-item {
    width: 170px;
    height: 100px;
  }
}
.media .mobile-media-images .logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.register .container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 1830px) {
  .register .container {
    padding: 10px 10px;
    flex-direction: column;
  }
}
@media (max-width: 1390px) {
  .register .container {
    width: 95%;
    padding: 0;
  }
}
.register .red-register {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  padding: 20px;
  background-color: #fd3a5e;
  max-width: 720px;
}
@media (max-width: 1830px) {
  .register .red-register {
    max-width: 100%;
  }
}
.register .red-register .mini-title {
  color: #fff;
}
.register .red-register .text {
  color: #fff;
}
.register .red-register .btn-5 {
  width: 300px;
  height: 60px;
}
@media (max-width: 1150px) {
  .register .red-register .btn-5 {
    width: 230px;
    height: 50px;
  }
}
.register .green-register {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  padding: 20px;
  background-color: #00bc99;
  max-width: 1090px;
  width: 100%;
}
@media (max-width: 1830px) {
  .register .green-register {
    max-width: 100%;
  }
}
.register .green-register .mini-title {
  color: #fff;
}
.register .green-register .text {
  color: #fff;
}
.register .green-register .btn-5 {
  width: 300px;
  height: 60px;
}
@media (max-width: 1150px) {
  .register .green-register .btn-5 {
    width: 230px;
    height: 50px;
  }
}
.news {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  position: relative;
  justify-content: center;
  align-items: center;
}
.news .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1830px) {
  .news .container {
    padding: 10px 10px;
  }
}
@media (max-width: 1390px) {
  .news .container {
    width: 95%;
    padding: 0;
  }
}
.news .tape {
  background-color: #fd3a5e;
}
.news .desktop-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 1490px) {
  .news .desktop-cards {
    display: none;
  }
}
.news .desktop-cards .news_card_main {
  width: 720px;
  height: 916px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news .desktop-cards .news_card_main:hover .nano-title {
  color: #fd3a5e;
}
.news .desktop-cards .news_card_main .date {
  font-size: 14px;
  line-height: 140%;
}
.news .desktop-cards .news_card_main .photo {
  overflow: hidden;
  width: 680px;
  height: 778px;
  transition: all 0.5s ease-in-out;
}
.news .desktop-cards .news_card_main .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .desktop-cards .news_card_main .nano-title {
  transition: all 0.3s ease-in-out;
  text-transform: initial;
}
.news .desktop-cards .mini-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.news .desktop-cards .empty {
  width: 350px;
}
@media (max-width: 1830px) {
  .news .desktop-cards .empty {
    display: none;
  }
}
.news .desktop-cards .news_card {
  width: 350px;
  height: 448px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news .desktop-cards .news_card:hover .nano-title {
  color: #fd3a5e;
}
.news .desktop-cards .news_card .photo {
  overflow: hidden;
  width: 310px;
  height: 310px;
  transition: all 0.5s ease-in-out;
}
.news .desktop-cards .news_card .photo:hover {
  filter: grayscale(100%);
}
.news .desktop-cards .news_card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .desktop-cards .news_card .date {
  font-size: 14px;
  line-height: 140%;
}
.news .desktop-cards .news_card .nano-title {
  transition: all 0.3s ease-in-out;
  text-transform: initial;
}
.news .tablet-cards {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1490px) {
  .news .tablet-cards {
    display: flex;
  }
}
@media (max-width: 750px) {
  .news .tablet-cards {
    display: none;
  }
}
.news .tablet-cards .news_card_main {
  width: 720px;
  height: 916px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news .tablet-cards .news_card_main:hover .nano-title {
  color: #fd3a5e;
}
.news .tablet-cards .news_card_main .date {
  font-size: 14px;
  line-height: 140%;
}
.news .tablet-cards .news_card_main .photo {
  overflow: hidden;
  width: 680px;
  height: 778px;
  transition: all 0.5s ease-in-out;
}
.news .tablet-cards .news_card_main .photo:hover {
  filter: grayscale(100%);
}
.news .tablet-cards .news_card_main .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .tablet-cards .news_card_main .nano-title {
  transition: all 0.3s ease-in-out;
  text-transform: initial;
}
.news .tablet-cards .mini-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  width: 720px;
}
.news .tablet-cards .empty {
  width: 350px;
}
.news .tablet-cards .news_card {
  width: 350px;
  height: 448px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news .tablet-cards .news_card:hover .nano-title {
  color: #fd3a5e;
}
.news .tablet-cards .news_card .photo {
  overflow: hidden;
  width: 310px;
  height: 310px;
  transition: all 0.5s ease-in-out;
}
.news .tablet-cards .news_card .photo:hover {
  filter: grayscale(100%);
}
.news .tablet-cards .news_card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .tablet-cards .news_card .date {
  font-size: 14px;
  line-height: 140%;
}
.news .tablet-cards .news_card .nano-title {
  transition: all 0.3s ease-in-out;
  text-transform: initial;
}
.news .slider {
  display: none;
  position: relative;
  min-width: 0;
  width: 740px;
}
@media (max-width: 750px) {
  .news .slider {
    display: block;
  }
}
@media (max-width: 750px) {
  .news .slider {
    width: 360px;
  }
}
.news .slider .slick-list {
  display: flex !important;
  align-items: stretch !important;
  height: auto !important;
}
.news .slider .slick-track {
  display: flex !important;
  gap: 20px;
  margin-left: -10px;
  align-items: stretch !important;
}
@media (max-width: 750px) {
  .news .slider .slick-track {
    gap: 10px;
    margin-left: -5px;
  }
}
.news .slider .slick-slide {
  box-sizing: border-box;
  display: flex;
  align-items: stretch !important;
  flex: 0 0 auto;
  justify-content: center;
  width: 350px !important;
}
.news .slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -30px;
}
.news .slider .slick-dots button {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.news .slider .slick-dots li {
  list-style: none;
  font-size: 0;
  width: 8px;
  height: 8px;
  background-color: #fff;
  margin: 0 10px;
}
.news .slider .slick-dots .slick-active {
  background-color: #fd3a5e;
}
.news .slider .news_card {
  display: flex;
  flex: 1;
  height: 100% !important;
  justify-content: flex-start !important;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  width: 100%;
}
.news .slider .news_card:hover .nano-title {
  color: #fd3a5e;
}
.news .slider .news_card .photo {
  overflow: hidden;
  width: 310px !important;
  height: 310px !important;
  transition: all 0.5s ease-in-out;
}
.news .slider .news_card .photo:hover {
  filter: grayscale(100%);
}
.news .slider .news_card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .slider .news_card .date {
  font-size: 14px;
  line-height: 140%;
}
.news .slider .news_card .nano-title {
  transition: all 0.3s ease-in-out;
  text-transform: initial;
}
.contacts {
  display: flex;
  margin-top: auto;
  background-color: #1e1e1e;
  width: 100%;
}
.contacts .container {
  flex-direction: row;
  display: flex;
  justify-content: space-between;
  padding: 100px 10px;
}
@media (max-width: 1390px) {
  .contacts .container {
    width: 95%;
  }
}
@media (max-width: 1290px) {
  .contacts .container {
    padding: 40px 10px;
  }
}
@media (max-width: 1290px) {
  .contacts .container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
}
.contacts .title {
  color: #fff;
  line-height: 100%;
}
.contacts .email-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1290px) {
  .contacts .email-container {
    gap: 5px;
  }
}
.contacts .email-container .mini-text {
  font-family: Oswald;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.contacts .email-container .email {
  text-decoration: underline;
  color: #fff;
  font-size: clamp(20px, calc(20px
                  + (32 - 20)
                  * ((100vw - 320px) / (1830 - 320))), 32px);
  transition: all 0.3s ease-in-out;
}
.contacts .email-container .email:hover {
  color: #fd3a5e;
}
.contacts .social-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 200px;
}
@media (max-width: 1290px) {
  .contacts .social-container {
    gap: 0;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    padding-right: 0;
  }
}
.contacts .social-container .mini-text {
  font-family: Oswald;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 1290px) {
  .contacts .social-container .mini-text {
    flex-basis: 100%;
  }
}
.contacts .social-container .hvr-icon-spin {
  font-family: Oswald;
  font-size: clamp(18px, calc(18px
                  + (24 - 18)
                  * ((100vw - 320px) / (1830 - 320))), 24px);
  text-transform: uppercase;
  color: #fff;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 1290px) {
  .contacts .social-container .hvr-icon-spin {
    gap: 7px;
  }
}
.contacts .social-container .hvr-icon-spin .hvr-icon {
  width: 20px;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.5s;
}
@media (max-width: 1290px) {
  .contacts .social-container .hvr-icon-spin .hvr-icon {
    width: 14px;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: top 0.3s ease-in-out;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
  background-color: #1e1e1e;
}
.footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1390px) {
  .footer .container {
    width: 95%;
  }
}
.footer .container:nth-child(1) {
  padding: 50px 10px;
}
@media (max-width: 1290px) {
  .footer .container:nth-child(1) {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
  }
}
.footer .container:nth-child(1) .buttons {
  display: flex;
  gap: 20px;
}
.footer .container:nth-child(1) .buttons a {
  align-self: flex-start;
}
html[lang="ua"] .footer .container:nth-child(1) .buttons a {
  width: 150px;
}
.footer .container:nth-child(1) .logo img {
  width: 128px;
}
@media (max-width: 1830px) {
  .footer .container:nth-child(1) .logo img {
    width: 102px;
  }
}
.footer .container:nth-child(1) .menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media (max-width: 800px) {
  .footer .container:nth-child(1) .menu ul {
    justify-content: space-between;
    column-gap: 50px;
    row-gap: 20px;
    max-width: 325px;
  }
}
.footer .container:nth-child(1) .menu ul .hvr-underline-from-center {
  overflow: visible;
  transition: all 0.3s ease-in-out;
  color: #fff;
  text-transform: uppercase;
}
.footer .container:nth-child(1) .menu ul .hvr-underline-from-center::before {
  background-color: #00bc99;
  height: 2px;
  bottom: -5px;
}
.footer .container:nth-child(1) .menu ul .hvr-underline-from-center:hover {
  color: #fd3a5e;
}
.footer .container:nth-child(2) {
  padding: 20px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .container:nth-child(2) ul {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  list-style: none;
  margin: 0;
}
@media (max-width: 1290px) {
  .footer .container:nth-child(2) ul {
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 10px;
    row-gap: 20px;
  }
}
@media (max-width: 450px) {
  .footer .container:nth-child(2) ul {
    flex-direction: column;
  }
}
.footer .container:nth-child(2) ul li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 990px) {
  .footer .container:nth-child(2) ul li {
    text-align: center;
  }
}
.footer .container:nth-child(2) ul li a {
  font-family: "Manrope";
  font-size: clamp(12px, calc(12px
                  + (14 - 12)
                  * ((100vw - 320px) / (1310 - 320))), 14px);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer .container:nth-child(2) ul li:last-child {
  font-family: "Manrope";
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(12px, calc(12px
                  + (14 - 12)
                  * ((100vw - 320px) / (1310 - 320))), 14px);
}
.footer .container:nth-child(2) ul li:last-child a {
  font-family: inherit;
  font-size: inherit;
  color: #fff;
  font-weight: 600;
}
.footer .container:nth-child(2) ul li:last-child span {
  font-family: inherit;
  font-size: inherit;
  color: red;
}
.footer .container:nth-child(2) ul li:not(.mega):hover > a {
  color: #fd3a5e;
}
.error {
  padding: 70px 0;
}
.error .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
}
@media (max-width: 1830px) {
  .error .container {
    width: 95%;
  }
}
.error .error-tools {
  position: relative;
  display: inline-block;
  text-align: center;
  font-family: Manrope;
}
@media (max-width: 550px) {
  .error .error-tools br {
    display: none;
  }
}
.error .error-image {
  display: block;
  z-index: 2;
}
@media (max-width: 990px) {
  .error .error-image {
    max-width: 100%;
  }
}
.error .error-decor {
  position: absolute;
  top: 60%;
  right: -700px;
  transform: translateY(-50%);
  z-index: 1;
}
.error .mini-title {
  text-align: center;
  line-height: 110%;
  margin-top: 20px;
}
.error .description {
  line-height: 25px;
  text-align: center;
  font-size: clamp(14px, calc(14px
                  + (18 - 14)
                  * ((100vw - 320px) / (1310 - 320))), 18px);
  font-family: Manrope;
}
.error .description__green {
  font-weight: 500;
  background: #00bc99;
  color: #fff;
  border-radius: 3px;
  padding: 5px 7px;
  font-size: inherit;
  text-align: center;
  font-family: Manrope;
}
.error .description__if {
  color: #1e1e1e;
  text-align: center;
  line-height: 25px;
  font-size: inherit;
  font-family: Manrope;
}
.error .try {
  text-align: center;
  font-size: clamp(14px, calc(14px
                  + (15 - 14)
                  * ((100vw - 320px) / (1310 - 320))), 15px);
  font-family: Manrope;
}
.error .try span {
  line-height: 28px;
  font-size: clamp(14px, calc(14px
                  + (15 - 14)
                  * ((100vw - 320px) / (1310 - 320))), 15px);
  text-align: center;
  font-family: Manrope;
}
.error .btn-2 {
  margin-top: 10px;
  width: 145px;
  height: 60px;
}
.policy {
  padding: 70px 0;
}
.policy .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 10px;
}
@media (max-width: 1390px) {
  .policy .container {
    width: 95%;
  }
}
.policy .title {
  margin-bottom: 30px;
}
.policy .policy-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}
.policy .policy-content p {
  line-height: 140%;
  color: #1e1e1e;
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, calc(14px
                  + (16 - 14)
                  * ((100vw - 320px) / (1830 - 320))), 16px);
  font-weight: 500;
}
.breadcrumbs {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 110px;
  z-index: 2;
}
@media (max-width: 550px) {
  .breadcrumbs {
    margin-top: 80px;
  }
}
.breadcrumbs .breadcrumbs-content {
  text-transform: uppercase;
}
.breadcrumbs .breadcrumbs-content a {
  color: #5d5b5b;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}
.breadcrumbs .breadcrumbs-content a:hover {
  color: #fd3a5e;
}
.fancybox__content {
  padding: 0 !important;
  background: #def6f2 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.fancybox__content .is-close-btn {
  display: none;
}
.modal-wrapper {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal-close {
  position: absolute;
  top: -13px;
  right: -13px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 10000;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  user-select: none;
}
.modal-close:focus {
  outline: none;
}
.modal-close img {
  width: 30px;
  height: 30px;
  display: block;
}
.modal {
  background-color: #def6f2;
  position: relative;
}
.modal .modal-content {
  display: flex;
  flex-direction: row;
}
#modal-cookies {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 93%;
  overflow: hidden;
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}
#modal-cookies .modal-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  column-gap: 20px;
}
@media (max-width: 1390px) {
  #modal-cookies .modal-content {
    flex-direction: column;
    row-gap: 25px;
  }
}
#modal-cookies .buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
#modal-cookies .btn-1, #modal-cookies .btn-2 {
  max-width: 250px;
  height: 60px;
}
#modal-reg {
  width: 760px;
}
@media (max-width: 990px) {
  #modal-reg {
    width: 93%;
  }
}
#modal-reg .modal-reg, #modal-reg .modal-content {
  width: 100%;
}
#modal-reg .buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#modal-reg a {
  width: 100%;
}
.modal-full-register {
  display: none;
  justify-content: space-between;
  align-items: center;
  background-color: #def6f2;
  padding: 50px !important;
}
@media (max-width: 750px) {
  .modal-full-register {
    padding: 20px !important;
  }
}
@media (max-width: 700px) {
  .modal-full-register {
    width: 93%;
  }
}
@media (max-height: 600px) {
  .modal-full-register {
    padding: 20px !important;
    margin-top: 20px;
  }
}
.modal-full-register .mini-title {
  margin-bottom: 30px;
}
.modal-full-register .wpcf7-response-output {
  display: none;
}
.modal-full-register .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.modal-full-register .wpcf7-form-control-wrap[data-name="y-agree"] .wpcf7-not-valid-tip {
  display: none !important;
}
.modal-full-register .wpcf7-form-control-wrap[data-name="y-password-1"] .wpcf7-not-valid-tip, .modal-full-register .wpcf7-form-control-wrap[data-name="y-password-r-1"] .wpcf7-not-valid-tip, .modal-full-register .wpcf7-form-control-wrap[data-name="y-password-2"] .wpcf7-not-valid-tip, .modal-full-register .wpcf7-form-control-wrap[data-name="y-password-r-2"] .wpcf7-not-valid-tip {
  right: 35px;
}
.modal-full-register .wpcf7-form-control-wrap .fa-eye-slash {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  pointer-events: auto;
}
.modal-full-register .wpcf7-form-control-wrap .fa-eye-slash::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
  mask-image: url("../images/svg/eye_off.svg");
  mask-mode: alpha;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../images/svg/eye_off.svg");
  -webkit-mask-mode: alpha;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  pointer-events: none;
}
.modal-full-register .wpcf7-form-control-wrap .fa-eye {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  pointer-events: auto;
}
.modal-full-register .wpcf7-form-control-wrap .fa-eye::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
  mask-image: url("../images/svg/eye_on.svg");
  mask-mode: alpha;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../images/svg/eye_on.svg");
  -webkit-mask-mode: alpha;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  pointer-events: none;
}
.modal-full-register .wpcf7-not-valid-tip {
  position: absolute;
  right: 10px;
  top: 37px;
  font-size: 12px;
  color: #f44336;
  background-color: #fff;
  z-index: 1;
}
.modal-full-register .wpcf7::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  mask-image: url("../images/svg/eye_on.svg");
  -webkit-mask-image: url("../images/svg/eye_on.svg");
}
.modal-full-register .wpcf7 .wpcf7-form p {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-full-register .wpcf7 .wpcf7-spinner {
  display: none !important;
}
.modal-full-register .wpcf7 input {
  width: 100%;
  background-color: #fff;
  padding: 20px 20px;
  cursor: auto;
  font-family: "Manrope";
}
.modal-full-register .wpcf7 input::placeholder {
  color: rgba(22, 22, 22, 0.75);
  font-size: clamp(14px, calc(14px
                  + (16 - 14)
                  * ((100vw - 320px) / (1830 - 320))), 16px);
}
.modal-full-register .wpcf7 br {
  display: none !important;
}
.modal-full-register .wpcf7 .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 10px;
  padding: 10px 0;
}
.modal-full-register .wpcf7 .wpcf7-list-item label {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.modal-full-register .wpcf7 [type="checkbox"] {
  appearance: none;
  display: block;
  background-color: #fff;
  padding: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.modal-full-register .wpcf7 [type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-full-register .wpcf7 .wpcf7-list-item-label {
  font-family: "Manrope";
  font-size: 14px;
}
.modal-full-register .btn-2 {
  width: 100%;
  filter: grayscale(1);
  pointer-events: none;
}
.modal-full-register .btn-2.btn-off {
  filter: grayscale(1) !important;
  pointer-events: none !important;
}
.modal-full-register .btn-2.btn-on {
  filter: grayscale(0) !important;
  pointer-events: initial !important;
}
.modal-full-register:has([type="checkbox"]:checked) .btn-2 {
  filter: grayscale(0);
  pointer-events: initial;
}
.social-buttons {
  position: fixed;
  z-index: 900;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  pointer-events: none;
}
.social-buttons > .up-btn, .social-buttons > .social-top-button {
  width: 100px;
  height: 100px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
@media (max-width: 990px) {
  .social-buttons > .up-btn, .social-buttons > .social-top-button {
    width: 60px;
    height: 60px;
  }
}
.social-buttons > .up-btn img, .social-buttons > .social-top-button img {
  width: 100%;
  height: 100%;
  display: block;
}
.social-buttons > .up-btn.visible, .social-buttons > .social-top-button.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.social-buttons > .up-btn.visible:hover, .social-buttons > .up-btn.visible:focus, .social-buttons > .up-btn.visible:active, .social-buttons > .social-top-button.visible:hover, .social-buttons > .social-top-button.visible:focus, .social-buttons > .social-top-button.visible:active {
  transform: scale(1.1);
}
