/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
/* @import url("https://fonts.googleapis.com/css2?family=Arya:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary: #e75112;
  --secondary: #2b297d;
}

body,
header a.btn_add,
header .btn_add {
  font-family: "Noto Sans", "Poppins", sans-serif;
}

.main_categories li:not(:last-of-type) i:before, .box_topic [class^=icon-]:before {
	 font-family: unset;
}

.main_categories li:not(:last-of-type) i:before {
	font-size: 2.5rem;
}

.main_categories li:last-of-type i:before {
	height: 2.5rem;
    padding: 0.4rem 0 2.25rem;
}

footer h3,
footer ul.contacts li,
footer ul li,
ul#additional_links,
a.btn_1,
.btn_1,
a.btn_add,
.btn_add,
.beta-ribbon {
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}
/*============== play-button-pulse ==============*/
@-webkit-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@-moz-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@-ms-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@-o-keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes play-button-pulse {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes imagescale {
  0% {
    transform: scale(1);
    animation-timing-function: ease-in;
  }

  100% {
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }
}

@keyframes textAnimate1 {
  0% {
    opacity: 0;
    transform: translate(-390%, -0.6em);
    animation-timing-function: ease-in;
  }

  100% {
    opacity: 1;
    transform: translate(0, -0.6em);
    animation-timing-function: ease-out;
  }
}

@keyframes textAnimate2 {
  0% {
    opacity: 0;
    transform: translate(336%, 0.5em);
    animation-timing-function: ease-in;
  }

  100% {
    opacity: 1;
    transform: translate(0, 0.5em);
    animation-timing-function: ease-out;
  }
}

@keyframes textAnimate3 {
  0% {
    opacity: 0;
    transform: translateY(100%); /* Start position */
    animation-timing-function: ease-in;
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Final position on lower step */
    animation-timing-function: ease-out;
  }
}

@keyframes fadeText {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  100% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
}

#main-title.wrapper {
  font-size: 10vmin;
  height: 2em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: screen;
  background-color: transparent;
  animation: textAnimate3 600ms, fadeText 800ms;

  &.invert {
    span {
      color: white;

      &::before {
        -webkit-text-stroke: 0.1em var(--color);
      }
    }
  }

  span {
    --color: var(--secondary);
    font-weight: 700;
    font-style: italic;
    display: block;
    position: absolute;
    color: var(--color);
    letter-spacing: -0.005em;

    &::before,
    &::after {
      content: attr(data-text);
      display: block;
      position: relative;
      padding: 0 0.1em;
      z-index: 1;
    }

    &::before {
      position: absolute;
      -webkit-text-stroke: 0.1em #fff;
      z-index: 0;
    }

    &:first-child {
      transform: translate(-0.25em, -0.6em);
    }

    &:nth-child(2) {
      --color: var(--secondary);
      transform: translate(0, 0.5em);
    }

    &:nth-child(3) {
      --color: var(--primary);
      transform: translate(1.75em, 2.35em);
      font-size: 5vmin;
    }

    &:last-child {
      --color: var(--primary);
      transform: translate(17em, 2.35em);
      font-size: 5vmin;
    }
  }
}

hr {
  margin: 36px 0;
}

.article-content ul li {
  font-size: 18px;
}

.article-img img {
  width: 100%;
}

.article-content p {
  font-weight: 400;
}

.main_title_2 h2 {
  margin: 25px 7rem 15px;
}

#places a.grid_item {
  height: 450px;
  border-radius: 12px;
  margin-bottom: 12px;
}

#places a.grid_item figure img {
  height: 500px;
  object-fit: cover;
}

a.grid_item {
    margin-bottom: 0;
}

.event-date p {
	margin: 5px 0 15px;
}

header {
  padding: 0;
  /* background-color: #fff;
  position: relative; */
}

#logo {
  padding-top: 0;
}

.header #logo a img {
  width: 125px;
  padding: 6px;
}

header.header_in {
  padding: 0;
  position: fixed;
}

header.header_in #logo img {
  width: 100px;
}

#page main.page {
  margin-top: 5.75rem;
}

#attractions .main_title_2 h5 {
  color: #000;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

/* .main-menu > ul > li span > a {
  color: #000;
} */

.bg-cover {
  background-size: cover;
  background-position: center;
  align-items: center;
}

.box_topic h3 {
  font-size: 1.1rem;
}

.banner .container {
  position: relative;
}

