/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fontsCHIhfdf/poppins-regularCHIhfdf.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fontsCHIhfdf/poppins-boldCHIhfdf.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.headerCHIhfdf {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #000307;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.headerCHIhfdf__container {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headerCHIhfdf__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 265.483px;
  height: 30.912px;
  text-decoration: none;
}

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

.headerCHIhfdf__burger {
  display: none;
}

.headerCHIhfdf__nav {
  display: none;
}

.headerCHIhfdf__overlay {
  display: none;
}

@media (max-width: 767px) {
  .headerCHIhfdf__container {
    min-height: 136px;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .headerCHIhfdf__logo {
    width: 199.112px;
    height: 23.184px;
  }

  .headerCHIhfdf__burger {
    position: relative;
    z-index: 1002;
    display: inline-flex;
    width: 48px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .headerCHIhfdf__burger span {
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: #f4f7fb;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .headerCHIhfdf.is-openCHIhfdf .headerCHIhfdf__burger span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .headerCHIhfdf.is-openCHIhfdf .headerCHIhfdf__burger span:nth-child(2) {
    opacity: 0;
  }

  .headerCHIhfdf.is-openCHIhfdf .headerCHIhfdf__burger span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .headerCHIhfdf__nav {
    position: fixed;
    top: 136px;
    left: 0;
    z-index: 1001;
    display: block;
    width: 100%;
    padding: 52px 0 72px;
    background: #000307;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .headerCHIhfdf.is-openCHIhfdf .headerCHIhfdf__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .headerCHIhfdf__list {
    display: flex;
    flex-direction: column;
    gap: 44px;
    max-width: 100%;
    margin: 0;
    padding: 0 28px 0 114px;
    list-style: none;
  }

  .headerCHIhfdf__link {
    color: #f4f7fb;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
    text-decoration: none;
  }

  .headerCHIhfdf__link:hover,
  .headerCHIhfdf__link:focus-visible {
    color: #40c9ad;
  }

  .headerCHIhfdf__overlay {
    position: fixed;
    inset: 136px 0 0;
    z-index: 1000;
    display: block;
    background: rgba(0, 3, 7, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .headerCHIhfdf.is-openCHIhfdf .headerCHIhfdf__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.is-lockCHIhfdf {
    overflow: hidden;
  }
}

@media (max-width: 420px) {
  .headerCHIhfdf__container {
    min-height: 112px;
  }

  .headerCHIhfdf__nav {
    top: 112px;
    padding: 42px 0 60px;
  }

  .headerCHIhfdf__overlay {
    inset: 112px 0 0;
  }

  .headerCHIhfdf__list {
    gap: 34px;
    padding-left: 32px;
  }

  .headerCHIhfdf__link {
    font-size: 20px;
  }

  .headerCHIhfdf__burger,
  .headerCHIhfdf__burger span {
    width: 40px;
  }
}

.heroCHIhfdf {
  position: relative;
  overflow: hidden;
  min-height: 574px;
  background: #000307 url('/imagesCHIhfdf/hero-bgCHIhfdf.webp') center / cover
    no-repeat;
}

.heroCHIhfdf__container {
  position: relative;
  min-height: 574px;
  display: flex;
  align-items: center;
}

.heroCHIhfdf__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 42px 0 70px;
}

.heroCHIhfdf__title {
  margin: 0 0 26px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 50px;
  text-transform: uppercase;
}

.heroCHIhfdf__title span {
  color: #7ed203;
}

.heroCHIhfdf__lead {
  max-width: 520px;
  margin: 0 0 26px;
  color: #7ed203;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
}

.heroCHIhfdf__text {
  margin: 0 0 26px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.heroCHIhfdf__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 348px;
  min-height: 36px;
  padding: 11px 32px;
  border: 4px solid #bcf20a;
  border-radius: 10px;
  background: linear-gradient(180deg, #bdf30b 0%, #7ed203 100%);
  box-shadow: 0 5px 10px 0 #1e2d20;
  color: #000307;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  animation: heroButtonPulseCHIhfdf 1.7s ease-in-out infinite;
}

.heroCHIhfdf__button::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 70px;
  height: 160%;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(20deg) translateX(-120px);
  animation: heroButtonShineCHIhfdf 2.4s ease-in-out infinite;
}

.heroCHIhfdf__button img,
.heroCHIhfdf__button span {
  position: relative;
  z-index: 1;
}

.heroCHIhfdf__button img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.heroCHIhfdf__robot {
  position: absolute;
  right: -18px;
  bottom: 0;
  z-index: 1;
  display: block;
  width: min(39vw, 540px);
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
}

@keyframes heroButtonPulseCHIhfdf {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 5px 10px 0 #1e2d20, 0 0 0 rgba(126, 210, 3, 0);
  }

  50% {
    transform: translateY(-1px) scale(1.015);
    box-shadow: 0 8px 18px 0 #1e2d20, 0 0 22px rgba(188, 242, 10, 0.55);
  }
}

@keyframes heroButtonShineCHIhfdf {
  0% {
    transform: rotate(20deg) translateX(-140px);
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  65%,
  100% {
    transform: rotate(20deg) translateX(720px);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .heroCHIhfdf__title {
    max-width: 680px;
    font-size: 42px;
    line-height: 44px;
  }

  .heroCHIhfdf__button {
    min-width: 500px;
  }

  .heroCHIhfdf__robot {
    width: 46vw;
    right: -90px;
  }
}
@media (max-width: 767px) {
  .heroCHIhfdf {
    min-height: auto;
    background-image: url('/imagesCHIhfdf/hero-girl-mbCHIhfdf.webp');
    background-position: center top;
    background-size: cover;
  }

  .heroCHIhfdf__container {
    min-height: auto;
    display: block;
  }

  .heroCHIhfdf__content {
    max-width: 100%;
    padding: 20px 0px;
  }

  .heroCHIhfdf__title {
    max-width: 100%;
    margin: 0 0 32px;
    font-size: 32px;
    font-weight: 900;
    line-height: 34px;
  }

  .heroCHIhfdf__lead {
    max-width: 100%;
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 20px;
  }

  .heroCHIhfdf__text {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.45;
  }

  .heroCHIhfdf__button {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 12px 18px;
    gap: 10px;

    font-size: 20px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;

    border-width: 4px;
    border-radius: 10px;
  }

  .heroCHIhfdf__button img {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
  }

  .heroCHIhfdf__robot {
    display: none;
  }
}

@media (max-width: 420px) {
  .heroCHIhfdf__content {
    padding: 20px 0px;
  }

  .heroCHIhfdf__button {
    font-size: 18px;
    min-height: 58px;
    padding: 10px 14px;
  }
}

.benefitsCHIhfdf {
  padding: 80px 0;
  background: #000307;
}

.benefitsCHIhfdf__container {
  max-width: 900px;
}

.benefitsCHIhfdf__title {
  margin: 0 0 44px;

  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}

.benefitsCHIhfdf__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px;

  align-items: start;

  margin-bottom: 48px;
}

.benefitsCHIhfdf__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefitsCHIhfdf__item {
  position: relative;

  margin-bottom: 18px;
  padding-left: 34px;

  color: #fff;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.benefitsCHIhfdf__item:last-child {
  margin-bottom: 0;
}

.benefitsCHIhfdf__item::before {
  content: '';

  position: absolute;
  top: 1px;
  left: 0;

  width: 20px;
  height: 20px;

  background: url('/imagesCHIhfdf/checkCHIhfdf.webp') center / contain no-repeat;
}

.benefitsCHIhfdf__price {
  color: #7ed203;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.benefitsCHIhfdf__button {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  width: fit-content;
  min-width: 548px;
  min-height: 60px;

  margin: 0 auto;
  padding: 14px 30px;

  border-radius: 10px;
  border: 4px solid #bcf20a;

  background: linear-gradient(180deg, #bdf30b 0%, #7ed203 100%);

  box-shadow: 0 5px 10px 0 #1e2d20;

  color: #000307;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;

  overflow: hidden;

  animation: benefitsPulseCHIhfdf 1.8s ease-in-out infinite;
}

.benefitsCHIhfdf__button::before {
  content: '';

  position: absolute;

  top: -30%;
  left: -30%;

  width: 80px;
  height: 160%;

  background: rgba(255, 255, 255, 0.4);

  transform: rotate(18deg) translateX(-160px);

  animation: benefitsShineCHIhfdf 2.5s linear infinite;
}

.benefitsCHIhfdf__button img,
.benefitsCHIhfdf__button span {
  position: relative;
  z-index: 1;
}

.benefitsCHIhfdf__button img {
  width: 34px;
  height: 34px;

  object-fit: contain;
}

@keyframes benefitsPulseCHIhfdf {
  0%,
  100% {
    transform: scale(1);

    box-shadow: 0 5px 10px 0 #1e2d20, 0 0 0 rgba(126, 210, 3, 0);
  }

  50% {
    transform: scale(1.02);

    box-shadow: 0 8px 18px 0 #1e2d20, 0 0 22px rgba(188, 242, 10, 0.55);
  }
}

@keyframes benefitsShineCHIhfdf {
  0% {
    transform: rotate(18deg) translateX(-160px);
  }

  100% {
    transform: rotate(18deg) translateX(700px);
  }
}

@media (max-width: 767px) {
  .benefitsCHIhfdf {
    padding: 48px 0;
  }

  .benefitsCHIhfdf__title {
    margin-bottom: 32px;
  }

  .benefitsCHIhfdf__content {
    grid-template-columns: 1fr;

    gap: 32px;

    margin-bottom: 32px;
  }

  .benefitsCHIhfdf__item {
    margin-bottom: 14px;

    line-height: 1.45;
  }

  .benefitsCHIhfdf__price {
    font-size: 20px;
  }

  .benefitsCHIhfdf__button {
    width: 100%;
    min-width: 0;

    padding: 14px 18px;

    font-size: 20px;

    white-space: nowrap;
  }

  .benefitsCHIhfdf__button img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 420px) {
  .benefitsCHIhfdf__button {
    font-size: 18px;
  }
}

.ticketsCHIhfdf {
  padding: 80px 0;
  background: #000307;
}

.ticketsCHIhfdf__title {
  margin: 0 0 40px;

  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}

.ticketsCHIhfdf__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;

  margin: 0 0 42px;
  padding: 0;

  list-style: none;
}

.ticketsCHIhfdf__item {
  display: flex;
}

.ticketsCHIhfdf__item img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.ticketsCHIhfdf__button {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  width: fit-content;
  min-width: 520px;
  min-height: 60px;

  margin: 0 auto;
  padding: 14px 28px;

  border-radius: 10px;
  border: 4px solid #bcf20a;

  background: linear-gradient(180deg, #bdf30b 0%, #7ed203 100%);

  box-shadow: 0 5px 10px 0 #1e2d20;

  color: #000307;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;

  overflow: hidden;

  animation: ticketsPulseCHIhfdf 1.8s ease-in-out infinite;
}

.ticketsCHIhfdf__button::before {
  content: '';

  position: absolute;

  top: -30%;
  left: -30%;

  width: 80px;
  height: 160%;

  background: rgba(255, 255, 255, 0.4);

  transform: rotate(18deg) translateX(-160px);

  animation: ticketsShineCHIhfdf 2.5s linear infinite;
}

.ticketsCHIhfdf__button img,
.ticketsCHIhfdf__button span {
  position: relative;
  z-index: 1;
}

.ticketsCHIhfdf__button img {
  width: 34px;
  height: 34px;

  object-fit: contain;
}

@keyframes ticketsPulseCHIhfdf {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);

    box-shadow: 0 8px 18px 0 #1e2d20, 0 0 22px rgba(188, 242, 10, 0.55);
  }
}

@keyframes ticketsShineCHIhfdf {
  from {
    transform: rotate(18deg) translateX(-160px);
  }

  to {
    transform: rotate(18deg) translateX(700px);
  }
}

@media (max-width: 767px) {
  .ticketsCHIhfdf {
    padding: 48px 0;
  }

  .ticketsCHIhfdf__title {
    margin-bottom: 32px;
  }

  .ticketsCHIhfdf__list {
    grid-template-columns: 1fr;

    gap: 16px;

    margin-bottom: 32px;
  }

  .ticketsCHIhfdf__button {
    width: 100%;
    min-width: 0;

    padding: 14px 16px;

    font-size: 20px;

    white-space: nowrap;
  }

  .ticketsCHIhfdf__button img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 420px) {
  .ticketsCHIhfdf__button {
    font-size: 18px;
  }
}

.startCHIhfdf {
  padding: 46px 0 34px;
  background: #000307 url('/imagesCHIhfdf/hero-bgCHIhfdf.webp') center / cover
    no-repeat;
}

.startCHIhfdf__container {
  max-width: 760px;
}

.startCHIhfdf__title {
  margin: 0 0 34px;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 34px;
  text-transform: uppercase;
}

.startCHIhfdf__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: start;
  margin-bottom: 34px;
}

.startCHIhfdf__text {
  position: relative;
  margin: 0;
  padding-left: 32px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.startCHIhfdf__text::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url('/imagesCHIhfdf/checkCHIhfdf.webp') center / contain no-repeat;
}

.startCHIhfdf__price {
  margin: 0;
  color: #7ed203;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.startCHIhfdf__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  min-width: 560px;
  min-height: 60px;
  margin: 0 auto;
  padding: 14px 30px;
  border-radius: 10px;
  border: 4px solid #bcf20a;
  background: linear-gradient(180deg, #bdf30b 0%, #7ed203 100%);
  box-shadow: 0 5px 10px 0 #1e2d20;
  color: #000307;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  animation: startPulseCHIhfdf 1.8s ease-in-out infinite;
}

.startCHIhfdf__button::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 80px;
  height: 160%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(18deg) translateX(-160px);
  animation: startShineCHIhfdf 2.5s linear infinite;
}

.startCHIhfdf__button img,
.startCHIhfdf__button span {
  position: relative;
  z-index: 1;
}

.startCHIhfdf__button img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@keyframes startPulseCHIhfdf {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 18px 0 #1e2d20, 0 0 22px rgba(188, 242, 10, 0.55);
  }
}

