html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Nunito Sans", serif;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
}

.no-scroll {
  overflow: hidden !important;
}

.container {
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 32px;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  border: none;
  font-size: 15px;
  font-weight: 800;
  line-height: 16px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.button--outlined {
  width: 100%;
  border: 2px solid #00bbdb;
  padding: 16px 0;
  border-radius: 32px;
}

.button--outlined:hover {
  color: #000000;
  background-color: #00bbdb;
}

.button--blue {
  min-width: 330px;
  margin: 0 auto;
  margin-top: 30px;
  background-color: #00bbdb;
  font-size: 28px;
  font-weight: 900;
  line-height: 80px;
  text-align: center;
  border: 2px solid #00bbdb;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 60px;
}

.title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #33b9d8;
  margin: 0;
}

.email-confirmation-message {
  max-width: 1180px;
  width: 85%;
  position: fixed;
  top: 100px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  padding: 15px 50px;
  background: -o-linear-gradient(359.16deg, #4c00ca -0.09%, #ff0072 97.67%);
  background: linear-gradient(90.84deg, #4c00ca -0.09%, #ff0072 97.67%);
  color: #ffffff;
  font-weight: 600;
  border-radius: 15px;
  z-index: 111111;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 2;
}

.header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 360px;
  top: 0;
  left: 0;
  background: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 80%
  );
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0)),
    color-stop(80%, rgba(0, 0, 0, 0.7))
  );
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 80%
  );
  pointer-events: none;
  z-index: -1;
  -webkit-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
}

.header.scrolled::before {
  height: 132px;
}

.header.header__menu-opened {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 3;
}

.header.header__menu-opened .header__nav__wrapper-mobile,
.header.header__menu-opened .header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header.header__menu-opened .header__actions {
  margin-top: 80px;
}

.header.header__menu-opened .header__burger-close-btn {
  display: block;
}

.header.header__menu-opened .header__burger-btn {
  display: none;
}

.header__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  padding: 40px 0;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 62px;
}

.header__nav__logo {
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.header__nav__logo:hover {
  -webkit-filter: drop-shadow(0px 0px 8px #ffffff);
  filter: drop-shadow(0px 0px 8px #ffffff);
}

.header__nav__wrapper,
.header__nav__wrapper-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 62px;
}

.header__nav__wrapper-mobile,
.header__burger-close-btn {
  display: none;
}

.header__nav__link,
.header__language {
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.header__nav__link:hover,
.login__modal-open:hover,
.header__language:hover {
  color: #00bbdb;
}

.header__languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}

.header__language-active {
  color: #00bbdb;
}

.header__actions {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 23px;
}

.register__modal-open {
  width: 223px;
}

.header__burger-btn,
.header__burger-close-btn {
  display: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: auto;
}

.header__burger-btn svg,
.header__burger-close-btn svg {
  width: 16px;
  height: 16px;
}

.login__modal-open {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.banner {
  position: relative;
  padding-top: 31.5%;
  padding-bottom: 70px;
}

.banner__bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner__logo {
  position: absolute;
  width: calc(100vw * 0.2448);
  left: 50%;
  -webkit-transform: translate(-50%, -360%);
  -ms-transform: translate(-50%, -360%);
  transform: translate(-50%, -360%);
  z-index: 2;
}

.banner__earth {
  position: absolute;
  width: calc(100vw * 0.3125);
  height: calc(100vw * 0.3125);
  left: 50%;
  -webkit-transform: translate(-50%, -117%);
  -ms-transform: translate(-50%, -117%);
  transform: translate(-50%, -117%);
  -webkit-clip-path: circle(48.3% at center);
  clip-path: circle(48.3% at center);
}

.banner__title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #33b9d8;
  margin: 0;
}

.banner__subtitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
  margin-top: 36px;
}

.banner__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  color: #33b9d8;
  margin: 0;
}

.banner__divider {
  width: 153px;
  height: 2px;
  background-color: #262626;
  margin: 32px auto 25px;
}

.about {
  position: relative;
}

