@charset "UTF-8";
/* Обнуление */
/* @import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap"); */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

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

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, text {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*-----*/
html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  /* font-family: "Caveat", sans-serif; */
  font-family: "Single Day", cursive;
  color: #fff;
  font-weight: 400;
  font-size: 28px;
  line-height: 107%;
  /* letter-spacing: -0.04em; */
}
body a {
  color: #fff;
}

h1, h2 {
  font-weight: 700;
  font-size: 77px;
  line-height: 75%;
  /* letter-spacing: -0.06em; */
}

h2 {
  font-size: 72px;
}

.wrapper {
  /* overflow: hidden; */
  min-height: 100%;
}

.header {
  background: #1b1b1b;
  padding: 20px 30px;
}
.header__row {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__link {
  font-weight: 400;
  font-size: 24px;
  -webkit-transition: color 0.1s ease;
  transition: color 0.1s ease;
}
.header__link_btn {
  text-align: center;
  /* width: 150px; */
  padding: 15px 20px;
  border-radius: 30px;
  background: #eeb639;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: #000;
  -webkit-transition: background 0.1s ease;
  transition: background 0.1s ease;
}
@media (min-width: 992px) {
  .header__link_btn:hover {
    background: rgba(238, 182, 57, 0.7);
  }
}
.header__link_lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header__link_lang span {
  -webkit-transition: color 0.1s ease;
  transition: color 0.1s ease;
}
.header__link_lang svg rect {
  -webkit-transition: stroke 0.1s ease;
  transition: stroke 0.1s ease;
}
.header__link_lang svg circle {
  -webkit-transition: fill 0.1s ease;
  transition: fill 0.1s ease;
}
@media (min-width: 992px) {
  .header__link_lang:hover span {
    color: #eeb639;
  }
  .header__link_lang:hover svg rect {
    stroke: #eeb639;
  }
  .header__link_lang:hover svg circle {
    fill: #eeb639;
  }
}
@media (min-width: 992px) {
  .header__link:hover:not(.header__link_btn, .header__link_lang) {
    color: #eeb639;
  }
}
@media (max-width: 992px) {
  .header__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .header__links {
    gap: 30px;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.logo__img {
  width: 60px;
  height: 60px;
}
.logo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo__text {
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.06em;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
            transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 360deg);
            transform: rotate3d(0, 1, 0, 360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
            transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 360deg);
            transform: rotate3d(0, 1, 0, 360deg);
  }
}
.main-screen {
  background: url(../img/bg.png) center -100px/cover no-repeat;
  padding: 45px 20px;
}
.main-screen__wrap {
  max-width: 684px;
  margin: 0 auto;
}
.main-screen__logo {
  margin: 0 auto;
  margin-bottom: 30px;
  width: 320px;
  height: 320px;
  position: relative;
  z-index: 1;
}
.main-screen__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  /* -webkit-animation: rotation 5s linear infinite;
          animation: rotation 5s linear infinite; */
}
.main-screen__logo::after {
  content: "";
  background: #c0c0c0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  position: absolute;
  bottom: 37px;
  left: 30px;
  z-index: -1;
}
.main-screen__title {
  font-size: 134px;
  margin: 0 0 30px 0;
}
.main-screen__social {
  margin: 0 auto;
  max-width: 540px;
}
.main-screen__text {
  font-weight: 400;
  font-size: 36px;
  line-height: 111%;
  letter-spacing: -0.05em;
  color: #dbdbdb;
  margin: 0 auto 30px;
  max-width: 540px;
}
.main-screen_ca {
  font-size: 20px;
  letter-spacing: 0.02em;
  word-wrap: break-word;
  word-break: break-all;
  line-height: 100%;
  margin-top: 20px;
  color: #eeb639;
}
@media (max-width: 768px) {
  .main-screen__logo {
    width: 300px;
    height: 300px;
  }
  .main-screen__title {
    font-size: 110px;
  }
}
@media (max-width: 540px) {
  .main-screen__title {
    font-size: 70px;
    text-align: center;
  }

  .main-screen__text {
    font-size: 30px;
    text-align: center;
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.social__link {
  border: 1px solid #eeb639;
  border-radius: 25px;
  padding: 10px 15px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.social__link span {
  font-weight: 400;
  font-size: 22px;
  color: #eeb639;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.social__link path {
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
}
@media (min-width: 992px) {
  .social__link:hover {
    background: #eeb639;
  }
  .social__link:hover span {
    color: #000;
  }
  .social__link:hover path {
    fill: #000;
  }
}
@media (max-width: 511px) {
  .social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.tape {
  position: relative;
  height: 155px;
  /* margin: 0 -10px; */
  max-width: 100%;
  overflow: hidden;
}
.tape__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: 40px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  background: #333;
  padding: 10px 0;
  position: absolute;
  width: 120%;
  top: 50%;
  left: 50%;
}
.tape__wrap_m {
  -webkit-transform: translate(-50%, -50%) rotate(-3deg);
          transform: translate(-50%, -50%) rotate(-3deg);
}
.tape__wrap_r {
  -webkit-transform: translate(-50%, -50%) rotate(3deg);
          transform: translate(-50%, -50%) rotate(3deg);
}
.tape__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 40px;
  min-width: 100%;
}
.tape__row.marquee {
  -webkit-animation: scroll 10s linear infinite;
          animation: scroll 10s linear infinite;
}
.tape__row.reverce {
  animation-direction: reverse;
}
.tape__logo {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
}
.tape__logo .logo__text {
  font-size: 30px;
  line-height: 93%;
}

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
  }
}