.banner #carousel_in {
  width: 100%;
  height: 100%;
}

.banner .banner-images,
.banner .owl-stage-outer,
.banner .owl-stage,
.banner .owl-item,
.banner .item {
  height: 100%;
}

.banner .banner-images {
  position: relative;
}

.banner .banner-images span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner .banner-images span.desktop-image {
	display: block;
	animation: imagescale 5s infinite alternate;
}

.banner .banner-content {
  position: fixed;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto;
  bottom: 0;
  transform: translateY(-50%);
  height: auto;
  text-align: left;
}

.banner .owl-carousel .owl-item {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.banner .owl-carousel .owl-item.active {
  opacity: 1;
}

.owl-theme .owl-nav [class*="owl-"] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  padding: 0;
  font-size: 18px;
  line-height: 1px;
  position: relative;
  bottom: 100px;
  position: absolute;
  top: 50%;
  opacity: 0.5;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--primary);
}

.owl-theme .owl-nav .owl-prev {
  left: 1rem;
}

.owl-theme .owl-nav .owl-next {
  right: 1rem;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  margin: 2px;
}

.hero_single.version_2 .wrapper h3 {
  font-size: 64px;
  margin: 0 auto;
  display: inline-block;
  white-space: pre-line;
  line-height: 1.5;
}

.hero_single.version_2 .wrapper h3:after {
  content: "\A"; /* Forces a break after each word */
  white-space: pre;
}

.hero_single.version_2 .wrapper p {
  padding-left: 1rem;
}

.banner .owl-dots {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}

.owl-theme .owl-dots .owl-dot {
  border: 0;
  background: transparent;
}

.beta-ribbon {
  position: relative;
  top: 0;
  width: 100%;
  background-color: #f39c12; /* Customize ribbon color */
  color: #ffffff;
  text-align: center;
  padding: 4px;
  font-weight: 500;
  font-size: 14px;
  font-family: Arial, sans-serif;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/*** Video Banner ***/
.header-video {
  height: 625px !important;
}

.header-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-video .main_categories {
  margin-top: -125px;
}

.main_categories li img {
  width: 48px;
  filter: invert(15%) sepia(65%) saturate(2192%) hue-rotate(235deg)
    brightness(93%) contrast(93%);
}

.graphic {
  display: grid;
  grid-gap: 20px;
}

.graphic a.grid_item {
  margin-bottom: 0;
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
  box-shadow: 1px 3px 5px #e5e5e5;
  border-radius: 8px;
}

.graphic a.grid_item .info {
  position: relative;
  width: auto;
  z-index: 9;
  display: block;
  padding: 0;
  color: #fff;
  left: 0;
  bottom: 0;
  background: none;
  box-sizing: border-box;
}

.graphic a.grid_item .info h3 {
  color: var(--primary);
  font-size: 1.25rem;
  padding: 0.75rem 1rem;
  text-align: center;
}

.graphic .info h3 span {
  font-size: 3rem;
  font-weight: 700;
  margin-right: 0.5rem;
}

.graphic a.grid_item figure {
  margin-bottom: 0;
}

.graphic a.grid_item:hover figure img {
  transform: translate(-50%, -50%) scale(1);
}

.grid-gallery__100 ul li {
  width: 100%;
}

#intro-map.modal .modal-content .iframe-container {
  background-color: #fff;
}

#intro-map.modal .modal-content .iframe-container p {
  margin-bottom: 0.5rem;
}

#intro-map.modal .modal-content .iframe-container ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

#intro-map.modal .modal-content .iframe-container ul li {
  font-size: 0.85rem;
  padding: 0.5rem 0.5rem 0.5rem 0;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  color: #333;
  font-weight: 500;
}

.iframe-container {
  overflow: hidden;
  width: 100%;
  height: auto;
}

#intro-map .iframe-container h3 {
  color: var(--primary);
  text-align: center;
  width: 100%;
  padding: 1rem;
}

.overlay {
  position: absolute; /* Position absolute to cover the iframe */
  top: 0; /* Align to the top */
  left: 0; /* Align to the left */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  z-index: 10; /* Make sure the overlay is on top */
  display: flex; /* Center content if needed */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.overlay .banner-content {
  position: absolute;
  bottom: 28%;
}

.gradient-overlay {
  position: absolute;
  top: -11.5%;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 15%
  ); */
  pointer-events: none;
  z-index: 1;
}

.gradient-overlay .container {
  margin-top: 1%;
}