.about__bg {
  position: absolute;
  width: 100%;
  top: -144px;
  left: 0;
  z-index: -2;
}

.about__title {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 20px;
  border-bottom: 2px solid #000000;
}

.about__items {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr 100px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto 95px auto;
  grid-template-rows: auto auto;
  gap: 95px 100px;
  margin-top: 110px;
}

.about__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: 22px;
  position: relative;
  padding: 148px 135px 50px 49px;
  background: url("/themes/shakesv4/landing/images/about-item-bg.svg") no-repeat;
  background-size: 100% 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.about__item:hover {
  background: url("/themes/shakesv4/landing/images/about-item-hover-bg.svg"),
    url("/themes/shakesv4/landing/images/about-item-bg.svg") no-repeat;
  background-size: 100% 100%;
}

.about__item--large {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 0;
  -ms-grid-column-span: 2;
  grid-column: span 2;
  padding: 50px 68px 50px 70px;
  background: url("/themes/shakesv4/landing/images/about-first-item-bg.svg")
    no-repeat;
  background-size: 100% 100%;
}

.about__item--large:hover {
  background: url("/themes/shakesv4/landing/images/about-first-item-hover-bg.svg"),
    url("/themes/shakesv4/landing/images/about-first-item-bg.svg") no-repeat;
  background-size: 100% 100%;
}

.about__item__img {
  position: absolute;
  top: -118px;
  right: 0px;
}

.about__item--large .about__item__img {
  top: -70px;
  left: 0;
}

.about__item__wrapper {
  width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 22px;
  margin-top: 147px;
}

.about__item__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.about__item__desc {
  max-width: 500px;
  font-size: 20px;
  font-weight: 500;
  line-height: 135%;
  margin: 0;
}

.about__item__list {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-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: 30px;
  padding-left: 18px;
  padding-top: 18px;
  border-left: 1px solid #351467;
}

.about__item__list__elem:nth-child(2) .about__item__title {
  color: #00d6f2;
}

.about__item__list__elem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 41px;
}

.about__item__list__elem__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}

.advantages {
  position: relative;
  margin-top: 170px;
  z-index: 1;
}

.advantages::after {
  content: "";
  position: absolute;
  top: -98px;
  right: 0;
  width: 660px;
  height: 1272px;
  background: url("/themes/shakesv4/landing/images/advantages-deco.svg")
    no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
}

.advantages__title {
  position: relative;
  text-align: center;
  line-height: 1.3;
  margin: 0 auto;
}

.advantages__text {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  color: #000000;
  margin: 0;
}

.advantages__list {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 65px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px 10px 0;
  background: url("/themes/shakesv4/landing/images/advantages-item-bg.svg")
    no-repeat;
  background-size: 100% 100%;
}

.advantages__item:hover {
  background: url("/themes/shakesv4/landing/images/advantages-item-hover-bg.svg"),
    url("/themes/shakesv4/landing/images/advantages-item-bg.svg") no-repeat;
  background-size: 100% 100%;
}

.advantages__item__text {
  font-size: 25px;
  font-weight: 500;
  line-height: 34px;
  margin: 0;
}

.advantages__item:last-child .advantages__item__text {
  letter-spacing: -0.06em;
}

.advantages__item__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.countries {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  background: url("/themes/shakesv4/landing/images/map.png") no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: 160px;
  aspect-ratio: 33 / 12;
  z-index: 1;
}

.countries::before {
  content: "";
  position: absolute;
  width: 251px;
  height: 472px;
  top: -355px;
  left: 0;
  background: url("/themes/shakesv4/landing/images/countries-deco.webp")
    no-repeat;
  background-size: contain;
  pointer-events: none;
}

.countries__marquee,
.gallery__marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.countries__marquee {
  -webkit-transform: translateY(-52px);
  -ms-transform: translateY(-52px);
  transform: translateY(-52px);
}

.countries__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  transform: translateX(-20%);
}

.countries__item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: url("/themes/shakesv4/landing/images/country-bg.svg") no-repeat;
  background-size: 100% 100%;
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
}