@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
  }
}
.about, .buy {
  padding: 80px 20px;
}
.about__row, .buy__row {
  max-width: 980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
.about__img, .buy__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 380px;
          flex: 0 0 380px;
}
.about__img img, .buy__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about__title, .buy__title {
  margin: 0 0 30px 0;
}
.buy__title__next {
  margin: 60px 0 30px 0;
}
.about__text p:not(:last-child), .buy__text p:not(:last-child) {
  margin: 0 0 30px 0;
}

.buy__text .social__link {
  width: fit-content;
  /* margin-bottom: 20px; */
}
@media (max-width: 992px) {
  .about__row, .buy__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .about__img, .buy__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

.about {
  padding: 60px 20px 80px;
}
.about__img {
  height: 380px;
}
@media (max-width: 992px) {
  .about {
    padding: 60px 20px 30px;
  }
}

.buy {
  padding: 80px 20px;
}
.buy__row {
  position: relative;
  align-items: flex-start;
  /* overflow: auto; */
}
.buy__img {
  height: 320px;
  align-self: flex-start;
  /* overflow-y: auto; */
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
}
.buy__address {
  background: #eeb639;
  color: #000;
  padding: 15px;
  border-radius: 8px;
  word-break: break-all;
  font-size: 26px;
}
.buy__roadmap__list {
  padding-left: 30px;
}
.buy__roadmap__list li {
  list-style-type: disc;
}
@media (max-width: 992px) {
  .buy {
    padding: 30px 20px 60px;
  }
}

.buy__places {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.shitmemes {
  background: #eeb639;
  padding: 60px 20px;
}
.shitmemes__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  height: 60px;
}
.shitmemes__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: rotation 5s linear infinite;
          animation: rotation 5s linear infinite;
}

.shitmemes__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin: 0 0 40px 0;
}
.shitmemes__title span {
  color: #000;
}
@media (max-width: 480px) {
  .shitmemes__title {
    font-size: 54px;
    gap: 10px;
  }
}
.shitmemes__gallery {
  max-width: 1180px;
  margin: 0 auto;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}
.shitmemes__gallery-item {
  margin: 0 0 20px 0;
}
.shitmemes__gallery-item img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1220px) {
  .shitmemes__gallery {
    max-width: 780px;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (max-width: 820px) {
  .shitmemes__gallery {
    max-width: 380px;
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

.gift {
  padding: 80px 20px 0;
}
.gift__wrap {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gift__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin: 0 0 30px 0;
}
.gift__title h2 {
  /* text-align: center; */
}
.gift__title svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 54px;
          flex: 0 0 54px;
}
.gift__text {
  text-align: center;
  margin: 0 0 30px 0;
}
.gift__card, #scratchCanvas {
  margin: 0 auto;
  /* max-width: 400px; */
  /* width: 100%; */
  /* height: 400px; */
  border-radius: 30px;
  border: 1px solid rgba(228, 228, 228, 0.24);
  position: relative;
  z-index: 1;
  cursor: url('../img/gift/hand.png'), auto;
}
.gift__card::after, #scratchCanvas::after {
  content: "";
  background: #c0c0c0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  border-radius: 50%;
  width: 366px;
  height: 81px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}
@media (max-width: 700px) {
  .gift__title {
    flex-direction: column;
  }

  .gift__title h2 {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .gift__title h2 {
    font-size: 48px;
  }
}

.footer {
  padding: 90px 20px 260px;
  background: url(../img/footer-bg.png) center/cover no-repeat;
}
.footer__row {
  max-width: 780px;
  margin: 0 auto 60px;
  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;
}
.footer__text {
  max-width: 664px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}