:root {
  --black: #171717;
  --black-soft: #202020;
  --gold: #f2a100;
  --gold-light: #ffcb46;
  --orange: #de8500;
  --cream: #ffe8ad;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.64);
  --tg: #2aabee;
  --purple: #8b00d4;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--black);
  font-family: "Raleway", "Mulish", Arial, sans-serif;
  font-size: 18px;
  background: var(--black);
}

body.home-page {
  background: linear-gradient(172deg, #f7cb00 0%, #e08700 34%, #171717 57%);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

a:hover {
  opacity: 0.78;
}

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 24px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 18px 28px;
  border: 0;
  border-radius: 18px;
  color: var(--black);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 34px rgba(255, 211, 99, 0.32);
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  background: linear-gradient(96deg, var(--gold-light) 0%, var(--orange) 100%);
}

.button--purple {
  color: var(--white);
  background: linear-gradient(96deg, #a100f2 0%, #7000bd 100%);
  box-shadow: 0 16px 44px rgba(122, 0, 184, 0.26);
}

.button--telegram,
.telegram__button,
.footer__button--tg {
  color: var(--white);
  background: var(--tg);
}

.button--telegram::before,
.telegram__button::before,
.footer__button--tg::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("../img/icon-telegram-white.svg") center / contain no-repeat;
}

.header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid #676870;
  background: var(--black);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header-logo__link {
  flex: 0 0 auto;
}

.header-logo__img {
  width: clamp(150px, 12vw, 210px);
}

.menu-wrapper {
  display: contents;
}

.main-nav,
.registration__buttons,
.footer__nav,
.contact-box__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav__item-link {
  color: var(--white);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 600;
  white-space: nowrap;
}

.telegram__button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.telegram__button::before {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
  background-image: url("../img/icon-telegram-blue.svg");
}

.registration__buttons {
  gap: 8px;
}

.registration__buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 18px;
  border-radius: 14px;
  color: #000;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.registration__buttons--login a {
  background: var(--white);
}

.registration__buttons--reg a {
  background: linear-gradient(96deg, var(--gold-light) 0%, var(--orange) 100%);
  box-shadow: 0 0 24px rgba(255, 211, 99, 0.34);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: url("../img/icon-menu.svg") center / contain no-repeat;
  cursor: pointer;
}

.home-main {
  position: relative;
  overflow: hidden;
}

.home-main::before {
  position: absolute;
  top: -216px;
  left: 28vw;
  z-index: 0;
  width: 562px;
  height: 600px;
  content: "";
  background: url("../img/decor-coin-top.webp") center / contain no-repeat;
  pointer-events: none;
}

.hero-section__wrapper {
  position: relative;
  overflow: hidden;
}

.hero-section__wrapper::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(45vw, 861px);
  height: 899px;
  content: "";
  background: url("../img/decor-coin-right.webp") right bottom / contain no-repeat;
  pointer-events: none;
}

.hero-section {
  position: relative;
  z-index: 1;
  padding: 74px 0 82px;
  overflow: hidden;
}

.hero-section::before {
  position: absolute;
  top: -42px;
  right: -6vw;
  z-index: -1;
  width: min(82vw, 1500px);
  height: 1150px;
  content: "";
  background: linear-gradient(302deg, var(--gold-light) 0%, var(--orange) 100%), url("../img/decor-hero-mark.svg") right top / contain no-repeat;
  background-blend-mode: overlay;
  opacity: 0.88;
  pointer-events: none;
}

.hero-section::after {
  position: absolute;
  bottom: 22px;
  left: 0;
  z-index: -1;
  width: 388px;
  height: 405px;
  content: "";
  background: url("../img/decor-coin-left.webp") left bottom / contain no-repeat;
}

.hero-section__row {
  position: relative;
  display: flex;
  gap: 32px;
}

.hero-section__row:first-child {
  min-height: 680px;
  margin-bottom: 58px;
}

.hero-section__column {
  position: relative;
  max-width: 690px;
}

.hero-section__column:first-child {
  z-index: 4;
}

.hero-section__visual {
  z-index: 2;
  flex: 1 1 auto;
}

.hero__logo {
  width: 170px;
  margin-bottom: 44px;
}

.hero-section__title {
  max-width: 740px;
  margin: 0 0 34px;
  color: var(--white);
  font-family: "Mulish", "Raleway", Arial, sans-serif;
  font-size: clamp(42px, 3.55vw, 64px);
  font-weight: 900;
  line-height: 0.98;
}

