/*@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-face {
  font-family: "Pehlevi";
  src: url("./fonts/pehlevi-regular.eot");
  src: url("./fonts/pehlevi-regular.eot?#iefix") format("embedded-opentype"),
    url("./fonts/pehlevi-regular.woff2") format("woff2"),
    url("./fonts/pehlevi_regular.ttf") format("truetype"),
    url("./fonts/Pehlevi-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

.x,
.ca {
  position: relative;
  z-index: 5;
}

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

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

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

.networks a {
  display: block;
}

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

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

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

.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;
  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: 30px 10px;
}

.circle {
  margin-right: -90px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.left {
  position: absolute;
  bottom: 0;
  left: 20px;
}

.right {
  position: absolute;

  bottom: 0;
  right: 120px;
}

.ca {
  color: #1ee0af;
  text-align: center;
  font-family: Pehlevi;
  font-size: 60.004px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1700px) {
  .circle {
    width: 68vw;
  }
  .left {
    width: 38vw;
  }
  .right {
    width: 26vw;
  }
}

@media (max-width: 1400px) {
  .circle {
    margin-right: -70px;
    margin-top: -40px;
  }
  .ca {
    font-size: 45px;
  }
}

.show-992 {
  display: none;
}

@media (max-width: 992px) {
  .show-992 {
    display: flex;
  }
  .hide-992 {
    display: none;
  }
  .circle {
    margin-right: -40px;
    margin-top: -30px;
  }
  .x img {
    width: 80px;
  }
  .ca {
    margin-bottom: 10px;
    font-size: 35px;
  }
  .content {
    padding-top: 15px;
  }
}

@media (max-width: 800px) {
  .left {
    min-width: 220px;
    left: 20%;
    z-index: 3;
  }
  .right {
    right: 22%;
    z-index: 3;
    min-width: 190px;
  }
  .content {
    padding-bottom: 0px;
  }
}

@media (max-width: 600px) {
  .left {
    left: 10px;
  }
  .right {
    right: 10px;
    bottom: -80px;
  }
  .circle {
    margin-top: -10px;
    margin-right: -20px;
    min-width: 340px;
  }
  .ca {
    font-size: 30px;
  }
  .x img {
    width: 65px;
  }
}

[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.5);
  }
}

/*.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;
}*/
