* {
  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 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.btn {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: #fff;
  text-align: center;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  border-radius: 9999px;
  background: #006ed5;

  padding: 12px 32px;
}
.btn img {
  width: 24px;
  height: 24px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-block: 20px;
}
.scrolled.header:not(.headerFixed) {
  backdrop-filter: blur(10px);
  background-color: #1e3b8ad8;
}
.headerFixed {
  position: sticky;
  background-color: #fff;
}
.headerFixed .header__links a {
  color: #004382;
}
.headerFixed .header__btn2 {
  color: #004382;
  border: 1px solid #004382;
}
.header__inner {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
  max-width: 74px;
  width: 100%;
}

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

.header__links a {
  display: block;
  color: #fff;

  /* Body/Large/Medium */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}
.header__btns {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__btns-mob {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.header__btn1-mob {
  display: block;
  width: 100%;
  border-radius: 9999px;
  background: #006ed5;
  color: #fff;
  text-align: center;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  padding: 12px 24px;
}
.header__btn2-mob {
  display: block;
  width: 100%;
  border-radius: 9999px;
  border: 1px solid rgb(29 78 216);
  opacity: 0.8;
  color: rgb(29 78 216);
  text-align: center;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  padding: 12px 24px;
}
.header__btn1 {
  display: block;
  width: fit-content;
  border-radius: 9999px;
  background: #006ed5;
  color: #fff;
  text-align: center;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  padding: 12px 24px;
}
.header__btn2 {
  display: block;
  width: fit-content;
  border-radius: 9999px;
  border: 1px solid #fff;
  opacity: 0.8;
  color: #fff;
  text-align: center;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  padding: 12px 24px;
}
.close-img {
  display: none;
}

.header__menu {
  display: none;
  width: 34px;
  height: 34px;
  padding: 5px;
  flex-shrink: 0;
}
.home {
  padding-block: 130px 40px;
  background: #0b2f5c url(../images/bg.png) center / cover no-repeat;
}

.home__inner {
  max-width: 1018px;
  width: 100%;
  margin-inline: auto;
}
.home__subtitle {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  padding: 4px 12px;
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
  letter-spacing: -0.168px;
  margin: 0 auto 16px;
  width: fit-content;
}
.home__title {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 57.2px */
  letter-spacing: -1.56px;
  margin-bottom: 24px;
}
.home__text {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.216px;
  margin-bottom: 32px;
}
.home__btn1 {
  color: #0b2f5c;
  background-color: #fff;
}
.home__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.home__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home__img {
  width: 24px;
  height: 24px;
}
.home__label {
  color: #fff;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.home__btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.home__btn2 {
  display: block;
  width: fit-content;
  padding: 12px 32px;
  border-radius: 9999px;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}
.jackpot {
  padding-block: 80px;
}
.jackpot__inner {
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
  padding: 32px;
  border-radius: 24px;
  border: 6px solid #0b2f5c;
  background: #0b2f5c url(../images/bg1.png) center / cover no-repeat;
}
.jackpot__wrapper {
  max-width: 768px;
  width: 100%;
  margin-inline: auto;
}
.jackpot__suptitle {
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
  letter-spacing: -0.168px;
  width: fit-content;
  margin: 0 auto 16px;
}
.jackpot__title {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%; /* 35.2px */
  letter-spacing: -0.96px;
  margin-bottom: 16px;
}
.jackpot__subtitle {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  margin-bottom: 42px;
}
.jackpot__label {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.jackpot__text {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.216px;
  margin-bottom: 32px;
}
.jackpot__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;

  margin: 0 auto 32px;
}

.jackpot__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jackpot__img {
  width: 24px;
  height: 24px;
}
.jackpot__label2 {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.jackpot__btn1 {
  max-width: 336px;
  margin-inline: auto;
  width: 100%;
  color: #0b2f5c;
  background-color: #fff;
}
.works {
  padding-block: 80px;
}
.works__suptitle {
  color: #004382;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
  letter-spacing: -0.168px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 110, 213, 0.15);
  background: rgba(0, 110, 213, 0.15);
  backdrop-filter: blur(12px);
  width: fit-content;
  padding: 4px 12px;
  margin-bottom: 24px;
}
.works__inner {
  gap: 2px 0;
  margin-bottom: 64px;
}

.works__title {
  color: #0c1311;

  /* Headline/Headline 2/Semi Bold */
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
  max-width: 610px;
  width: 100%;
}
.works__text1 {
  max-width: 510px;
  width: 100%;
  color: #5c6160;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.works__blocks {
  padding-inline: 9px;
  margin-bottom: 120px;
}
.works__item {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(143, 146, 146, 0.24);
  background: #fafafa;
  backdrop-filter: blur(24px);
  padding: 24px;
}
.works__num {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  color: #004382;
  text-align: center;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 160%; /* 38.4px */
  letter-spacing: -0.288px;
  padding: 12px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 110, 213, 0.15);
  background: rgba(0, 110, 213, 0.15);
  backdrop-filter: blur(12px);
}
.works__img {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}
.works__label {
  color: #0c1311;
  font-family: Manrope;
  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(85, 137, 125, 0);
}
.works__label3 {
  color: #5c6160;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  margin-bottom: 6px;
}
.works__text {
  color: #5c6160;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  margin-bottom: 24px;
}
.works__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.works__row {
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 5, 5, 0.04);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.works__icon {
  width: 24px;
  height: 24px;
}
.works__label2 {
  color: rgba(12, 19, 17, 0.8);

  /* Body/Medium/Medium */
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: -0.168px;
}
.works__btn1 {
  max-width: 336px;
  width: 100%;
  margin: 0 auto 16px;
}

.works__text2 {
  color: #5c6160;
  text-align: center;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.countdown {
  padding-block: 80px;
}
.countdown__inner {
  padding: 32px;
  border-radius: 24px;
  border: 6px solid #0b2f5c;
  background: #0b2f5c url(../images/bg1.png) center / cover no-repeat;
}
.countdown__title {
  color: #fff;
  text-align: center;

  /* Headline/Headline 2/Semi Bold */
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
  margin-bottom: 16px;
}
.countdown__text {
  color: #fff;
  text-align: center;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  margin-bottom: 42px;
}
.countdown__timer {
  max-width: 652px;
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin: 0 auto 16px;
}
.countdown__item {
  flex-grow: 1;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(143, 146, 146, 0.24);
  background: rgba(143, 146, 146, 0.24);
  backdrop-filter: blur(24px);
}
.countdown__num {
  color: #fff;
  text-align: center;

  /* Headline/Headline 2/Semi Bold */
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
}
.countdown__label {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  text-transform: uppercase;
}
.countdown__text2 {
  color: #fff;
  text-align: center;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  margin-bottom: 42px;
}
.countdown__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.countdown__btn1 {
  display: block;
  width: fit-content;
  color: #004382;
  text-align: center;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  padding: 12px 32px;
  border-radius: 9999px;
  background: #fff;
}
.countdown__btn2 {
  display: block;
  width: fit-content;
  color: #fff;
  text-align: center;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  padding: 12px 32px;
  border-radius: 9999px;
  border: 1px solid #fff;
}
.winners {
  padding-block: 80px;
}
.winners__title {
  color: #0c1311;
  text-align: center;

  /* Headline/Headline 2/Semi Bold */
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}
.winners__label1 {
  color: #0c1311;
  text-align: center;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}
.winners__text1 {
  color: #000;
  text-align: center;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  margin-bottom: 40px;
}

.winners__item {
  border-radius: 24px;
  border: 1px solid rgba(143, 146, 146, 0.24);
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.winners__label {
  color: #0c1311;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 32px */
  letter-spacing: -0.24px;
}
.winners__location {
  color: #5c6160;

  /* Body/Large/Regular */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  margin-bottom: 4px;
}
.winners__sum {
  color: #5c6160;

  /* Body/Large/Regular */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}
.winners__text {
  color: #0c1311;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.faq {
  padding-block: 80px;
}

.faq__subtitle {
  color: #5c6160;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  margin-bottom: 48px;
}
.faq__text1 {
  color: #5c6160;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  margin-bottom: 16px;
}
.faq__btn {
  display: block;
  width: fit-content;
  color: #fff;
  text-align: center;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  border-radius: 9999px;
  background: #006ed5;
  padding: 12px 32px;
}
.faq__title {
  color: var(--Neutral-500, #050505);

  /* Headline/Headline 2/Semi Bold */
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}

.faq__blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__item {
  padding: 24px;
  border-radius: 24px;
  border-top: 1px solid rgba(143, 146, 146, 0.24);
  background: #fafafa;
}
details > summary::-webkit-details-marker {
  display: none;
}
.faq__label {
  position: relative;
  user-select: none;
  cursor: pointer;
  padding-right: 34px;
  color: #0c1311;
  /* Headline/Headline 4/Semi Bold */
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.288px;
}
.faq__label:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  transform: translateY(-50%);
  height: 24px;
  background-image: url(../images/arr2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.faq__textBody {
  user-select: none;
  padding-top: 16px;
  color: #5c6160;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.about {
  padding-block: 80px;
}
.about__inner {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 24px;
  border: 6px solid #0b2f5c;
  background: radial-gradient(85% 85% at 50% 50%, #0654b7 0%, #000 100%);
}
.about__content {
  max-width: 596px;
  z-index: 2;
  position: relative;
  width: 60%;
}
.about__title {
  color: var(--Base-White, #fff);

  /* Headline/Headline 2/Semi Bold */
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}
.about__text {
  color: var(--Primary-50, #eaf0ef);
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  margin-bottom: 48px;
}
.about__list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.about__item {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.about__icon {
  width: 24px;
  height: 24px;
}
.about__label {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
  letter-spacing: -0.168px;
}
.about__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  filter: grayscale(0.5);
  max-width: 798px;
  width: 100%;
  transform: translate(31%, -19%);
}
.play {
  padding-block: 80px;
}
.play__top {
  margin: 0 auto 64px;
  max-width: 794px;
  width: 100%;
}
.play__title {
  color: #0c1311;
  text-align: center;

  /* Headline/Headline 2/Semi Bold */
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}
.play__subtitle {
  color: #5c6160;
  text-align: center;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.play__blocks {
  border-radius: 24px;
  border: 1px solid rgba(143, 146, 146, 0.24);
  background: #fafafa;
  backdrop-filter: blur(24px);
  margin-bottom: 64px;
}
.play__item {
  padding: 24px;
}
.play__item:nth-child(2) {
  padding-block: 16px;
}
.play__label {
  color: #0c1311;
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.64px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(143, 146, 146, 0.24);
}
.play__text {
  color: #5c6160;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  margin-bottom: 6px;
}
.play__text1 {
  color: #5c6160;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.play__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.play__row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 5, 5, 0.04);
  backdrop-filter: blur(12px);
}
.play__icon {
  width: 24px;
  flex-shrink: 0;
  height: 24px;
}
.play__label2 a,
.play__label2 {
  color: rgba(12, 19, 17, 0.8);

  /* Body/Medium/Medium */
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: -0.168px;
}
.play__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
}
.play__logoItem {
  display: block;
  height: 62px;
}
.play__age {
  max-width: 79px;
  width: 100%;
}
.footer {
  padding-block: 40px 24px;
}

.footer__inner {
  padding-bottom: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(143, 146, 146, 0.24);
}

.footer__col1 {
  max-width: 346px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__age {
  max-width: 64px;
  width: 100%;
}
.footer__text a {
  text-decoration: underline;
}
.footer__text a,
.footer__text {
  color: #5c6160;

  /* Body/Large/Regular */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}
.footer__col2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__label {
  color: #0c1311;
  font-family: Manrope;
  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: 12px;
}
.footer__col3 {
  max-width: 346px;
  width: 100%;
}
.footer__links p,
.footer__links a {
  display: block;
  color: #5c6160;

  /* Body/Large/Regular */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
}
.footer__links2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer__links2 a {
  display: block;
  color: #5c6160;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.footer__disclaimer {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(143, 146, 146, 0.24);
}
.footer__label2 {
  color: #0c1311;
  text-align: center;
  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  margin-bottom: 12px;
}
.footer__text2 a,
.footer__text2 {
  max-width: 660px;
  width: 100%;
  margin-inline: auto;
  color: #5c6160;
  text-align: center;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
.footer__copyright a,
.footer__copyright {
  color: #5c6160;
  text-align: center;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}

.contact__inner {
  padding: 40px;
  border-radius: 24px;
  background: radial-gradient(85% 85% at 50% 50%, #0654b7 0%, #000 100%);
}
.contact__title {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 40px;
}
.contact__form {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contact__form textarea::placeholder,
.contact__form input::placeholder {
  color: #0b2f5c;
}
.contact__form textarea {
  height: 196px;
}
.contact__form textarea,
.contact__form input {
  color: #0b2f5c;
  font-size: 14px;
  font-style: normal;
  width: 100%;
  font-weight: 400;
  line-height: normal;
  display: block;
  padding: 13px 24px;
  border-radius: 10px;
  background: #fff;

  /* Shadow xs */
  box-shadow: 0px 1px 2px 0px rgba(18, 26, 43, 0.05);
}
.contact__form button {
  display: block;
  color: #0b2f5c;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 16px 48px;
  width: fit-content;
  background: #fff;
}
.contact2__map {
  height: 220px;
  margin-top: 24px;
  width: 100%;
  display: block;
  border-radius: 16px;
}
.contact2__content {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
}
.contact2__blocks {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact2 .contact__form {
  flex-direction: column;
  justify-content: center;
  border-radius: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
}
.contact2 .contact__form button {
  width: 100%;
}
.contact2__label {
  color: #fff;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 38.4px */
}
.contact2__text a,
.contact2__text {
  color: #fff;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.192px;
}

/* 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: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  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: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  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;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  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: 40px 24px;
}

.terms__title {
  border-radius: 24px;
  background: #0b2f5c;
  padding: 40px;
  color: #fff;

  /* Headline/Headline 2/Semi Bold */
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
  margin-bottom: 40px;
}
.terms__content ul {
  margin-left: 30px;
}
.terms__content h2 {
  color: #006ed5;
  font-family: Manrope;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: 160%; /* 41.6px */
  letter-spacing: -0.312px;
}
.terms__content ul * {
  list-style: initial;
}
.terms__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}
.terms__content a,
.terms__content * {
  color: #000;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.terms__content .bold * {
  font-weight: 600;
}
.list-numeric * {
  list-style-type: decimal;
}
.list-numeric {
  margin-left: 20px;
}
/* Responsive Design */
.b1 {
  padding-block: 80px;
}

.b1__sup {
  padding: 12px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 110, 213, 0.15);
  background: rgba(0, 110, 213, 0.06);
  backdrop-filter: blur(12px);
  width: fit-content;
  color: #004382;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
  letter-spacing: -0.168px;
  margin-bottom: 24px;
}
.b1__title {
  color: #0c1311;

  /* Headline/Headline 2/Semi Bold */
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}
.b1__sub {
  color: #0c1311;
  font-family: Manrope;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.56px;
  margin-bottom: 24px;
}
.b1__text {
  color: #5c6160;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
}
.b1__img img {
  object-fit: cover;
  border-radius: 24px;
}
.b2 {
  padding-block: 80px;
}

.b2__title {
  color: #0c1311;
  text-align: center;

  /* Headline/Headline 2/Semi Bold */
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}
.b2__sub {
  color: #0c1311;
  text-align: center;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
  margin-bottom: 40px;
}

.b2__item {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(143, 146, 146, 0.24);
  background: #fff;
}
.b2__img {
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
}
.b2__label {
  color: #0c1311;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 32px */
  letter-spacing: -0.24px;
  margin-bottom: 16px;
}
.b2__text {
  color: #0c1311;

  /* Body/Extra Large/Regular */
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.216px;
  margin-bottom: 30px;
  flex-grow: 1;
}
.b2__btn {
  width: 100%;
}
.th {
  padding-block: 80px;
}

.th__inner {
  border-radius: 24px;
  background: #0b2f5c;
  padding: 40px 24px;
}
.th__title {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
.th__sub {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 40px;
}
.th__text a,
.th__text {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  margin-bottom: 40px;
}
.th__btn {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 12px 24px;
  color: #fff;
  text-align: center;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  border-radius: 9999px;
  background: #006ed5;
}
@media (max-width: 890px) {
  .header__btns {
    display: none;
  }
  .header {
    padding-block: 16px;
  }
  .header__btns-mob {
    display: flex;
  }
  .header__nav {
    display: none;
    transform: translateY(-100%);
  }
  .header__menu {
    display: block;
  }
  .show-menu .header {
    background-color: #fff;
  }
  .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: #fff;
    z-index: 10;
    gap: 48px;
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(99%);
  }
  .show-menu .header__links a {
    text-align: left;
    color: #004382;
    width: 100%;
  }
  .about__content {
    max-width: initial;

    width: 100%;
  }
  .about__inner {
    padding: 24px;
    padding-bottom: 223px;
  }
  .about__img {
    top: initial;
    bottom: 0;
    right: 50%;
    max-width: 604px;
    transform: translate(50%, 44%) rotate(45deg);
  }
  .contact__form {
    flex-direction: column;
  }
  .contact__form button {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact2 .contact__form .g2 {
    grid-template-columns: 1fr 1fr;
  }
  .home {
    background-image: initial;
    background: radial-gradient(
      62.13% 62.16% at 50% 50%,
      rgb(6, 84, 183) 0%,
      rgb(0, 0, 0) 100%
    );
  }
  .b1__img {
    height: 400px;
  }
  .contact2__inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: initial;
  }

  .play__logos {
    gap: 16px;
  }
  .countdown__num {
    font-size: 30px;
  }
  .countdown__label {
    font-size: 14px;
  }
  .countdown__item {
    padding: 30px 20px;
  }
  .jackpot__inner {
    padding: 24px;
  }

  .works__blocks {
    margin-bottom: 64px;
  }
  .jackpot,
  .countdown {
    padding-block: 40px;
  }
  .winners__wrapper {
    max-width: 450px;
    width: 100%;
    margin-inline: auto;
  }

  .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;
  }
}
@media (max-width: 584px) {
  .contact2__content,
  .contact2 .contact__form {
    padding-inline: 24px;
  }
  .home__btns {
    flex-direction: column;
  }
  .home__btn1,
  .home__btn2 {
    width: 100%;
  }
  .countdown__num {
    font-size: 20px;
  }
  .countdown__item {
    aspect-ratio: 1/1;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .countdown__inner {
    padding: 24px;
  }
  .about__list {
    flex-direction: column;
  }
  .about__item {
    width: 100%;
  }
  .about__inner {
    padding-bottom: 208px;
  }
}

@media (max-width: 446px) {
  .contact2 .contact__form .g2 {
    grid-template-columns: 1fr;
  }
  .countdown__label {
    font-size: 11px;
  }
  .countdown__timer {
    gap: 10px;
  }
  .countdown__inner {
    padding: 24px 20px;
  }
  .home__title {
    font-size: 40px;
  }
  .terms__title {
    padding-inline: 20px;
  }
  .terms__title,
  .play__title,
  .about__title,
  .faq__title,
  .jackpot__title,
  .works__title,
  .winners__title,
  .countdown__title {
    font-size: 36px;
  }
  .play__label {
    font-size: 28px;
  }
  .contact__inner {
    padding: 40px 24px;
  }
  .play__item {
    padding: 20px 15px;
  }
}

@media (max-width: 370px) {
  .countdown__inner {
    padding: 24px 4px;
  }
  .countdown__label {
    font-size: 9px;
  }
}
/* Анімація появи модалки */
@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: #fafafa;
  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: Manrope;
  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: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}

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

.form-label {
  color: #5c6160;
  font-family: Manrope;
  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: #333434;
  font-family: Manrope;
  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: 2px solid #e1e5e9;
  border-radius: 8px;
  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: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
}

.submit-button {
  display: block;
  width: 100%;
  border-radius: 9999px;
  background: #006ed5;
  color: #fff;
  text-align: center;

  /* Body/Large/Semi Bold */
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.192px;
  padding: 12px;
  margin-bottom: 16px;
}

.modal-footer {
  color: #5c6160;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 22.4px */
  text-align: center;
}

.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;
}
