.hero {
  width: 100%;
  height: 1280px;
  position: relative;
  overflow: hidden;  
}


.hero video,
.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}

.bg_hero_shadow{
position: absolute;
  width: 100%;
  height: 100%;
 background: linear-gradient(0deg, rgb(26, 26, 26) 16.63%, rgba(26, 26, 26, 0.6) 99.5%);
}

.bg_hero {
  position: relative; 
  z-index: 1;  
  width: 100%;
  height: 100%;
  display: flex;
  padding-top: 185px;
}

.hero_info{
display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero_info,
.hero_num {
  opacity: 1;
  transition: opacity 0.1s ease-out;
  will-change: opacity;
}

.hero_tag,
.hero_info h1,
.hero_info p,
.hero_info .btn > a,
.num_block,
.hero h1 div {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-duration: 0.9s;
  will-change: transform, opacity, filter;
  transform: translateZ(0);
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.hero_tag {
  transform: translateX(-30px);
  animation-name: slideLeftBlur;
  animation-delay: 0.3s;
}

.hero_info h1 {
  animation-name: slideUpBlur;
  animation-delay: 0.52s;
}

.hero_info p {
  animation-name: slideUpBlur;
  animation-delay: 0.67s;
}

.hero_info .btn > a {
  animation-name: slideUpBlur;
}

.hero_info .btn > a:nth-child(1) {
  animation-delay: 0.82s;
}

.hero_info .btn > a:nth-child(2) {
  animation-delay: 0.97s;
}

.num_block {
  animation-name: slideUpBlur;
  animation-delay: calc(1.05s + var(--i) * 0.15s);
}

.num_block:nth-child(1) { --i: 0; }
.num_block:nth-child(2) { --i: 1; }
.num_block:nth-child(3) { --i: 2; }
.num_block:nth-child(4) { --i: 3; }

.hero_tag {
  width: max-content;
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid #535051;
  background: rgba(171, 171, 171, 0.17);
  backdrop-filter: blur(5px);
  color: #FFF;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.tag_curkyl {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 24px;
  background: #F23840;
}

.hero h1 {
  color: #F1F5F9;
  font-family: Inter;
  font-size: 72px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
}

.hero h1 span {
  color: #F23840;
}

.hero p {
color: #C3C3C3;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 18px; /* 128.571% */
}

.hero p:last-of-type {
  margin-top: 8px;
}


.hero .btn {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}

.hero .btn a {
  display: flex;
  flex-direction: row;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: 0.3s ease;
  text-decoration: none;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  isolation: isolate;
  contain: layout style;
}

.hero .btn a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.h_red {
  background: #F23840 !important;
  border-color: #F23840 !important;
}

.h_red:hover {
  /* background: #d40a0a !important; */
}

.hero_num {
  margin-top: 80px;
  display: flex;
  gap: 16px;
}

.num_block {
  max-width: 100%;
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-wrap: nowrap;
}

.num_block h3 {
  color: #FFF;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.num_block p {
  color: #FFF;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 36px;
}

@keyframes slideUpBlur {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes slideLeftBlur {
  0% {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bg_hero {
  /* animation: fadeInBg 0.8s ease-out forwards; */
}

@supports (-moz-appearance: none) {
  /* .hero .btn a {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .num_block {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  } */
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero_info,
  .hero_num {
    transition: none !important;
  }
}

.hero h1 div {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  animation-name: slideUpBlur;
  animation-duration: 0.9s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
  will-change: transform, opacity, filter;
}

.hero h1 div:nth-child(1) { animation-delay: 0.52s; }
.hero h1 div:nth-child(2) { animation-delay: 0.75s; }
.hero h1 div:nth-child(3) { animation-delay: 0.97s; }

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.1;
}

@media (max-width: 1100px) {
  .bg_hero{
    padding-top: 173px;
  }
}

@media (max-width: 1024px) {
  .hero_info {
    width: 100%;
    max-width: 600px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero_num {
    flex-wrap: wrap;
  }
  .num_block {
    max-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .hero_info{
    max-width: 100%;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
    line-height: 28px;
  }
  .hero .btn {
    flex-direction: column;
  }
  .hero .btn a {
    width: 100%;
    justify-content: center;
  }
  .hero_num {
    margin-top: 40px;
  }
  .num_block h3{
    font-size: 10px;
  }
  .num_block p{
    font-size: 20px;
  }
  .hero{
    height: 1040px;
  }
}


@media (max-width: 768px) {
  
}