body {
  background: #AA2250;
  background-repeat: repeat;
  background-position: center;
  color: #fff;
  overflow-x: hidden;
  transition: 1s ease-in-out;
}

body.show-particles {
  background-image: url("../img/Particles.png");
  animation: bgAnim 5s ease-in-out infinite;
}

@keyframes bgAnim {
  0% {
    background-position-x: 0;
    background-position-y: 0;
  }
  50% {
    background-position-x: 10px;
    background-position-y: 0;
  }
  100% {
    background-position-x: 0;
    background-position-y: 0;
  }
}
body,
html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}
body ::-webkit-scrollbar,
html ::-webkit-scrollbar {
  width: 5px;
}
body ::-webkit-scrollbar-track,
html ::-webkit-scrollbar-track {
  background: #000;
}
body ::-webkit-scrollbar-thumb,
html ::-webkit-scrollbar-thumb {
  background-color: #EF5698;
  border-radius: 20px;
}

.body--hidden {
  overflow-y: hidden;
}

.landscape {
  display: none;
}

* {
  font-family: "Geologica", sans-serif;
}

.anchor {
  cursor: pointer;
}

.container {
  position: relative;
  height: 100%;
  margin: auto 280px auto 280px;
  padding: 64px 0;
  box-sizing: border-box;
}

.second-container {
  position: relative;
  max-width: 1192px;
  width: 100%;
  height: 100%;
  margin: auto;
  box-sizing: border-box;
  z-index: 10;
}

.burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 480px;
  width: 100vh;
  height: 100%;
  background: #000;
  z-index: 100;
  transform: translateX(-150%);
  transition: 0.5s ease-in-out;
}
.burger-menu:before {
  position: absolute;
  top: 0;
  right: -110px;
  content: "";
  background: url("../img/left-bg.png") no-repeat left/cover;
  height: 100vh;
  width: 184px;
}
.burger-menu .nav {
  position: absolute;
  bottom: 64px;
  left: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.burger-menu .nav .anchor {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 13px;
  height: 32px;
  box-sizing: border-box;
  line-height: 138%;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.burger-menu .nav .anchor:hover {
  color: #0BB8A9;
}
.burger-menu .nav-social {
  position: absolute;
  bottom: 64px;
  right: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.burger-menu.open {
  transform: translateX(0);
}

.tab2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid transparent;
  width: 48px;
  height: 32px;
  border-radius: 16px;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  background: #000;
}
.tab2:hover {
  color: #0BB8A9;
}

.tab2.active {
  border: 2px solid #0BB8A9;
}

.left-side {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 290px;
  background: url("../img/left-bg.png") repeat-y left/contain;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 64px 0 64px 32px;
  box-sizing: border-box;
  z-index: 100;
}

.burger {
  position: relative;
  z-index: 121;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 36px;
  cursor: pointer;
}
.burger span {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.5s ease-in-out;
}
.burger:hover span {
  background: #0BB8A9;
}

.burger.open span:first-child {
  transform: rotate(45deg) translateX(4px) translateY(4px);
}
.burger.open span:last-child {
  transform: rotate(-45deg);
}

#menu {
  position: relative;
  z-index: 121;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.right-side {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 290px;
  background: url("../img/right-bg.png") repeat-y right/contain;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  padding: 64px 32px 64px 0;
  box-sizing: border-box;
  z-index: 100;
}

.lang-switcher {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.control-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.control-btns div {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.control-btns div path {
  transition: 0.3s ease-in-out;
}
.control-btns div:hover path {
  fill: #0BB8A9;
}

.prev-page-btn {
  display: flex;
  align-items: flex-end;
  transform: rotate(180deg);
  overflow: hidden;
  height: 20px;
}

.prev-page-btn.long {
  height: 36px;
  transform: rotate(180deg) translateY(-52px);
}

.next-page-btn.hidden {
  transform: translateY(100%);
  opacity: 0;
}

.prev-page-btn.hidden {
  transform: translateY(100%);
  opacity: 0;
}

#screen1 {
  position: relative;
  background: url("../img/first-screen.jpg") no-repeat center/cover;
  width: 100%;
  height: 100vh;
  z-index: 10;
  opacity: 1;
  transition: 1s ease-in-out;
}

.screen1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #AA2250;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transition: 1s ease-in-out;
}

.screen1-overlay.show {
  opacity: 1;
}

#screen1.hide {
  opacity: 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.45);
}

.socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-text {
  margin-right: 16px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.04em;
}

.social {
  transition: 0.3s ease-in-out;
}
.social:hover {
  opacity: 0.45;
}

.center {
  position: absolute;
  bottom: 160px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title {
  position: relative;
  z-index: 1;
}

.dates {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.date {
  text-align: center;
}

.date-day {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.date-mouth {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.btn {
  position: relative;
  max-width: 200px;
  width: 100%;
  height: 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.03em;
  background: #000 url("../img/btn.png") no-repeat center/cover;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.2);
}
.btn:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 4px solid #fff;
  opacity: 0;
  transition: 0.3s ease-in-out;
  border-radius: 24px;
}
.btn:hover:before {
  opacity: 1;
}

.footer {
  position: absolute;
  bottom: 64px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 13px;
  line-height: 138%;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.6);
}
.bb-logo img {
  max-width: 36px;
  width: 100%;
}
.bb-logo span {
  color: #fff;
}

.sticker {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticker img {
  max-width: 48px;
  width: 100%;
}

.sticker-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 150%;
}

.scroll-tooltip {
  display: flex;
  align-items: center;
  gap: 16px;
}

.scroll-tooltip-text {
  text-align: right;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

#screen2 {
  position: relative;
  padding-top: 160px;
  z-index: 2;
}

.ellipse {
  position: absolute;
  top: 0;
}

.smoke {
  max-width: 800px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(10deg);
  z-index: 1;
}
.smoke img {
  width: 100%;
}

.ellipse-head-mobile {
  display: none;
}

.ellipse-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 836px;
  z-index: 2;
}

.head-dec {
  position: absolute;
  top: 0;
  left: 50px;
  max-width: 500px;
}
.head-dec img {
  width: 100%;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.small-text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.h2 {
  font-weight: 800;
  font-size: 60px;
  letter-spacing: -0.04em;
}

.section-title-right .small-text {
  text-align: right;
}

.screen2-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.screen2-swiper .swiper-slide {
  width: 100%;
}

.swiper-scrollbar {
  display: none;
}

.screen2-swiper-slide {
  max-width: 376px;
  width: 100%;
  height: 492px;
  border-radius: 32px;
  padding-top: 8px;
  background: #000;
  box-sizing: border-box;
  box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.screen2-swiper-slide .slide-img {
  width: 100%;
  height: 100%;
  transition: 1s ease-in-out;
}
.screen2-swiper-slide .slide-img:hover {
  transform: scale(1.1) rotate(-5deg);
}
.screen2-swiper-slide .slide-image {
  max-width: 360px;
  width: 100%;
  height: 280px;
  margin: auto;
  box-sizing: border-box;
  border-radius: 24px;
  overflow: hidden;
}
.screen2-swiper-slide .terms01 {
  background: url("../img/Terms_01.jpg") no-repeat center/cover;
}
.screen2-swiper-slide .terms02 {
  background: url("../img/Terms_02.jpg") no-repeat center/cover;
}
.screen2-swiper-slide .terms03 {
  background: url("../img/Terms_03.jpg") no-repeat center/cover;
}
.screen2-swiper-slide .slide-bottom {
  padding: 16px 32px 32px 32px;
}
.screen2-swiper-slide .slide-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.screen2-swiper-slide .slide-title .title {
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.05em;
  color: #EF5698;
}
.screen2-swiper-slide .slide-title .arrow {
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.05em;
  text-align: center;
  transform: rotate(135deg);
  color: #0BB8A9;
}
.screen2-swiper-slide .slide-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.03em;
  margin-top: 16px;
}

#screen3 {
  position: relative;
  margin-top: 120px;
}
#screen3 .ellipse {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: -30px;
}
#screen3 .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: flex-end;
}
#screen3 .section-title-right {
  max-width: 288px;
  width: 100%;
}
#screen3 .section-title {
  align-items: flex-end;
}

