.hero-home{
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: #101612;
}

.hero-home__slider{
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-home__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-home__slide.is-active{
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-home__container{
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero-home__top-spacer{
  height: 140px;
  flex: 0 0 auto;
}

.hero-home__content{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-home__meta{
  margin-bottom: 42px;
}

.hero-home__pagination{
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-home__current,
.hero-home__total{
  flex: 0 0 auto;
}

.hero-home__line{
  width: 150px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  display: inline-block;
}

.hero-home__main{
  max-width: 920px;
}

.hero-home__title{
  margin: 0 0 24px;
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 400;
  white-space: normal;
}

.hero-home__desc{
  max-width: 760px;
  font-size: clamp(20px, 1.55vw, 32px);
  line-height: 1.18;
  letter-spacing: 0;
  color: rgba(255,255,255,0.92);
}

.hero-home__bottom{
  flex: 0 0 auto;
  padding-bottom: 38px;
}

.hero-home__bottom-top{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}

.hero-home__address{
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-home__socials{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.hero-home__socials a{
  font-size: 22px;
  line-height: 1;
  color: rgba(255,255,255,0.95);
  transition: opacity .25s ease;
}

.hero-home__socials a:hover{
  opacity: .7;
}

.hero-home__divider{
  margin: 30px 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.30);
}

.hero-home__bottom-bottom{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.hero-home__mini{
  max-width: 800px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing:0;
  color: rgba(255,255,255,0.9);
}

.hero-home__cta{
  min-height: 64px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.02em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, background .25s ease;
}

.hero-home__cta:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}

.hero-home__arrows{
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  gap: 14px;
}

.hero-home__arrow{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.05);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease;
}

.hero-home__arrow span{
  font-size: 36px;
  line-height: 1;
  margin-top: -2px;
}

.hero-home__arrow:hover{
  transform: scale(1.05);
  background: rgba(255,255,255,0.11);
}

@media (max-width: 1280px){
  .hero-home__top-spacer{
    height: 128px;
  }

  .hero-home__pagination{
    font-size: 28px;
  }

  .hero-home__line{
    width: 120px;
  }

  .hero-home__address{
    font-size: 24px;
  }

  .hero-home__socials a{
    font-size: 20px;
  }

  .hero-home__mini{
    font-size: 20px;
  }

  .hero-home__arrows{
    right: 28px;
  }

  .hero-home__arrow{
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 767px){
  .hero-home{
    min-height: 100svh;
  }

  .hero-home__slider,
  .hero-home__container{
    min-height: 100svh;
  }

  .hero-home__top-spacer{
    height: 112px;
  }

  .hero-home__meta{
    margin-bottom: 30px;
  }

  .hero-home__pagination{
    font-size: 22px;
    gap: 14px;
  }

  .hero-home__line{
    width: 84px;
  }

  .hero-home__title{
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 0.94;
  }

  .hero-home__desc{
    font-size: 18px;
    line-height: 1.25;
  }

  .hero-home__bottom{
    padding-bottom: 24px;
  }

  .hero-home__bottom-top{
    grid-template-columns: 1fr;
    gap: 16px;
	display:none;
  }

  .hero-home__socials{
    align-items: flex-start;
    gap: 12px;
  }

  .hero-home__socials a{
    font-size: 18px;
  }

  .hero-home__address{
    font-size: 20px;
  }

  .hero-home__divider{
    margin: 22px 0;
  }

  .hero-home__bottom-bottom{
    grid-template-columns: 1fr;
  }

  .hero-home__mini{
    font-size: 17px;
  }

  .hero-home__cta{
    width: 100%;
    min-height: 58px;
    font-size: 18px;
  }

  .hero-home__arrows{
    right: 16px;
    top: auto;
    bottom: 132px;
    transform: none;
  }

  .hero-home__arrow{
    width: 52px;
    height: 52px;
  }

  .hero-home__arrow span{
    font-size: 26px;
  }
}