.banner-content h3,
.banner-content p {
  color: #fff;
}

.banner-content h3 {
  font-size: 2.25rem;
}

.banner-content p {
  font-size: 1.15rem;
  margin-bottom: 0;
  position: relative;
  padding-left: 10px;

  &:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e5e5e5;
    border-radius: 2px;
  }
}

#reccomended {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 5px;
    margin-top: 15px;
}

#reccomended .item {
    flex: 0 0 calc(20% - 15px); /* Two items per row */
    box-sizing: border-box;
    margin: 0;
}

#reccomended .strip {
  margin-bottom: 0;
}

#reccomended .strip .wrapper h3 {
  font-size: 1rem;
}

#reccomended .strip .wrapper p {
  display: none;
}

.iframe-container .overlay .container {
  position: relative;
}

.play-button {
  position: relative;
  width: 64px;
  height: 64px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button::before,
.play-button::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid white;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: shockwave 2s infinite;
}

.play-button::after {
  animation-delay: 0.5s;
}

@keyframes shockwave {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    border-color: var(--primary);
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
    border-color: transparent;
  }
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--primary);
  margin-left: 5px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  width: 90%;
  max-width: 1280px;
  aspect-ratio: 16/9;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

#intro-map .modal.active .modal-content {
  transform: scale(0.8);
}

#intro-map.modal .modal-content {
  background-color: transparent;
}

#intro-map .close-button {
  top: 0;
}

.modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.close-button {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 36px;
  height: 36px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.close-button:hover {
  transform: scale(1.1);
}

.close-button::before,
.close-button::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--primary);
  transform-origin: center;
}

.close-button::before {
  transform: rotate(45deg);
}

.close-button::after {
  transform: rotate(-45deg);
}

.modal iframe {
  scale: 1;
}

.modal .modal-content {
  border-radius: 6px;
}
/*** Video Banner End ***/

/*** Map Iframe ***/

/*** Map Iframe End ***/

.video-play-btn {
  width: 60px;
  height: 60px;
  line-height: 66px;
  text-align: center;
  margin: auto;
  font-size: 30px;
  display: block;
  border-radius: 50%;
  background-color: #fff;
  color: #ff8200;
  position: relative;
}
.video-play-btn::before,
.video-play-btn::after {
  position: absolute;
  content: "";
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  opacity: 0;
  z-index: -1;
  animation: play-button-pulse 1.8s linear infinite;
}
.video-play-btn:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.call_section.image_bg .wrapper {
  padding-bottom: 30px;
}

#page + .main_categories {
  display: none;
}

#mobile-banner {
  display: none;
}

/* #page main, */
#results {
  padding: 10px 0;
}

#page #results {
  display: none;
}

#collapseMap.show {
  margin-top: 6px;
}

#collapseMap.active {
  margin-top: 52px;
  height: 625px;
}

#collapseMap.collapse:not(.show) {
  display: block;
  height: 300px;
  padding-top: 52px;
}

#collapseMap.collapsing {
  height: 300px;
}

#collapseMap.active iframe {
  height: 625px;
}

.filters_listing {
  position: fixed;
  width: 100%;
}

#filters_col.scrolled {
  margin-top: 1.75rem;
}

/*** Batoo Map ***/
.maplibregl-popup-content {
  padding: 0;
  width: 240px;
  height: 240px;
  border-radius: 5px;
  text-align: left;
  background: #000;
  background: white;
  position: relative;
  z-index: 999;
  font-family: "Poppins", Helvetica, sans-serif;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);

  .marker-wrap {
    img {
      width: 100%;
      height: 8rem;
      object-fit: cover;
      display: block;
      border-radius: 5px 5px 0 0;
    }

    h3 {
      font-size: 1.25rem;
      padding: 0.5rem 0.75rem;
      margin-bottom: 0;
    }

    div {
      padding: 0 0.75rem;
    }

    span {
      display: block;
      padding: 15px 20px 0 20px;
      font-size: 13px;
      font-size: 0.8125rem;
      line-height: 1.2;
      color: #fff;
      position: relative;
    }
  }
}

.maplibregl-popup-close-button {
  font-size: 18px;
  border: 1px solid #666;
  background-color: #fff;
  right: -8px;
  top: -8px;
  border-radius: 1rem;

  &:hover {
    background-color: #fff;
  }
}

.strip {
  border-radius: 4px;
}

.strip figure {
  height: 200px;
}

