:root {
  --yellow: #f4b400;
  --darkBlue: #1f2e40;
  --dark: #0d1b2a;
  --transparentWhite: rgba(255, 255, 255, 0.1);
  --white: white;
  --container-width: 1240px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
}

body {
  color: var(--white);
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.spacing {
  padding-top: 40px;
  padding-bottom: 40px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-step);
  padding-right: var(--container-step);
}

@media (max-width: 991px) {
  .container {
    padding-left: var(--container-step-tablet);
    padding-right: var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: var(--container-step-mobile);
    padding-right: var(--container-step-mobile);
  }
}

.container__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'Kalnia', serif;
}

.text--yellow {
  color: var(--yellow);
}

.block--darkBlue {
  background-color: var(--darkBlue);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid var(--transparentWhite);
}

.hide {
  display: none;
}

main {
  background-image: url("/assets?p=%2F..%2Fimages%2Fbackground.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

.btn {
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  display: block;
  text-align: center;
  font-family: 'Kalnia', serif;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}

.btn--primary {
  color: var(--darkBlue);
  background: var(--yellow);
}

.btn--secondary {
  color: var(--yellow);
  border: 1px solid var(--yellow);
}

/* start footer */

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px 0;
  background-color: var(--dark);
}

.footer__first-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px 0;
}

.footer__first-content__partners,
.footer__first-content__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.footer__first-content__item {
  font-size: 20px;
  font-family: 'Karla', sans-serif;
}

.footer__first-content > p,
.footer__second-content > div > p {
  font-size: 16px;
  font-family: 'Karla', sans-serif;
}

.footer__first-content__item.img {
  width: 62px;
}

.footer__second-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 30px;
}

.footer__second-content > div > div {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'Karla', sans-serif;
}
/* end footer */

/* start header */

.header {
  background: -o-linear-gradient(
    left,
    #1d3c5e 0%,
    #5e481d 50.96%,
    #902d2d 100%
  );
  background: -webkit-gradient(linear, left top, right top, from(#1d3c5e), color-stop(50.96%, #5e481d), to(#902d2d));
  background: -o-linear-gradient(left, #1d3c5e 0%, #5e481d 50.96%, #902d2d 100%);
  background: linear-gradient(90deg, #1d3c5e 0%, #5e481d 50.96%, #902d2d 100%);
  -webkit-box-shadow: 0px 4px 8.3px 0px rgba(255, 255, 255, 0.25);
  box-shadow: 0px 4px 8.3px 0px rgba(255, 255, 255, 0.25);
  padding-top: 12px;
  padding-bottom: 12px;
}

.header a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 12px;
}

.header a span {
  background: -o-linear-gradient(left, #f4b400 0%, #fff 100%);
  background: -webkit-gradient(linear, left top, right top, from(#f4b400), to(#fff));
  background: linear-gradient(90deg, #f4b400 0%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  font-family: 'Kalnia', serif;
}

.header a img {
  width: 27px;
}

/* end header */

/* start conclusion */

.conclusion__content__list {
  list-style: disc;
  padding-left: 16px;
}

.conclusion__content__list li {
  margin-bottom: 5px;
}

.conclusion__content > div {
  margin: 24px 0;
}

.conclusion__content * {
  font-size: 18px;
  line-height: 150%;
  font-family: 'Karla', sans-serif;
}

/* end conclusion */

/* start guide */

.guide {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 24px;
}

.guide__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'Kalnia', serif;
}

.guide p {
  font-size: 18px;
  line-height: 150%;
  font-family: 'Karla', sans-serif;
}

.guide__description {
  margin-top: 24px;
}

/* end guide */

/* start faq */

.faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px 0;
  padding-left: 11.08%;
  padding-right: 11.08%;
}

.faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px 0;
  cursor: pointer;
}

.faq__item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 24px;
}

.faq__item__title p {
  font-size: 18px;
  line-height: 150%;
  font-family: 'Karla', sans-serif;
}

.faq__item__title button {
  cursor: pointer;
  display: contents;
}

.faq__item__title button img {
  width: 20px;
}

.faq__item__content {
  color: #c8c0a2;
  font-size: 16px;
  line-height: 150%;
  font-family: 'Karla', sans-serif;
}

.faq__item__content .text-spacing {
  margin-bottom: 24px;
}

/* end faq */

/* start top */

.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px 0;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.top__item {
  border-radius: 30px;
  border: 1px solid #22190d;
  padding: 28px 40px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0 20px;
  position: relative;
  overflow: hidden;
}

.top__item__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px 0;
}

.top__item__description > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 10px;
}

.top__item__description > div img {
  width: 14px;
}

.top__item__description > div span {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  line-height: 120%;
  font-family: 'Karla', sans-serif;
}

.top__item > div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px 0;
}

.top__item > div:last-child > div > div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 20px;
}

.top__item > div:last-child > div img {
  width: 24px;
}

.top__item > span {
  border-radius: 15px 0px;
  background: #d70909;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 20px;
  display: block;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 10px;
  font-weight: 600;
  line-height: normal;
  font-family: 'Karla', sans-serif;
}

.top__item__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px 0;
}