.countries__item:hover {
  background: url("/themes/shakesv4/landing/images/country-bg-hover.svg"),
    url("/themes/shakesv4/landing/images/country-bg.svg") no-repeat;
  background-size: 100% 100%;
}

.countries__img {
  width: 49px;
  height: 39px;
}

.gallery {
  position: relative;
  margin-top: 152px;
}

.gallery__text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #000000;
  margin: 0;
}

.gallery__marquee {
  padding: 24px 0;
  border-top: 4px solid #e300ff;
  border-bottom: 4px solid #e300ff;
  margin-top: 30px;
}

.gallery__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.gallery-img {
  display: block;
  width: 453px;
  height: 448px;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
}

.contacts {
  position: relative;
  padding-top: 136px;
  padding-bottom: 7.6%;
}

.contacts__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -o-object-fit: cover;
  object-fit: cover;
}

.contacts__title {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 128%;
  color: #5f35b7;
}

.contacts__title::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  display: block;
  width: 112%;
  height: 2px;
  background-color: #5f35b7;
}

.contacts__title__deco {
  position: absolute;
  top: 16px;
  left: -78px;
}

.contacts__list {
  margin-top: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 175px;
}

.contacts__link {
  position: relative;
  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: 46px;
  text-align: center;
  text-decoration: none;
}

.contacts__icon {
  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;
  width: 290px;
  height: 288px;
  background: url("/themes/shakesv4/landing/images/contacts-link-border.svg")
    no-repeat;
  background-size: contain;
}

