/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *




 */

.reverse-string {
  direction: rtl;
  unicode-bidi: bidi-override;
}

.exclude-sold-checkbox {
  width: 1.5rem !important;
  height: 1.5rem !important;
}

p:empty { 
  margin: 0;
  padding: 0;
  height: 0;
  width: 0;
}
:root {
  --white: #FFF;
  --sky-blue: #E0F7FF;
  --pale-gold: #ABAF7D;
  --light-gold: #D2D5A5;;
  --dark-teal: #2F505E;
  --teal: #448399;
  --dark-gray: #323232;
  
  --text-primary: #101828;
  --text-secondary:  #344054;
  --text-tertiary: #475467;

  --hero-height: 960px;
  --header-height: 332px;

  --rubik: "Rubik", sans-serif;
  --inter: "Inter", sans-serif;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--rubik);
}

body > * {
  flex-grow: 0;
  flex-shrink: 0;
}

body > main {
  flex-grow: 1;
}

/* ===== Helper Classes ===== */

.bg-pale-gold { background-color: var(--pale-gold); }
.bg-dark-teal { background-color: var(--dark-teal); }
.bg-teal { background-color: var(--teal); }

.text-primary { color: var(--text-primary); }
.text-tertiary { color: var(--text-tertiary); }

.gap-32 { gap: 32px; }

.mw-768 { max-width: 768px; }
.mw-720 { max-width: 720px; }
.mw-576 { max-width: 576px; }
.mw-500 { max-width: 500px; }
.mw-384 { max-width: 384px; }
.mw-200 { max-width: 200px; }

.my-96 { margin: 96px 0px; }

.section-padding,
.section-p { padding: 96px 0; }

.single-p{ padding-bottom: 64px; }
.row-gap-5 { row-gap: 3rem !important; }
.row-gap-64 { row-gap: 64px; }

/* ===== Hero & Header CSS ===== */

.hero {
  height: var(--hero-height);
  position: relative;
  overflow: hidden;
}

.hero .layer1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc( var(--hero-height) * 0.12 );
}

.hero .layer1::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 34px;
  background-image: url(/assets/frontend/waves/wave-teal-ddcd8ddbc3b5e30b3e6cb4084b86233bbdf442672d31f511f42109a7503a5575.png);
  background-repeat: repeat-x;
  background-size: contain;
}

.hero .layer2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc( var(--hero-height) * 0.25 );
}

.hero .layer2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 34px;
  background-image: url(/assets/frontend/waves/wave-gold-833204df3ea0d731acb58a1965bb46b7eca681ed89809e18596e9ed204e5020c.png);
  background-repeat: repeat-x;
  background-size: contain;
}

.hero .layer3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc( var(--hero-height) * 0.5 );
}

.hero .layer3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 34px;
  background-image: url(/assets/frontend/waves/wave-teal-ddcd8ddbc3b5e30b3e6cb4084b86233bbdf442672d31f511f42109a7503a5575.png);
  background-repeat: repeat-x;
  background-size: contain;
}

.hero .hero-video {
  position: absolute;
  left: 10%;
  top: 20%;
  right: 0px;
  bottom: 0px;
  border-top-left-radius: 24px;
  overflow: hidden;
}

.hero .hero-video video,
.hero .hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ===== Page Headers ===== */

section.header {
  height: var(--header-height);
  position: relative;
  overflow: hidden;
}


.header .layer1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc( var(--hero-height) * 0.18 );
}

.header .layer1::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 34px;
  background-image: url(/assets/frontend/waves/wave-teal-ddcd8ddbc3b5e30b3e6cb4084b86233bbdf442672d31f511f42109a7503a5575.png);
  background-repeat: repeat-x;
  background-size: contain;
}

.header .layer2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc( var(--hero-height) * 0.25 );
}

.header .layer2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 34px;
  background-image: url(/assets/frontend/waves/wave-dark-ebc804808e967aa12d1dd08b14a4a60c93f602668036713268802ab9fbf5dc07.png);
  background-repeat: repeat-x;
  background-size: contain;
}

.header .header-title {
  display: block;
  color: var(--white);
  font-family: var(--rubik);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.96px;
  margin-bottom: 16px;
  line-height: normal;
}

.header .container { z-index: 10; }

.place-header {
  min-height: 720px;
  display: flex;
  overflow: hidden;
}

.place-header .header-content {
  width: 45%;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 96px 0;
}

.place-header .header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.place-header .header-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 64px;
  padding-left: 48px;
  align-items: start;
  gap: 32px;
  color: var(--text-primary);
}

.place-header .header-content::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 0;
  bottom: 0;
  width: 34px;
  background-repeat: repeat-y;
  background-size: contain;
}

.place-header .header-content::before {
  content: "";
  position: absolute;
  right: 0;
  top: -34px;
  left: 0;
  height: 0px;
  background-repeat: repeat-x;
  background-size: contain;
}