.top__item__rating > a:first-child {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  font-family: 'Kalnia', serif;
}

.top__item__rating > a:nth-child(2) {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  font-family: 'Karla', sans-serif;
}

.top__item__rating > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 10px;
}

.top__item__rating > div span {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  font-family: 'Karla', sans-serif;
}

.top-spacing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px 0;
  padding-top: 24px;
  padding-bottom: 40px;
}

.mob-top {
  display: none;
}

.top__item__brand > a {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.top__item__brand > a img {
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

/* end start */

/* start popup */

.popup {
  padding: 32px 24px;
  background-color: var(--dark);
  max-width: 535px;
  width: 100%;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px 0;
  position: fixed;
  bottom: 0;
  right: 0;
}

.popup.disabled {
  display: none;
}

.popup__title {
  color: var(--yellow);
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}

.popup__description {
  text-align: center;
  font-size: 16px;
  line-height: 130%;
}

.popup > div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 20px;
  width: 100%;
}

/* end popup */

/* start main */

.main {
  padding-top: 40px;
}

.main__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  font-family: 'Kalnia', serif;
}

.main__description {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin: 24px 0;
  font-family: 'Jost', sans-serif;
}

.main__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-bottom: 40px;
}

.main__content > div {
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: var(--transparentWhite);
}

.main__content > div span {
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  font-family: 'Jost', sans-serif;
}

.main__content > div img {
  width: 24px;
  height: 24px;
}

.main__date {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Karla', sans-serif;
}

/* end main */

/* start terms */

.terms {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--dark);
}

.terms > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px 0;
}

.terms > div > div,
.terms > div > div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px 0;
}

.terms > div > div h1,
.terms > div > div h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  font-family: 'Kalnia', serif;
}

.terms > div > div p,
.terms > div > div ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  font-family: 'Karla', sans-serif;
}

.terms > div > div ul {
  list-style: disc;
  padding-left: 17px;
}

/* end terms */

/* start responsive design */

@media (max-width: 1000px) {
  .guide {
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
  }
  .top__item {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 18px;
    gap: 10px;
  }
  .top__item__description {
    display: none;
  }
  .top__item__rating > p:first-child {
    display: none;
  }
  .top__item > div:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .top__item > div:last-child a {
    width: 100%;
    font-size: 12px;
  }
  .top__item__rating > div {
    display: none;
  }
  .mob-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .top__item__rating > p:nth-child(2) {
    font-size: 14px;
  }
  .top__item > div:last-child > div {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr);
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .mob-top span {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    font-family: 'Karla', sans-serif;
  }
  .mob-top img {
    width: 82px !important;
  }
  .top__item > div:last-child > div > div:last-child {
    gap: 10px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .popup__title {
    font-size: 18px;
  }
  .popup > div:last-child * {
    font-size: 12px;
  }
  .popup__description {
    font-size: 12px;
  }
  .top__item__rating > a:first-child {
    display: none;
  }
  .top {
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 710px) {
  .footer__first-content__partners,
  .footer__first-content__nav {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .spacing {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  /* footer */

  .footer__second-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .footer__second-content > div > div,
  .footer__first-content__item,
  .header a span,
  .guide__title {
    font-size: 16px;
  }

  .footer__second-content > div > p,
  .footer__first-content > p {
    font-size: 14px;
  }

  .footer__first-content__item.img {
    width: 31px;
  }

  .footer,
  .footer__first-content {
    gap: 16px 0;
  }

  .footer__second-content {
    grid-gap: 16px 0;
  }

  .footer__first-content__partners,
  .footer__first-content__nav {
    gap: 16px;
  }

  .footer__second-content > div > div {
    margin-bottom: 8px;
  }

  /* header */

  .header a img {
    width: 17px;
  }

  .header a {
    gap: 0 8px;
  }

  .container__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  /* conclusion */

  .conclusion {
    padding: 16px;
  }

  .conclusion__content *,
  .guide p {
    font-size: 14px;
  }

  /* guide */

  .guide {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 16px;
  }

  /* faq */

  .faq {
    padding-left: 0;
    padding-right: 0;
  }

  .faq__item__title p {
    font-size: 16px;
  }

  .faq__item__content {
    font-size: 14px;
  }

  /* main */

  .main {
    padding-top: 20px;
  }

  .main__title {
    font-size: 20px;
  }

  .main__description {
    display: none;
  }

  .main__content {
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 30px;
  }

  .main__content > div {
    border-radius: 4px;
    padding: 4px 12px;
    gap: 4px;
  }

  .main__content > div span {
    font-size: 8px;
    font-weight: 600;
    line-height: 130%;
  }

  .main__content > div img {
    width: 11px;
    height: 12px;
  }

  /* terms */

  .terms {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 535px) {
  .popup {
    border-radius: 0;
    padding: 24px 16px;
    gap: 10px 0;
  }
}

@media (max-width: 430px) {
  .popup > div:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px 0;
  }
}

@media (max-width: 360px) {
  .footer__first-content__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer__first-content__partners img {
    width: 92px;
  }

  .top__item > div:last-child > div img {
    width: 21px;
  }

  .main__content > div {
    padding: 4px 8px;
  }
}

/* end responsive design */