.screen3-swiper-slide {
  position: relative;
  background: #000;
  border-radius: 32px;
  max-width: 376px;
  height: 492px;
  width: 100%;
  padding-top: 8px;
  box-sizing: border-box;
  box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.2);
}
.screen3-swiper-slide .slide-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}
.screen3-swiper-slide .slide-img .img {
  width: 100%;
  height: 100%;
  transition: 1s ease-in-out;
}
.screen3-swiper-slide .slide-img .img:hover {
  transform: scale(1.1) rotate(-5deg);
}
.screen3-swiper-slide .slide-image {
  position: relative;
  max-width: 360px;
  width: 100%;
  height: 280px;
  margin: auto;
  border-radius: 24px;
}
.screen3-swiper-slide .prize01 {
  height: 360px;
}
.screen3-swiper-slide .prize01 .img {
  background: url("../img/Prize_01.jpg") no-repeat center/cover;
}
.screen3-swiper-slide .prize02 {
  height: 320px;
}
.screen3-swiper-slide .prize02 .img {
  background: url("../img/Prize_02.jpg") no-repeat center/cover;
}
.screen3-swiper-slide .prize03 .img {
  background: url("../img/Prize_03.jpg") no-repeat center/cover;
}
.screen3-swiper-slide .prize04 .img {
  background: url("../img/Prize_04.jpg") no-repeat center/cover;
}
.screen3-swiper-slide .prize05 .img {
  background: url("../img/Prize_05.jpg") no-repeat center/cover;
}
.screen3-swiper-slide .prize06 .img {
  background: url("../img/Prize_06.jpg") no-repeat center/cover;
}
.screen3-swiper-slide .tag {
  position: absolute;
  bottom: 5px;
  left: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
  border-radius: 16px;
  padding: 0 8px;
  background: #EF5698;
  z-index: 2;
}
.screen3-swiper-slide .small {
  bottom: -8px;
  z-index: 1;
}
.screen3-swiper-slide .position {
  position: absolute;
  z-index: 20;
  top: -16px;
  left: -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.05em;
  width: 72px;
  height: 72px;
  box-sizing: border-box;
  border: 4px solid #fff;
  box-shadow: 12px 12px 0 0 #000;
  background: #0BB8A9;
  transform: rotate(45deg);
}
.screen3-swiper-slide .position svg {
  transform: rotate(-45deg);
}
.screen3-swiper-slide .slide-bottom {
  padding: 16px 32px 32px 32px;
}
.screen3-swiper-slide .position-text {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #0BB8A9;
  margin-bottom: 8px;
  line-height: 150%;
}
.screen3-swiper-slide .slide-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.screen3-swiper-slide .slide-title .title {
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.05em;
  line-height: 120%;
}
.screen3-swiper-slide .slide-title .arrow {
  font-weight: 800;
  font-size: 30px;
  color: #EF5698;
  transform: rotate(-135deg);
}
.screen3-swiper-slide:last-child .slide-title {
  margin-top: 23px;
}

.screen3-swiper-slide.special {
  height: 460px;
}
.screen3-swiper-slide.special .slide-title {
  align-items: center;
}
.screen3-swiper-slide.special .slide-bottom .title {
  font-size: 22px;
  line-height: 127%;
  margin-bottom: 8px;
}
.screen3-swiper-slide.special .slide-title .title {
  font-size: 22px;
  line-height: 127%;
}
.screen3-swiper-slide.special .position {
  font-size: 22px;
}

.second {
  height: 452px;
}

.third {
  height: 412px;
}