.place-header .header-content .place-tag {
  font-family: var(--rubik);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--text-primary);
  padding: 5px 10px;
  border-radius: 6px;
}

.place-header .header-content .header-title {
  font-family: var(--rubik);
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.96px;
}

.place-header .header-content .header-abstract {
  font-family: var(--rubik);
  font-size: 1.25rem;
  font-weight: 400;
}

.place-header.dark-teal {
  background: var(--dark-teal);
}
.place-header.dark-teal .header-content,
.place-header.teal .header-content {
  color: var(--white);
}
.place-header.dark-teal .header-content .place-tag,
.place-header.teal .header-content .place-tag {
  border-color: var(--white);
}
.place-header.dark-teal .header-content::after {
  background-image: url(/assets/frontend/waves/wave-dark-side-43627ebd2214709d117e17881ef75da18adce57484063330ff8d9863c2abe0ee.png);
}
.place-header.dark-teal .header-content::before {
  background-image: url(/assets/frontend/waves/wave-dark-ebc804808e967aa12d1dd08b14a4a60c93f602668036713268802ab9fbf5dc07.png);
}

.place-header.pale-gold {
  background: var(--pale-gold);
}
.place-header.pale-gold .header-content::after {
  background-image: url(/assets/frontend/waves/wave-gold-side-dab5957152361f3054aed62551912e805b8daa0a62aa73a222c517180f8ce263.png);
}
.place-header.pale-gold .header-content::before {
  background-image: url(/assets/frontend/waves/wave-gold-833204df3ea0d731acb58a1965bb46b7eca681ed89809e18596e9ed204e5020c.png);
}

.place-header.teal {
  background: var(--teal);
}
.place-header.teal .header-content::after {
  background-image: url(/assets/frontend/waves/wave-teal-side-54fc05d7691832b117877c65200a482b5bd1c78cbbe8375cc9d1575588c65487.png);
}
.place-header.teal .header-content::before {
  background-image: url(/assets/frontend/waves/wave-teal-ddcd8ddbc3b5e30b3e6cb4084b86233bbdf442672d31f511f42109a7503a5575.png);
}

/* ===== Navbar CSS ===== */

.navbar-container {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  /* max-height: 200px; */
  z-index: 100;
  /* padding-inline: 15%; */
}

.navbar-brand img {
  width: 150px;
}

.navbar-padding {
  padding-inline: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar-container .navbar-content {
  width: 100%;
  max-width: 1320px;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 0px 0px 38px 38px;
  box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
  padding: 20px 32px;
}

.navbar-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: end;
  padding-bottom: 12px;
}

.navbar-socials a {
  color: var(--dark-gray);
  text-decoration: none;
  height: 24px;
}

.navbar-socials a:hover,
.navbar-socials a:focus-visible {
  /* text-decoration: underline; */
  opacity: 0.85;
}
.navbar-socials a:hover span,
.navbar-socials a:focus-visible span {
  text-decoration: underline;
}

.navbar-socials i {
  font-size: 1.5rem;
}

