.hero {
  margin: 30px 15px clamp(1.25rem, 0.5rem + 3.75vw, 5rem) 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 1115px;
  max-height: 800px;
  width: 60%;
  height: 100%;
  pointer-events: none;
  content: "";
  background-image: url("images/group.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 10;
}
.hero .video-block {
  position: absolute;
  left: 1125px;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 180px;
  width: 180px;
  border-radius: 50%;
  z-index: 1000;
}
.hero__inner {
  position: relative;
  height: fit-content;
  border-radius: 20px;
  overflow: hidden;
}
.hero .hero-card {
  min-height: 800px;
  height: 100%;
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.25rem, 0.75rem + 2.5vw, 3.75rem);
  position: relative;
  z-index: 10;
  padding-left: calc((100% - 1170px) / 2);
}

@media (max-width: 1200px) {
  .hero .hero-card {
    padding-left: 15px;
    padding-top: 20px;
  }
}
.hero-swiper {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: 5;
}

@media (max-width: 2500px) {
  .hero-swiper {
    width: 80%;
  }
}

@media (max-width: 1925px) {
  .hero-swiper {
    width: 70%;
  }
}



.hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.625rem, 0.5rem + 0.63vw, 1.25rem);
  color: white;
}
.hero__title h1 {
  font-size: clamp(2.625rem, 1.15rem + 2.08vw, 5rem);
  color: white;
}
.hero .subtitle {
  color: white;
}
.hero video,
.hero iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .swiper {
  width: 100%;
  height: 100%;
}
.hero .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.hero .hero-video {
  height: 100%;
}
.hero__img {
  display: block;
  height: 100%;
}
.hero__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.video-icon {
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 180px;
  width: 180px;
  border-radius: 50%;
  z-index: 1000;
  background: var(--primary);
  cursor: pointer;
}

@media (max-width: 768px) {
  .video-icon {
    display: none;
  }
}
.video-icon__item {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation-name: rotate;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  display: flex;
  justify-content: center;
}
.video-icon__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-icon__item {
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) scale(0.5);
  width: 100%;
  height: 100%;
  position: relative;
}

.video-icon__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transform: translate(-50%, -50%) scale(.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3);
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .hero-swiper {
    width: 100%;
    position: unset;
    padding: 20px 0;
    border-radius: 30px;
    overflow: hidden;
  }

  .swiper-slide {
    border-radius: 30px;
    overflow: hidden;
  }

  .video-icon {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero .hero-card {
    width: unset;
    min-height: fit-content;
    background: var(--primary);
    padding: 15px;
    border-radius: 30px;
    overflow: hidden;
  }

  .hero .swiper-slide {
    height: 100%;
  }
}

.hero .slider-controls .slider-controls__prev,
.hero .slider-controls .slider-controls__next {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--accent);
  border: 1px solid var(--accent);
  transition: all 0.3s ease-in;
  outline: none;

}
.hero .slider-controls .slider-controls__prev svg path {
  stroke: white;
}

.hero .slider-controls .slider-controls__next svg path {
  stroke: white;
}

.hero .slider-controls .slider-controls__prev:hover,
.hero .slider-controls .slider-controls__next:hover {
  background: white;
}
.hero .slider-controls .slider-controls__prev.swiper-button-disabled,
.hero .slider-controls .slider-controls__next.swiper-button-disabled {
  pointer-events: none;
  background: white;
  border-color: white;
}

.hero .slider-controls .slider-controls__prev:hover svg path {
  stroke: var(--head);
}

.hero .slider-controls .slider-controls__next:hover svg path {
  stroke: var(--head);
}

.hero .slider-controls .slider-controls__prev.swiper-button-disabled svg path {
  stroke: var(--head);
}

.hero .slider-controls .slider-controls__next.swiper-button-disabled svg path {
  stroke: var(--head);
}
.hero .slider-controls .slider-controls__prev:hover svg path,
.hero .slider-controls .slider-controls__next:hover svg path {
  stroke: var(--accent);
}

.hero .addresses__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero .addresses__item p {
  color: white;
}

.hero .addresses__item .addresses__icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--head);
  z-index: 1;
}

.hero .addresses__item .addresses__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /*border: 20px solid rgba(255, 255, 255, .3);*/
  background: rgb(255, 255, 255);
}
.hero .slider-nav {
  gap: 0px;
}

/*# sourceMappingURL=block.css.map */