.hero-section__title b {
  color: var(--black);
  font-weight: 900;
}

.hero-section__desc {
  max-width: 600px;
  margin: 0 0 52px;
  color: var(--black);
  font-size: clamp(19px, 1.55vw, 26px);
  font-weight: 600;
  line-height: 1.24;
}

.hero__dragon-wrapper {
  position: absolute;
  top: -98px;
  right: -128px;
  width: min(55vw, 840px);
  height: 1030px;
  overflow: hidden;
}

.hero__dragon-wrapper::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 82px;
  content: "";
  background: linear-gradient(rgba(223, 165, 56, 0), #dfa538);
}

.hero__dragon {
  width: 100%;
  min-width: 730px;
}

.hero__dragon-wrapper-2 {
  display: none;
}

.hero-section__advantages {
  position: absolute;
  top: 24px;
  right: 46px;
  display: flex;
  flex-direction: column;
  gap: 90px;
  margin: 0;
  padding: 0;
  list-style: none;
  filter: drop-shadow(0 22px 45px rgba(17, 24, 39, 0.25)) drop-shadow(14px 14px 64px rgba(242, 161, 0, 0.6));
}

.hero-section__advantages-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 244px;
  height: 150px;
  border: 3px solid var(--gold);
  border-radius: 54px;
  background: linear-gradient(272deg, #fff 51.58%, #d6d6d6 98.41%);
}

.hero-section__advantages-item:nth-child(1) {
  transform: rotate(-12deg);
}

.hero-section__advantages-item:nth-child(2) {
  transform: rotate(6deg);
}

.hero-section__advantages-item:nth-child(3) {
  transform: rotate(18deg);
}

.hero-section__advantages-item b {
  color: #1d202b;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.hero-section__advantages-item span {
  margin-top: 8px;
  color: #1d202b;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.additional-advantages {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.additional-advantages__item {
  display: flex;
  width: 32.4%;
  min-height: 250px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  border: 2px solid var(--gold);
  border-radius: 86px;
  outline: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(137deg, rgba(255, 255, 255, 0.08) 35.54%, rgba(255, 255, 255, 0.2) 59.82%, rgba(255, 255, 255, 0.12) 74.9%);
  backdrop-filter: blur(29px);
  text-align: center;
}

.additional-advantages__item:nth-child(2) {
  position: relative;
  top: 48px;
}

.additional-advantages__item-img {
  width: 66px;
  height: 60px;
  margin-bottom: 28px;
  object-fit: contain;
}

.additional-advantages__item-title {
  margin-bottom: 14px;
  color: #000;
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 900;
  line-height: 1;
}

.additional-advantages__item-desc {
  margin: 0;
  color: #000020;
  font-size: 16px;
  font-weight: 800;
}

.mail-box {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 25px 26px 92px;
  border-radius: 128px 128px 0 0;
  background: var(--black);
  box-shadow: 0 20px 68px 6px rgba(0, 0, 0, 0.22);
}

.mail-box .container {
  width: min(100%, 1520px);
}

.mail-box__wrapper {
  padding: 68px 42px;
  border: 2px solid var(--gold);
  border-radius: 96px;
  background: var(--black);
  box-shadow: 0 20px 68px 6px rgba(0, 0, 0, 0.22);
}

.mail-box__heading,
.support__heading {
  margin: 0 0 38px;
  color: var(--gold);
  text-align: center;
  font-size: clamp(30px, 2.7vw, 44px);
  font-weight: 900;
  line-height: 1.05;
}

.mail-box__heading b,
.support__heading b {
  color: var(--white);
}

.mail-box__lead,
.support__desc {
  max-width: 980px;
  margin: 0 auto 54px;
  color: var(--muted);
  text-align: center;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.3;
}

.mail-box__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}

.mail-box__row:last-child {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
}