.navbar-socials .lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-socials .lang-switch span {
  color: var(--dark-gray);
  font-family: var(--rubik);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.navbar-content .contact-bordered {
  border: 1px solid var(--dark-teal);
  color: var(--dark-teal);
}

.navbar-content .nav-link {
  color: var(--text-tertiary);
  font-size: 1rem;
  font-weight: 600;
  box-sizing: border-box;
}

.navbar-content .nav-link:hover,
.navbar-content .nav-link:focus-visible {
  text-decoration: underline;
}

.navbar-content .nav-link.active {
  color: var(--dark-teal);
  position: relative;
}

.navbar-content .nav-link.active::after {
  content: "";
  background-color: var(--teal);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 0px 0px 4px 4px;
}

.navbar-cta {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.navbar-cta-text {
  color: var(--text-tertiary);
  font-size: 3rem;
  font-weight: 400;
  line-height: normal;
}

.navbar-cta-text b {
  font-weight: 700;
}

.navbar-cta-container {
  display: grid;
  padding: 16px 0;
  grid-template-rows: 1fr;
  transition: 
    grid-template-rows 500ms ease-in-out,
    padding 500ms ease-in-out;
}

.navbar-cta-container.nav-collapse {
  grid-template-rows: 0fr;
  padding: 0;
}

.navbar-cta-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== Footer ===== */

.footer-padding {
  padding-inline: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-card {
  width: 100%;
  max-width: 1320px;
  padding: 32px;
  border-radius: 24px 24px 0 0;
  color: var(--white);
}

.footer-nav { margin-top: 48px; }
.footer-nav .nav { gap: 32px; }

.footer-card a {
  color: var(--white);
  text-decoration: none;
}
.footer-card a:hover,
.footer-card a:focus-visible,
.footer-card a:focus {
  color: var(--white) !important;
  text-decoration: underline;
}

.footer-nav .nav-link {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0;
}

.footer-card .footer-divider {
  height: 1px;
  background-color: var(--white);
  width: 100%;
  margin: 24px 0;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
}

.footer-card .communities-group ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 72px;
  row-gap: 12px;
}

.footer-card .communities-group a i {
  opacity: 0;
}

.footer-card .communities-group a:hover i,
.footer-card .communities-group a:focus-visible i {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-socials {
  display: flex;
  gap: 32px;
}

.footer-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: 
    background-color 200ms ease-in-out,
    border-color 200ms ease-in-out;
}

.footer-socials i {
  font-size: 1.5rem;
  color: var(--dark-teal);
  transition: color 200ms ease-in-out;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
  text-decoration: none;
}
.footer-socials a:hover i,
.footer-socials a:focus-visible i {
  color: var(--white);
}
/* ===== Website CSS ===== */

.btn.westnb-outline {
  border: 1px solid var(--dark-teal);
  color: var(--dark-teal);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  white-space: nowrap;
}

.btn.westnb-outline:hover,
.btn.westnb-outline:focus-visible {
  border-color: var(--dark-teal);
  background-color: var(--dark-teal);
  color: var(--white)
}

.btn.westnb-dark-teal {
  background-color: var(--dark-teal);
  color: var(--white);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  white-space: nowrap;
}

.btn.westnb-dark-teal:hover,
.btn.westnb-dark-teal:focus-visible {
  border-color: var(--dark-teal);
  background-color: transparent;
  color: var(--dark-teal)
}

.btn.westnb-white-outline {
  background-color: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--white);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  white-space: nowrap;
}

.btn.westnb-white-outline:hover,
.btn.westnb-white-outline:focus-visible {
  border-color: transparent;
  background-color: var(--white);
  color: var(--dark-teal)
}

.scroller-section {
  overflow: hidden;
}
.scroller-section h1 {
  color: var(--text-primary);
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.72px;
}
.scroller-section p {
  color: var(--text-tertiary);
  font-size: 1.25rem;
}

/* Slider */

.carousel-container {
  /* overflow: hidden; */
  position: relative;
}


.carousel-control {
  border: none;
}
#scrollPrev.prev,
#scrollNext.next {
  background-color: var(--dark-teal);
  color: var(--white);
  border-radius: 9999px;
  width: 56px;
  height: 56px;
  font-size: 1.25rem;
  transition: opacity 200ms ease;
}
#scrollPrev.prev:hover,
#scrollNext.next:hover,
#scrollPrev.prev:focus-visible,
#scrollNext.next:focus-visible {
  opacity: 0.9;
}
#scrollPrev.prev:active,
#scrollNext.next:active {
  opacity: 0.85;
  border: 1px solid var(--dark-teal);
  /* background-color: var(--sky-blue); */
}


.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.featured-card {
  flex: 0 0 auto;
  margin-right: 30px;
  width: 360px;
  height: 480px;
  border: none;
  border-radius:0;
}

.featured-card .card-body { position: relative; padding: 0; }
.featured-card .card-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card .card-body div {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--pale-gold);
  border-top-right-radius: 30px;
  padding: 16px 32px;
  transition: background-color 200ms ease;
}

.featured-card p {
  margin: 0;
  padding: 0;
  color: var(--dark-gray);
  font-size: 1.5rem;
  font-weight: 500;
  transition: color 200ms ease;
}

.featured-card a:hover div,
.featured-card a:focus-visible div {
  background-color: var(--teal);
}
.featured-card a:hover p,
.featured-card a:focus-visible p {
  color: var(--white);
}

/* Index image section */
section.image-section {
  position: relative; 
  height: 960px;
  background-color: var(--sky-blue);
}
section.image-section .image-container {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 10%;
  top: 10%;
  border-top-left-radius: 24px;
  overflow: hidden;
}
section.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.image-section .text-container {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--dark-teal);
  padding: 32px;
  /* padding-left: calc(45% / 4); */
  padding-left: calc(var(--bs-gutter-x) * .5);
  color: var(--white);
  border-top-right-radius: 24px;
  max-width: 45%;
}

section.image-section .text-container:before {
  position: absolute;
  content: "";
  background-color: var(--dark-teal);
  width: 150%;
  right: 100%;
  top: 0;
  bottom: 0;
}


.bottom-section h3 {
  color: var(--text-primary);
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.72px;
}

.bottom-section p {
  color: var(--text-tertiary);
  font-size: 1.25rem;
  font-weight: 400;
}

.bottom-cards {
  margin-top: 64px;
}

.bottom-section .bottom-card {
  width: 384px;
}

.bottom-card a {
  text-decoration: none;
}

.bottom-card img {
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: cover;
}