.contacts__link:hover .contacts__icon {
  background: -o-linear-gradient(top, #2e00c9 0%, #ff0072 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#2e00c9),
    to(#ff0072)
  );
  background: linear-gradient(180deg, #2e00c9 0%, #ff0072 100%);
  -webkit-clip-path: path(
    "M291 79.09H266.057V50.6398H239.484V24.4827H212.519V1.1499H79.4813V24.4827H52.5034V50.6398H25.9429V79.09H1V211.21H25.9429V239.66H52.5034V265.817H79.4813V289.15H212.519V265.817H239.484V239.66H266.057V211.21H291V79.09Z"
  );
  clip-path: path(
    "M291 79.09H266.057V50.6398H239.484V24.4827H212.519V1.1499H79.4813V24.4827H52.5034V50.6398H25.9429V79.09H1V211.21H25.9429V239.66H52.5034V265.817H79.4813V289.15H212.519V265.817H239.484V239.66H266.057V211.21H291V79.09Z"
  );
}

.contacts__link:hover .contacts__icon svg path {
  fill: #ffffff;
}

.contacts__text {
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
}

.footer {
  padding-top: 60px;
  padding-bottom: 46px;
  background-color: #030037;
  border-top: 2px solid #b791ff;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

.footer__payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.footer__payments__item--capitalist {
  width: 127px;
}

.footer__payments__item--wire-transfer {
  width: 108px;
}

.footer__payments__item--ton {
  width: 43px;
}

.footer__tc__link {
  text-decoration: none;
  margin-left: 60px;
}

.footer__tc__link img {
  width: 300px;
}

.footer__contacts {
  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;
  margin-top: 46px;
  text-align: center;
}

.footer__address {
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  font-style: normal;
}

.footer__privacy {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-decoration: none;
  color: #ffffff;
  margin-top: 8px;
}

.hidden {
  display: none !important;
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 96%;
  width: 456px;
  height: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal__content {
  width: 100%;
  max-width: 456px;
  position: relative;
  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;
  background: none;
  border: none;
  padding: 52px 63px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: auto 0;
}

.backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(31, 4, 78, 0.8);
  z-index: 4;
}

.modal__close {
  position: absolute;
  top: -34px;
  right: -42px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

#login__modal .modal__content {
  background: url("/themes/shakesv4/landing/images/login-modal-bg.svg")
    no-repeat;
  background-size: 100% 100%;
}

#register__modal .modal__content {
  background: url("/themes/shakesv4/landing/images/register-modal-bg.svg")
    no-repeat;
  background-size: 100% 100%;
}

.login__form,
.register__form,
.recovery__form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.form__filed {
  position: relative;
}

.form__input {
  width: 100%;
  height: 30px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #ffffff;
  font-family: Nunito Sans;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
}

.form__input::-webkit-input-placeholder {
  color: #ffffff;
  font-style: italic;
}

.form__input::-moz-placeholder {
  color: #ffffff;
  font-style: italic;
}

.form__input:-ms-input-placeholder {
  color: #ffffff;
  font-style: italic;
}

.form__input::-ms-input-placeholder {
  color: #ffffff;
  font-style: italic;
}

.form__input::placeholder {
  color: #ffffff;
  font-style: italic;
}

.form__input:-webkit-autofill,
.form__input:-webkit-autofill:focus,
.form__input:-webkit-autofill:hover,
.form__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
  background-color: transparent !important;
  background-image: none !important;
  background: transparent !important;
  transition: background-color 9999s ease-in-out 0s !important;
  -webkit-transition: background-color 9999s ease-in-out 0s !important;
}

.form__input:-webkit-autofill::first-line {
  font-family: "Nunito Sans", serif !important;
  font-size: 20px !important;
  color: #ffffff !important;
}

.form__input:-webkit-autofill,
.form__input:-webkit-autofill:focus,
.form__input:-webkit-autofill:hover,
.form__input:-webkit-autofill:active {
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.form__input:-moz-autofill {
  background-color: transparent !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: none !important;
  filter: none !important;
  background: transparent !important;
}

input:-internal-autofill-selected {
  background-color: transparent !important;
  background-image: none !important;
  color: #ffffff !important;
  background: transparent !important;
}

input:-internal-autofill-previewed {
  background-color: transparent !important;
  background-image: none !important;
  color: #ffffff !important;
  background: transparent !important;
}

.form__select-hidden {
  display: none;
}

.form__select {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}

.form__select__trigger {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.form__select__trigger span {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.form__select__arrow {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.form__select.open .form__select__arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.form__select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  max-height: 336px;
  background: -o-linear-gradient(294.66deg, #020052 0%, #5f3fa1 100%);
  background: linear-gradient(155.34deg, #020052 0%, #5f3fa1 100%);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@-moz-document url-prefix() {
  .form__select__options {
    scrollbar-width: thin;
    scrollbar-color: #33b9d8 transparent;
  }
}

.form__select__options::-webkit-scrollbar {
  width: 8px;
}

.form__select__options::-webkit-scrollbar-track {
  background: #ffffff;
}

.form__select__options::-webkit-scrollbar-thumb {
  background-color: #33b9d8;
}

.form__select.open .form__select__options {
  opacity: 1;
  visibility: visible;
}

.form__select-option {
  display: block;
  font-weight: 500;
  font-style: Italic;
  font-size: 20px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.form__select-option:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.2);
}

.form__select-option:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.2);
}

.form__select-option:hover {
  background-color: #33b9d8;
}

.form__select-option.disabled {
  padding-top: 11px;
  padding-bottom: 17px;
  background: none;
  color: #ffffff;
}

.form__select-option.selected {
  background-color: #33b9d8;
}

.form__reset-password {
  display: block;
  background: none;
  border: none;
  outline: none;
  font-weight: 500;
  font-style: italic;
  font-size: 15px;
  line-height: 20px;
  text-decoration: underline;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  margin-top: 3px;
  margin-left: auto;
}

.form__filed .errorMessage {
  height: 14px;
  font-size: 12px;
  color: red;
  margin-top: 4px;
}

#registrationForm_captcha {
  margin-top: 10px;
  margin-bottom: 3px;
}

#loginForm_captcha {
  margin-bottom: 34px;
}

.form__actions {
  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: 8px;
}

.form__button {
  min-width: 240px;
  margin: 0 auto;
  background-color: #00bbdb;
  font-weight: 800;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  padding: 16px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 60px;
}

.form__button-registration {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-transform: lowercase;
  text-decoration: underline;
}

#Profile_country_id {
  font-style: italic;
  font-weight: 500;
  max-width: 330px;
}

