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

.content-wrapper .hero {
  position: relative;
  border-bottom: 1px solid var(--sk-color-orange);
  margin-bottom: 104px;
}
.content-wrapper .hero__pattern {
  position: absolute;
  width: 100%;
  height: calc(100% - 9px);
  top: 9px;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  mix-blend-mode: difference;
}
.content-wrapper .hero__pattern svg {
  width: 100%;
  height: auto;
  display: block;
}
.content-wrapper .hero__block {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px 43px;
}
.content-wrapper .hero__block::before {
  position: absolute;
  content: "";
  top: -305px;
  left: 0;
  background: var(--sk-color-primary);
  width: 100%;
  height: calc(100% + 305px);
  z-index: -1;
}
@media (min-width: 1024px) {
  .content-wrapper .hero__block::before {
    width: calc(50% + 175px);
  }
}
@media (min-width: 1280px) {
  .content-wrapper .hero__block::before {
    width: calc(50% + 200px);
  }
}
.content-wrapper .hero__image {
  border-bottom: 5px solid var(--sk-color-orange);
  max-width: 750px;
  aspect-ratio: 1.5/1;
  display: flex;
  margin: 0 auto 15px;
  width: 100%;
  background-size: 110% 110%;
  background-repeat: no-repeat;
  z-index: 2;
}
@media (min-width: 1024px) {
  .content-wrapper .hero__image {
    position: absolute;
    top: 11px;
    right: 15px;
    max-width: 50%;
  }
}
@media (min-width: 1280px) {
  .content-wrapper .hero__image {
    max-width: 750px;
  }
}
@media (min-width: 1440px) {
  .content-wrapper .hero__image {
    right: 0;
  }
}
.content-wrapper .hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-wrapper .hero__content {
  max-width: 600px;
  z-index: 3;
  position: relative;
}
@media (min-width: 1024px) {
  .content-wrapper .hero__content {
    margin-left: 35px;
    margin-top: 5px;
    max-width: none;
  }
}
.content-wrapper .hero__content h1,
.content-wrapper .hero__content h2,
.content-wrapper .hero__content h3,
.content-wrapper .hero__content h4,
.content-wrapper .hero__content h5,
.content-wrapper .hero__content h6 {
  color: var(--sk-color-platinum);
  font-family: var(--sk-font-fraunces);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 36px;
}
@media (min-width: 1024px) {
  .content-wrapper .hero__content h1,
  .content-wrapper .hero__content h2,
  .content-wrapper .hero__content h3,
  .content-wrapper .hero__content h4,
  .content-wrapper .hero__content h5,
  .content-wrapper .hero__content h6 {
    max-width: 1150px;
  }
}
.content-wrapper .hero__content > * {
  color: var(--sk-color-moon);
  margin-bottom: 25px;
}
@media (min-width: 1024px) {
  .content-wrapper .hero__content > * {
    max-width: 500px;
  }
}
.content-wrapper .hero__content :last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .content-wrapper .hero__content.has-image h1 {
    margin-bottom: 120px;
  }
}
@media (min-width: 1280px) {
  .content-wrapper .hero__content.has-image h1 {
    margin-bottom: 187px;
  }
}
.content-wrapper .hero__buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 43px;
}
@media (min-width: 1024px) {
  .content-wrapper .hero__buttons {
    margin-left: 35px;
    margin-bottom: 7px;
  }
}
.content-wrapper .hero__buttons > :first-child {
  margin-right: 50px;
}
.content-wrapper .hero__buttons a {
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .content-wrapper .hero__buttons a {
    margin-bottom: 0;
  }
}

.hero ~ .carousel-block {
  margin-top: -104px;
}

.hero ~ .team {
  margin-top: -18px;
}

.hero ~ .accordion {
  margin-top: -50px;
}

.home .hero {
  padding-bottom: 100px;
}