.bottom-card p,
.bottom-card i {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 400;
}

.bottom-card a:hover p,
.bottom-card a:focus-visible p,
.bottom-card a:hover i,
.bottom-card a:focus-visible i {
  color: var(--teal);
}

.bottom-card a:hover img,
.bottom-card a:focus-visible img {
  opacity: 0.9;
}

/* === Category Details Page === */

.horizontal-menu{
  /* border-bottom: 1px solid #ccc; */
  box-shadow: inset 0 -2px 0 #ccc;
}
.horizontal-menu ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  /* display: flex; */
  overflow-x: auto;
  white-space: nowrap;
}

.horizontal-menu li{
  display: inline-block;
}
.horizontal-menu a {
  display: block;
  padding: 8px 20px;
  text-decoration: none;
  color: #333;
}
.horizontal-menu a:hover {
  background-color: #eee;
}

.horizontal-menu .active a{
  color: #4e98bc;
  box-shadow: inset 0 -2px 0 var(--primary);
  /* -webkit-box-shadow: 0px 5px 0px 0px #4E98BC;  */
  /* box-shadow: 0px 5px 0px 0px #4E98BC; */
  /* border-bottom: 2px solid #4e98bc; */
}
.activity-filtering button.btn{
  color: var(--dark);
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  background: #fff;
  min-width: 165px;
  padding-left: 42px;
  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  white-space: nowrap;
}
.activity-filtering button.btn:hover,
.activity-filtering button.btn:focus-within{
  border-color: unset;
}

.activity-filtering .dropdown-item.active {
  background-color: var(--teal);
}

.activity-filtering label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.activity-filtering .form-control {
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  background: #FFF;
  padding-left: 42px;
  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.activity-filtering button,
.activity-filtering .form-control {
  position: relative;
  height: 44px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
}

.activity-filtering #municipality-button::before {
  position: absolute;
  content: "\f5a0";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  left: 15px;
}

.activity-filtering #category-button::before {
  position: absolute;
  content: "\f03a";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  left: 15px;
}

.activity-filtering .query-search-icon {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 400;
  left: 15px;
  top: 10px;
  z-index: 5;
}

#places-section-container {
  display: flex;
  flex-wrap: wrap;
  /* grid-template-columns: repeat(auto) 1fr 1fr; */
  /* grid-template-columns: repeat(auto-fit, minmax(384px, 1fr)); */
  row-gap: 48px;
  column-gap: 32px;
  margin-top: 64px;
}

.place-card {
  flex-shrink: 0;
  flex-grow: 0;
  max-width: 384px;
  width: 100%;
  height: 280px;
  border: none;
  border-radius:0;
}

.place-card a {
  display: block;
  height: 100%;
  width: 100%;
}

