/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 550px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
  --breakpoint-xxxs: 375px;
}

.hero {
  padding-top: 155px;
  padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 110px;
  }
}
@media (min-width: 1024px) {
  .hero_top-banner {
    padding-top: 205px;
  }
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #004346;
  opacity: var(--pseudo-opacity);
  width: 100%;
  height: 100%;
}
.hero__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.hero__slider .swiper-slide__image {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__slider .swiper-slide__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__slider .swiper-slide__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: var(--pseudo-opacity);
  width: 100%;
  height: 100%;
}
.hero__container {
  width: 100%;
  padding-top: 35.8%;
  position: relative;
  border-bottom: 8px solid var(--sk-color-primary);
}
.hero__container .hero_decoration {
  position: absolute;
  background-image: var(--pseudo-element);
  width: 100px;
  height: 50%;
  bottom: -120px;
  right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(20deg);
}
@media (min-width: 768px) {
  .hero__container .hero_decoration {
    width: 200px;
    right: 50px;
  }
}
@media (min-width: 1024px) {
  .hero__container .hero_decoration {
    bottom: -180px;
    right: 115px;
  }
}
.hero__title-container {
  overflow: hidden;
  margin-right: calc(0px - (100vw - 1140px) / 2);
  margin-left: calc(0px - (100vw - 1140px) / 2);
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 1280px) {
  .hero__title-container {
    margin-right: -60px;
    margin-left: -60px;
  }
}
@media (max-width: 768px) {
  .hero__title-container {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.hero .hero__title {
  font-weight: 300;
  white-space: nowrap;
  margin-bottom: 80px;
}
.hero .hero__title .spacer {
  padding: 0 20px;
}
.hero__link {
  display: inline-block;
  margin-bottom: 95px;
  padding: 15px 35px 15px 70px;
  background-color: var(--sk-color-white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 38px;
  max-width: 200px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: color 0.4s linear;
}
.hero__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  background-image: url("../../img/SECRA_Icon_ClickMe.svg");
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  transition: all 0.3s linear;
}
.hero__link:hover {
  text-decoration: none;
}
.hero__link:hover::after {
  transform: translateY(-50%) scale(0.9);
}
@media (min-width: 1440px) {
  .hero__link {
    margin-left: -135px;
  }
}
