* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.jS {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.jC {
  display: flex;
  justify-content: space-between;

  align-items: center;
}

.jE {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.j {
  display: flex;
  justify-content: space-between;
}
.flexCol {
  display: flex;
  flex-direction: column;
}
.gap30 {
  gap: 30px;
}
.gap25 {
  gap: 30px;
}
.gap20 {
  gap: 20px;
}
.gap15 {
  gap: 15px;
}
.gap10 {
  gap: 10px;
}
.gap5 {
  gap: 10px;
}
.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.g3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.g4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.g5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

@media (max-width: 1200px) {
  .g5 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .g4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1000px) {
  .g5 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .jS,
  .jC,
  .jE,
  .j {
    align-items: center;
    flex-direction: column;
  }
  .g5,
  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr;
  }
}

.break {
  word-break: break-all;
}
a,
button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
button:focus,
a:focus {
  outline: 4px solid #fff;
  filter: brightness(90%);
}
@media (hover: hover) {
  button:hover,
  a:hover {
    filter: brightness(80%);
  }
}

textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  background: #034430;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "League Spartan", sans-serif;
}

.container {
  max-width: 1150px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-block: 16px;
}
.scrolled.header {
  backdrop-filter: blur(10px);
  background-color: #034431cf;
}

.header__inner {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
  max-width: 60px;
  width: 100%;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__links a {
  display: block;
  color: #fff;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}
.header__btns {
  width: fit-content;
  border-radius: 999px;
  background: #12966d;
  backdrop-filter: blur(12px);
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.header__btn1 {
  display: block;
  width: fit-content;
  border-radius: 9999px;
  background: #f0ac5b;
  padding: 8px 16px;
  color: #000;
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}
.header__btn2 {
  display: block;
  width: fit-content;
  color: #fff;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid #fff;
  opacity: 0.8;
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}
.close-img {
  display: none;
}

.header__menu {
  display: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.home {
  padding-block: 154px 80px;
  background: #034430 url(../images/bg1.png) center / cover no-repeat;
}

.home__title {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  letter-spacing: 0.42px;
  margin-bottom: 24px;
}
.home__text {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
  max-width: 640px;
  width: 100%;
  margin: 0 auto 24px;
}
.home__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.home__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.home__img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.home__label {
  color: #fff;
  font-family: "League Spartan";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  letter-spacing: 0.24px;
}
.p80 {
  padding-block: 80px;
}

.discover__title {
  max-width: 628px;
  width: 100%;
  margin: 0 auto 16px;
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  letter-spacing: 0.42px;
}
.discover__subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
  margin-bottom: 40px;
}

.discover__item {
  padding: 32px;
  border-left: 1px solid #fece8034;
}
.discover__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.discover__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.discover__label {
  color: #fff;
  font-family: "League Spartan";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  letter-spacing: 0.24px;
}
.discover__text {
  color: rgb(255, 255, 255);
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
  margin-bottom: 24px;
}
.discover__btn img {
  width: 24px;
  height: 24px;
}
.discover__btn {
  opacity: 0.8;
  border-radius: 9999px;
  border: 1px solid #ffffffc6;
  padding: 8px 16px;
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 8px;
}
.about {
  background: #034430 url(../images/bg2.png) center / cover no-repeat;
}
.about__inner {
  padding: 32px;
  background: rgba(3, 30, 23, 0.64);
  backdrop-filter: blur(32px);
}
.about__title {
  color: #fff;
  font-family: "League Spartan";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  letter-spacing: 0.42px;
  margin-bottom: 24px;
}
.about__text {
  color: rgba(255, 255, 255, 0.8);
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
}

.wait__inner {
  margin-bottom: 60px;
}
.wait__content {
  max-width: 584px;
  width: 100%;
}
.wait__title {
  color: #fff;
  font-family: "League Spartan";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  letter-spacing: 0.42px;
  margin-bottom: 16px;
}
.wait__text {
  color: rgba(255, 255, 255, 0.8);
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
  margin-bottom: 80px;
}
.wait__label {
  color: #fff;
  font-family: "League Spartan";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  letter-spacing: 0.24px;
  margin-bottom: 16px;
}
.wait__blocks {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.wait__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wait__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.wait__label2 {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.wait__img {
  max-width: 536px;
  width: 100%;
}
.wait__btn {
  display: block;
  padding: 8px 16px;
  width: fit-content;
  margin-inline: auto;
  border-radius: 9999px;
  background: #f0ac5b;
  color: #000;
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}
.works {
  padding-block: 80px 0;
}
.works .container {
  padding-inline: 0;
}
.works__inner {
  padding-inline: 15px;
}
.works__title {
  text-align: center;
  font-family: "League Spartan";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  letter-spacing: 0.42px;
  background: linear-gradient(90deg, #fecd80 0%, #f0ac5b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.works__subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
  margin-bottom: 80px;
}
.works__img1 {
  margin-bottom: 16px;
}

.works__blocks {
  position: relative;
  z-index: 2;
}

.works__item {
  position: relative;
  padding-inline: 32px;
}
.works__item:not(.works__item:first-child):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  max-height: 176.5px;
  height: 100%;
  background-color: #fece8034;
}
.works__item:first-child {
  padding-left: 0;
}
.works__item:last-child {
  padding-right: 0;
}
.works__label {
  color: #fff;
  font-family: "League Spartan";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  letter-spacing: 0.24px;
  margin-bottom: 16px;
}
.works__text {
  color: rgba(255, 255, 255, 0.8);
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
  margin-bottom: 24px;
}
.works__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.works__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.works__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.works__label2 {
  color: rgba(255, 255, 255, 0.8);
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
}
.works__img2 {
  height: 279px;
  position: relative;
  z-index: 1;
  transform: translateY(-80px);
}
.works__img2 img {
  object-fit: cover;
  object-position: top;
}
@media (min-width: 1444px) {
  .works__img2 {
    transform: translateY(-50px);
  }
}
@media (min-width: 1660px) {
  .works__img2 {
    max-width: 1150px;
    width: 100%;
    height: initial;
    margin-inline: auto;
  }
  .works__img2 img {
    object-fit: contain;
  }
}

.faq__title {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  letter-spacing: 0.42px;
  margin-bottom: 16px;
}
.faq__text {
  max-width: 628px;
  width: 100%;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
}
.faq__blocks {
  align-items: flex-start;
}
.faq__item {
  padding: 32px;
  user-select: none;
  background: rgba(255, 255, 255, 0.04);
}
.faq__label:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
  background-image: url(../images/arr1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.faq__item[open] .faq__label:before {
  transform: translateY(-50%) rotate(0);
}
.faq__label {
  cursor: pointer;
  padding-right: 34px;
  position: relative;
  color: #fff;
  font-family: "League Spartan";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  letter-spacing: 0.24px;
}
.faq__textBody {
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
}

.countdown {
  background: #034430 url(../images/bg4.png) center / cover no-repeat;
}
.countdown__inner {
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(22px);
}
.countdown__title {
  background: linear-gradient(90deg, #fecd80 0%, #f0ac5b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "League Spartan";
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 37.4px */
  letter-spacing: 0.34px;
  margin-bottom: 16px;
}

.countdown__label {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 22px */
  letter-spacing: 0.2px;
  margin-bottom: 16px;
}
.countdown__text {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
  max-width: 670px;
  width: 100%;
  margin: 0 auto 40px;
}
.countdown__label2 {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 23.1px */
  letter-spacing: 0.21px;
  margin-bottom: 24px;
}
.countdown__timer {
  max-width: 504px;
  width: 100%;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
}
.countdown__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.24);
}
.countdown__label3 {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 23.1px */
  letter-spacing: 0.21px;
}
.countdown__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.countdown__btn1 {
  display: block;
  width: fit-content;
  color: #000;
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: #f0ac5b;
}

.countdown__btn2 {
  display: block;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid #fff;
  opacity: 0.8;
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}

.winners__title {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  letter-spacing: 0.42px;
  margin-bottom: 16px;
}
.winners__label {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "League Spartan";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 26px */
  letter-spacing: 0.2px;
  margin-bottom: 16px;
}
.winners__text {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
  max-width: 628px;
  width: 100%;
  margin: 0 auto 40px;
}

.winners__item {
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);

  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.winners__name {
  color: #fff;
  font-family: "League Spartan";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  letter-spacing: 0.24px;
}
.winners__score {
  display: block;
  width: fit-content;
  margin-inline: auto;
  border-radius: 9999px;
  border: 1px solid #fff;
  opacity: 0.8;
  padding: 8px 16px;
  color: #fff;

  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}

.safe__title {
  max-width: 794px;
  width: 100%;
  color: #fff;
  font-family: "League Spartan";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}
.safe__subtitle {
  color: #fff;
  font-family: "League Spartan";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  margin-bottom: 60px;
}
.safe__blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.safe__label {
  color: #fff;
  font-family: "League Spartan";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.64px;
  margin-bottom: 16px;
}
.safe__text {
  color: #fff;
  font-family: "League Spartan";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.safe__label2 {
  color: #fff;
  font-family: "League Spartan";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 16px;
}
.safe__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.safe__list a {
  text-decoration: underline;
}
.safe__list * {
  list-style: initial;
}
.safe__list {
  margin-left: 20px;
}
.safe__list a,
.safe__list {
  color: rgba(255, 255, 255, 0.8);
  font-family: "League Spartan";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
  letter-spacing: -0.168px;
}
.logos {
  margin-top: 60px;
}
.logos__items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logos__item {
  display: block;
  height: 76px;
}

.contact {
  background: #034430 url(../images/bg5.png) center / cover no-repeat;
}
.contact__title {
  text-align: center;
  font-family: "League Spartan";
  font-size: 37px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 40.7px */
  letter-spacing: 0.37px;
  background: linear-gradient(90deg, #fecd80 0%, #f0ac5b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}
.contact__inner {
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(22px);
  padding: 24px;
  max-width: 722px;
  width: 100%;
  margin-inline: auto;
}
.contact__label {
  background: linear-gradient(90deg, #fecd80 0%, #f0ac5b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "League Spartan";
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 37.4px */
  letter-spacing: 0.34px;
  margin-bottom: 32px;
}
.contact__subtitle {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 23.1px */
  letter-spacing: 0.21px;
  margin-bottom: 24px;
}

.contact__form {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.contact__form input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.contact2__form textarea {
  height: 196px;
}
.contact__form input {
  display: block;
  width: 100%;
  color: rgb(255, 255, 255);
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  letter-spacing: 0.16px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.24);
}
.contact__form button {
  margin-top: 8px;
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 8px solid #7f7845;
  background: linear-gradient(90deg, #fecd80 0%, #f0ac5b 100%);
  padding: 16px;
  color: #000;
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 17.6px */
  letter-spacing: 0.16px;
}
/* contact2 */
.contact2 {
  padding-block: 170px 80px;
}
.contact2__wrapper {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
}
.contact2__title {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 40px;
}
.contact2__map {
  height: 220px;
  margin-top: 24px;
  width: 100%;
  display: block;
  border-radius: 16px;
}
.contact2__content {
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
}
.contact2__blocks {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 24px;
}

.contact2__label {
  color: #fff;
  font-family: "League Spartan";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 38.4px */
}
.contact2__text a,
.contact2__text {
  color: #fff;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.192px;
}
.contact2__form {
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.contact2__form textarea,
.contact2__form input {
  display: block;
  width: 100%;
  padding: 13px 24px;
  border-radius: 10px;
  background: #fff;
  color: #0b2f5c;
  font-family: "League Spartan";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  /* Shadow xs */
  box-shadow: 0px 1px 2px 0px rgba(18, 26, 43, 0.05);
}
.contact2__form button {
  display: block;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  padding: 16px;
  color: #0b2f5c;
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.footer {
  padding-block: 40px 24px;
}

.footer__inner {
  padding-bottom: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col2,
.footer__col3 {
  max-width: 346px;
  width: 100%;
}

.footer__label {
  color: #fff;
  font-family: "League Spartan";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  display: block;
  color: #fff;
  font-family: "League Spartan";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.footer__address a,
.footer__address {
  color: #fff;
  font-family: "League Spartan";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.footer__text a,
.footer__text {
  color: #fff;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}
.footer__copyright a,
.footer__text a {
  text-decoration: underline;
}
.footer__age {
  max-width: 64px;
  width: 100%;
}

.footer__links2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer__links2 a {
  display: block;
  color: #fff;
  font-family: "League Spartan";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}

.footer__copyright a,
.footer__copyright {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}

/* age verification */
.showAgeModal {
  overflow: hidden;
}
.ageModal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.954);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.ageModal__wrapper {
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(143, 146, 146, 0.24);
  background: #fafafa;
  box-shadow: 0px 275px 77px 0px rgba(0, 0, 0, 0),
    0px 176px 70px 0px rgba(0, 0, 0, 0.01),
    0px 99px 59px 0px rgba(0, 0, 0, 0.05), 0px 44px 44px 0px rgba(0, 0, 0, 0.09),
    0px 11px 24px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
  padding: 24px;
}

.ageModal__title {
  color: #0c1311;
  text-align: center;
  font-family: "League Spartan";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.64px;
  text-transform: uppercase;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(143, 146, 146, 0.24);
}

.ageModal__label {
  color: #5c6160;
  text-align: center;
  font-family: "League Spartan";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  margin-bottom: 16px;
}

.ageModal__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ageModal__btn-yes,
.ageModal__btn-no {
  display: block;
  padding: 24px;
  width: 100%;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}

.ageModal__btn-yes {
  background: #28a745;
}

.ageModal__btn-yes:hover {
  transform: translateY(-1px);
}

.ageModal__btn-no {
  background: #dc3545;
}

.ageModal__btn-no:hover {
  transform: translateY(-1px);
}

.ageModal__btn-yes:active,
.ageModal__btn-no:active {
  transform: translateY(0);
}
.terms {
  padding-block: 170px 80px;
}
.terms__title {
  color: #fff;
  font-family: "League Spartan";
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 72.6px */
  letter-spacing: 0.66px;
  margin-bottom: 32px;
}
.terms__content ol,
.terms__content ul {
  margin-left: 30px;
}
.terms__content h2 {
  color: #fff;
  font-family: "League Spartan";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 48px */
}
.terms__content ul * {
  list-style: initial;
}
.list-num * {
  list-style-type: decimal;
}
.terms__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.terms__content a {
  text-decoration: underline;
}
.terms__content a,
.terms__content * {
  color: rgba(255, 255, 255, 0.8);
  font-family: "League Spartan";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.2px;
}

.list-numeric * {
  list-style-type: decimal;
}
.list-numeric {
  margin-left: 20px;
}
@media (max-width: 1226px) {
  .works__img2 {
    transform: translateY(-40px);
  }
}
@media (max-width: 890px) {
  .header__nav {
    display: none;
    transform: translateY(-100%);
  }
  .header__menu {
    display: block;
  }
  .show-menu .header {
    background-color: #034430;
  }
  .show-menu .menu-img {
    display: none;
  }
  .show-menu .close-img {
    display: block;
  }
  .show-menu {
    overflow-y: hidden;
  }
  .show-menu .header__links {
    flex-direction: column;
  }
  .show-menu .header__nav {
    position: absolute;
    padding: 30px 12px;
    bottom: 0;
    left: 0;
    width: 100%;
    right: 0;
    height: calc(102vh - 64px);
    display: flex;
    flex-direction: column;
    background-color: #034430;
    z-index: 10;
    gap: 48px;
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(99%);
  }
  .show-menu .header__links a {
    text-align: left;
    width: 100%;
  }
  .header__btns {
    padding: 0;
    background: transparent;
    border-radius: initial;
    backdrop-filter: initial;
  }
  .header__wrapper {
    padding: 8px;
    border-radius: 999px;
    background: #12966d;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .terms {
    padding-block: 130px 40px;
  }
  .terms__title {
    font-size: 42px;
    margin-bottom: 24px;
  }
  .p80 {
    padding-block: 40px;
  }
  .home {
    padding-block: 114px 40px;
  }
  .logos__items {
    justify-content: center;
  }
  .footer__inner {
    gap: 40px;
    align-items: flex-start;
  }

  .footer__text2 a,
  .footer__text2,
  .footer__label2 {
    text-align: left;
  }
  .ageModal__wrapper {
    max-width: 342px;
  }
  .ageModal__title {
    font-size: 28px;
  }

  .ageModal__btns {
    gap: 12px;
  }

  .ageModal__btn-yes,
  .ageModal__btn-no {
    padding: 20px;
  }
  .faq__item {
    padding: 20px;
  }
  .about__inner {
    padding-inline: 24px;
  }
  .works__item {
    position: relative;
    padding: 32px 0;
  }
  .works__item:first-child {
    padding-top: 0;
  }
  .works__item:last-child {
    padding-bottom: 0;
  }
  .works__item:not(.works__item:first-child):before {
    width: 100%;
    max-height: initial;
    height: 1px;
    bottom: 0;
  }
  .works__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .works__img1 {
    max-width: 74px;
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .wait__content {
    max-width: initial;
  }
  .contact2 {
    padding-block: 130px 40px;
  }
  .contact2__form,
  .contact2__content {
    padding-inline: 16px;
  }
}
@media (max-width: 584px) {
  .home {
    background: #034430 url(../images/bg1-mob.png) center / cover no-repeat;
  }
  .countdown__label3 {
    font-size: 14px;
  }
  .countdown__timer {
    gap: 5px;
  }
  .countdown__inner {
    padding: 24px 15px;
  }
  .countdown__item {
    padding: 12px 6px;
  }
  .works__img2 {
    transform: translateY(-22px);
  }
  .contact2__wrapper {
    padding-inline: 20px;
  }
}

@media (max-width: 446px) {
  .countdown__btn1,
  .countdown__btn2 {
    padding: 6px 12px;
    font-size: 14px;
  }
}

@media (max-width: 394px) {
  .header__wrapper {
    padding: 8px 6px;
    gap: 6px;
  }
  .header__inner,
  .header__btns {
    gap: 6px;
  }
  .header__btn2,
  .header__btn1 {
    padding: 6px 12px;
    font-size: 14px;
  }
  .terms__title,
  .about__title,
  .wait__title,
  .works__title,
  .faq__title,
  .winners__title,
  .safe__title,
  .contact__title,
  .discover__title,
  .home__title {
    font-size: 36px;
  }
  .home__label {
    font-size: 20px;
  }
  .contact__label {
    font-size: 30px;
    margin-bottom: 17px;
  }
  .logos__item {
    height: 51px;
  }
  .countdown__label3 span {
    display: block;
  }
  .countdown__btns {
    flex-direction: column;
  }
  .countdown__btns a,
  .countdown__btns button {
    width: 100%;
    padding: 10px;
  }
  .countdown__title {
    font-size: 28px;
  }
  .faq__label {
    font-size: 20px;
  }
  .discover__btn {
    font-size: 13px;
  }
  .discover__item {
    padding-inline: 20px;
  }
  .discover__btn img {
    width: 22px;
    height: 22px;
  }
  .works__img1 {
    max-width: 60px;
  }
}
@media (max-width: 336px) {
  .header .container {
    padding-inline: 10px;
  }
}
/* Анімація появи модалки */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* login and register forms */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.786);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  border-radius: 24px;
  border: 1px solid rgba(143, 146, 146, 0.24);
  background: #fff;
  backdrop-filter: blur(24px);
  padding: 24px;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  text-align: center;
  margin-bottom: 16px;
}

.modal-title {
  color: #0c1311;
  text-align: center;
  font-family: "League Spartan";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.64px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(143, 146, 146, 0.24);
}

.modal-subtitle {
  color: #5c6160;
  text-align: center;
  font-family: "League Spartan";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  color: #5c6160;
  text-align: center;
  font-family: "League Spartan";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 19.2px */
  margin-bottom: 4px;
}

.form-input {
  display: block;
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #5c6160;
  color: #5c6160;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 19.2px */
}

.form-input:focus {
  outline: none;
  border-color: #007bff;
}

.date-inputs {
  display: flex;
  gap: 8px;
}

.date-inputs select {
  flex: 1;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #5c6160;
  font-size: 14px;
  background: white;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.checkbox {
  width: 12px;
  height: 12px;
  margin-top: 6px;
}

.checkbox-label {
  color: #5c6160;
  font-family: "League Spartan";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
}

.submit-button {
  display: block;
  width: 100%;
  border-radius: 9999px;
  background: #f0ac5b;
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  padding: 10px;
  margin-bottom: 16px;
}

.modal-footer button {
  color: #5c6160;
  text-align: center;
  font-family: "League Spartan";
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 160%; /* 22.4px */
  text-decoration: underline;
}
.modal-footer {
  color: #5c6160;
  text-align: center;
  font-family: "League Spartan";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
}

.switch-link:hover {
  text-decoration: underline;
}

.form__err-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.visible.form__err-message {
  display: block;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.close-modal:hover {
  color: #333;
}
.thModal {
  padding: 20px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.786);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.thModal.active {
  display: flex;
}
.th1,
.th2 {
  display: none;
}
.thModal.show-th1 .th1 {
  display: block;
}
.thModal.show-th2 .th2 {
  display: block;
}
.thModal__block {
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;

  padding: 32px;
  background: #031e17;
  backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.thModal__title {
  color: #fff;
  font-family: "League Spartan";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 46.2px */
  letter-spacing: 0.42px;
}
.thModal__label {
  color: rgba(255, 255, 255, 0.8);
  font-family: "League Spartan";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: 0.2px;
}
.thModal__text a {
  text-decoration: underline;
}
.thModal__text a,
.thModal__text {
  color: rgba(255, 255, 255, 0.8);
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: 0.16px;
}
.thModal__label2 {
  color: rgba(255, 255, 255, 0.8);
  font-family: "League Spartan";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 26px */
  letter-spacing: 0.2px;
}
.thModal__btn {
  display: block;
  width: fit-content;
  color: #000;
  text-align: center;
  font-family: "League Spartan";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: #f0ac5b;
}
@media (max-width: 768px) {
  .thModal__block {
    padding: 32px 24px;
  }
  .thModal__title {
    font-size: 36px;
  }
}
@media (max-width: 380px) {
  .thModal__block {
    padding: 32px 20px;
  }
}