.strip figure a img {
  height: 200px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.strip .wrapper {
  padding: 20px 25px;
}

#download .strip figure {
  height: auto;
  padding: 1rem;
}

#download .strip.list_view img {
  height: 6.25rem;
}

#download .strip.list_view ul {
  padding: 20px 15px 28px 30px;
}

#download .strip.list_view .wrapper,
#download .strip.list_view figure,
#download .strip.list_view {
  min-height: auto;
}

#download .strip.list_view .wrapper {
  padding: 0 20px 0 0;
}

#download .strip.list_view .wrapper h3 {
  margin-bottom: 1rem;
}

.loc_open {
  font-size: 1em;
}

/** Footer **/
footer.plus_border .footer-logo {
  width: 6.5rem;
}

footer .links {
  margin-bottom: 0;
}

footer ul.contacts li,
footer ul li {
  margin-bottom: 15px;
}

footer ul.contacts li i {
  top: 1px;
}

.opening {
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 25px;
}

ul.bullets {
  padding-left: 1rem;
}

header.header.sticky {
  padding: 0;
  border-bottom: 1px solid var(--primary);
  position: fixed;
  z-index: 99 !important;
}

#results.is_stuck {
  top: 0 !important;
}

@media only screen and (max-width: 767px) {
  footer {
    padding-bottom: 80px;
  }

  .close-button {
    z-index: 999;
    right: -16px;
    top: -44px;
  }

  .gradient-overlay {
    top: -20%;
  }

  #places a.grid_item,
  #places a.grid_item figure,
  #places a.grid_item figure img {
    height: 500px;
  }

  .main_categories {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 0;
    margin-top: 0;
  }

  .main_categories .container {
    max-width: 100%;
    padding: 0;
  }

  .main_categories .container ul {
    border-radius: 0;
  }

  .banner + .main_categories {
    display: none;
  }

  #page + .main_categories {
    display: block;
  }

  #page #results {
    display: none;
  }

  #page main.page {
    margin-top: 5.5rem;
  }

  #collapseMap.collapse:not(.show) {
    padding-top: 51px;
  }

  .map {
    height: 250px;
  }

  #results.is_stuck {
    padding: 12px 0;
  }

  header.header,
  header.header.sticky {
    padding: 0;
  }

  header.header_in {
    padding: 17px 0;
  }

  #page header.header_in {
    padding: 0;
  }

  .filters_listing.version_2 ul li:nth-child(2) {
    display: block;
  }

  #collapseMap.show {
    margin-top: 10px;
  }

  #page #results.is_stuck.top {
    top: 0 !important;
  }

  header.header_in.is_sticky,
  #page #results {
    position: relative;
  }

  .header #logo a img {
    width: 90px;
    height: auto;
  }

  header.header_in #logo img {
    width: 80px;
    height: auto;
    margin-top: 0.35rem;
  }

  #logo {
    position: relative;
    top: 0;
    width: fit-content;
  }

  ul#top_menu,
  header.header ul#top_menu {
    display: block;
    width: fit-content;
    margin: -2px 16px 0 auto;
  }

  header.header ul#top_menu {
    position: relative;
    right: 0;
  }

  header.header.header_in ul#top_menu li a {
    background: var(--primary);
    border: 1px solid var(--primary);
  }

  header:not(.sticky) ul#top_menu li a {
    background: transparent;
    border: 1px solid #fff;
  }

  .header-video {
    height: 250px !important;
  }

  .header-video iframe {
    scale: 1.25;
  }

  .overlay .banner-content {
    bottom: 12%;
  }

  .banner-content h3 {
    font-size: 1.35rem;
  }

  .banner-content p {
    font-size: 0.8rem;
  }

  .play-button {
    width: 48px;
    height: 48px;
  }

  .play-icon {
    border-width: 8px 0 8px 15px;
  }

  .hamburger-inner,
  .hamburger-inner::after,
  .hamburger-inner::before {
    height: 2px;
    background-color: #fff;
  }

  .hamburger-inner::after {
    bottom: -8.25px;
  }

  .hamburger-box {
    height: 27px;
  }

  .main_title_2 h2 {
    margin: 25px 0 15px;
  }

  a.grid_item {
    margin-bottom: 18px;
  }

  .margin_60 {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .margin_60_35 {
    padding-top: 45px;
    padding-bottom: 35px;
  }

  .margin_80_55 {
    padding-bottom: 30px;
  }

  #home .call_section iframe {
    height: 350px;
  }

  .main_title_2 h2 {
    font-size: 1.5rem;
  }

  .header.sticky #logo a img {
    padding: 6px;
  }

  .mm-menu.mm-iconbar,
  .mm-menu.mm-offcanvas.mm-opened {
    border-left: 1px solid #e5e5e5;
    margin-left: auto;
  }

  .mm-menu .mm-navbar a,
  .mm-menu .mm-navbar > *,
  ul.mm-listview li a {
    color: #000;
  }

  .mm-menu em.mm-counter {
    display: none;
  }

  .mm-navbar,
  .mm-btn {
    height: 59px;
  }

  .mm-panels > .mm-panel.mm-hasnavbar {
    padding-top: 59px;
  }

  .mm-navbar > * {
    padding: 20px 0;
  }

  .secondary_nav.is_stuck {
    top: 0 !important;
  }

  ul.share-buttons li {
    margin: 5px;
  }

  #page section iframe {
    height: 300px;
  }

  .hero_in {
    height: 15.625rem;
  }

  html.mm-opening .mm-menu.mm-opened ~ .mm-slideout {
    transform: translate3d(-80%, 0, 0);
  }

  header .btn_mobile {
    text-align: right;
  }

  .hero_single.version_2 {
    height: 300px;
  }

  .banner .banner-content {
    transform: translateY(-10%);
  }

  #download .strip.list_view .wrapper {
    padding: 0 1.25rem 1.25rem;
  }

 #reccomended .item {
    flex: 0 0 calc(50% - 15px); /* Two items per row */
  }

  #reccomended .strip figure, #reccomended .strip figure a img {
    height: 100px;
  }

  #reccomended .strip .wrapper {
    height: 3.9rem;
    padding: 12px 14px;
  }

  .accordion_2 .card-header h5 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2px;
  }
	
  #intro-map.modal .modal-content .iframe-container ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    height: 200px;
    overflow-y: scroll;
  }
}

