@font-face {
  font-family: "MonumentGrotesk";
  src: url(../fonts/ABCMonumentGroteskSemi-Mono-Medium-Trial.woff);
}
@font-face {
  font-family: "MonumentGroteskRegular";
  src: url(../fonts/ABCMonumentGroteskSemi-Mono-Regular.otf);
}
@font-face {
  font-family: "Ztbrososkon";
  src: url(../fonts/ztbrososkon90s-extralight.otf);
}
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  background-color: #EAEBE5;
}
body.hidden {
  overflow: hidden;
}
@media (max-width: 768px) {
  body.hidden {
    overflow: auto;
  }
}

.container {
  max-width: 1464px;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
}

.main-heading {
  font-family: "Ztbrososkon";
  font-weight: 200;
  font-size: 54px;
  line-height: 62px;
  letter-spacing: -0.5px;
  color: #000;
}
@media (max-width: 768px) {
  .main-heading {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.5px;
  }
}

.text {
  font-family: "MonumentGrotesk";
  font-weight: 500;
  font-size: 11.25px;
  letter-spacing: 0.16em;
  line-height: 140%;
  text-transform: uppercase;
}

.textReg {
  font-family: "MonumentGroteskRegular";
  font-weight: 400;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 2px;
  color: #000;
}

[data-aos] {
  transition-duration: 1s !important;
  transition-timing-function: ease !important;
}

[data-aos=fade-down] {
  transform: translate3d(0, 0px, 0) !important;
}

[data-aos=fade-up] {
  transform: translate3d(0, 15px, 0) !important;
}

[data-aos=zoom-out] {
  transform: scale(1.06) !important;
}

[data-aos=zoom-in] {
  transform: scale(0.98) !important;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0) !important;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1) !important;
}

#custom-preloader {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EAEBE5;
  transition: 1s;
  transition-delay: 0.7s;
}
#custom-preloader.hide_me {
  opacity: 0;
  visibility: hidden;
}
#custom-preloader.hide_me .preloader-info .logo_video {
  display: block;
  opacity: 0 !important;
  transition: 0.5s;
  animation: unset;
}
#custom-preloader .preloader-info {
  width: 130px;
  height: 130px;
}
#custom-preloader .preloader-info .logo_video {
  width: 100%;
  height: 100%;
  opacity: 1;
  display: none;
}
#custom-preloader .preloader-info .logo_video img {
  width: 100%;
  height: 100%;
}