#Profile_country_id option {
  font-family: "Nunito Sans", serif !important;
  color: #000000 !important;
  font-style: normal !important;
}

.form__actions__text,
.form__actions__link {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  margin-top: 40px;
  color: #ffffff;
}

.form__actions__link {
  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;
  gap: 16px;
  margin-top: 14px;
  font-weight: 800;
  text-transform: capitalize;
  -webkit-transform: translateX(-22px);
  -ms-transform: translateX(-22px);
  transform: translateX(-22px);
}

.form__actions__link:last-child {
  margin-top: 0;
  font-weight: 500;
  padding-left: 45px;
  margin-top: 8px;
}

.form__actions__login {
  background: none;
  border: none;
  outline: none;
  text-decoration: underline;
  font-weight: 700;
  color: #ffffff;
  padding: 0;
}

.form__message {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-align: center;
}

.form__back-to-login {
  position: relative;
  top: -20px;
  left: -45px;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 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: 15px;
  background: none;
  border: none;
  outline: none;
  font-weight: 800;
  font-size: 15px;
  line-height: 100%;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.scroll-top__icon {
  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;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.scroll-top__icon svg {
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.tablet {
  display: none;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}

@media screen and (max-width: 1450px) {
  .advantages__title {
    max-width: 1000px;
  }

  .about__item {
    padding-right: 50px;
  }

  .countries::before {
    top: -310px;
  }
}

@media screen and (max-width: 1280px) {
  .header__wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .header.scrolled::before {
    height: 164px;
  }

  .header__actions {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 14px 1fr;
    grid-template-columns: repeat(2, 1fr);
    margin-left: auto;
    gap: 12px 14px;
  }

  .header__languages {
    margin-left: auto;
  }

  .header .register__modal-open {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }

  .header__nav__logo {
    width: 200px;
  }

  .about__items {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto 104px auto 104px auto;
    grid-template-rows: auto auto auto;
    gap: 104px 16px;
  }

  .about__item:nth-child(4) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .advantages__list {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }

  .countries__marquee {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  .contacts__icon {
    width: 154px;
    height: 154px;
  }

  .contacts__icon--telegram svg {
    width: 55px;
  }

  .contacts__icon--vk svg {
    width: 70px;
  }

  .contacts__icon--instagram svg {
    width: 58px;
  }

  .contacts__link:hover .contacts__icon {
    -webkit-clip-path: path(
      "M154.598 42.3313H141.396V27.2735H127.339V13.4294H113.06V1.08008H42.6476V13.4294H28.3759V27.2735H14.3113V42.3313H1.10986V112.258H14.3113V127.316H28.3759V141.16H42.6476V153.509H113.06V141.16H127.339V127.316H141.396V112.258H154.598V42.3313Z"
    );
    clip-path: path(
      "M154.598 42.3313H141.396V27.2735H127.339V13.4294H113.06V1.08008H42.6476V13.4294H28.3759V27.2735H14.3113V42.3313H1.10986V112.258H14.3113V127.316H28.3759V141.16H42.6476V153.509H113.06V141.16H127.339V127.316H141.396V112.258H154.598V42.3313Z"
    );
  }

  .footer__payments {
    gap: 16px;
  }

  .footer__tc__link {
    margin-left: 16px;
  }
}

@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 50px;
  }

  .button--blue {
    width: 340px;
    font-size: 24px;
    line-height: 72px;
  }

  .container {
    max-width: 716px;
    padding: 0 12px;
  }

  .header .container {
    max-width: unset;
  }

  .header__nav,
  .header__nav__wrapper-mobile,
  .header__actions {
    gap: 44px;
  }

  .header__nav__wrapper-mobile {
    -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;
  }

  .header__wrapper {
    display: block;
    padding: 16px 0;
  }

  .header__nav__wrapper,
  .header__nav__wrapper-mobile,
  .header__actions {
    display: none;
  }

  .header__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header__languages {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-left: 0;
  }

  .header__nav {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header__burger-btn {
    display: block;
    margin-left: auto;
  }

  .header::before {
    height: 210px;
  }

  .header.scrolled::before {
    height: 56px;
  }

  .banner {
    padding-top: 44%;
    padding-bottom: 105px;
  }

  .header__nav__logo {
    width: 154px;
  }

  .banner__earth {
    width: calc(100vw * 0.461);
    height: calc(100vw * 0.461);
    -webkit-transform: translate(-50%, -113%);
    -ms-transform: translate(-50%, -113%);
    transform: translate(-50%, -113%);
  }

  .banner__logo {
    width: calc(100vw * 0.344);
    -webkit-transform: translate(-50%, -460%);
    -ms-transform: translate(-50%, -460%);
    transform: translate(-50%, -460%);
  }

  .banner__subtitle {
    margin-top: 28px;
  }

  .banner__divider {
    width: 118px;
    height: 2px;
    margin: 26px auto;
  }

  .banner__text {
    font-size: 20px;
    line-height: 32px;
  }

  .about__title {
    font-size: 52px;
  }

  .about__bg {
    top: -190px;
  }

  .about__items {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    margin-top: 100px;
  }

  .about__item {
    padding: 98px 106px 32px 51px;
  }

  .about__item--large {
    padding: 49px 54px 40px 51px;
  }

  .about__item__img {
    width: 224px;
    top: -104px;
    right: -10px;
  }

  .about__item--large .about__item__img {
    top: -53px;
    left: 0;
  }

  .about__item__wrapper {
    width: 190px;
    gap: 10px;
    margin-top: 114px;
    padding-right: 16px;
  }

  .about__item__title {
    font-size: 24px;
    line-height: 1;
  }

  .about__item__desc {
    max-width: 335px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
  }

  .about__item__list__elem img {
    width: 42px;
  }

  .about__item__list {
    gap: 32px;
    padding-left: 40px;
    padding-top: 22px;
  }

  .about__item__list__elem {
    gap: 27px;
  }

  .advantages {
    margin-top: 48px;
  }

  .advantages::after {
    top: 230px;
    right: 32px;
    width: 43px;
    height: 43px;
    background: url("/themes/shakesv4/landing/images/advantages-deco-tablet.svg")
      no-repeat;
    background-size: contain;
  }

  .advantages__list {
    gap: 40px 16px;
    margin: 55px 0;
  }

  .advantages__item {
    padding: 8px 15px 8px 0;
  }

  .advantages__item__icon {
    width: 103px;
    height: 103px;
  }

  .advantages__item__text {
    font-size: 16px;
    line-height: 1.2;
  }

  .advantages__text {
    font-size: 24px;
  }

  .countries {
    margin-top: 108px;
  }

  .countries::before {
    width: 154px;
    height: 392px;
    top: -272px;
    background: url("/themes/shakesv4/landing/images/countries-deco-tablet.png")
      no-repeat;
    background-size: contain;
  }

  .countries::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 25px;
    right: 65px;
    background: url("/themes/shakesv4/landing/images/countries-deco2.svg")
      no-repeat;
    background-size: contain;
  }

  .countries__content {
    gap: 8px;
  }

  .countries__item {
    gap: 8px;
    padding: 8px 12px;
    font-size: 16px;
    line-height: 1;
  }

  .countries__img {
    width: 24px;
    height: 20px;
  }

  .gallery::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: -180px;
    left: 65px;
    background: url("/themes/shakesv4/landing/images/countries-deco2.svg")
      no-repeat;
    background-size: contain;
  }

  .gallery-img {
    width: 224px;
    height: 224px;
  }

  .gallery__marquee {
    padding: 12px 0;
    margin-top: 4px;
  }

  .gallery__content {
    gap: 6px;
  }

  .contacts {
    padding-top: 76px;
    padding-bottom: 16%;
  }

  .contacts__title {
    border: none;
  }

  .contacts__title::before {
    content: none;
  }

  .contacts__title__deco {
    width: 28px;
    height: 28px;
    top: 50px;
    left: -70px;
  }

  .contacts__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 70px;
    margin-top: 60px;
  }

  .contacts__link {
    gap: 7px;
  }

  .contacts__text {
    font-size: 24px;
  }

  .footer {
    padding-top: 28px;
    padding-bottom: 15px;
  }

  .footer__content {
    gap: 18px;
  }

  .footer__logo {
    width: 153px;
  }

  .footer__tc__link img {
    width: 127px;
  }

  .footer__payments {
    gap: 40px;
  }

  .footer__payments__item--capitalist {
    width: 68px;
  }

  .footer__payments__item--wire-transfer {
    width: 58px;
  }

  .footer__payments__item--ton {
    width: 24px;
  }

  .footer__contacts {
    margin-top: 33px;
  }

  .form__input {
    height: 25px;
    font-size: 16px;
  }

  .scroll-top {
    gap: 5px;
    font-size: 10px;
    line-height: 1;
  }

  .scroll-top__icon {
    width: 38px;
    height: 38px;
  }

  .desktop {
    display: none;
  }

  .tablet {
    display: block;
  }
}