@keyframes startShineCHIhfdf {
  from {
    transform: rotate(18deg) translateX(-160px);
  }

  to {
    transform: rotate(18deg) translateX(700px);
  }
}

@media (max-width: 767px) {
  .startCHIhfdf {
    padding: 48px 0;
    background-position: center;
  }

  .startCHIhfdf__title {
    margin-bottom: 30px;
  }

  .startCHIhfdf__content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .startCHIhfdf__button {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    font-size: 20px;
    white-space: nowrap;
  }

  .startCHIhfdf__button img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 420px) {
  .startCHIhfdf__button {
    font-size: 18px;
  }
}

.footerCHIhfdf {
  padding: 56px 0 24px;
  background: #000307;
}

.footerCHIhfdf__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;

  margin-bottom: 70px;
}

.footerCHIhfdf__logo {
  display: inline-flex;

  width: 265.483px;
  height: 30.912px;

  text-decoration: none;
}

.footerCHIhfdf__logo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

.footerCHIhfdf__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footerCHIhfdf__heading {
  display: block;

  margin-bottom: 16px;

  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.footerCHIhfdf__list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.footerCHIhfdf__item {
  margin-bottom: 16px;
}

.footerCHIhfdf__link {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  transition: color 0.3s ease;
}

.footerCHIhfdf__link:hover,
.footerCHIhfdf__link:focus-visible {
  color: #7ed203;
}

.footerCHIhfdf__copy {
  margin: 0;

  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;

  opacity: 0.9;
}

@media (max-width: 767px) {
  .footerCHIhfdf {
    padding: 48px 0 24px;
  }

  .footerCHIhfdf__container {
    flex-direction: column;
    gap: 40px;

    margin-bottom: 48px;
  }

  .footerCHIhfdf__logo {
    width: 199.112px;
    height: 23.184px;
  }

  .footerCHIhfdf__heading {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .footerCHIhfdf__item:not(:last-child) {
    margin-bottom: 14px;
  }
}

.terms {
  background: #000308;
  padding: 70px 0;
}

.terms h1 {
  color: #7ed203;
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.terms p {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}

.terms ul {
  list-style: disc;
  margin-bottom: 24px;
}

.terms ul li {
  list-style-type: disc;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.terms a {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

@media (max-width: 767px) {
  .terms {
    background: #000308;
    padding: 40px 0;
  }

  .terms h1 {
    color: #7ed203;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
  }
}
