.section-hero_for_locations {
  position: relative;
  padding: 12rem 0 0;
  display: flex;
  align-items: center;
  min-height: 60vh;
  margin-bottom: 5rem;
}
.section-hero_for_locations .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
}
.section-hero_for_locations .container .content {
  width: 50%;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.section-hero_for_locations .container .content :is(h1, h2) {
  font-size: 3.5em;
  margin: 0 0 10px;
  overflow-wrap: break-word;
}
.section-hero_for_locations .container .content .description {
  font-size: 1em;
}
.section-hero_for_locations .container .content .description *:first-child {
  margin-top: 0;
}
.section-hero_for_locations .container .content .description *:last-child {
  margin-bottom: 0;
}
.section-hero_for_locations .container .content *:last-child {
  margin-bottom: 0;
}

/*

Images

*/
.section-hero_for_locations .images {
  width: 100%;
  margin: 50px 0 0;
}
.section-hero_for_locations .images .main {
  position: relative;
  aspect-ratio: 2;
}
.section-hero_for_locations .images .main:before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: -100vw;
  width: 300vw;
  height: 100vh;
  background-color: var(--black);
}
.section-hero_for_locations .images .main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
  opacity: 0;
}
.section-hero_for_locations .images .main img.active {
  opacity: 1;
}
.section-hero_for_locations .images .carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
}
.section-hero_for_locations .images .carousel .inner {
  transition: all 0.5s;
}
.section-hero_for_locations .images .carousel .inner img {
  width: 150px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
  cursor: pointer;
}
.section-hero_for_locations .images .carousel .arrow {
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.section-hero_for_locations .images .carousel .arrow.arrow-left {
  left: 0;
  margin-left: -10px;
}
.section-hero_for_locations .images .carousel .arrow.arrow-right {
  right: 0;
  margin-right: -10px;
}
.section-hero_for_locations .images .carousel .arrow svg {
  width: 10px;
}
/*

Loading transitions

*/
/* Background */
.section-hero .background {
  transition: all 0.5s;
  opacity: 0;
}

.section-hero.scrolled-to .background {
  opacity: 1;
}

/* Heading */
.section-hero .container .content :is(p.subheading, h1, h2, .description) {
  margin-left: -200px;
  margin-right: 200px;
  opacity: 0;
}

.section-hero.scrolled-to .container .content :is(p.subheading, h1, h2, .description) {
  animation: heroHeaders 1.5s forwards;
}

@keyframes heroHeaders {
  0%, 50% {
    margin-left: -200px;
    margin-right: 200px;
    opacity: 0;
  }
  100% {
    margin-left: 0;
    margin-right: 0;
    opacity: 1;
  }
}
/* Buttons */
.section-hero .container .content .buttons {
  opacity: 0;
}

.section-hero.scrolled-to .container .content .buttons {
  animation: heroButtons 2s forwards;
}

@keyframes heroButtons {
  0%, 50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}