.mail-box__column {
  position: relative;
  min-height: 175px;
  overflow: hidden;
  border-radius: 48px;
  background: linear-gradient(120deg, #ffe9ae 0%, #ffc84a 100%);
  color: var(--black);
}

.mail-box__column--long {
  min-height: 190px;
  padding: 44px 34px 36px 180px;
}

.mail-box__column--small {
  min-height: 220px;
  padding: 30px 26px 26px;
}

.mail-box__img {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}

.mail-box__column--long .mail-box__img {
  left: 0;
  bottom: 0;
  width: 170px;
}

.mail-box__column--small .mail-box__img {
  right: 0;
  bottom: 0;
  width: 62%;
  max-height: 128px;
  object-position: right bottom;
}

.mail-box__img--wide {
  width: 100%;
  max-height: 140px;
}

.mail-box__title {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 900;
}

.mail-box__desc {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.support,
.reviews {
  position: relative;
  padding: 82px 0;
  background: var(--black);
}

.support__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin: 24px auto 62px;
}

.support__wrapper-item {
  position: relative;
  display: flex;
  width: min(28vw, 250px);
  min-height: 300px;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  border-radius: 42px;
  background: linear-gradient(180deg, var(--gold-light), var(--orange));
  color: var(--black);
  text-align: center;
}

.support__wrapper-item--big {
  width: min(32vw, 330px);
  min-height: 360px;
}

.support__wrapper-item-img {
  width: 78%;
  margin: -100px auto 16px;
}

.support__wrapper-item--big .support__wrapper-item-img {
  width: 82%;
  margin-top: -128px;
}

.support__wrapper-item-title {
  display: block;
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.05;
}

.support__wrapper-item-desc {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.22;
}

.support__button {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.reviews {
  padding-top: 40px;
}

.reviews-track {
  display: flex;
  justify-content: center;
  gap: 28px;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 32px 24px;
  overflow: hidden;
}

.reviews-item {
  width: 260px;
  min-height: 260px;
  flex: 0 0 260px;
  padding: 36px 28px;
  border-radius: 44px;
  background: var(--white);
  color: var(--black);
  transform: rotate(-4deg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.reviews-item:nth-child(2),
.reviews-item:nth-child(4) {
  transform: rotate(4deg);
}

.reviews-item__list {
  display: flex;
  gap: 4px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.reviews-item__list img {
  width: 20px;
}

.reviews-item__title {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 17px;
  font-weight: 900;
}

.reviews-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.reviews__action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.contact-box {
  position: relative;
  padding: 92px 0 100px;
  border-top: 1px solid rgba(242, 161, 0, 0.5);
  border-radius: 120px 120px 0 0;
  background: var(--black);
}

.contact-box .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 72px;
  align-items: center;
}

.contact-box__logo {
  width: 150px;
  margin-bottom: 72px;
}

.contact-box__title {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: clamp(30px, 2.5vw, 42px);
  font-weight: 900;
}

.contact-box__desc {
  max-width: 660px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.35;
}

.contact-box__buttons {
  flex-wrap: wrap;
}

.cta-panel {
  padding: 52px 48px;
  border-radius: 58px;
  background: #504632;
  color: var(--white);
}

.cta-panel__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
}

.cta-panel__list {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.cta-panel__list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.footer {
  border-top: 1px solid rgba(242, 161, 0, 0.5);
  background: var(--black);
  color: var(--white);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 118px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer__logo {
  width: 170px;
}

.footer__nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.footer__button--tg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.footer__copywrite {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.35;
}

.footer__copywrite a {
  color: rgba(255, 255, 255, 0.8);
}

.terms-page {
  background: linear-gradient(180deg, #d88900 0%, #f2a100 62%, #dd8a00 100%);
}

.terms-page .header {
  background: var(--black);
}

.main-content {
  min-height: 70vh;
  background: linear-gradient(180deg, #d88900 0%, #f2a100 62%, #dd8a00 100%);
}

.section-content {
  padding: 72px 0 96px;
}

.terms-panel {
  max-width: 1160px;
  margin: 0 auto;
  color: #151515;
}

.terms-panel h1 {
  margin: 0 0 32px;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 900;
  line-height: 1.1;
}

.terms-panel h2 {
  margin: 30px 0 14px;
  font-size: 22px;
  font-weight: 900;
}

.terms-panel p {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header .container {
    gap: 14px;
  }

  .main-nav,
  .registration__buttons,
  .footer__nav {
    gap: 10px;
  }

  .telegram__button {
    padding-inline: 14px;
  }

  .registration__buttons a {
    padding-inline: 14px;
  }

  .hero__dragon-wrapper {
    right: -220px;
  }

  .hero-section__advantages {
    right: -10px;
  }
}

@media (max-width: 1024px) {
  .burger {
    display: block;
  }

  .menu-wrapper {
    position: fixed;
    inset: 74px 0 auto 0;
    z-index: 49;
    display: grid;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(23, 23, 23, 0.98);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }

  .menu-open .menu-wrapper {
    transform: translateY(0);
  }

  .main-nav,
  .registration__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav__item-link,
  .telegram__button,
  .registration__buttons a {
    width: 100%;
  }

  .telegram__button,
  .registration__buttons a {
    justify-content: center;
  }

  .hero-section {
    padding-top: 58px;
  }

  .hero-section__row:first-child {
    min-height: 590px;
  }

  .hero__dragon-wrapper {
    top: -56px;
    right: -310px;
    width: 760px;
  }

  .hero-section__advantages {
    right: -60px;
    gap: 72px;
  }

  .hero-section__advantages-item {
    width: 212px;
    height: 132px;
  }

  .mail-box__row,
  .mail-box__row:last-child {
    grid-template-columns: 1fr;
  }

  .mail-box__column--small {
    min-height: 190px;
  }

  .support__wrapper {
    align-items: stretch;
  }

  .support__wrapper-item,
  .support__wrapper-item--big {
    width: 31%;
    min-height: 290px;
  }

  .contact-box .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer .container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    padding-inline: 18px;
  }

  .hero-section {
    padding: 48px 0 58px;
  }

  .hero-section::before {
    width: 120vw;
    right: -42vw;
  }

  .hero-section__row {
    display: block;
  }

  .hero-section__row:first-child {
    min-height: 0;
    margin-bottom: 32px;
  }

  .hero__logo {
    width: 142px;
    margin-bottom: 28px;
  }

  .hero-section__title {
    font-size: clamp(34px, 10vw, 48px);
    margin-bottom: 24px;
  }

  .hero-section__desc {
    margin-bottom: 32px;
    font-size: 17px;
  }

  .hero-section__button {
    width: 100%;
  }

  .hero-section__visual {
    margin-top: 34px;
  }

  .hero__dragon-wrapper {
    display: none;
  }

  .hero__dragon-wrapper-2 {
    display: block;
    width: min(100%, 420px);
    height: 420px;
    margin: 0 auto;
    overflow: hidden;
  }

  .hero__dragon {
    min-width: 0;
    width: 100%;
  }

  .hero-section__advantages {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
    filter: none;
  }

  .hero-section__advantages-item {
    width: 100%;
    height: auto;
    min-height: 82px;
    border-radius: 28px;
    transform: none !important;
  }

  .additional-advantages {
    display: grid;
    gap: 16px;
  }

  .additional-advantages__item {
    width: 100%;
    min-height: 190px;
    border-radius: 46px;
  }

  .additional-advantages__item:nth-child(2) {
    top: 0;
  }

  .mail-box {
    padding-inline: 14px;
    border-radius: 64px 64px 0 0;
  }

  .mail-box__wrapper {
    padding: 46px 18px;
    border-radius: 54px;
  }

  .mail-box__column--long,
  .mail-box__column--small {
    min-height: 220px;
    padding: 28px 22px;
    border-radius: 34px;
  }

  .mail-box__column--long .mail-box__img,
  .mail-box__column--small .mail-box__img {
    right: 0;
    bottom: 0;
    left: auto;
    width: 58%;
    opacity: 0.9;
  }

  .mail-box__desc {
    max-width: 52%;
  }

  .support,
  .reviews {
    padding: 58px 0;
  }

  .support__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 92px;
    margin-top: 110px;
  }

  .support__wrapper-item,
  .support__wrapper-item--big {
    width: 100%;
    min-height: 260px;
  }

  .reviews-track {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .reviews-item {
    scroll-snap-align: center;
  }

  .contact-box {
    padding: 60px 0;
    border-radius: 58px 58px 0 0;
  }

  .contact-box__logo {
    width: 132px;
    margin-bottom: 42px;
  }

  .contact-box__desc {
    font-size: 17px;
  }

  .contact-box__buttons {
    display: grid;
  }

  .cta-panel {
    padding: 34px 24px;
    border-radius: 36px;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-content {
    padding: 48px 0 72px;
  }

  .terms-panel h1 {
    font-size: 32px;
  }

  .terms-panel p {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .button {
    width: 100%;
    min-height: 54px;
    padding: 16px 18px;
    font-size: 15px;
  }

  .hero-section__title {
    font-size: 34px;
  }

  .hero__dragon-wrapper-2 {
    height: 360px;
  }

  .mail-box__desc {
    max-width: 60%;
  }
}