@media screen and (max-width: 690px) {
  .about__item {
    padding-right: 50px;
  }
}

@media screen and (max-width: 640px) {
  .title {
    font-size: 30px;
    text-align: center;
    margin: 0 auto;
  }

  .button--blue {
    min-width: 142px;
    width: 142px;
    line-height: 27px;
    font-size: 10px;
    margin-top: 21px;
  }

  .modal__content {
    padding: 65px 22px 34px;
  }

  .header::before {
    height: 160px;
  }

  .banner {
    padding-top: 72%;
    padding-bottom: 52px;
  }

  .banner__earth {
    width: calc(100vw * 0.657);
    height: calc(100vw * 0.657);
    -webkit-transform: translate(-50%, -121%);
    -ms-transform: translate(-50%, -121%);
    transform: translate(-50%, -121%);
  }

  .banner__logo {
    width: calc(100vw * 0.52);
    -webkit-transform: translate(-50%, -484%);
    -ms-transform: translate(-50%, -484%);
    transform: translate(-50%, -484%);
  }

  .banner__register-btn {
    position: absolute;
    margin-top: -27%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
  }

  .banner__title {
    font-size: 30px;
  }

  .banner__subtitle {
    font-size: 10px;
    line-height: 1;
    margin-top: 8px;
  }

  .banner__divider {
    width: 142px;
    height: 1px;
    margin: 16px auto;
  }

  .banner__text {
    font-size: 8px;
    line-height: 1;
  }

  .about__bg {
    top: -100px;
  }

  .about__title {
    border: none;
    padding: 0;
  }

  .about__title::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -26px;
    width: 16px;
    height: 16px;
    background: url("/themes/shakesv4/landing/images/about-title-deco.svg")
      no-repeat;
  }

  .about__item__img {
    width: 92px;
    top: -44px;
    right: 0px;
  }

  .about__item--large {
    padding: 18px 15px 15px 20px;
  }

  .about__item--large .about__item__img {
    top: -35px;
    left: 0px;
  }

  .about__item__wrapper {
    width: 107px;
    margin-top: 31px;
    padding-right: 6px;
    gap: 4px;
  }

  .about__item__list {
    padding-left: 19px;
    padding-top: 0;
    gap: 6px;
  }

  .about__item__list__elem {
    gap: 20px;
  }

  .about__item__list__elem img {
    width: 16px;
  }

  .about__item__title {
    font-size: 16px;
    line-height: 1.2;
  }

  .about__item__desc {
    max-width: 180px;
    font-size: 12px;
    line-height: 1.2;
  }

  .about__items {
    -ms-grid-rows: auto 48px auto 48px auto;
    grid-template-rows: auto auto auto;
    gap: 48px 12px;
    margin-top: 40px;
  }

  .about__item {
    gap: 8px;
    padding: 40px 25px 10px 16px;
  }

  .about__item__title {
    font-size: 10px;
  }

  .about__item__desc {
    font-size: 8px;
  }

  .advantages::after {
    content: none;
  }

  .advantages__text {
    font-size: 10px;
    line-height: 1;
  }

  .advantages__list {
    gap: 16px 12px;
    margin: 24px 0;
  }

  .advantages__item {
    padding: 3px 7px 3px 0;
  }

  .advantages__item__icon {
    width: 42px;
    height: 42px;
  }

  .advantages__item__text {
    font-size: 8px;
    line-height: 9px;
  }

  .countries__marquee {
    -webkit-transform: translateY(-13px);
    -ms-transform: translateY(-13px);
    transform: translateY(-13px);
  }

  .countries {
    aspect-ratio: 21 / 12;
    margin-top: 24px;
  }

  .countries::before {
    width: 58px;
    height: 104px;
    top: -77px;
    background: url("/themes/shakesv4/landing/images/countries-deco-mobile.png")
      no-repeat;
    background-size: contain;
  }

  .countries::after {
    width: 12px;
    height: 12px;
    top: 5px;
    right: 8px;
  }

  .countries__item {
    gap: 5px;
    padding: 4px;
    font-size: 8px;
    line-height: 9px;
  }

  .countries__img {
    width: 13px;
    height: 10px;
  }

  .contacts {
    padding-top: 0;
    padding-bottom: 25%;
    margin-bottom: -1px;
  }

  .contacts::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: -12px;
    left: 8px;
    background: url("/themes/shakesv4/landing/images/countries-deco2.svg")
      no-repeat;
    background-size: contain;
  }

  .contacts__list {
    gap: 40px;
    margin-top: 30px;
  }

  .contacts__link:hover .contacts__icon {
    -webkit-clip-path: path(
      "M73 20.485H66.8073V13.3725H60.2097V6.8332H53.515V1H20.485V6.8332H13.787V13.3725H7.19271V20.485H1V53.515H7.19271V60.6275H13.787V67.1668H20.485V73H53.515V67.1668H60.2097V60.6275H66.8073V53.515H73V20.485Z"
    );
    clip-path: path(
      "M73 20.485H66.8073V13.3725H60.2097V6.8332H53.515V1H20.485V6.8332H13.787V13.3725H7.19271V20.485H1V53.515H7.19271V60.6275H13.787V67.1668H20.485V73H53.515V67.1668H60.2097V60.6275H66.8073V53.515H73V20.485Z"
    );
  }

  .contacts__icon {
    width: 72px;
    height: 72px;
  }

  .contacts__icon--telegram svg {
    width: 25px;
  }

  .contacts__icon--vk svg {
    width: 32px;
  }

  .contacts__icon--instagram svg {
    width: 27px;
  }

  .contacts__text {
    font-size: 8px;
  }

  .footer {
    padding-top: 16px;
    padding-bottom: 7px;
  }

  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 12px;
  }

  .footer__contacts {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    margin-top: 12px;
  }

  .footer__payments {
    gap: 15px;
  }

  .footer__payments__item--capitalist {
    width: 28px;
  }

  .footer__payments__item--wire-transfer {
    width: 24px;
  }

  .footer__payments__item--ton {
    width: 10px;
  }

  .footer__logo,
  .footer__tc__link img {
    display: block;
    width: 65px;
    height: 7px;
  }

  .footer__address {
    font-size: 10px;
  }

  .footer__privacy {
    font-size: 10px;
    line-height: 1;
  }

  .form__back-to-login {
    left: -8px;
  }

  .scroll-top {
    font-size: 8px;
  }

  .scroll-top__icon {
    width: 27px;
    height: 27px;
    background: #ffffff;
  }

  .scroll-top__icon svg {
    -webkit-filter: none;
    filter: none;
    color: #030037;
  }

  .tablet {
    display: none;
  }

  .mobile {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .email-confirmation-message {
    padding: 15px 20px;
  }

  .about__title {
    font-size: 24px;
  }

  .modal__close {
    top: -40px;
    right: -7px;
  }

  .footer__address,
  .footer__privacy {
    font-size: 5px;
  }
}