@media only screen and (min-width: 992px) {
  .banner .banner-images span.mobile-image {
    display: none;
  }

  .header-video iframe {
    scale: 1.21875;
  }

  ul#top_menu {
    margin: 1.25rem 0 0;
  }

  header.header_in ul#top_menu {
    margin: 0.85rem 0 0 10px;
  }

  header nav#menu.main-menu {
    padding: 1.175rem;
  }

  header.header_in nav#menu.main-menu {
    padding: 0.85rem;
  }

  .main-menu > ul > li span > a {
    font-size: 0.9rem;
  }

  .header.sticky #logo a {
    margin-bottom: 0;
  }

  .header.sticky #logo a img {
    padding: 6px 8px;
  }

  #home .call_section iframe {
    height: 625px;
  }

  .main_categories {
    margin-bottom: 0;
  }

  .graphic {
    grid-template-columns: repeat(3, 1fr);
  }

  .graphic a.grid_item {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .graphic .grid_item img {
    width: 100%;
  }

  .hero_single.version_2 {
    height: 800px;
  }

  #businesses img {
    position: absolute;
    width: 50%;
    right: 0;
  }
.diagonal-clip {
  position: relative;
  width: 100%;
  height: 66vh;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  box-shadow: -5px 0px 8px #e5e5e5;
  overflow: hidden; /* Prevent overflow */
}

.diagonal-clip img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover; /* Ensures image fills the clipped area */
  clip-path: inherit; /* Inherits the container's clipping */
}
}

@media only screen and (min-width: 1199px) {
  .main-menu > ul > li > span > a {
    padding: 0 8px;
  }

  /* main:not(.page) {
    padding-top: 75px;
  } */
}

@media (min-width: 1450px) {
  .header-video iframe {
    scale: 1.68075;
  }
}

/* Temp */
.accordion {
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: inherit;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  background-color: transparent;
  border: none;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
}

.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #333;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 1rem 1.25rem;
  color: #6c757d;
}

.accordion-item {
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #dee2e6;
}

.accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

#events {
  margin-top: 40px;
}

@media (max-width: 767px) {
  #events {
    margin-top: 0;
  }
	
  .main_categories ul {
	padding: 6px 0 10px;		
  }
	
  .main_categories ul li a h3 {
	font-size: 10px;
	display:  block;
	margin-bottom: 0;
  }
}

#events .item {
  margin: 0 15px;
}

#events .owl-item.active.center .item .title h4,
#events .owl-item.active.center .item .views {
  opacity: 1;
}