.place-card .card-body { 
  position: relative; 
  padding: 0;
  border-radius: 16px; 
  overflow: hidden;
  box-shadow: 
    0px 4px 8px -2px rgba(16, 24, 40, 0.10), 
    0px 2px 4px -2px rgba(16, 24, 40, 0.06);
}
.place-card .card-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-card .card-body div.title-container {
  position: absolute;
  bottom: 0;
  left: 0;
  /* background-color: var(--teal); */
  background-color: #70AFC3;
  border-top-right-radius: 30px;
  border: 1px solid var(--teal);
  border-bottom-width: 0;
  border-left-width: 0;
  padding: 8px 32px;
  transition: background-color 200ms ease;
  max-width: 320px;
  line-height: normal;
  min-height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.place-card .card-body div.alert ul {
  margin-bottom: 0;
}
.place-card .card-body div.alert {
  position: absolute;
  top: 0;
}

.place-card p {
  margin: 0;
  padding: 0;
  color: var(--dark-gray);
  font-size: 1.25rem;
  font-weight: 500;
  transition: color 200ms ease;
}

.place-card a:hover div,
.place-card a:focus-visible div {
  border-color: var(--pale-gold) !important;
  background-color: var(--light-gold) !important;
}

.place-card.newsletter-insert {
  padding: 32px 32px 40px 32px;
  border-radius: 16px;
  border: 1px solid #EAECF0;
  background: #F9FAFB;

  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.place-card.newsletter-insert .card-body {
  border-radius: 0;
  overflow: visible;
  justify-content: center;
  align-items: center;
}

.place-card.newsletter-insert .newsletter-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
}

.place-card.newsletter-insert .newsletter-cta {
  color: var(--text-tertiary);
  font-size: 1rem;
  font-weight: 400;
}

.place-card.newsletter-insert .form-control {
  padding: 10px 14px;
  align-self: stretch;

  border-radius: 8px;
  border: 1px solid var#D0D5DD;
  background: var(--white);

  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

#places-section-container .more-btn {
  width: 100%;
  max-width: 320px;
  padding: 12px 18px;

  color: var(--white);
  font-weight: 500;

  border-radius: 8px;
  border: 1px solid var(--teal);
  background: var(--dark-teal);

  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  white-space: nowrap;
}

/* === Place details page === */

.place-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.place-info .place-info-content {
  text-align: center;
}

.place-info > i {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.place-info .place-info-content {
  color: var(--text-tertiary);

  /* Text md/Regular */
  font-family: var(--inter);
  font-size: 1rem;
  font-weight: 400;
}

.place-info .place-info-content .title {
  color: var(--text-primary);
  font-family: var(--rubik);
  font-size: 1.25rem;
  font-weight: 500;
}

.place-info .place-info-content a {
  color: var(--dark-teal);
  font-family: var(--rubik);
  font-weight: 500;
  text-decoration: none;
}
.place-info .place-info-content a:hover,
.place-info .place-info-content a:focus-visible {
  text-decoration: underline;
}

.place-info .place-info-content a > i {
  font-size: 1.5rem;
}

.place-info .place-info-content a:hover i,
.place-info .place-info-content a:focus-visible i {
  opacity: 0.75;
}

section.subpage {
  padding: 96px 0px;
}

.place-content {
  color: var(--text-tertiary);
  font-family: var(--rubik);
  font-size: 1.125rem;
  font-weight: 400;
}

.place-content h1,
.place-content h2,
.place-content h3,
.place-content h3 {
  color: var(--text-primary);
  font-family: var(--rubik);
}

.place-content h2 {
  font-size: 1.875rem;
  font-weight: 600;
}

.place-content .place-share {
  border-top: 1px solid #EAECF0;
  margin-top: 10px;
}

.place-share button {
  display: flex;
  padding: 10px 14px;

  justify-content: center;
  align-items: center;

  border-radius: 8px;
  border: 1px solid #D0D5DD;
  background: #FFF;

  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.place-share a {
  font-size: 1.5rem;
  color: var(--dark-teal);
}

.place-share a:hover,
.place-share a:focus-visible {
  opacity: 0.75;
}


/* ==== Places Gallery ==== */

.gallery-container {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 24px;
  align-self: stretch;
  flex-wrap: wrap;
}

.gallery-container a {
  height: 290px;
  min-width: 280px;
  flex: 1 0 0;
}

.gallery-container a:hover,
.gallery-container a:focus-visible {
  opacity: 80%;
}

.gallery-container img.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#galleryModal img {
  width: 100%;
  height: auto;
}

#galleryModal .modal-body {
  padding: 24px;
}

#galleryModal .modal-footer {
  padding: 24px;
  padding-top: 8px;
}
#galleryModal .modal-footer > * {
  margin: auto;
}

/* ==== Partners Slider ==== */

.partners .single-partner {
  max-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single-partner img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.single-partner p,
.single-partner a {
  text-decoration: none;
  text-align: center;
  color: var(--text-tertiary);
  font-family: var(--rubik);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  padding-top: 5px;
}

.single-partner a:hover,
.single-partner a:focus-visible {
  text-decoration: underline;
}

.owl-carousel {
  position: relative;
}

.owl-carousel button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 9999px;

  border: 1px solid #EAECF0;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12.5px);
}

.owl-carousel .owl-next {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.owl-carousel .owl-prev {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.owl-carousel button i {
  color: #667085;
  font-size: 24px;
  transform: translateY(4%);
}

.owl-carousel .owl-stage-outer::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: "";
  width: 50px;
  background: rgb(255,255,255);
  background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  z-index: 1;
  pointer-events: none;
}

.owl-carousel .owl-stage-outer::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  width: 50px;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  z-index: 1;
  pointer-events: none;
}

/* === Contact/Application forms === */

#submit-loading {
  display: none;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, .4);
  margin: 0;
  padding: 0;
  z-index: 9999;
}

#submit-loading div {
  opacity: 25%;
}

#submit-loading i {
  color: var(--teal);
  background-color: white;
  font-size: 50px;
  padding: 10px;
  border-radius: 9999px;
}

form label.required:after {
  content: " *";
  color: #f4516c;
}

form textarea {
  resize: none;
}

.form-header {
  color: var(--text-primary);
  font-family: var(--rubik);
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.72px;
}

.form-desc {
  color: var(--text-tertiary);
  font-family: var(--rubik);
  font-size: 1.25rem;
  font-weight: 400;
}

/* ==== Business Application CTA ==== */

.application-cta {
  border-radius: 16px;
  background: #F9FAFB;
  padding: 64px;
}

.application-cta .cta-title {
  color: var(--text-primary);
  font-family: var(--rubik);
  font-size: 1.875rem;
  font-weight: 500;
}

.application-cta .cta-desc {
  color: var(--text-tertiary);
  font-family: var(--rubik);
  font-size: 1.25rem;
  font-weight: 400;
}

