/*@font-face {
   font-family: 'arco_cyrillicregular';
   src: url('./fonts/rco-cyrillic-webfont.woff2') format('woff2'),
        url('./fonts/arco-cyrillic-webfont.woff') format('woff'),
        url('./fonts/arco-cyrillic.otf') format('opentype'), 
        url('./fonts/arco-cyrillic.ttf') format('truetype');
   font-weight: normal;
   font-style: normal;
}*/

* {
  font-family: "Delicious Handrawn", cursive !important;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

._scale_hover {
  transition: all 0.4s ease 0s;
  cursor: pointer;
}

._scale_hover:hover {
  transform: scale(1.1);
}

.networks {
  display: flex;
  align-items: center;
  gap: 40px;
}

.networks a {
  display: block;
}

.ca {
  word-wrap: break-word;
  word-break: break-all;
  max-width: 100%;
}

._container {
  max-width: 1750px;
  padding: 0 20px;
  margin: 0 auto;
}

.wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: #000000;
}

.sun {
  position: absolute;
  top: 0;
  right: 0;
}

.girl {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.bg__wrap {
  position: relative;
}

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

[data-copy] {
  cursor: pointer;
}

.copied_modal {
  position: fixed;
  top: 50%;
  color: #000;
  left: 50%;
  z-index: 100;
  font-size: 24px;
  background: #fff;
  font-family: "Knewave", system-ui;
  padding: 10px 30px;
  white-space: nowrap;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
}

.copied_modal._show {
  opacity: 1;
  visibility: visible;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 27px;
  padding-bottom: 60px;
}

.header {
  background: #000;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80vw;
  position: relative;
  z-index: 2;
  padding: 18px 14px;
}

.trade {
  background: #fff;
  border-radius: 30px;
  color: #000;
  padding: 13px 18px;
  font-size: 18px;
}

.info {
  display: flex;
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

.ca {
  color: #fff;
  font-size: 30px;
  padding: 10px 25px;
  padding-bottom: 15px;
  border: 2px solid #fac032;
  border-radius: 30px;
  width: max-content;
}

.info__text {
  margin-top: 20px;
  max-width: 700px;
  font-size: 24px;
  line-height: 1.2;
}

.title {
  margin-bottom: -50px;
  margin-left: -50px;
}

.info__trade {
  border-radius: 30px;
  background: #fac032;
  font-size: 24px;
  color: #000;
  padding: 22px 30px;
  display: inline-block;
  margin-top: 25px;
}

.arrow {
  position: absolute;
  bottom: 0;
}

.features {
  width: 100%;
  background: url("./image/features__bg.png") 0 0 no-repeat;
  padding: 83px;
  padding-top: 177px;
  margin-top: 120px;
  border-radius: 84px;
  overflow: hidden;
}

.features__title {
  font-size: 133px;
  line-height: 1;
}

.features__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 39px;
  margin-top: 40px;
}

.features__card {
  display: flex;
  gap: 20px;
  flex-direction: column;
  background: #fff;
  border-radius: 34px;
  padding: 30px;
}

.features__card_top {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.features__card_title {
  font-size: 30px;
  color: #000;
  max-width: 258px;
}

.features__card_image {
  max-width: 30px;
  max-height: 36px;
}

.features__card_text {
  font-size: 23px;
  color: #000;
  max-width: 428px;
}

.footer {
  position: relative;
  z-index: 3;
  margin-top: 40px;
  padding: 75px 108px;
  background: #fac032;
  border-radius: 84px;
  align-self: flex-end;
  margin-right: 150px;
}

.big {
  width: 71px;
}

.small {
  width: 60px;
}

.footer__networks {
  gap: 60px;
}

[data-anim-on-scroll] {
  transition: all 0.4s ease 0s;
  opacity: 0;
}

[data-anim-on-scroll]._animate {
  opacity: 1;
}

._right_anim_tr {
  transform: translateX(200%);
}

._left_anim_tr {
  transform: translateX(-200%);
}

._right_anim_tr._animate,
._left_anim_tr._animate {
  transform: translateX(0%);
}

._bottom_anim_tr {
  transform: translateY(200%);
}

._top_anim_tr {
  transform: translateY(-200%);
}

._top_anim_tr._animate,
._bottom_anim_tr._animate {
  transform: translateY(0%);
}

._scale_anim {
  transform: scale(0);
}

._scale_anim._animate {
  transform: scale(1);
}

.anim {
  animation: anim 3s ease-in-out infinite;
}

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

  50% {
    transform: scale(1.15);
  }
}

@media (max-width: 1750px) {
  .features {
    padding: 50px;
    padding-top: 100px;
  }
  .features__cards {
    gap: 20px;
  }
  .features__cards {
    margin-top: 20px;
  }
}

.show-1600 {
  display: none;
}

@media (max-width: 1600px) {
  .hide-1600 {
    display: none;
  }
  .show-1600 {
    display: flex;
  }
  .info {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    margin-bottom: 400px;
    align-self: center;
    margin-right: 0;
    padding: 50px 70px;
  }

  .title {
    margin-left: 0;
  }

  .info__column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .arrow {
    bottom: -60px;
    right: 190px;
  }
}

@media (max-width: 1400px) {
  .header {
    width: 100%;
  }
}

@media (max-width: 1150px) {
  .features {
    background: url("./image/features__bg_mb.png") 0 0 repeat;
  }
  .features__title {
    font-size: 80px;
  }
  .features__title {
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .title {
    width: 90vw;
  }
}

@media (max-width: 1000px) {
  .tweet {
    width: 90vw;
  }
  .girl {
    left: 50%;
    transform: translateX(-50%);
    width: 180vw;
  }
  .footer {
    margin-bottom: 30vw;
  }
  .footer {
    padding: 20px 30px;
  }
  .big {
    width: 30px;
  }
  .small {
    width: 25px;
  }
}

@media (max-width: 800px) {
  .popup__footer {
    flex-direction: column;
  }
  .upload {
    width: 100% !important;
    justify-content: center;
  }
  .messages {
    margin-top: 50px;
    border-top: 1px #fff solid;
    padding-top: 20px;
  }
  .cross {
    width: 37px;
    top: 24px;
    right: 24px;
  }
  .popup__content {
    padding: 24px;
  }
}

@media (max-width: 700px) {
  .header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .title {
    margin-bottom: 0;
  }
  .features__card_title {
    font-size: 24px;
  }
  .features__card_text {
    font-size: 15px;
  }
  .features__card {
    width: 100%;
    padding: 20px;
    border-radius: 24px;
  }
  .features {
    padding: 14px;
    border-radius: 30px;
  }
}

@media (max-width: 550px) {
  .ca {
    font-size: 18px;
    padding: 10px 16px;
  }
  .info__text {
    font-size: 20px;
  }
  .info__trade {
    font-size: 18px;
    width: 100%;
    text-align: center;
  }
  .arrow {
    right: 5%;
    bottom: -80px;
  }
}

@media (max-width: 500px) {
  .networks {
    gap: 28px;
  }
  .footer__networks {
    gap: 40px;
  }
  .footer {
    max-width: 90vw;
  }
  .features__title {
    font-size: 36px;
  }
  .info__text {
    max-width: 95vw;
  }
  .ca {
    max-width: 95vw;
    text-align: center;
  }
  .message {
    font-size: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
    max-width: 95%;
  }
  .popup__content {
    padding: 20px !important;
  }
}

/*.loop-images .image {
  position: absolute;
  z-index: 1;
  bottom: -100%;
  animation: moveUp 6s linear infinite;
}

.loop-images .right .image {
  right: 0;
}

.loop-images .right .image-4 {
  right: -15%;
  left: auto;
}

@keyframes moveUp {
  0% {
    bottom: -100%;
  }

  100% {
    bottom: 100%;
  }
}

.loop-images .image-2 {
  animation-delay: 2s;
  animation: moveUp 7s linear infinite;
}

.loop-images .image-3 {
  animation-delay: 3s;
  animation: moveUp 9s linear infinite;
}

.loop-images .image-4 {
  animation-delay: 6s;
  animation: moveUp 12s linear infinite;
}

.loop-images .right .image-1 {
  animation-delay: 0s;
  animation: moveUp 7s linear infinite;
}

.loop-images .right .image-2 {
  animation-delay: 4s;
  animation: moveUp 9s linear infinite;
}

.loop-images .right .image-3 {
  animation-delay: 7s;
  animation: moveUp 12s linear infinite;
}

.loop-images .right .image-4 {
  animation-delay: 10s;
  animation: moveUp 8s linear infinite;
}

.card {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
   animation: none;
   transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-left {
   transform: translateX(-200%);
}

.card-right {
   transform: translateX(200%);
}

.card._animate {
   transform: translateX(0%);
}

.card:hover, .uniq:hover {
   transform: translateX(0%) scale(1.05);
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.uniq {
   transform: scale(0);
   opacity: 0;
   visibility: hidden; 
   transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.uniq:hover {
   transform: scale(1.05);
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.uniq._animate {
   transform: scale(1);
   opacity: 1; 
   visibility: visible;
}*/
