@media screen and (min-width: 981px) {
  .horizontal-container {
    /* width: 250%; */
    /* width: 1000%; */
    /* width: 1500%; */
    width: 1500%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    max-width: none;
  }

  #page-container {
    overflow: hidden;
  }

  .horizontal-section {
    width: 100%;
    will-change: transform;
  }

  .fixed-text {
    pointer-events: none;
    position: fixed;
    bottom: 2.5%;
    left: 5%;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }
  .fixed-text h1 {
    font-size: 60px;
    color: var(--main-blue);
    position: relative;
    text-shadow: 0 0 50px #f2f1ef5e;
    z-index: 999999999 !important;
  }

  .fixed-text.title_visible_hl {
    opacity: 1;
  }
}

.highlights_img_container {
  overflow: hidden;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.highlights_img_container img {
  transition: all 0.5s;
  width: 100%;
  margin: auto;
}
.highlights_img_container_square {
  aspect-ratio: 1/1;
}
.highlights_img_container_square img {
  height: 100%;
  object-fit: cover;
}
.highlights_img_container_horizontal_shorted {
  aspect-ratio: 2/1;
}
.highlights_img_container_desc {
  color: var(--main-blue);
  margin-top: 10px;
  font-size: 14px;
  font-style: italic;
  padding-left: 20px;
}

@media screen and (min-width: 1551px) {
  .horizontal-section {
    padding: 100px 0 !important;
  }
  .text_module_highlights {
    font-size: 16px !important;
    line-height: 1.2em !important;
  }
  .text_module_highlights h3 {
    font-size: 22px !important;
  }
}

@media screen and (max-width: 1550px) {
  .horizontal-section {
    padding: 50px 0 !important;
  }
  .text_module_highlights {
    font-size: 14px !important;
    line-height: 1.2em !important;
  }
  .text_module_highlights h3 {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 980px) {
  .fixed-text {
    display: none !important;
  }
}
/* 
@keyframes auto_zoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
} */
