/* Home single hero - Base styles */
.hero_single {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0;
  color: #fff;
  height: 650px;
}

.hero_single .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.hero_single .hero_image_main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero_single .hero_image {
  object-fit: cover;
  object-position: 50% 50%;
  max-width: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero_single .hero_image_main picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero_single .hero_image_main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 575px) {
  .hero_single .hero_image {
    width: 100%;
    height: 100%;
  }
}

.hero_single.start_bg_zoom:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.hero_single .wrapper h3 {
  color: #fff;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 72px;
  letter-spacing: 1px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_single .wrapper p {
  font-weight: 400;
  margin: 5px 0 0;
  padding: 0;
  font-size: 21px;
  line-height: 1.4;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero_single .wrapper p strong {
  font-weight: 600;
}

.hero_single video {
  opacity: 1;
}

/* Hero variants */
.hero_single.short {
  height: 600px;
}

.hero_single.fullscreen {
  width: 100%;
  height: 100vh;
}

.hero_single.radio_cat {
  height: 700px;
}

.hero_single.radio_cat .switch-field {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  border: 0;
}

.hero_single.radio_cat .switch-field::-webkit-scrollbar {
  display: none;
}

.hero_single.radio_cat .switch-field input:checked + label {
  border-bottom: 2px solid;
}

.hero_single.radio_cat .switch-field label {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  /* padding: 15px; */
  color: #fff;
  min-width: 125px;
  transition: all 0.2s ease-in-out;
}

.hero_single.radio_cat .switch-field label img {
  display: block;
  width: 24px;
  height: 24px;

}

.explorepark a {
  color: #fff !important;
}

/* Responsive styles */
@media (max-width: 991px) {
  .hero_single {
    height: 550px;
  }
}

@media (max-width: 767px) {
  .hero_single {
    height: 500px;
  }

  .hero_single.fullscreen {
    height: 90vh;
  }

  .hero_single .wrapper h3 {
    font-size: 30px;
    margin-top: 60px;
  }

  .hero_single .wrapper p {
    font-size: 16px;
  }

  .hero_single.radio_cat .switch-field {
    overflow-x: scroll;
    justify-content: center;
  }

  .hero_single.radio_cat .switch-field label {
    padding: 10px;
  }
}

@media (max-width: 575px) {
  .hero_single {
    height: 450px;
  }
}

/* Parks scroll container styles */

.parks-scroll-container::-webkit-scrollbar {
  width: 4px;
}
.parks-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}
.parks-scroll-container::-webkit-scrollbar-thumb {
  background-color: var(--color-brand-500);
  border-radius: 10px;
}
.parks-scroll-container::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-brand-600);
}