.application-cta .btn {
  width: 250px;
  white-space: nowrap;
}

.notice.text-muted {
  font-size: 0.875rem;
}

p.form-section {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #ced4da;
}

.fof-bg {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
  padding-inline: 20px;
}

.fof-text {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

.fof-text h1 {
  color: var(--text-primary);
  font-family: var(--rubik);
  font-size: 3.25rem;
  font-weight: 600;
  letter-spacing: -1.2px;
}

.fof-text p {
  color: var(--text-tertiary);
  font-family: var(--rubik);
  font-size: 1.25rem;
  font-weight: 400;
}

.filter-spinner {
  z-index: 1000;
}

/* === MAP STYLES === */

.map-section img.map {
  border-radius: var(--radius-md, 8px);
  box-shadow: 0px 32px 64px -12px rgba(16, 24, 40, 0.15);
}

.map-section .location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
  column-gap: 16px;
}

.map-section .location-card {
  display: flex;
  align-items: center;
  min-height: 78px;

  padding: 18px;
  padding-left: 8px;
  align-items: center;
  gap: 12px;

  border-radius: 12px;
  background: #B6C2C7;
  
  color: var(--text-primary);
  font-family: var(--rubik);
  text-decoration: none;

  transition: 
    background-color 150ms ease-in-out,
    color 150ms ease-in-out;

  position: relative;
}

.map-section a.location-card:hover,
.map-section a.location-card:focus-visible {
  background-color: var(--dark-teal);
  color: var(--white);
}


.map-section .location-card p i {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
}

.map-section a.location-card:hover p i,
.map-section a.location-card:focus-visible p i {
  display: inline-block;
}

.map-section .location-card div {
  display: flex;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
}

.map-section .location-card p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.map-section .btn {
  margin-top: 32px;
  width: 100%;
  max-width: 250px;
  padding: 12px 18px;
}

.map-section .map-legend {
  max-width: 768px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 32px;
  column-gap: 32px;
}

.map-section .map-legend .legend-item {
  align-items: center;
  display: flex;
  gap: 12px;
}

.map-section .map-legend .legend-item img {
  width: 64px;
}