.logo_clicked {
  cursor: pointer;
  position: fixed;
  display: block;
  bottom: 32px;
  z-index: 100;
  left: 50%;
  transform: translate(-50%);
  width: 60px;
  height: 60px;
  transition: 0.8s;
  overflow: hidden;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.logo_clicked img {
  width: 100%;
  height: 100%;
  mix-blend-mode: color;
}
.logo_clicked.hidden {
  display: none;
}

.btn_request_memdership {
  cursor: pointer;
}

header {
  padding-top: 20px;
  display: flex;
  justify-content: center;
}
header.sticky .menu {
  background: rgba(234, 235, 229, 0.05);
  border-radius: 96px;
  -webkit-backdrop-filter: blur(10px); /* Add this line first, it fixes blur for Safari*/
  backdrop-filter: blur(10px); /* This line activates blur*/
}
header .menu {
  display: flex;
  align-items: center;
  padding: 12px 24px;
}
@media (max-width: 350px) {
  header .menu {
    padding: 12px 0;
  }
}
header .menu li {
  list-style: none;
  margin-right: 32px;
  transition: 0.3s;
}
header .menu li:last-of-type {
  margin-right: 0;
}
header .menu li.active a {
  color: rgba(0, 0, 0, 0.3);
}
header .menu li a {
  font-family: "MonumentGrotesk";
  font-weight: 500;
  font-size: 11.25px;
  letter-spacing: 0.16em;
  line-height: 140%;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

.sticky {
  position: fixed;
  width: 100%;
  top: 20px;
  left: 0%;
  padding-top: 0;
  background-color: rgba(255, 255, 255, 0.01);
  z-index: 4;
}

.main-screen {
  background-color: #EAEBE5;
  height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-screen .main-heading {
  text-align: center;
  position: absolute;
  left: 0%;
  top: calc(50% - 95px);
  width: 100%;
}
@media (max-width: 1200px) {
  .main-screen .main-heading {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 768px) {
  .main-screen .main-heading {
    top: calc(50% - 110px);
    width: 428px;
    left: calc(50% - 214px);
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 430px) {
  .main-screen .main-heading {
    width: 320px;
    left: calc(50% - 160px);
  }
}
@media (max-width: 768px) {
  .main-screen .main-heading br {
    display: none;
  }
}
.main-screen__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  bottom: 32px;
}
.main-screen__bottom .text {
  margin-bottom: 80px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .main-screen__bottom .text {
    margin-bottom: 64px;
  }
}
.main-screen__bottom .logo {
  width: 60px;
  height: 60px;
  display: block;
}
.main-screen__bottom .logo img {
  width: 100%;
  height: 100%;
}

.services-page {
  background-color: #EAEBE5;
}
.services-page .title-page {
  text-align: center;
  margin: 40vh 0 32vh;
}
@media (max-width: 768px) {
  .services-page .title-page {
    margin: 40vh 0 28vh;
  }
}
.services-page__center-block {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 300px;
}
@media (max-width: 991px) {
  .services-page__center-block {
    margin-bottom: 200px;
    width: 100%;
  }
  .services-page__center-block .services-page__descr {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .services-page__center-block {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .services-page__center-block .services-page__descr {
    width: 100%;
    padding: 0 12px;
  }
}
.services-page .services-moment {
  border-radius: 500px;
  height: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 0 164px;
  margin-bottom: 200px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 1350px) {
  .services-page .services-moment {
    height: 1200px;
    border-radius: 400px;
  }
}
@media (max-width: 1150px) {
  .services-page .services-moment {
    height: 1100px;
    border-radius: 350px;
  }
}
@media (max-width: 991px) {
  .services-page .services-moment {
    height: 932px;
    border-radius: 320px;
    padding: 40px 0 120px;
  }
}
@media (max-width: 768px) {
  .services-page .services-moment {
    height: 540px;
    border-radius: 130px;
    padding: 16px 0 64px;
    margin-bottom: 80px;
  }
}
@media (max-width: 350px) {
  .services-page .services-moment {
    height: 390px;
    border-radius: 100px;
    padding: 16px 0 45px;
  }
}
.services-page .services-moment__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.services-page .services-moment .main-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 768px) {
  .services-page .services-moment .main-heading {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.5px;
  }
}
.services-page .services-moment .main-heading br:first-of-type {
  display: none;
}
@media (max-width: 768px) {
  .services-page .services-moment .main-heading br:first-of-type {
    display: block;
  }
}
@media (max-width: 768px) {
  .services-page .services-moment .main-heading br:last-of-type {
    display: none;
  }
}
.services-page .services-moment .text {
  text-align: center;
}
@media (max-width: 768px) {
  .services-page .services-moment .text {
    width: 253px;
  }
}
@media (max-width: 768px) {
  .services-page .services-moment .text br {
    display: none;
  }
}
.services-page__descr {
  text-align: center;
}

.services-images {
  display: flex;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .services-images {
    flex-direction: column;
  }
}
.services-images__left {
  width: calc(50% - 16px);
  margin-right: 32px;
}
@media (max-width: 768px) {
  .services-images__left {
    width: 100%;
    margin-right: 0;
  }
}
.services-images__left .services-card3 {
  display: none;
}
@media (max-width: 768px) {
  .services-images__left .services-card3 {
    display: flex;
  }
}
.services-images__right {
  width: calc(50% - 16px);
}
@media (max-width: 768px) {
  .services-images__right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .services-images__right .services-card3 {
    display: none;
  }
}

.services-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.services-card:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  backdrop-filter: blur(70px);
  -webkit-backdrop-filter: blur(70px);
  opacity: 1;
  transition: 0.5s;
}
.services-card.visible:before {
  opacity: 0;
}
.services-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-card1 {
  height: 1120px;
  margin-bottom: 206px;
}
@media (max-width: 991px) {
  .services-card1 {
    height: 588px;
    margin-bottom: 102px;
  }
}
@media (max-width: 991px) {
  .services-card1 {
    height: 574px;
    margin-bottom: 24px;
  }
}
.services-card2 {
  height: 350px;
  border-radius: 88px;
  width: 80%;
}
@media (max-width: 991px) {
  .services-card2 {
    height: 206px;
    border-radius: 58px;
    width: 85%;
  }
}
@media (max-width: 768px) {
  .services-card2 {
    width: 100%;
    border-radius: 68px;
    height: 238px;
    margin-bottom: 24px;
  }
}
.services-card3 {
  margin-bottom: 32px;
  border-radius: 328px;
  height: 890px;
}
@media (max-width: 991px) {
  .services-card3 {
    height: 468px;
    border-radius: 164px;
  }
}
@media (max-width: 768px) {
  .services-card3 {
    height: 458px;
    border-radius: 168px;
    margin-bottom: 24px;
  }
}
.services-card4 {
  border-radius: 264px;
  height: 750px;
}
@media (max-width: 991px) {
  .services-card4 {
    height: 396px;
    border-radius: 140px;
  }
}
@media (max-width: 768px) {
  .services-card4 {
    height: 388px;
    border-radius: 130px;
  }
}
.services-card5 {
  height: 908px;
}
@media (max-width: 991px) {
  .services-card5 {
    height: 487px;
  }
}
@media (max-width: 768px) {
  .services-card5 {
    height: 574px;
  }
}
.services-card5 .progressive-image__txt br {
  display: none;
}
@media (max-width: 768px) {
  .services-card5 .progressive-image__txt br {
    display: block;
  }
}
.services-card__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  white-space: nowrap;
  text-align: center;
}
.services-card__txt br {
  display: none;
}
@media (max-width: 991px) {
  .services-card__txt br {
    display: block;
  }
}
.services-card__txt-coming {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 768px) {
  .services-card__txt-coming {
    top: 24px;
  }
}
.services-card__txt-descr {
  width: 417px;
  text-align: center;
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}
@media (max-width: 768px) {
  .services-card__txt-descr {
    width: 296px;
    bottom: 40px;
  }
}
@media (max-width: 350px) {
  .services-card__txt-descr {
    width: 280px;
  }
}
.services-card div {
  width: 100%;
  height: 100%;
  padding-top: 100%;
  background-size: cover !important;
  background-position: center bottom !important;
  transition: transform 0.2s ease-out;
}
.services-card .loadingImage {
  filter: blur(70px);
  height: 100%;
  transition: filter 1s ease-in, transform 0.2s ease-out;
}
.services-card .overlay {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  position: relative;
}
@media (max-width: 991px) {
  footer {
    flex-direction: column-reverse;
  }
}
footer .footer-right {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991px) {
  footer .footer-right {
    width: 100%;
    margin-bottom: 40px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  footer .footer-right {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
footer .footer-create {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
footer .menu-footer {
  display: flex;
  padding-left: 0;
}
@media (max-width: 768px) {
  footer .menu-footer:first-of-type {
    margin-bottom: 8px;
  }
}
footer .menu-footer li {
  list-style: none;
  margin-right: 24px;
}
footer .menu-footer li:last-of-type {
  margin-right: 0;
}
@media (max-width: 991px) {
  footer .menu-footer li:last-of-type {
    margin-right: 24px;
  }
}
@media (max-width: 768px) {
  footer .menu-footer li:last-of-type {
    margin-right: 0px;
  }
}
footer .menu-footer li a {
  font-family: "MonumentGrotesk";
  font-weight: 500;
  font-size: 11.25px;
  letter-spacing: 0.16em;
  line-height: 120%;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
}

.about-row-main {
  text-align: center;
  width: 368px;
  margin: 35vh auto 156px;
}
@media (max-width: 991px) {
  .about-row-main {
    margin: 475px auto 156px;
  }
}
.about-row-main.last {
  margin: 0 auto 160px;
}
@media (max-width: 991px) {
  .about-row-main.last {
    margin: 0 auto 104px;
  }
}
@media (max-width: 768px) {
  .about-row-main.last {
    margin: 0 auto 120px;
  }
}
.about-row-main.last .main-heading {
  margin-bottom: 88px;
}
@media (max-width: 768px) {
  .about-row-main.last .main-heading {
    margin-bottom: 56px;
  }
}
@media (max-width: 768px) {
  .about-row-main {
    margin: 120px auto 56px;
    width: 298px;
  }
}
.about-row-main .main-heading {
  margin-bottom: 156px;
}
@media (max-width: 768px) {
  .about-row-main .main-heading {
    margin-bottom: 80px;
  }
}
.about-row-main__descr p {
  margin-bottom: 15px;
}

.about-wrapper {
  display: flex;
  width: 55%;
  margin: 0 auto 200px;
}
@media (max-width: 1250px) {
  .about-wrapper {
    width: 65%;
  }
}
@media (max-width: 991px) {
  .about-wrapper {
    width: 100%;
    margin: 0 auto 156px;
  }
}
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
    margin: 0 auto 120px;
  }
}
.about-wrapper .about-row {
  width: calc(50% - 44px);
  text-align: center;
}
@media (max-width: 768px) {
  .about-wrapper .about-row {
    width: 298px;
    margin-bottom: 56px;
  }
  .about-wrapper .about-row:last-of-type {
    margin-bottom: 0;
  }
}
.about-wrapper .about-row:nth-of-type(odd) {
  margin-right: 88px;
}
@media (max-width: 768px) {
  .about-wrapper .about-row:nth-of-type(odd) {
    margin-right: 0;
  }
}
.about-wrapper .about-row__heading {
  margin-bottom: 24px;
}
.about-wrapper .about-row__descr p {
  margin-bottom: 15px;
}
.about-wrapper .about-row__descr p:last-of-type {
  margin-bottom: 0;
}

.images-block {
  width: 100%;
  border-radius: 496px;
  position: relative;
  overflow: hidden;
  height: 770px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 156px;
}
@media (max-width: 991px) {
  .images-block {
    border-radius: 284px;
    height: 826px;
  }
}
@media (max-width: 768px) {
  .images-block {
    border-radius: 130px;
    height: 540px;
    margin-bottom: 120px;
  }
}
@media (max-width: 360px) {
  .images-block {
    border-radius: 90px;
  }
}
.images-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.images-block .main-heading {
  width: 70%;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .images-block .main-heading {
    width: 90%;
  }
}

.waiting-list {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #EAEBE5;
  width: 100%;
  height: 100%;
  z-index: 120;
  display: none;
}
.waiting-list .back_link {
  position: absolute;
  top: 32px;
  left: 32px;
  text-decoration: none;
  cursor: pointer;
  color: #000;
}
.waiting-list .sucsess-popup {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "MonumentGrotesk";
  font-weight: 500;
  font-size: 11.25px;
  letter-spacing: 0.16em;
  line-height: 140%;
  color: #000;
  text-transform: uppercase;
}
.waiting-list__title {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.waiting-list__form {
  width: 466px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(3.2%);
  visibility: hidden;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .waiting-list__form {
    width: 320px;
  }
}
.waiting-list__form.active {
  visibility: visible;
  display: flex;
  transform: translateY(0);
}
.waiting-list__form .input {
  display: block;
  margin-bottom: 56px;
  width: 100%;
  position: relative;
}
.waiting-list__form input {
  display: block;
  width: 100%;
  background-color: transparent;
  border: unset;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 8px;
  text-align: center;
  font-family: "MonumentGrotesk";
  font-weight: 500;
  font-size: 11.25px;
  letter-spacing: 0.16em;
  line-height: 140%;
  color: #000;
  text-transform: uppercase;
  outline: none;
}
.waiting-list__form input::placeholder {
  opacity: 1;
}
.waiting-list__form input:focus {
  background-color: transparent;
  border: unset;
  border-bottom: 0.5px solid rgb(0, 0, 0);
}
.waiting-list__form button {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translate(-50%);
  background-color: transparent;
  border: unset;
  font-family: "MonumentGrotesk";
  font-weight: 500;
  font-size: 11.25px;
  letter-spacing: 0.16em;
  line-height: 140%;
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
}
.waiting-list .blur-red-circle {
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background-color: rgba(202, 178, 162, 0.5);
  filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
  position: absolute;
  animation: blurRedCircle 15s infinite;
  z-index: -1;
}
@media (max-width: 768px) {
  .waiting-list .blur-red-circle {
    width: 400px;
    height: 400px;
    filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    animation: blurRedCircleMobile 15s infinite;
  }
}
.waiting-list .blur-blue-circle {
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background-color: #CAD1D0;
  filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  position: absolute;
  animation: blurBlueCircle 15s infinite;
  z-index: -1;
}
@media (max-width: 768px) {
  .waiting-list .blur-blue-circle {
    filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    width: 400px;
    height: 400px;
    animation: blurBlueCircleMobile 15s infinite;
  }
}

.error {
  text-align: center;
  width: 100%;
  display: block;
  font-family: "MonumentGrotesk";
  font-weight: 500;
  font-size: 11.25px;
  letter-spacing: 0.16em;
  line-height: 140%;
  color: #000;
  text-transform: uppercase;
  color: rgb(233, 38, 38);
  margin-top: 8px;
}

@keyframes blurBlueCircle {
  0% {
    top: -50%;
    left: 20%;
    @media (max-width: 768px) {
      top: 15%;
    }
  }
  50% {
    top: 20%;
    left: 60%;
  }
  70% {
    top: 40%;
    left: 30%;
  }
  85% {
    top: 15%;
    left: 5%;
  }
  100% {
    top: -50%;
    left: 20%;
    @media (max-width: 768px) {
      top: 15%;
    }
  }
}
@-webkit-keyframes blurBlueCircle {
  0% {
    top: -50%;
    left: 20%;
  }
  50% {
    top: 20%;
    left: 60%;
  }
  70% {
    top: 40%;
    left: 30%;
  }
  85% {
    top: 15%;
    left: 5%;
  }
  100% {
    top: -50%;
    left: 20%;
  }
}
@media (max-width: 768px) {
  @keyframes blurBlueCircleMobile {
    0% {
      top: 15%;
      left: 20%;
    }
    50% {
      top: 20%;
      left: 60%;
    }
    70% {
      top: 40%;
      left: 30%;
    }
    85% {
      top: 15%;
      left: 5%;
    }
    100% {
      top: 15%;
      left: 20%;
    }
  }
  @-webkit-keyframes blurBlueCircleMobile {
    0% {
      top: 15%;
      left: 20%;
    }
    50% {
      top: 20%;
      left: 60%;
    }
    70% {
      top: 40%;
      left: 30%;
    }
    85% {
      top: 15%;
      left: 5%;
    }
    100% {
      top: 15%;
      left: 20%;
    }
  }
}
@keyframes blurRedCircle {
  0% {
    top: -40%;
    left: 1%;
    @media (max-width: 768px) {
      top: 10%;
    }
  }
  50% {
    top: 80%;
    left: 15%;
  }
  70% {
    top: 1%;
    left: 60%;
  }
  75% {
    top: 15%;
    left: 40%;
  }
  100% {
    top: -40%;
    left: 1%;
    @media (max-width: 768px) {
      top: 10%;
    }
  }
}
@-webkit-keyframes blurRedCircle {
  0% {
    top: -40%;
    left: 1%;
    @media (max-width: 768px) {
      top: 10%;
    }
  }
  50% {
    top: 80%;
    left: 15%;
  }
  70% {
    top: 1%;
    left: 60%;
  }
  75% {
    top: 15%;
    left: 40%;
  }
  100% {
    top: -40%;
    left: 1%;
    @media (max-width: 768px) {
      top: 10%;
    }
  }
}
@media (max-width: 768px) {
  @keyframes blurRedCircleMobile {
    0% {
      top: 10%;
      left: 1%;
    }
    50% {
      top: 80%;
      left: 15%;
    }
    70% {
      top: 1%;
      left: 60%;
    }
    75% {
      top: 15%;
      left: 40%;
    }
    100% {
      top: 10%;
      left: 1%;
    }
  }
  @-webkit-keyframes blurRedCircleMobile {
    0% {
      top: 10%;
      left: 1%;
    }
    50% {
      top: 80%;
      left: 15%;
    }
    70% {
      top: 1%;
      left: 60%;
    }
    75% {
      top: 15%;
      left: 40%;
    }
    100% {
      top: 10%;
      left: 1%;
    }
  }
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: unset !important;
}

.iti__selected-dial-code {
  font-family: "MonumentGrotesk";
  font-weight: 500;
  font-size: 11.25px;
  letter-spacing: 0.16em;
  line-height: 140%;
  color: #000;
  text-transform: uppercase;
}

.iti--allow-dropdown {
  width: 100%;
  position: relative;
}

#phone-error {
  position: absolute;
  bottom: -17px;
  left: 0;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=tel], .iti--allow-dropdown input[type=text], .iti--separate-dial-code input, .iti--separate-dial-code input[type=tel], .iti--separate-dial-code input[type=text] {
  padding-left: 0 !important;
}

.iti__flag {
  display: none !important;
}

.iti__selected-flag {
  padding: 0 6px 0 0 !important;
}

.iti__country-list {
  box-shadow: unset !important;
  background-color: #f2f3f3 !important;
  border: unset !important;
  font-weight: 500;
  font-family: "MonumentGrotesk";
  font-size: 10.25px;
  line-height: 15.75px;
  padding: 16px 0 !important;
  letter-spacing: 2px;
  width: 466px;
}
@media (max-width: 768px) {
  .iti__country-list {
    width: 320px;
  }
}

.iti__flag-box {
  width: 0 !important;
}

.iti__dial-code {
  color: #000000 !important;
}

.cookies-popup {
  background-color: #F7F8F4;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
  display: inline-flex;
  padding: 16px;
  position: fixed;
  bottom: 16px;
  right: 16px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
@media (max-width: 768px) {
  .cookies-popup {
    bottom: 32px;
    width: calc(100% - 32px);
    justify-content: space-between;
    align-items: flex-start;
  }
}
.cookies-popup.show {
  opacity: 1;
  visibility: visible;
}
.cookies-popup img {
  width: 14px;
  height: 14px;
  display: block;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .cookies-popup img {
    margin-left: 40px;
  }
}

.content-rules {
  width: 39%;
  margin: 0 auto;
  font-family: "MonumentGroteskRegular";
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 7%;
  line-height: 19.5px;
}
@media (max-width: 1050px) {
  .content-rules {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .content-rules {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .content-rules {
    width: 100%;
    padding: 0 24px;
  }
}
.content-rules h1 {
  margin-bottom: 88px;
  text-align: center;
  font-family: "Ztbrososkon";
  font-weight: 200;
  font-size: 54px;
  line-height: 62px;
  letter-spacing: -0.5px;
  color: #000;
}
@media (max-width: 768px) {
  .content-rules h1 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 768px) {
  .content-rules h1 {
    margin-bottom: 80px;
  }
}
.content-rules .point {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .content-rules .point {
    margin-bottom: 56px;
  }
}
.content-rules p {
  margin-bottom: 20px;
}
.content-rules ol {
  padding-left: 20px;
}
.content-rules span {
  display: block;
  margin-bottom: 20px;
}
.content-rules span a {
  color: #000;
  text-decoration: underline;
}
.content-rules h4 {
  font-family: "MonumentGrotesk";
  font-weight: 500;
  font-size: 11.25px;
  letter-spacing: 0.16em;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.content-rules ul {
  padding-left: 0px;
}
.content-rules ul li {
  padding-left: 22px;
  list-style: none;
  margin-bottom: 20px;
  position: relative;
}
.content-rules ul li:first-of-type {
  margin-top: 20px;
}
.content-rules ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0px;
  width: 3px;
  height: 3px;
  background-color: #000;
}
.content-rules ul li a {
  color: #000;
}

.policy-page {
  margin: 240px 0 160px;
}
@media (max-width: 768px) {
  .policy-page {
    margin: 144px 0 120px;
  }
}
.policy-page .table-block {
  width: 68%;
  margin: 80px auto 80px;
}
@media (max-width: 1050px) {
  .policy-page .table-block {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .policy-page .table-block {
    width: 100%;
    padding-left: 24px;
    overflow-x: auto;
    margin: 64px auto 64px;
  }
}
.policy-page table {
  width: 100%;
  border-collapse: collapse;
  font-family: "MonumentGroteskRegular";
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 7%;
  line-height: 19.5px;
}
@media (max-width: 768px) {
  .policy-page table {
    width: 991px;
  }
}
.policy-page table thead tr {
  padding-bottom: 8px;
}
.policy-page table thead tr th {
  padding: unset;
  border-bottom: 1px solid #000;
  text-transform: uppercase;
  text-align: start;
  padding-bottom: 8px;
  font-family: "MonumentGroteskRegular";
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 7%;
  line-height: 19.5px;
}
.policy-page table thead tr td {
  margin-bottom: 32px;
}
.policy-page table tbody tr td {
  padding-top: 32px;
  width: 33.3333333333%;
  padding-right: 48px;
}

.main-popup-wrap.services-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 120;
  background: rgba(234, 235, 229, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: none;
  cursor: pointer;
}
.main-popup-wrap.services-popup .popup-close {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 58;
  overflow: auto;
}
.main-popup-wrap.services-popup .popup-closer {
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 12px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 200;
}
.main-popup-wrap.services-popup .popup-closer img {
  width: 10px;
  height: 10px;
}
.main-popup-wrap.services-popup .popup {
  position: relative;
  z-index: 110;
  border-radius: 5px;
  max-width: 560px;
  margin: auto;
}

.services-slider-popup {
  width: 600px;
  overflow-y: scroll;
  max-height: 900px;
  height: 100%;
  margin: auto;
  padding-bottom: 250px;
  padding-top: 80px;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none;
  transform: translateY(10%);
  position: relative;
  transition: 0.8s;
  transition-delay: 0.3s;
}
.services-slider-popup:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 20;
}
.services-slider-popup.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.services-slider-popup::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
@media (max-width: 991px) {
  .services-slider-popup {
    width: 560px;
  }
}
@media (max-width: 768px) {
  .services-slider-popup {
    width: 369px;
  }
}
.services-slider-popup.shown2 {
  display: flex;
  flex-direction: column;
}
.services-slider-popup.shown2 .services-card-popup:nth-of-type(1) {
  order: 2;
}
.services-slider-popup.shown2 .services-card-popup:nth-of-type(2) {
  order: 3;
}
.services-slider-popup.shown2 .services-card-popup:nth-of-type(3) {
  order: 1;
}
.services-slider-popup.shown2 .services-card-popup:nth-of-type(4) {
  order: 4;
}
.services-slider-popup.shown2 .services-card-popup:nth-of-type(5) {
  order: 5;
}
.services-slider-popup.shown3 {
  display: flex;
  flex-direction: column;
}
.services-slider-popup.shown3 .services-card-popup:nth-of-type(1) {
  order: 2;
}
.services-slider-popup.shown3 .services-card-popup:nth-of-type(2) {
  order: 1;
}
.services-slider-popup.shown3 .services-card-popup:nth-of-type(3) {
  order: 3;
}
.services-slider-popup.shown3 .services-card-popup:nth-of-type(4) {
  order: 4;
}
.services-slider-popup.shown3 .services-card-popup:nth-of-type(5) {
  order: 5;
}
.services-slider-popup.shown4 {
  display: flex;
  flex-direction: column;
}
.services-slider-popup.shown4 .services-card-popup:nth-of-type(1) {
  order: 2;
}
.services-slider-popup.shown4 .services-card-popup:nth-of-type(2) {
  order: 3;
}
.services-slider-popup.shown4 .services-card-popup:nth-of-type(3) {
  order: 4;
}
.services-slider-popup.shown4 .services-card-popup:nth-of-type(4) {
  order: 1;
}
.services-slider-popup.shown4 .services-card-popup:nth-of-type(5) {
  order: 5;
}
.services-slider-popup.shown5 {
  display: flex;
  flex-direction: column;
}
.services-slider-popup.shown5 .services-card-popup:nth-of-type(1) {
  order: 2;
}
.services-slider-popup.shown5 .services-card-popup:nth-of-type(2) {
  order: 3;
}
.services-slider-popup.shown5 .services-card-popup:nth-of-type(3) {
  order: 4;
}
.services-slider-popup.shown5 .services-card-popup:nth-of-type(4) {
  order: 5;
}
.services-slider-popup.shown5 .services-card-popup:nth-of-type(5) {
  order: 1;
}

.services-card-popup {
  border-radius: 40px;
  background-color: #F7F8F4;
  opacity: 0.2;
  transition: 0.4s;
  margin-bottom: 30px;
  width: 100%;
  filter: grayscale(0.9);
  transform: scale(0.96);
}
.services-card-popup.visible {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1);
}
@media (max-width: 768px) {
  .services-card-popup {
    border-radius: 32px;
  }
}
.services-card-popup__img {
  height: 600px;
  width: 100%;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services-card-popup__img {
    height: 400px;
    border-radius: 32px 32px 0 0;
  }
}
.services-card-popup__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-card-popup__text {
  padding: 64px 64px 104px;
  font-family: "MonumentGroteskRegular";
  font-weight: 400;
  font-size: 13px;
  line-height: 19.2px;
  color: #000;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .services-card-popup__text {
    padding: 40px 32px;
  }
}
.services-card-popup__text h3 {
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 13px;
  line-height: 19.2px;
  color: #000;
}
@media (max-width: 768px) {
  .services-card-popup__text h3 {
    margin-bottom: 24px;
  }
}
.services-card-popup__text p {
  margin-bottom: 24px;
}
.services-card-popup__text p:last-of-type {
  margin-bottom: 0;
}
.services-card-popup__text ul {
  margin-bottom: 24px;
  padding-left: 0;
}
.services-card-popup__text ul li {
  margin-bottom: 12px;
  list-style: none;
}
.services-card-popup__text ul li:last-of-type {
  margin-bottom: 0;
}