.screen3-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 24px;
  max-width: 184px;
  width: 100%;
  height: 40px;
  background: #0BB8A9;
}
.screen3-btn:before {
  display: none;
}
.screen3-btn path {
  transition: 0.3s ease-in-out;
}
.screen3-btn:hover {
  color: #fff;
}
.screen3-btn:hover svg {
  transform: translateX(0);
}
.screen3-btn:hover path {
  stroke: #EF5698;
}

#screen4 {
  position: relative;
  margin-top: 120px;
  overflow: hidden;
}
#screen4 .ellipse {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  z-index: 3;
  pointer-events: none;
}
#screen4 .section-title {
  display: block;
  text-align: center;
}
#screen4 .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.cookies img {
  width: 100%;
}

.cookie {
  position: absolute;
  z-index: 1;
}

.cookie--1 {
  transform: rotate(20deg);
  top: 700px;
  right: 580px;
  max-width: 240px;
  z-index: 2;
}

.cookie--2 {
  filter: blur(3px);
  transform: rotate(-20deg);
  max-width: 360px;
  top: 900px;
  right: 50px;
}

.cookie--3 {
  filter: blur(2px);
  max-width: 160px;
  top: 1000px;
  left: 120px;
}

.cookie--4 {
  max-width: 200px;
  transform: rotate(-20deg);
  bottom: -130px;
  left: 730px;
}

.screen4-swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 376px;
  width: 100%;
  height: 400px;
  border-radius: 32px;
  border: 2px solid #000;
  padding: 32px;
  box-sizing: border-box;
}
.screen4-swiper-slide .btn {
  max-width: 100%;
}
.screen4-swiper-slide .slide-title {
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.05em;
}
.screen4-swiper-slide .arrow {
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  color: #000;
  margin-top: 32px;
}
.screen4-swiper-slide .slide-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.03em;
}
.screen4-swiper-slide .slide-text span {
  background: #000000;
  padding: 5px;
  border-radius: 4px;
}

.main-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 0;
  margin-top: 48px;
}

.info {
  font-weight: 500;
  font-size: 13px;
  line-height: 138%;
  letter-spacing: -0.04em;
}

.popup-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9) url("../img/Particles.png");
  z-index: 99999;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.popup {
  max-width: 1096px;
  width: 100%;
  transform: translateY(-100%);
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.popup-overlay.show {
  user-select: auto;
  pointer-events: auto;
  opacity: 1;
}
.popup-overlay.show .popup {
  user-select: auto;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.popup-title {
  position: relative;
  margin-bottom: 48px;
}
.popup-title .small-text {
  color: #0BB8A9;
}
.close-popup {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}

.popup-content {
  display: flex;
  gap: 8px;
}

.partner {
  border-radius: 32px;
  padding: 32px;
  max-width: 360px;
  width: 100%;
  height: 432px;
  background: #EF5698;
  box-sizing: border-box;
}
.partner:nth-child(2) {
  background: url("../img/Popup_Image.jpg") no-repeat center/cover;
}
.partner .title {
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.05em;
}
.partner .logo {
  margin: 24px auto 16px auto;
  border-radius: 8px;
  overflow: hidden;
}
.partner .logo img {
  width: 100%;
}
.partner .text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.03em;
}
.partner .tag {
  font-weight: 500;
  font-size: 13px;
  line-height: 138%;
  letter-spacing: -0.04em;
  color: #fff;
  background: #0BB8A9;
  border-radius: 16px;
  padding: 0 8px;
  max-width: 102px;
  width: 100%;
  box-sizing: border-box;
  margin: 16px 0;
}
.partner .subtitle {
  font-weight: 800;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: -0.05em;
}

.mobile {
  display: none;
}

.mobile-bottom-title {
  display: none;
}

.mobile-btn {
  display: none;
}

.mobile-header {
  display: none;
}

.mobile-footer {
  display: none;
}

.mobile-ellipse {
  display: none;
}

.mobile-br {
  display: none;
}

.mobile-menu {
  display: none;
}

.media1400 {
  display: none;
}

/*# sourceMappingURL=style.css.map */