.map-section .map-legend .legend-item span {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

/* Fish and Hunt Page */

.fish-hunt-h1 h1{
  color: #101828;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 24px;
}
.fish-hunt-h1 p{
  color: #475467;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

.fish-hunt-experiences h2{
  color: #101828;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.fish-hunt-experiences h3{
  color: #448399;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.fish-hunt-experiences p{
  color: #475467;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.fish-hunt-experiences p a{
  color: #448399;
  text-decoration: underline;
}
.fish-hunt-carousel-container{
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
}
.fish-hunt-carousel-container .carousel-inner,
.fish-hunt-carousel-container .carousel-item{
  height: 100%;
}
.fish-hunt-carousel-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-control-next,
.carousel-control-prev{
  width: 48px;
  height: 48px;
  /* background-color: rgba(255, 255, 255, 0.6); */
  background-color: rgba(68, 131, 153, 0.8);
  opacity: 1;
  border-radius: 9999px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0px 15px;
}
.carousel-control-next-icon{
  width: 28px;
  height: 28px;
  margin-left: 3px;
} 
.carousel-control-prev-icon{
  width: 28px;
  height: 28px;
  margin-right: 3px;
}
.west-tourism-btn{
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid #448399;
  background-color: #2F505E;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.west-tourism-btn:hover{
  background-color: #fff;
  color: #2F505E;
  border-color: #448399;
}
.crmap-root.crmap-embedded{
  display: none;
}

.experience-number{
  font-size: 24px;
  display: block;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background-color: #2F505E;
  align-content: center;
  border-radius: 9999px;
  text-align: center;
  margin-bottom: 16px;
}

/* Skip to main content */
.skip-to-main-content {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 1em;
  background-color: black;
  color: #fff;
  opacity: 0;
}
.skip-to-main-content:focus {
  left: 50%;
  top: 1%;
  transform: translateX(-50%);
  opacity: 1;
  border: 1px solid red;
}

/* --------------- */
/* success stories */
/* --------------- */
.success-card{
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.success-card img{
    width: 100%;
    height: 280px;
    border-radius: 16px;
    /* overflow: hidden; */
    object-fit: cover;
    box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.10), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
}
.success-card h3{
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
    height: 28px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.success-card p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 18px;
    font-weight: 400;
    height: 48px;
    line-height: 24px;
    overflow: hidden;
}

.wnb-tourism-btn{
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid #448399;
    background: #2F505E;
    color: #ffffff;
}
.wnb-tourism-btn:hover,
.wnb-tourism-btn:focus,
.wnb-tourism-btn:focus-visible,
.wnb-tourism-btn:active{
    border-color:#448399;
    background: #ffffff;
    color: #2F505E;
}

/* blog page */
.blog-content{
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.blog-content h1{
    color: #101828;
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    margin-bottom: 0;
}
.blog-content p{
    color: #6D6E71;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0;
}
.blog-content .carousel .carousel-item{
    height: 200px;
}
.blog-content .carousel .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-content .carousel-inner {
    border-radius: 16px;
}
.share-blog{
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #EAECF0;
}
.share-blog span{
    font-size: 18px;
    font-weight: 500;
    color: #2F505E;
}
.share-blog .wnb-tourism-btn:not(:first-child){
    width: 50px;
    height: 50px;
    padding: 0;
    text-align: center;
    align-content: center;
    font-size: 20px;
}

/* tool kit */

/* small image container */
.small-img-container{
    width: 100%;
    max-width: 576px;
    height: 240px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--pastel-teal);
}
.small-img-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.small-img-container .img-png{
    width: 100%;
    height: 100%;
    padding: 16px;
    object-fit: contain;
}

/* image text section */
.tool-kit-section h2{
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 16px;
}
.tool-kit-section p{
    font-size: 18px;
}
.tool-kit-section ul{
    list-style: none;
}
.tool-kit-section ul li,
.tool-kit-section ul li{
    position: relative;
    color: #2F505E;
}
.tool-kit-section ul li::before,
.tool-kit-section ul li::after{
    /* font-family: "Font Awesome 6 Duotone"; */
    font: var(--fa-font-duotone);
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    color: #2F505E;
    -webkit-font-smoothing: antialiased;
}
.tool-kit-section ul li::before{
    content: '\f0c1';
    opacity: 1;
}
.tool-kit-section ul li::after{
    content: '\f0c1\f0c1';
    opacity: 0.4;
}

.tool-kit-section ul a{
    color: #2F505E;
    text-decoration: underline;
}

/* divider */
.section-divider{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section-divider div{
    height: 1px;
    width: 100%;
    max-width: 1300px;
    padding: 0px 32px;
    align-self: center;
    background-color: #EAECF0;
}

.wnbTourism-cta{
    padding: 32px 16px;
    border-radius: 16px;
    background: #F9FAFB;
    box-shadow: 0px 3px 4px 0px rgba(76, 78, 100, 0.08), 0px 1px 8px 0px rgba(76, 78, 100, 0.06);
}
.wnbTourism-cta .west-tourism-btn{
    width: 100%;
    max-width: 280px;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
}

/* alert */
/* Slide-in animation */
@keyframes slideInFromBottom {
    0% {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, 0%);
        opacity: 1;
    }
}

.wnbt-notice{
    background-color: #E0F7FF;
    position: fixed;
    border-radius: 9999px;
    border: 1px solid #2F505E;
    /* width: 100%; */
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    left: 50%;
    bottom: 1%;
    transform: translateX(-50%);
    color: #475467;

    animation: slideInFromBottom 0.6s ease-out forwards;
    z-index: 100;
}

@media (prefers-reduced-motion: reduce) {
    .wnbt-notice {
        animation: none;
    }
}

.wnbt-notice span{
    white-space: nowrap;
    font-weight: 600;
}
.wnbt-notice p{
    margin-bottom: 0;
    margin-right: 15px;
}
.alert-dismissible .btn-close {
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    padding: 0.5rem;
}

/* contact page extra info */
.info-centre-item{
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
}
.info-centre-item img{
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.10), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
}
.info-centre-item h3{
    color: #181D27;
    font-size: 24px;
    font-weight: 600;
    line-height: 38px;
}
.info-centre-item p{
    color: #475467;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.resources-container{
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 32px 20px;
    flex-wrap: wrap;
}
.resources-container .resource-item{
    display: flex;
    /* min-width: 360px; */
    min-width: 280px;
    max-width: 392px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1 0 0;
}
.resource-item h3{
    color: #323232;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.resource-item ul{
    list-style: none;
}
.resource-item ul .resource-link,
.resource-item ul .resource-link,
.resource-item ul .resource-pdf,
.resource-item ul .resource-pdf{
    position: relative;
    color: #344054;
}
.resource-item ul .resource-link::before,
.resource-item ul .resource-link::after,
.resource-item ul .resource-pdf::before,
.resource-item ul .resource-pdf::after{
    /* font-family: "Font Awesome 6 Duotone"; */
    font: var(--fa-font-duotone);
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    color: #344054;
    -webkit-font-smoothing: antialiased;
}
.resource-item ul .resource-link::before{
    content: '\f0c1';
    opacity: 1;
}
.resource-item ul .resource-link::after{
    content: '\f0c1\f0c1';
    opacity: 0.4;
}
.resource-item ul .resource-pdf::before{
    content: '\f1c1';
    opacity: 1;
}
.resource-item ul .resource-pdf::after{
    content: '\f1c1\f1c1';
    opacity: 0.4;
}
.resource-item li a{
    margin-left: 8px;
    color: #344054;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
@media screen and (max-width: 375px) {
  .navbar-container .navbar-content .navbar-cta-contact {
    flex-direction: column;
  }

  .navbar-container .navbar-brand img {
    width: 125px;
  }
}

@media screen and (max-width: 512px) {
  .fof-text {
    padding-top: 20px;
  }
  .fof-text h1 {
    font-size: 2rem;
  }
  .map-section .location-container {
    grid-template-columns: 1fr;
  }
  .map-section .map-legend {
    grid-template-columns: 1fr;
  }
  .map-section .btn {
    max-width: unset;
  }
}

@media screen and (max-width: 568px) {
  section.image-section .text-container {
    max-width: unset;
    width: 100%;
    border-radius: 0;
  }

  section.image-section .image-container {
    left: 0;
    border-radius: 0;
  }
}

@media screen and (max-width: 768px) {
  .navbar-padding {
    padding-inline: 0;
  }

  .footer-padding {
    padding-inline: 0;
  }

  .navbar-container .navbar-content {
    border-radius: 0px;
  }

  footer .footer-card {
    border-radius: 0px;
  }

  section.place-header {
    margin-top: 150px;
  }

  .fof-text h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 992px) {
  .navbar-content .navbar-cta-text {
    font-size: 2.5rem;
  }

  .navbar-content .navbar-cta {
    flex-direction: column;
    gap: 16px;
  }

  .navbar-content .navbar-cta-contact {
    justify-content: end;
    flex-direction: row;
    gap: 16px;
  }

  .navbar-content .navbar-cta-text.mw-500 {
    max-width: unset;
  }

  .place-header {
    flex-direction: column-reverse;
  }

  .place-header .header-content {
    width: 100%;
    min-height: 45%;
  }

  .place-header .header-image {
    height: 55%;
    min-height: 400px;
  }

  .place-header .header-content::after {
    width: 0px;
  }

  .place-header .header-content::before {
    height: 34px;
  }
  
  .footer-card .communities-group ul {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1200px) {
  .footer-card .communities-group ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 992px) {
  .place-header .header-content {
    padding-top: 175px;
  }
}

@media screen and (min-width: 1800px) {
  section.image-section .image-container {
    left: 25%;
  }
  
  .navbar-cta-contact p {
    margin-bottom: 0;
  }
}

@media screen and (max-width:374px) {
}
@media screen and (min-width:375px) {
  .blog-content .carousel .carousel-item{
    height: 280px;
  }
}

@media screen and (min-width:425px) {
  .small-img-container{
    height: 320px;
  }
}


@media screen and (max-width: 575px) {
}
/* Phablet */
@media screen and (min-width: 576px) {
  .fish-hunt-carousel-container{
    height: 480px;
  }
  .blog-content .carousel .carousel-item{
    height: 380px;
  }
  /* small image container */
  .small-img-container{
    height: 400px;
  }
}
/* Tablet */
/* @media screen and (max-width:767px) {
    
} */
@media screen and (min-width: 768px) {
  .section-p{
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .single-p{
    padding-bottom: 96px;
  }
  .row-gap-64{
    row-gap: 96px;
  }
  .fish-hunt-h1 h1{
    font-size: 56px;
    line-height: 60px;
  }
  .fish-hunt-h1 p{
    font-size: 28px;
    line-height: 40px;
  }

  .blog-content h1{
    font-size: 36px;
    line-height: 44px;
  }

  .blog-content .carousel .carousel-item{
    height: 480px;
  }

  /* cta */
  .wnbTourism-cta{
    padding: 64px;
  }

  /* contact page extra info */
  .info-centre-item img{
    max-width: 320px;
  }
}

/* Laptop */
@media screen and (min-width: 992px) {
  /* hazardous waste */
  .mw-lg-480{
    max-width: 480px;
  }
  .fish-hunt-carousel-container{
    height: 654px;
  }
  .subpage-sect .success-card p{
    font-size: 18px;
    line-height: 24px;
  }

  /* contact page extra info */
  .info-centre-item{
    flex-direction: row;
  }
  .resources-container .resource-item{
    min-width: 360px;
  }
}
/* Small screen */
@media screen and (min-width: 1200px) {
  .navbar-content .navbar-nav {
    gap: 32px;
  }


}
/* Large screen */
@media screen and (min-width: 1400px) {
  /* success stories */
  .success-card{
    max-width: 576px;
  }
  .success-card h2{
    font-size: 30px;
    line-height: 38px;
  }
  .subpage-sect .success-card p{
    height: 56px;
    font-size: 20px;
    line-height: 28px;
  }

}
/* ultra large */
@media screen and (min-width:1536px) {
    /* .wnb-nav-container .navbar{
        padding-inline: 30%;
    } */
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
