@charset "UTF-8";
[hero~=wrapper] {
  --hero-position: relative;
  position: var(--hero-position);
  margin-top: calc(var(--masthead-height) * -1);
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  width: 100%;
  height: var(--hero-height);
  color: var(--color-text-light);
  overflow: hidden;
  z-index: 100;
}

@media (min-width: 1024px) {
  [hero~=wrapper] {
    --hero-bottom-bar-height: 1.5rem;
    --hero-position: sticky;
    top: calc((var(--hero-height) - var(--masthead-height) - var(--hero-bottom-bar-height) / 2) * -1);
    grid-template-rows: 1fr auto auto;
  }
  [hero~=wrapper].js-static-hero {
    --hero-position: relative;
    top: unset;
  }
}
@media (min-width: 768px) {
  [gradient] [hero~=wrapper]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--hero-gradient-height);
    background: none;
    pointer-events: none;
    animation-name: slow-gradient-fade-in;
    animation-duration: 5s;
    animation-delay: 2s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    z-index: 12;
  }
  [gradient~=light] [hero~=wrapper]::before {
    background: var(--gradient-hero-light);
  }
  [gradient~=dark] [hero~=wrapper]::before {
    background: var(--gradient-hero-dark);
  }
}
[gradient] [hero~=wrapper]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--hero-gradient-height);
  background: none;
  pointer-events: none;
  z-index: 1;
}

[gradient~=dark] [hero~=wrapper]::after {
  background: var(--gradient-hero-dark-bottom);
}

[hero-video~=wrapper] {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
}

@media (min-width: 1024px) {
  [hero-video~=wrapper] {
    grid-row: 1/-1;
    grid-column: 1;
  }
}
[hero-video~=landscape],
[hero-video~=portrait] {
  --hero-video-display: none;
  display: var(--hero-video-display);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

[hero-video] video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

@media (orientation: portrait) and (max-width: 767px) {
  [hero~=wrapper] {
    --hero-height: 70vh;
  }
  [hero-video~=portrait] {
    --hero-video-display: block;
  }
}
@media (orientation: portrait) and (min-width: 768px) {
  [hero~=wrapper] {
    --hero-height: 50vh;
  }
  [hero-video~=landscape] {
    --hero-video-display: block;
  }
}
@media (orientation: landscape) and (min-width: 769px) {
  [hero-video~=landscape] {
    display: block;
  }
}
[hero~=name] {
  --hero-name-position: absolute;
  --hero-name-line-height: var(--line-height-header);
  display: grid;
  grid-template-columns: 1fr;
  position: var(--hero-name-position);
  bottom: 1rem;
  left: 0;
  right: 0;
  width: min(95vw, 1600px);
  font-size: calc(var(--font-size-h1-fallback) + 0.75rem);
  font-size: calc(var(--font-size-h1) + 0.75rem);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  line-height: var(--hero-name-line-height);
  letter-spacing: 1px;
  text-shadow: var(--shadow-text-hero);
  color: var(--color-bg-white);
  max-width: clamp(600px, 95vw, 1600px);
  margin: 0 auto;
  z-index: 5;
  transform: scale(1);
  transform-origin: left;
  transition: transform 500ms ease-in-out, line-height 500ms ease-in-out;
}

@media (max-width: 960px) {
  [hero~=name] {
    --hero-name-line-height: 1.1;
  }
}
@media (min-width: 1024px) {
  [hero~=name] {
    --hero-name-position: unset;
    grid-row: 2;
    grid-column: 1;
    padding-bottom: 1rem;
    text-wrap: balance;
  }
  [hero~=name].js-transform-pagename {
    --hero-name-line-height: 0.7;
    transform: scale(0.7);
  }
}
[hero~=bottom-bar] {
  --hero-bottom-bar-display: none;
  display: var(--hero-bottom-bar-display);
}

@media (min-width: 1024px) {
  [hero~=bottom-bar] {
    --hero-bottom-bar-display: grid;
    --hero-bottom-bar-display-columns: 1fr;
    grid-template-columns: var(--hero-bottom-bar-display-columns);
    height: auto;
    min-height: 1.5rem;
    color: var(--brand-black);
    background-color: var(--brand-silver-light);
    font-size: var(--font-size-body-smallest);
    font-weight: var(--font-weight-header);
    z-index: 600;
  }
  [hero~=bottom-bar].js-back-to-trip-on {
    --hero-bottom-bar-display-columns: 2fr 1fr;
  }
  [hero~=back-to-trip] {
    display: grid;
    grid-template-columns: 1.5rem 1fr;
    align-items: center;
    color: var(--brand-black);
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-body-small);
    padding: 0.5rem var(--space-xs);
    cursor: pointer;
  }
  [hero~=back-to-trip]::before {
    content: "";
    background-image: url("/assets/images/icons/back-to-trip-arrow.svg");
    height: 1.5rem;
    z-index: 80;
  }
  [hero~=back-to-trip]:hover {
    transition: transform 0.25s ease-in-out;
    transform: scaleX(1.007);
  }
  [hero~=photo-credit] {
    justify-self: end;
    align-self: center;
    color: var(--brand-black);
    font-size: var(--font-size-body-smallest);
    font-weight: var(--font-weight-header);
    padding-right: 0.75rem;
  }
}
@media (max-width: 1023px) {
  [tripnav-section~=wrapper] {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--brand-silver-light);
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto;
  }
  [tripnav-section~=bar] {
    color: var(--color-text-dark);
    font-weight: var(--font-weight-header);
    line-height: 3rem;
    display: grid;
    grid-template-columns: 3rem;
    height: 3rem;
  }
  [tripnav-section~=menu] {
    text-align: right;
    color: var(--color-text-link-dark);
  }
  [tripnav-section~=hamburger] {
    width: auto;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 0.75rem;
  }
  [tripnav-section~=icon], [tripnav-section~=icon]::before, [tripnav-section~=icon]::after {
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background-color: var(--color-text-link-dark);
    display: inline-block;
  }
  [tripnav-section~=icon]::before, [tripnav-section~=icon]::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all 0.2s;
  }
  [tripnav-section~=icon]::before {
    top: -0.5rem;
  }
  [tripnav-section~=icon]::after {
    top: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [tripnav-section~=wrapper] {
    width: 100%;
  }
  [tripnav-section~=bar] {
    padding-left: 2rem;
    display: grid;
    grid-template-columns: 1fr 3rem;
  }
}
@media (min-width: 0) {
  [mobile-nav-section~=toggle] {
    position: fixed;
    left: -9999px;
    top: -9999px;
  }
  [mobile-nav-section~=wrapper] {
    position: -webkit-sticky;
    position: sticky;
    top: 3rem;
    width: 100%;
    overflow: hidden;
    display: grid;
    z-index: 999;
    grid-column: 1/-1;
  }
  [mobile-nav-section~=stage] {
    transition: height 0.3s;
    transition-delay: 0.1s;
    height: 0;
    background-color: var(--color-bg-white);
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] {
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [mobile-nav-section~=stage] {
    height: calc(100vh - 7rem);
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: 5rem;
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [tripnav-section~=arrow] {
    transform: rotate(0);
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [tripnav-section~=icon] {
    background-color: transparent;
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [tripnav-section~=icon]::before {
    top: 0;
    transform: rotate(135deg);
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [tripnav-section~=icon]::after {
    top: 0;
    transform: rotate(-135deg);
  }
  [mobile-nav-section~=nav] ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  [mobile-nav-section~=nav] li {
    border-left: 1rem solid transparent;
    height: 2.75rem;
    border-bottom: 1px solid var(--brand-silver);
  }
  [mobile-nav-section~=nav] li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 1rem;
    color: var(--color-text-link-dark);
    font-weight: var(--font-weight-header);
  }
  [mobile-nav-section~=nav] li a[href*=-itin] {
    position: relative;
    margin-left: 0.25rem;
    font-size: 15px;
    line-height: 1;
  }
  [mobile-nav-section~=nav] li a[href*=-itin]::before {
    content: "‣";
    padding-right: 0.5rem;
  }
  [mobile-nav-section~=nav] li.active a {
    color: var(--color-text-dark);
  }
  [mobile-nav-section~=footer] {
    align-self: end;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--brand-color-gray--light);
    justify-items: center;
  }
  [mobile-nav-section~=button] {
    padding: 1rem 0.5rem;
    color: white;
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-header);
    text-align: center;
    text-transform: none;
    display: grid;
    place-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: var(--button-or-input-max-height);
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    padding: var(--space-s) var(--space-m);
    color: var(--color-cta-primary-text);
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
    letter-spacing: 0.5px;
    filter: brightness(110%);
    cursor: pointer;
    border-radius: var(--border-radius-small);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [mobile-nav-section~=wrapper] {
    position: absolute;
    right: 0;
    top: 3rem;
    width: 33.33%;
  }
  [mobile-nav-section~=stage] {
    box-shadow: -0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.18);
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [mobile-nav-section~=wrapper] {
    overflow: visible;
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [mobile-nav-section~=stage] {
    height: auto;
    max-height: calc(100vh - 7rem);
  }
  [mobile-nav-section~=footer] {
    grid-template-columns: 1fr;
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] {
    overflow: visible;
  }
  [mobile-nav-section~=toggle]:checked ~ [tripnav-section~=wrapper] [mobile-nav-section~=stage] {
    padding-bottom: unset;
  }
}
@media (min-width: 768px) {
  [tripnav=wrapper] {
    --hero-top-position: calc((var(--hero-height) - var(--masthead-height) - 2.5rem) * -1);
    --tripnav-top-position: 1rem;
    position: -webkit-sticky;
    position: sticky;
    top: var(--tripnav-top-position);
    grid-area: subnav;
    justify-self: end;
    left: 0;
    transition: top 0.25s ease-in-out;
  }
  [tripnav=wrapper].js-static-nav {
    position: static;
  }
  [masthead].js-masthead-show ~ [main] [tripnav~=wrapper] {
    --tripnav-top-position: 9rem;
  }
  [hero~=wrapper]:not(.js-static-hero) ~ [main] [tripnav~=wrapper] {
    --tripnav-top-position: calc(var(--hero-height) + var(--hero-top-position));
  }
}
@media (min-width: 768px) and (orientation: portrait) and (min-width: 768px) {
  [tripnav=wrapper] {
    --hero-height: 50vh;
  }
}
@media (min-width: 768px) {
  [tripnav=nav] li a {
    display: block;
    line-height: var(--line-height-header);
    padding: 1rem;
    font-weight: 500;
    color: var(--color-nav-left-text);
    white-space: nowrap;
    transition: all 150ms ease-out;
    position: relative;
  }
  [tripnav=nav] li:not(.active):hover a {
    color: var(--color-nav-left-text-hover);
    background-image: var(--gradient-silver-reverse);
    border-radius: 6px;
  }
  [tripnav=nav] li.active a {
    font-weight: var(--font-weight-header);
    color: var(--color-bg-white);
    background-image: var(--color-cta-primary-bg-gradient);
    border-radius: 6px;
    filter: brightness(110%);
    z-index: 1;
  }
  [tripnav=nav] li.active {
    border-top: 1px solid var(--color-bg-white);
  }
  [tripnav=nav] li a[href*=-itin] {
    position: relative;
    display: grid;
    align-content: center;
    justify-content: start;
    padding-left: 0.75rem;
    height: 30px;
    margin-left: 2rem;
    font-size: 15px;
    line-height: 1;
  }
  [tripnav=nav] li a[href*=-itin]::before {
    content: "";
    display: block;
    position: absolute;
    left: -10px;
    top: -15px;
    height: 100%;
    width: 1px;
    background-color: lightgray;
    text-align: left;
    z-index: -1;
    filter: brightness(90%);
  }
  [tripnav=nav] li a[href*=-itin]::after {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: lightgray;
    left: -12px;
    top: 12px;
    filter: brightness(90%);
  }
  [tripnav=nav] li:not(.active):hover a[href*=-itin] {
    background-image: var(--gradient-silver-reverse);
    border-radius: 6px;
  }
  [tripnav=nav] li.active a[href*=-itin] {
    z-index: -1;
  }
  [tripnav=nav] li.active a[href*=-itin]::after {
    filter: brightness(80%);
    z-index: -1;
  }
  [tripnav=nav] li:not(.active):not(:nth-of-type(1))::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 1px;
    margin: auto;
    background-image: var(--gradient-silver-reverse);
    z-index: -1;
  }
  [tripnav=nav] li.active + li.active {
    background-image: none !important;
    margin-top: 1px;
  }
  .removeSubSub.removeSubSub.removeSubSub:not(.active)::before {
    background-image: none;
  }
  [tripnav=nav] li.removeSubSub:not(:last-child) + li.removeSubSub {
    margin-bottom: 0.75rem;
  }
}
@media (max-height: 800px) {
  [tripnav=nav] li a {
    padding: 1.75vh;
  }
}
[subpage~=middle] {
  grid-area: middle;
}

[subpage~=subpage-slideshow] [content~=wrapper] {
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  [subpage~=wrapper] {
    display: grid;
    grid-template-areas: "middle";
    grid-template-columns: 100%;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    align-items: start;
    max-width: 90vw;
    margin: 0 auto;
  }
  [subpage~=accommodation-landing] {
    margin-top: 10rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [subpage~=wrapper] {
    display: grid;
    grid-template-areas: "vert 	middle";
    grid-template-columns: 1fr 85%;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    align-items: start;
    justify-content: space-around;
    max-width: 90vw;
    margin: 0 auto;
    padding: 2rem 0;
  }
  [subpage~=trip] {
    grid-template-areas: "ctas	middle";
  }
  [subpage~=search] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(60vw, 1920px);
    padding: 2rem 5vw;
    padding-top: 5rem;
  }
  [subpage~=accommodation-landing] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(60vw, 1920px);
    padding: 2rem 6.25vw;
  }
  [subpage~="404"] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(80vw, 1920px);
    padding: 2rem 40vw;
  }
  [subpage~=destination] {
    grid-template-areas: "middle";
    grid-template-columns: min(100%, 1600px);
    justify-content: space-between;
    -moz-column-gap: min(5rem, 2.5vw);
         column-gap: min(5rem, 2.5vw);
    padding: var(--space-s);
  }
  [subpage~=guide] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(80vw, 1920px);
    padding: 2rem 40vw;
  }
  [subpage~=sitemap] {
    grid-template-areas: "vert middle";
    grid-template-columns: min(5vw, 5rem) minmax(80vw, 1920px);
    justify-content: space-between;
    -moz-column-gap: min(5rem, 2.5vw);
         column-gap: min(5rem, 2.5vw);
    padding: 2rem min(5rem, 2.5vw);
  }
  [subpage~=blog] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(80vw, 1920px);
    padding: 2rem 40vw;
  }
}
@media (min-width: 1024px) {
  [subpage~=wrapper] {
    display: grid;
    grid-template-areas: "subnav middle vert";
    grid-template-columns: auto minmax(50%, 1280px) auto;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    align-items: start;
    justify-content: space-around;
    max-width: min(95vw, 1600px);
    margin: 0 auto;
    padding: 3rem 0;
  }
  [subpage~=trip] {
    grid-template-areas: "subnav 	middle 		ctas";
  }
  [subpage*=subpage] {
    grid-template-areas: "subnav 	middle 		vert";
  }
  [subpage~=search] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(60vw, 1920px);
    padding: 2rem 6.25vw;
  }
  [subpage~=accommodation-landing] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(60vw, 1200px);
    padding: 2rem 6.25vw;
  }
  [subpage~="404"] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(50vw, 1920px);
    padding: 2rem 25vw;
  }
  [subpage~=destination] {
    grid-template-areas: "vert middle";
    justify-content: space-between;
    -moz-column-gap: min(5rem, 10vw);
         column-gap: min(5rem, 10vw);
    padding: 2rem min(5rem, 10vw);
  }
  [subpage~=destination] [trip-name-vert] {
    display: block;
  }
  [subpage~=destination-w-repeater] {
    grid-template-areas: "subnav 	middle 		vert";
  }
  [subpage~=sitemap] {
    grid-template-areas: "middle vert";
    grid-template-columns: minmax(60vw, 1920px) min(20vw, 5rem);
    justify-content: space-between;
    -moz-column-gap: min(5rem, 10vw);
         column-gap: min(5rem, 10vw);
    padding: 2rem min(5rem, 10vw);
  }
  [subpage~=blog] {
    grid-template-areas: "middle";
    grid-template-columns: minmax(50vw, 1920px);
    padding: 2rem 25vw;
  }
  [subpage~=subpage-slideshow] {
    grid-template-areas: "subnav middle vert";
    grid-template-columns: auto minmax(50%, 1240px) auto;
  }
  [subpage~=guide] {
    grid-template-areas: "subnav middle";
    grid-template-columns: auto minmax(50%, 1920px);
  }
  [subpage~=updated] {
    -moz-column-gap: 4.75rem;
         column-gap: 4.75rem;
  }
}
[subpage~=updated] {
  padding: 2rem 0;
}

@media (min-width: 0) {
  [tagline~=wrapper] {
    grid-area: name;
    padding: 1.5rem 0;
    padding-right: 1rem;
    font-family: var(--font-family-body);
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    line-height: var(--line-height-header);
    text-wrap: balance;
  }
}
@media (min-width: 768px) {
  [tagline~=wrapper] {
    width: 100%;
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  [tagline~=wrapper] {
    width: 100%;
  }
}
@media (min-width: 0) {
  [intro~=wrapper] {
    grid-area: content;
    line-height: var(--line-height-body);
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    padding-bottom: 2rem;
  }
  [intro~=wrapper] strong span {
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.25s ease-in-out;
    color: var(--color-text-dark);
  }
  [intro~=wrapper] strong span:hover {
    border-bottom: 1px solid var(--color-bg-red);
  }
  [intro~=wrapper] a {
    font-weight: var(--font-weight-header);
    color: var(--color-text-link-dark);
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.25s ease-in-out;
  }
  [intro~=wrapper] a:hover {
    border-bottom: 1px solid var(--color-text-link-dark);
  }
}
@media (min-width: 768px) {
  [intro~=wrapper] {
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    padding: 0 3rem 2rem 0;
  }
}
@media (min-width: 1024px) {
  [intro~=wrapper],
  [intro~=wrapper] .enso-overlay-content {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    line-height: var(--line-height-body);
  }
}
@media only screen and (min-width: 0) {
  [pricing~=wrapper] {
    grid-area: pricing;
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--color-text-link-dark);
    padding-bottom: 0.5rem;
  }
  [pricing~=wrapper] a {
    color: var(--color-text-link-dark);
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.25s ease-in-out;
    font-weight: var(--font-weight-header);
  }
  [pricing~=first-group] {
    display: grid;
    grid-template-areas: "icon text";
    grid-template-columns: 25px auto;
    align-items: start;
    justify-items: start;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  [pricing~=group] {
    display: block;
  }
  [pricing~=row] {
    display: block;
  }
  [pricing~=row]:last-of-type {
    margin-bottom: 0.5rem;
  }
  [pricing~=days] {
    font-weight: var(--font-weight-header);
  }
  [pricing~=travelers],
  [pricing~=cost],
  [pricing~=suffix] {
    font-weight: 600;
  }
  [pricing~=travelers]:before {
    content: "Limited to ";
  }
  [pricing~=travelers]:after {
    content: " Travelers";
  }
  [pricing~=suffix] {
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
  }
  [pricing~=item] {
    grid-area: text;
    margin-bottom: 0.5rem;
  }
  [link~=trip-details] {
    margin-right: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  [link~=make-it-private],
  [link~=photo-departure],
  [link~=carbon] {
    display: grid;
    grid-template-areas: "icon text";
    align-items: center;
    justify-items: start;
    font-weight: 600;
  }
  [link~=make-it-private]:not(.show),
  [link~=photo-departure]:not(.show),
  [link~=carbon]:not(.show) {
    display: none;
  }
  [link~=make-it-private] {
    grid-template-columns: 28px auto;
    -moz-column-gap: 0.3rem;
         column-gap: 0.3rem;
    margin-right: 1rem;
  }
  [link~=photo-departure] {
    grid-template-columns: 28px auto;
    -moz-column-gap: 0.3rem;
         column-gap: 0.3rem;
    margin-right: 1rem;
  }
  [link~=carbon] {
    grid-template-columns: 28px auto;
    -moz-column-gap: 0.3rem;
         column-gap: 0.3rem;
    margin-right: 1rem;
  }
  [icon~=calendar] {
    width: 28px;
    grid-area: icon;
    fill: var(--color-text-link-dark);
  }
  [icon~=location] {
    width: 22px;
    grid-area: icon;
    justify-self: center;
    stroke: var(--color-text-link-dark);
  }
  [icon~=camera] {
    width: 30px;
    grid-area: icon;
    justify-self: start;
    stroke: var(--color-text-link-dark);
  }
  [icon~=carbon] {
    width: 24px;
    grid-area: icon;
    justify-self: start;
    fill: var(--color-text-link-dark);
  }
}
@media only screen and (min-width: 768px) {
  [pricing~=days],
  [pricing~=travelers],
  [pricing~=cost],
  [pricing~=suffix],
  [link~=make-it-private],
  [link~=photo-departure] {
    font-weight: unset;
  }
  [pricing~=wrapper] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    font-weight: 700;
  }
  [pricing~=wrapper] a:hover {
    border-bottom: 1px solid var(--color-text-link-dark);
  }
  [pricing~=group] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  [pricing~=days]:after {
    content: " / ";
  }
  [pricing~=travelers]:after {
    content: " Travelers / ";
  }
  [pricing~=row] {
    display: inline;
  }
  [pricing~=row]:last-of-type {
    margin-bottom: 0;
  }
}
[ctas~=sticky] {
  display: none;
}
[ctas~=sticky] [custom~=button] {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  background-color: var(--brand-color-orange);
  border-radius: var(--border-radius--rounded);
}
[ctas~=sticky] [custom~=button][custom~=button] a {
  color: var(--white);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: 700;
  border-bottom: none;
}
[ctas~=sticky] [custom~=button]:hover {
  background-color: var(--brand-color-orange--hover);
}
[ctas~=sticky] [custom~=button][custom~=button] a:hover {
  border-bottom: none;
}
[ctas~=sticky] [custom~=button] {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  background-color: var(--brand-color-orange);
  border-radius: var(--border-radius--rounded);
  color: var(--white);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: 700;
}
[ctas~=sticky] [custom~=button]:hover {
  background-color: var(--brand-color-orange--hover);
}

@media (min-width: 768px) {
  [ctas~=sticky] {
    --hero-top-position: calc((var(--hero-height) - var(--masthead-height) - 2.5rem) * -1);
    --ctas-top-position: 4rem;
    --grid-gap: 1rem;
    grid-area: ctas;
    position: -webkit-sticky;
    position: sticky;
    top: var(--ctas-top-position);
    display: grid;
    gap: var(--grid-gap);
    justify-self: start;
    transition: top 0.25s ease-in-out;
    z-index: 20;
  }
}
@media (min-width: 768px) and (max-height: 500px) {
  [ctas~=sticky] {
    --grid-gap: 0.5rem;
  }
}
@media (min-width: 768px) and (orientation: portrait) and (min-width: 768px) {
  [ctas~=sticky] {
    --hero-height: 50vh;
  }
}
@media (min-width: 768px) {
  [ctas=sticky].js-static-ctas {
    position: static;
  }
  [masthead].js-masthead-show ~ [main] [ctas~=sticky] {
    --ctas-top-position: 9rem;
  }
  [ctas~=cta] {
    width: 6rem;
    height: 6rem;
    display: block;
    color: var(--color-cta-secondary-text-trip);
    text-align: center;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-header);
    line-height: var(--line-height-1);
    cursor: pointer;
    border-radius: 6px;
  }
  [ctas~=center] {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    margin-top: 0.25rem;
  }
  [ctas~=primary] {
    color: var(--color-cta-primary-text);
    background-image: var(--color-cta-primary-bg-gradient);
    filter: brightness(110%);
  }
  [ctas~=primary] .cta-icon-full {
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 0.3rem;
  }
  [ctas~=primary] .cta-icon-path {
    fill: var(--color-cta-primary-text);
  }
  [ctas~=primary] .book-static {
    fill: var(--color-cta-primary-text);
  }
  [ctas~=primary] #book-clip-path {
    fill: none;
    stroke: var(--color-cta-primary-text);
    stroke-width: 8px;
    stroke-linecap: round;
    stroke-dasharray: 720;
    stroke-dashoffset: 720;
    -webkit-clip-path: url(#book-clip);
            clip-path: url(#book-clip);
  }
  [ctas~=primary] .cta-text {
    color: var(--color-cta-primary-text);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
    padding: 0 0.25rem;
    text-transform: none;
    line-height: var(--line-height-header);
  }
  [ctas~=secondary] .cta-icon-full {
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 0.3rem;
  }
  [ctas~=secondary] .cta-icon-path {
    fill: var(--color-cta-secondary-text-trip);
  }
  [ctas~=secondary] .cta-text {
    color: var(--color-cta-secondary-text-trip);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
    padding: 0;
    text-transform: none;
    line-height: var(--line-height-header);
  }
  [ctas~=secondary] .ask-animate .cta-icon-path {
    transition: fill 0.25s ease;
  }
  [ctas~=secondary] .ask-animate .ask-animate-circle {
    stroke-width: 3px;
    stroke: var(--color-cta-secondary-text-trip);
    fill: none;
    transition: fill 0.25s ease;
  }
}
@media (min-width: 1024px) {
  [ctas~=sticky] {
    --ctas-top-position: 1.5rem;
    margin: 4.5rem 0 1.25rem 0 !important;
  }
  [masthead].js-masthead-show ~ [main~=wrapper] [ctas~=sticky] {
    --ctas-top-position: 9rem;
  }
  [hero~=wrapper]:not(.js-static-hero) ~ [main~=wrapper] [ctas=sticky] {
    --ctas-top-position: 12rem;
  }
  [subpage~=trip] [ctas~=sticky] {
    margin-top: 4.65rem;
  }
  [ctas~=primary]:hover {
    background-color: var(--color-cta-primary-bg-hover);
    filter: brightness(120%);
  }
  [ctas~=primary]:hover #book-clip-path {
    transition: stroke-dashoffset 6s linear 0.25s;
    stroke-dashoffset: 0;
  }
  [ctas~=primary]:hover .book-static {
    opacity: 0;
  }
  [ctas~=primary]:hover .book-clip path {
    fill: none;
    pointer-events: all;
  }
  [ctas~=secondary]:hover .ask-animate .cta-icon-path {
    fill: var(--color-cta-primary-text);
  }
  [ctas~=secondary]:hover .ask-animate .ask-animate-circle {
    stroke: var(--color-cta-secondary-text-trip);
    fill: var(--color-cta-secondary-text-trip);
  }
  [ctas~=secondary]:hover .ask-icon-full {
    width: 75%;
    height: auto;
  }
  [ctas~=secondary]:hover .pdf-animate {
    animation: bounce 1.25s infinite;
  }
  [ctas~=secondary]:hover .share-animate {
    transform: translate(3px, -3px);
    transform-origin: 55%, 55%;
  }
  [ctas~=secondary]:hover .share-animate .share-animate-expand {
    opacity: 1;
  }
}
.booknowoff {
  display: none;
}

.disallow-book-now {
  display: none !important;
}

@keyframes bounce {
  0%, 25%, 50%, 75%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(3px);
  }
}
[slideshow~=outer] * {
  scrollbar-width: none;
}

[slideshow~=outer] {
  display: grid;
  grid-template-rows: calc(100% - 80px) 1fr;
  align-items: start;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

[slideshow~=wrapper] {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}

[slideshow~=thumbnail] {
  min-width: 5rem;
  height: 80px;
  cursor: pointer;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  position: relative;
}
@media (min-width: 720px) {
  [slideshow~=thumbnail] {
    min-width: 9.5rem;
  }
}

[slideshow~=thumbnail-image] {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 80px;
}

[slideshow~=thumbnail].image-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 6px solid var(--brand-ocean-medium);
  z-index: 1;
}

@media (min-width: 0) and (max-width: 767px) {
  [js-arrows~=wrapper] {
    display: none;
  }
}
@media (min-width: 768px) {
  [js-arrows~=wrapper] {
    position: absolute;
    width: 100%;
    top: 0;
    height: calc(100% - 1.5rem);
  }
  [js-arrows~=wrapper] svg {
    top: 50%;
    transform: translateY(-50%);
  }
  [js-arrow~=previous],
  [js-arrow~=next] {
    position: absolute;
    cursor: pointer;
    width: 5rem;
    stroke: black;
    stroke-width: 0.5rem;
    height: 100%;
    transition: all 500ms;
    transform-origin: 50% 50%;
    display: flex;
    z-index: 10;
  }
  [js-arrow~=previous] svg,
  [js-arrow~=next] svg {
    width: 4rem;
    margin: 0 auto;
  }
  [js-arrow~=previous] {
    left: 0;
  }
  [js-arrow~=next] {
    right: 0;
  }
  [js-arrow~=previous]:hover:not(.disabled),
  [js-arrow~=next]:hover:not(.disabled) {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
  }
  [js-arrow~=next].disabled,
  [js-arrow~=previous].disabled {
    opacity: 0.3;
    cursor: auto;
  }
}
[slideshow~=navigation] {
  display: flex;
  overflow: hidden;
  align-items: start;
  gap: 0.5rem;
  scroll-snap-type: x mandatory;
  width: 100%;
  scroll-behavior: smooth;
}

[slideshow~=slides] {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

[slideshow~=slides]::-webkit-scrollbar {
  display: none;
}

[slideshow~=slides]::-webkit-scrollbar-track {
  background: transparent;
}

[slide-new~=wrapper] {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  margin-right: 16px;
  aspect-ratio: 18/9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  [slide-new~=wrapper] {
    margin-bottom: 2.5rem;
  }
}

[slide~=text-wrapper] {
  position: absolute;
  bottom: -1.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (min-width: 768px) {
  [slide~=text-wrapper] {
    bottom: -2rem;
  }
}

[slide~=credit] {
  font-weight: normal;
  font-style: italic;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  [slide~=credit] {
    font-size: var(--font-size-body-small);
  }
}

[slide~=credit]:not(:empty):before {
  content: "©";
  margin-right: 2px;
  font-weight: bold;
}

[slide~=caption] {
  display: none;
  justify-self: end;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
@media (min-width: 768px) {
  [slide~=caption] {
    display: block;
    width: auto;
  }
}

[slide~=image] {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 100%;
  border-radius: var(--border-radius-small);
}

[slideshow~=new].show-old,
[slideshow~=old].show-new {
  display: none;
  position: relative;
}

[slideshow~=new].show-old::after,
[slideshow~=old].show-new::after {
  content: "Hidden";
  display: flex;
  place-items: center;
  place-content: center;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.8);
}

@supports not (aspect-ratio: 2/1) {
  [slide-new~=wrapper] {
    width: 100%;
    height: 0;
    padding-top: 50%;
  }
}
@media (min-width: 0) {
  [highlights-wrapper] {
    grid-area: highlights;
    padding: 2rem 0;
    line-height: var(--line-height-body);
    background-color: var(--color-bg-white);
    z-index: 50;
  }
  [highlights-title] {
    padding: 1rem 0;
    line-height: var(--line-height-header);
    text-align: center;
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
    font-family: var(--font-family-body);
  }
  [highlight] {
    padding: 1rem 0;
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    border-radius: var(--border-radius-small);
  }
  [wwf~=link] {
    padding: 1rem 0;
    display: grid;
  }
  [wwf~=link] em,
  [wwf~=link] i {
    display: none;
  }
  [wwf~=link] {
    margin-bottom: 0;
    border-radius: var(--border-radius-small);
  }
  [highlight-title] {
    display: block;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h5-fallback);
    font-size: var(--font-size-h5);
  }
  [wwf~=title] {
    display: block;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
  }
  [wwf~=logo] {
    justify-self: center;
    max-width: 72px;
  }
  [wwf~=text] {
    color: var(--color-text-dark);
  }
  [wwf~=underline] {
    color: var(--color-text-link-dark);
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  [wwf~=logo-title] {
    display: grid;
    grid-auto-flow: row;
  }
  [highlights-title] {
    font-size: var(--font-size-h2-fallback);
    font-size: var(--font-size-h2);
  }
}
@media (min-width: 768px) {
  [highlights-wrapper] {
    line-height: var(--line-height-body);
    padding: 2rem;
  }
  [highlights-title] {
    padding-bottom: 3rem;
  }
  [highlight] {
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: center;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    padding: 2rem 7.5%;
    margin-bottom: 1rem;
    background-image: var(--gradient-silver);
  }
  [wwf~=link] {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-column-gap: 2rem;
    align-items: center;
    padding: 2rem 7.5%;
    margin-top: 1rem;
    background-image: var(--color-cta-primary-bg-gradient);
    color: var(--color-text-light);
    margin-bottom: 0;
    filter: brightness(110%);
    transition: all 200ms ease-out;
  }
  [wwf~=link]:hover {
    filter: brightness(120%);
    transform: scale3d(1.03, 1.03, 1.03);
    cursor: pointer;
  }
  [highlight-title] {
    display: grid;
    align-content: center;
    border-right: 1px solid var(--color-bg-gray);
    text-align: right;
    min-height: 100%;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h5-fallback);
    font-size: var(--font-size-h5);
    padding-right: 2rem;
  }
  [wwf~=logo-title] {
    display: grid;
    row-gap: 0.75rem;
    align-items: center;
    justify-items: center;
    border-right: 1px solid var(--brand-silver);
  }
  [wwf~=logo] {
    max-width: 35px;
  }
  [wwf~=title] {
    display: grid;
    align-content: center;
    text-align: right;
    min-height: 100%;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h5-fallback);
    font-size: var(--font-size-h5);
    padding-right: 2rem;
  }
  [wwf~=text] {
    color: var(--color-text-light);
  }
  [wwf~=underline] {
    border-bottom: 1px solid var(--color-bg-white);
    color: var(--color-text-light);
  }
}
@media (min-width: 768px) {
  [highlights-wrapper] {
    line-height: var(--line-height-body);
    padding: 1.5rem;
  }
  [wwf~=logo-title] {
    display: grid;
    row-gap: 0.75rem;
    align-items: center;
    justify-items: center;
    border-right: 1px solid var(--color-bg-white-light);
  }
  [wwf~=logo] {
    max-width: 40px;
    justify-self: center;
  }
  [wwf~=title] {
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  [highlights-wrapper] {
    padding: 2rem 0;
  }
}
@media (min-width: 1600px) {
  [wwf~=logo-title] {
    display: grid;
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    align-items: center;
  }
  [wwf~=logo] {
    max-width: 60px;
    justify-self: end;
  }
  [wwf~=title] {
    padding-right: 2rem;
  }
}
[highlight-description] a {
  font-weight: var(--font-weight-header);
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.25s ease-in-out;
}

[highlight-description] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

.hide.js-enso-on {
  display: block;
}

#phototours {
  scroll-margin-top: 130px;
}

@media (max-width: 767px) {
  #phototours {
    scroll-margin-top: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #phototours {
    scroll-margin-top: 4rem;
  }
}
[subpage~=middle] {
  container-type: inline-size;
}

[photo-tours~=wrapper] {
  display: grid;
  margin-bottom: 1rem;
}

[photo-tours~=title] {
  padding: 2rem 0;
  line-height: var(--line-height-header);
  text-align: center;
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-family: var(--font-family-body);
}

[photo-tours~=link] {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: var(--button-or-input-max-height);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: var(--space-s) var(--space-m);
  color: var(--color-cta-primary-text);
  background-image: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  letter-spacing: 0.5px;
  filter: brightness(110%);
  cursor: pointer;
  border-radius: var(--border-radius-pill);
  border: 2px solid var(--color-bg-white);
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  justify-self: center;
  padding: 0 1.5rem;
  margin-top: var(--space-2xs);
}

[photo-tours~=link]:hover {
  animation: cta-primary-hover 250ms ease-out;
  animation-fill-mode: both;
  opacity: 1;
}

[photo-tours~=photo-primary] {
  width: 100%;
}

[photo-tours~=photo-primary-img],
[photo-tours~=photo-secondary-img] {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: var(--border-radius-small);
  width: 100%;
}

[video~=headline] {
  grid-column: 1/-1;
  padding: 3rem 0 2rem 0;
  line-height: var(--line-height-header);
  text-align: center;
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-family: var(--font-family-body);
}

@container (inline-size < 821px) {
  [photo-tours~=wrapper] {
    width: 100%;
    grid-template-columns: 1fr;
  }
  [photo-tours~=title] {
    padding: 1rem 0;
  }
  [photo-tours~=text] {
    display: grid;
  }
  [photo-tours~=intro] {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  [photo-tours~=photo-primary] {
    grid-row: 2;
    width: 100%;
  }
  [photo-tours~=photo-primary-img] {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-small);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  [photo-tours~=photo-secondary] {
    display: none;
  }
  [photo-tours~=link] {
    display: grid;
    place-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: var(--button-or-input-max-height);
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-body-fallback);
    font-size: var(--font-size-body);
    padding: var(--space-s) var(--space-m);
    color: var(--color-cta-primary-text);
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
    letter-spacing: 0.5px;
    filter: brightness(110%);
    cursor: pointer;
    border-radius: var(--border-radius-pill);
    border: 2px solid var(--color-bg-white);
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    justify-self: center;
    padding: 0 1.5rem;
    margin-top: var(--space-2xs);
  }
}
@container (inline-size > 821px) {
  [photo-tours~=wrapper] {
    grid-template-columns: 1fr 45%;
    row-gap: 1rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  [photo-tours~=title] {
    grid-column: 1/-1;
  }
  [photo-tours~=text] {
    display: grid;
    justify-content: center;
    align-content: start;
    gap: 1rem;
    grid-column: 1;
    grid-row: 2;
  }
  [photo-tours~=intro] {
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    font-family: var(--font-family-body);
  }
  [photo-tours~=link] {
    align-self: end;
  }
  [photo-tours~=photo-primary] {
    grid-column: 2/-1;
  }
  [photo-tours~=photo-primary-img] {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-small);
    -o-object-fit: cover;
       object-fit: cover;
  }
  [photo-tours~=photo-secondary] {
    width: 100%;
    display: grid;
    grid-column: 1/-1;
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
  [photo-tours~=photo-secondary-img] {
    width: 100%;
    border-radius: var(--border-radius-small);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 0) {
  [video~=wrapper] {
    overflow: hidden;
    z-index: 50;
  }
  .wistia_responsive_padding {
    padding: 56.25% 0 0 0;
    position: relative;
  }
  .wistia_responsive_wrapper iframe {
    border-radius: var(--border-radius-small);
  }
  .wistia_responsive_wrapper {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  iframe[src="https://fast.wistia.net/embed/iframe/?videoFoam=true"] {
    display: none;
  }
  [video~=cover] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 75;
  }
  [video~=title] {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 14%;
    color: var(--color-bg-white);
    font-family: var(--font-family-header);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
  }
  [title~=primary] {
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
  }
  [title~=secondary] {
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
  }
}
@media (min-width: 768px) {
  [video~=title] {
    bottom: 16%;
  }
  [title~=primary] {
    font-size: var(--font-size-h2-fallback);
    font-size: var(--font-size-h2);
  }
  [title~=secondary] {
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
  }
  [subpage~=videos] [video~=wrapper] [title~=primary],
  [subpage~=trip] [video~=wrapper] [title~=primary] {
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-h2-fallback);
    font-size: var(--font-size-h2);
  }
  [subpage~=videos] [video~=wrapper] [title~=secondary],
  [subpage~=trip] [video~=wrapper] [title~=secondary] {
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    line-height: var(--line-height-body);
  }
}
@media (min-width: 1024px) {
  [video~=title] {
    bottom: 22%;
  }
  [title~=primary] {
    font-size: var(--font-size-h1-fallback);
    font-size: var(--font-size-h1);
  }
  [title~=secondary] {
    font-size: var(--font-size-h2-fallback);
    font-size: var(--font-size-h2);
  }
}
@media (min-width: 2560px) {
  [title~=primary] {
    font-size: 5rem;
  }
  [title~=secondary] {
    font-size: 3.5rem;
  }
}
@media (min-width: 0) {
  [reasons~=wrapper] {
    grid-area: reasons;
    line-height: var(--line-height-body);
    padding: 2rem 0;
  }
  [reasons~=wrapper] a,
  [reasons~=wrapper] strong a,
  [reasons~=wrapper] a strong {
    font-weight: var(--font-weight-header);
    color: var(--color-text-link-dark);
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.25s ease-in-out;
    transform: translate3D(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  [reasons~=wrapper] a:hover,
  [reasons~=wrapper] a strong:hover,
  [reasons~=wrapper] strong a:hover {
    border-bottom: solid 1px var(--color-text-link-dark);
  }
  [reasons~=wrapper] iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    padding: 1rem 0;
  }
  [reasons=anchor-link] {
    position: absolute;
    top: -50px;
    left: 0;
  }
  [reasons~=title] {
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    line-height: var(--line-height-header);
  }
  [reasons~=text] ol {
    position: relative;
    list-style: none;
    list-style-position: outside;
    counter-reset: reasons;
  }
  [reasons~=text] li {
    margin-bottom: 2rem;
  }
  [reasons~=text] li {
    margin-top: 0.5rem;
    padding-left: 3.5rem;
  }
  [reasons~=text] li:before {
    counter-increment: reasons;
    content: counter(reasons, decimal);
    position: absolute;
    left: 0;
    color: var(--black--transparent-6);
    background-image: var(--gradient-silver-radial);
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    border-radius: var(--border-radius-small);
    text-align: center;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  [reasons~=text] li > strong:first-of-type {
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h5-fallback);
    font-size: var(--font-size-h5);
    line-height: var(--line-height-header);
    padding-bottom: 1rem;
  }
  [reasons~=text] li > a,
  [reasons~=text] li > a strong,
  [reasons~=text] li > strong a {
    font-weight: var(--font-weight-header);
    color: var(--color-text-link-dark);
  }
  [reasons~=text] li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  [reasons=anchor-link] {
    top: -135px;
  }
  [reasons~=title] {
    font-family: var(--font-family-body);
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
  }
  [reasons~=text] {
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
  }
  [reasons~=text] li {
    padding-left: 4rem;
  }
}
@media (min-width: 1024px) {
  [reasons=anchor-link] {
    top: -100px;
  }
  [reasons~=text] li {
    padding-left: 4rem;
  }
}
@media (max-width: 767px) {
  [reviews~=wrapper] h3 {
    padding-bottom: 1rem;
  }
}
[reviews~=wrapper] {
  grid-area: reviews;
  line-height: var(--line-height-body);
}
[reviews~=wrapper] h1::after {
  border: 3px solid red;
  content: "Content Error: h1 tags are not allowed.";
}
[reviews~=wrapper] h2,
[reviews~=wrapper] h3,
[reviews~=wrapper] h4,
[reviews~=wrapper] h5,
[reviews~=wrapper] h6 {
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-header);
}
[reviews~=wrapper] h2 {
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
}
[reviews~=wrapper] h3 {
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
}
[reviews~=wrapper] h4 {
  font-size: var(--font-size-h5-fallback);
  font-size: var(--font-size-h5);
}
[reviews~=wrapper] h5 {
  font-size: var(--font-size-h6-fallback);
  font-size: var(--font-size-h6);
}
[reviews~=wrapper] h6 {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
}

@media (min-width: 0) {
  [repeater~=title] {
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    line-height: var(--line-height-header);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    margin-bottom: 1rem;
  }
  [repeater-wrapper] {
    width: 100%;
    grid-area: repeater;
    display: grid;
    grid-template-columns: 100%;
    line-height: var(--line-height-body);
    z-index: 0;
  }
  [repeater-trips] {
    width: 100%;
    max-width: min(90vw, 1600px);
    display: grid;
    grid-template-columns: 100%;
    position: relative;
    row-gap: 1rem;
  }
  [repeater-trips].trip-show-non-trip,
  [repeater-trips].trip-show-,
  [repeater-trips].non-trip-show-trip,
  [repeater-trips].non-trip-show- {
    display: none;
  }
  [repeater-photo] {
    z-index: 1;
    overflow: hidden;
    border-top-left-radius: var(--border-radius-small);
  }
  [settings*=vertical] [repeater-photo] {
    aspect-ratio: 16/9;
  }
  [repeater-photo]:not([repeater-wrapper][settings~=horizontal] [repeater-photo]) {
    border-top-right-radius: var(--border-radius-small);
  }
  [repeater-img] {
    width: 100%;
    height: 100%;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -10;
    transition: all 0.75s ease;
    vertical-align: bottom;
  }
  [repeater-badge] {
    position: absolute;
    top: 4.5%;
    right: 2.5%;
    width: 25%;
    max-width: 236px;
    height: auto;
    z-index: 1;
  }
  [repeater-tag-vert] {
    display: none;
  }
  [repeater-tag] {
    position: absolute;
    left: 0;
    bottom: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0.3em 0.8em;
    color: var(--color-bg-white);
    background-color: var(--brand-tundra);
    text-shadow: var(--shadow-text-1);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-body-smallest-fallback);
    font-size: var(--font-size-body-smallest);
    filter: saturate(120%);
    z-index: 3;
  }
  [repeater-name] {
    padding: 1.5rem 1.75rem 0.5rem 1.75rem;
    width: 100%;
    font-weight: var(--font-weight-header);
    font-family: var(--font-family-body);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    line-height: var(--line-height-header);
    color: var(--color-text-link-dark);
  }
  [repeater-details] {
    padding-inline: 1.75rem;
    width: 100%;
    border-bottom-left-radius: var(--border-radius-small);
    border-bottom-right-radius: var(--border-radius-small);
  }
  [repeater-description] {
    padding: 0 0 1rem 0;
  }
  [repeater-pricing] {
    font-weight: var(--font-weight-header);
    padding-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  [repeater~=title]:not(:first-of-type) {
    padding-top: var(--space-2xl);
  }
}
@media (min-width: 768px) {
  [settings~=vertical] [repeater~=title] {
    width: 90%;
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
  }
  [settings~=vertical] [repeater-trip] {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    align-content: start;
    border-radius: var(--border-radius-small);
  }
  [settings~=vertical] [repeater-description] {
    font-size: var(--font-size-body);
    grid-gap: 0;
    align-content: start;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 600px;
  }
  [settings~=vertical] [repeater-img] {
    position: relative;
  }
  [repeater~=title]:not(:first-of-type) {
    line-height: var(--line-height-double);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    padding-top: var(--space-sm);
  }
  [repeater~=title]:first-of-type {
    line-height: var(--line-height-double);
    font-size: var(--font-size-h3-fallback);
    font-size: var(--font-size-h3);
    padding-top: var(--space-s);
  }
  [repeater~=title]:not(:first-of-type):empty {
    padding-top: 0;
    margin-bottom: 0;
  }
  [repeater-name] {
    font-size: var(--font-size-h5-fallback);
    font-size: var(--font-size-h5);
    width: 100%;
  }
  [repeater-img] {
    border-bottom: none;
  }
  [repeater-tag] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: table;
    width: auto;
    padding: 0.3em 0.8em;
    color: var(--color-bg-white);
    background-color: var(--brand-tundra);
    text-shadow: var(--shadow-text-1);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    font-weight: var(--font-weight-header);
    font-size: var(--font-size-body-smallest-fallback);
    font-size: var(--font-size-body-smallest);
    filter: saturate(120%);
    z-index: 3;
  }
  [repeater~=medium] {
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
  }
  [repeater-details] {
    width: 95%;
  }
}
@media (min-width: 1024px) {
  [settings~=vertical] [repeater-trips] {
    grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    row-gap: 1.5rem;
    margin-bottom: var(--space-2xl);
  }
  [repeater-trip]:hover [repeater-img],
  [repeater-non-trip]:hover [repeater-img] {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  [repeater-trip]:hover,
  [repeater-non-trip]:hover {
    box-shadow: var(--shadow-5);
    cursor: pointer;
  }
  [regions~=wrapper] [repeater-trips] {
    width: 100%;
  }
  [settings~=small-images] [repeater-trip]:hover [repeater-img],
  [settings~=small-images] [repeater-non-trip]:hover [repeater-img] {
    width: 100%;
    height: auto;
  }
  [settings~=small-images] [repeater-trip]:hover,
  [settings~=small-images] [repeater-non-trip]:hover {
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: none;
  }
}
@media (min-width: 0) {
  [settings~=small-images] {
    grid-template-columns: minmax(auto, 100%);
  }
  [settings~=small-images] [repeater-trips] {
    max-width: unset;
  }
  [settings~=small-images] [repeater~=title] {
    width: 100%;
    font-size: var(--font-size-h4-fallback);
    font-size: var(--font-size-h4);
  }
  [settings~=small-images] [repeater-trip],
  [settings~=small-images] [repeater-non-trip] {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border-top: 1px solid var(--brand-silver);
    border-left: 1px solid var(--brand-silver);
    border-right: 1px solid var(--brand-silver);
    border-bottom: 1px solid var(--brand-silver);
    border-radius: var(--border-radius-small);
  }
  [settings~=small-images] [repeater-trip] {
    align-content: start;
  }
  [settings~=small-images] [repeater-photo] {
    padding-top: 0;
    border-radius: var(--border-radius-small);
    align-self: start;
  }
  [settings~=small-images] [repeater-img] {
    position: relative;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: var(--border-radius-small);
  }
  [settings~=small-images] [repeater-text] {
    padding: 0 1.5rem;
    border: none;
  }
  [settings~=small-images] [repeater-text]:before {
    content: none;
  }
  [settings~=small-images] [repeater-tag] {
    top: 0;
  }
  [settings~=small-images] [repeater-name] {
    padding: 0;
    width: 100%;
    line-height: var(--line-height-header);
  }
  [settings~=small-images] [repeater-details] {
    padding: 0;
    width: 100%;
  }
  [settings~=small-images] [repeater-description] {
    padding: 0;
  }
  [settings~=small-images] [repeater-pricing] {
    font-weight: var(--font-weight-header);
    padding-bottom: 0;
  }
  [settings~=small-images] [repeater-non-trip] [repeater-text],
  [settings~=small-images] [repeater-non-trip] [repeater-button-non-trip] {
    grid-column: 2;
  }
}
@media (min-width: 1024px) {
  [settings~=small-images] [repeater-trips] {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 2rem;
  }
  [settings~=small-images] [repeater-trip],
  [settings~=small-images] [repeater-non-trip] {
    margin-bottom: 0;
  }
  [settings~=small-images] [repeater-non-trip] [repeater-photo] {
    grid-column: 1;
    grid-row: span 2;
  }
  [settings~=small-images] [repeater-text] {
    padding: 0;
  }
}
@keyframes scaleUp {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
[modal-slideshow-dialog] {
  --slideshow-width-min-px: 1600px;
  --slideshow-width-min-vw: 80vw;
  --slideshow-height-min-px: 760px;
  --slideshow-height-min-vh: 80vh;
  --slideshow-grid-column-width: 65%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: min(var(--slideshow-width-min-px), var(--slideshow-width-min-vw));
  border-radius: var(--border-radius-small);
  overflow: hidden;
  z-index: 99999;
  transform: scale(0);
  animation: scaleUp 700ms ease-in-out forwards;
  animation-delay: 75ms;
}

[modal-slideshow-dialog][open] {
  display: grid;
  align-content: start;
}

[modal-slideshow-dialog][open]::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

[modal-slideshow-header] {
  height: 60px;
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr 4rem;
  place-items: center left;
  padding-left: 1rem;
  color: var(--color-bg-white);
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  background-image: unset;
  background: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
}

[modal-slideshow-close] {
  all: unset;
  display: flex;
  width: 80%;
  height: 80%;
  place-items: center;
  place-content: center;
  transition: all 0.3s ease-out;
  cursor: pointer;
  border-radius: 100%;
  z-index: 6001;
}

[modal-slideshow-close] svg {
  transition: transform 300ms ease-in-out;
  width: 16px;
  height: 16px;
}

[modal-slideshow-close]:hover svg {
  transform: scale(1.25);
}

[modal-slideshow-body] {
  height: min(var(--slideshow-height-min-px), var(--slideshow-height-min-vh));
  display: grid;
  grid-template-columns: var(--slideshow-grid-column-width) 1fr;
  border-bottom-left-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
}

[modal-slideshow-slideshow] {
  height: min(var(--slideshow-height-min-px), var(--slideshow-height-min-vh));
  padding: 1rem;
  overflow: hidden;
}

[modal-slideshow-description] {
  height: min(var(--slideshow-height-min-px), var(--slideshow-height-min-vh));
  padding-block: 2.5rem;
  padding-inline-start: 1.5rem;
  padding-inline-end: 2.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}
[modal-slideshow-description] h2,
[modal-slideshow-description] h3,
[modal-slideshow-description] h4,
[modal-slideshow-description] h5,
[modal-slideshow-description] h6 {
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-header);
}
[modal-slideshow-description] h2 {
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
}
[modal-slideshow-description] h3 {
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
}
[modal-slideshow-description] h4 {
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
}
[modal-slideshow-description] h5 {
  font-size: var(--font-size-h5-fallback);
  font-size: var(--font-size-h5);
}
[modal-slideshow-description] h6 {
  font-size: var(--font-size-h6-fallback);
  font-size: var(--font-size-h6);
}
[modal-slideshow-description] img {
  max-width: 100%;
}
[modal-slideshow-description] a,
[modal-slideshow-description] a strong {
  font-weight: var(--font-weight-header);
  color: var(--color-text-link-dark);
  transition: border 0.5s ease-in-out;
  border-bottom: 1px transparent var(--color-text-link-dark);
}
[modal-slideshow-description] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}
[modal-slideshow-description] strong {
  font-size: inherit;
}
[modal-slideshow-description] ul {
  padding-right: clamp(1rem, 2vw, 4rem);
  padding-bottom: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(25ch, 1fr));
  place-content: start;
}
[modal-slideshow-description] ul li {
  list-style-image: url(/assets/images/icons/chevron-right--updated.png);
  list-style-position: outside;
  padding-left: 0.5rem;
  margin-left: 1.5rem;
}
[modal-slideshow-description] ul li strong:first-of-type {
  font-family: var(--font-family-header);
  font-size: var(--font-size-h5-fallback);
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-header);
}
[modal-slideshow-description] ol {
  counter-reset: bullets;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
}
[modal-slideshow-description] ol li {
  list-style-position: inside;
  padding-left: 0.5rem;
  margin-left: 0.75rem;
  counter-increment: bullets;
}
[modal-slideshow-description] ol li::before {
  content: counter(bullets) ") ";
  position: absolute;
  left: -15px;
  font-weight: var(--font-weight-header);
}
[modal-slideshow-description] ol li + li {
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  [modal-slideshow-dialog] {
    --slideshow-width-min-px: 600px;
    --slideshow-width-min-vw: 100vw;
    --slideshow-height-min-px: 400px;
    --slideshow-height-min-vh: 80vh;
    --slideshow-grid-column-width: 100%;
  }
  [modal-slideshow-header] {
    border-radius: 0;
  }
  [modal-slideshow-body] {
    height: min(var(--slideshow-height-min-px), var(--slideshow-height-min-vh));
    display: grid;
    grid-template-columns: var(--slideshow-grid-column-width);
    border-bottom-left-radius: var(--border-radius-small);
    border-bottom-right-radius: var(--border-radius-small);
  }
  [modal-slideshow-description] {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  [modal-slideshow-dialog] {
    --slideshow-width-min-px: 900px;
    --slideshow-width-min-vw: 100vw;
    --slideshow-height-min-px: 600px;
    --slideshow-height-min-vh: 80vh;
    --slideshow-grid-column-width: 100%;
  }
  [modal-slideshow-header] {
    border-radius: 0;
  }
  [modal-slideshow-body] {
    height: min(var(--slideshow-height-min-px), var(--slideshow-height-min-vh));
    display: grid;
    grid-template-columns: var(--slideshow-grid-column-width);
    border-bottom-left-radius: var(--border-radius-small);
    border-bottom-right-radius: var(--border-radius-small);
  }
}
[modal-stage~=physical] {
  opacity: inherit;
  position: fixed;
  margin: auto;
  top: -9999px;
  bottom: 0;
  left: 0;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(80vw, 1080px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(3rem, auto) minmax(auto, 1fr);
  border-radius: var(--border-radius-small);
  overflow: hidden;
  z-index: 6002;
}

[modal-stage~=show][modal-stage~=physical] {
  max-width: min(80vw, 1920px);
}

[modal-toggle]:checked + [modal] [modal-stage~=physical] {
  top: 0;
  pointer-events: all;
}

@media (max-width: 767px) {
  [modal-stage~=physical] {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 100%;
    height: calc(100% - 4.5rem);
    max-height: 100vh;
    border-radius: 0;
  }
}
[modal-physical-header] {
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  grid-template-rows: 4rem;
  place-items: center left;
}

@media (max-width: 767px) {
  [modal-physical-header~=blue] {
    display: grid;
    grid-template-columns: 1rem 1fr 4rem;
    grid-template-rows: 3rem;
    place-items: center left;
    background: unset;
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
  }
}
[modal-physical-header-text] {
  color: var(--color-bg-white);
  letter-spacing: 0.5px;
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
}

[modal-physical-header]::before {
  content: "";
}

[modal-physical-header~=blue] {
  background-color: var(--color-cta-primary-bg);
}

[modal-physical-header~=brown] {
  background: var(--brand-gradient-brown);
}

[modal-physical-header~=wwf] {
  background-color: #050708;
}

[modal-physical-close] {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  cursor: pointer;
  background-image: url("/assets/images/icons/close.png"), url("/assets/images/icons/close--hover.png");
  background-repeat: no-repeat;
  background-size: 0.65rem 0.65rem;
  background-position: center center;
}
[modal-physical-close]:hover {
  background-image: url("/assets/images/icons/close--hover.png");
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
}

@media (max-width: 767px) {
  [modal-physical-close] {
    top: 0;
    right: 0;
    padding: 0;
    width: 3rem;
    height: 3rem;
    filter: grayscale(10%);
    background-size: 0.75rem 0.75rem;
    border-left: solid 1px rgba(255, 255, 255, 0.18);
    border-radius: 0;
  }
  [modal-physical-close]:hover {
    background-image: url("/assets/images/icons/close.png");
    background-color: transparent;
  }
}
[modal-physical-body] {
  display: grid;
  grid-template-columns: minmax(50%, 1fr) 1fr;
  grid-template-areas: "content figure";
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-bg-white);
  min-height: 400px;
  max-height: min(80vh, 1080px);
}
[modal-physical-body] a,
[modal-physical-body] a strong {
  font-weight: var(--font-weight-header);
  color: var(--color-text-dark);
  transition: border 0.5s ease-in-out;
  border-bottom: 1px transparent var(--color-text-link-hover);
}
[modal-physical-body] a:hover {
  color: var(--color-text-link-dark-hover);
  border-bottom: 1px solid var(--color-text-link-hover);
}
[modal-physical-body] h2,
[modal-physical-body] h3,
[modal-physical-body] h4,
[modal-physical-body] h5,
[modal-physical-body] h6 {
  font-size: var(--font-size-h6-fallback);
  font-size: var(--font-size-h6);
  font-family: var(--font-family-header);
  font-weight: var(--font-weight-header);
  margin-bottom: 1rem;
}

[modal-physical-body~=hide] {
  grid-template-columns: 1fr;
  grid-template-areas: "content";
}

@media (max-width: 767px) {
  [modal-physical-body] {
    max-height: 100vh;
  }
}
@media (min-width: 0) and (max-width: 1080px), (min-height: 0) and (max-height: 600px) {
  [modal-physical-body~=hide] {
    grid-template-columns: 1fr;
    grid-template-areas: "content";
  }
}
@media (min-width: 0) and (max-width: 1280px), (min-height: 0) and (max-height: 600px) {
  [modal-physical-body~=show] {
    grid-template-columns: 1fr;
    grid-template-areas: "content";
    min-height: unset;
  }
}
[modal-stage~=physical] [modal-physical-figure] {
  display: none;
  grid-area: figure;
  overscroll-behavior: contain;
  width: 100%;
  height: 100%;
  z-index: 0;
}
[modal-stage~=physical] [modal-physical-body~=show] [modal-physical-figure] {
  display: block;
  position: absolute;
  height: 100%;
}
[modal-stage~=physical] [figure-logo~=blue],
[modal-stage~=physical] [figure-logo~=brown] {
  display: none;
}
[modal-stage~=physical] [figure-logo~=wwf] {
  display: block;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: clamp(4rem, 2vw, 5rem);
  max-width: 100px;
  height: auto;
  z-index: 10;
}
[modal-stage~=physical] [figure-image] {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
  border-left: 1px solid var(--brand-silver);
  z-index: 5;
}
[modal-stage~=physical] [figure-caption]:not(:empty) {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  font-weight: 600;
  text-align: right;
  background-color: var(--color-bg-silver);
  z-index: 6;
}
[modal-stage~=physical] [modal-physical-content] {
  grid-area: content;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: min(80vh, 1080px);
  background-color: var(--color-bg-white);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: 2rem 2.5rem;
  line-height: var(--line-height-body);
  z-index: 0;
}
[modal-stage~=physical] [modal-physical-content] ul {
  padding-right: clamp(1rem, 2vw, 4rem);
  padding-bottom: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(25ch, 1fr));
  place-content: start;
}
[modal-stage~=physical] [modal-physical-content] ul li {
  list-style-image: url(/assets/images/icons/chevron-right--updated.png);
  list-style-position: outside;
  padding-left: 0.5rem;
  margin-left: 1.5rem;
}
[modal-stage~=physical] [modal-physical-content] ul li strong:first-of-type {
  font-family: var(--font-family-header);
  font-size: var(--font-size-h5-fallback);
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-header);
}
[modal-stage~=physical] [modal-physical-content] ol {
  counter-reset: bullets;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
}
[modal-stage~=physical] [modal-physical-content] ol li {
  list-style-position: inside;
  padding-left: 0.5rem;
  margin-left: 0.75rem;
  counter-increment: bullets;
}
[modal-stage~=physical] [modal-physical-content] ol li::before {
  content: counter(bullets) ") ";
  position: absolute;
  left: -15px;
  font-weight: var(--font-weight-header);
}
[modal-stage~=physical] [modal-physical-content] ol li + li {
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  [modal-physical-content] {
    padding: 1rem 1.25rem 8rem 1.25rem;
  }
  [modal-physical-content] img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  [modal~=custom] {
    --custom-stage-border-radius: 0;
    --custom-stage-z-index: 6002;
    --custom-body-columns: 1fr;
    --custom-body-width: 100vw;
    --custom-body-width-max: 100vw;
    --custom-body-height: 100vh;
    --custom-body-height-max: 100vh;
    --custom-body-rows: minmax(3rem, auto) 1fr;
    --custom-aside-placement: start;
    --custom-aside-and-form-padding: 1.5rem 1rem 10rem 1rem;
    display: grid;
    place-items: start;
  }
  [custom-header] {
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
  }
  [custom-form-input] {
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
  }
}
@media (min-width: 768px) {
  [modal~=custom] {
    --custom-stage-border-radius: var(--border-radius-small);
    --custom-stage-z-index: 5002;
    --custom-body-columns: 0.8fr 1fr;
    --custom-body-width: fit-content;
    --custom-body-width-max: min(95vw, 1440px);
    --custom-body-height: fit-content;
    --custom-body-height-max: min(100vh, 1080px);
    --custom-aside-and-form-padding: clamp(0.75rem, 4vh, 5rem) clamp(0.5rem, 4vw, 5rem);
    --custom-aside-placement: center;
    --custom-aside-headline-sm: clamp(1.125rem, 2vw, 1.5rem);
    --custom-aside-headline-sm-fallback: 1.5rem;
    --custom-aside-headline-lg: clamp(1.5rem, 2.5vw, 2.125rem);
    --custom-aside-headline-lg-fallback: 2.125rem;
    --custom-aside-text: clamp(1rem, 1.5vmin, 1.125rem);
    --custom-aside-text-fallback: 1.125rem;
    --custom-aside-logos-display: grid;
    --custom-form-close-offset: 0.5rem;
    display: grid;
    place-items: center;
  }
}
@media (min-width: 768px) {
  [modal~=custom] {
    --custom-aside-placement: start;
    --custom-body-height-max: min(100vh, 100vh);
  }
}
@media (min-width: 768px) and (max-width: 889px) {
  [modal~=custom] {
    --custom-body-width-max: min(100vw, 1440px);
  }
}
@media (min-width: 860px) and (min-height: 700px) {
  [modal~=custom] {
    --custom-aside-placement: center;
  }
}
[custom-stage] {
  opacity: inherit;
  border-radius: var(--custom-stage-border-radius);
  overflow: hidden;
  z-index: var(--custom-stage-z-index);
  background-color: var(--color-bg-white);
}

[modal-toggle]:checked + [modal] [custom-stage] {
  pointer-events: all;
}

[custom-body] {
  display: grid;
  grid-template-columns: var(--custom-body-columns);
  grid-template-rows: var(--custom-body-rows, auto);
  width: var(--custom-body-width);
  max-width: var(--custom-body-width-max);
  height: var(--custom-body-height);
  max-height: var(--custom-body-height-max);
  line-height: var(--line-height-body);
}

[custom-header] {
  display: grid;
  width: 100%;
  height: 3rem;
  grid-template-columns: 1fr 3rem;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-weight: var(--font-weight-header);
  background-color: var(--color-cta-primary-bg);
  z-index: 6000;
}

[custom-header-title] {
  color: var(--color-bg-white);
  padding-left: 1rem;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-family: var(--font-family-body);
}
[custom-header-title] a,
[custom-header-title] strong {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  margin-top: none;
  margin-left: 0.25rem;
}

[custom-header-close] {
  width: 3rem;
  height: 3rem;
  background-image: url("/assets/images/icons/mobile-navbar-more-active.svg");
  background-size: 1rem 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  border-left: solid 1px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  z-index: 6001;
}

[custom-aside] {
  height: 100%;
  max-height: var(--custom-body-height-max);
  padding: var(--custom-aside-and-form-padding);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "custom-aside-headlines" "custom-aside-content";
  place-content: var(--custom-aside-placement);
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
  row-gap: 1.2rem;
  background-color: var(--color-bg-white);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[custom-aside-headlines] {
  grid-area: custom-aside-headlines;
}

[custom-aside-headline] {
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  color: var(--color-text-dark);
  line-height: var(--line-height-header);
}

[custom-aside-headline~=small] {
  grid-area: custom-aside-headline-small;
  justify-self: start;
  font-weight: 500;
  font-size: var(--custom-aside-headline-sm-fallback);
  font-size: var(--custom-aside-headline-sm);
}

[custom-aside-headline~=large] {
  grid-area: custom-aside-headline-large;
  justify-self: start;
  font-size: var(--custom-aside-headline-lg-fallback);
  font-size: var(--custom-aside-headline-lg);
}

[custom-aside-image-container] {
  grid-area: custom-aside-image-container;
  align-self: start;
}

[custom-aside-image] {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 7/9;
  border-radius: 6px;
}

@supports not (aspect-ratio: 7/9) {
  [custom-aside-image] {
    position: relative;
    padding-top: 128.75%;
    height: 0;
  }
}
[custom-aside-content] {
  grid-area: custom-aside-content;
  display: grid;
  place-items: start;
  align-content: start;
  gap: 1.5rem;
}

[custom-aside-text] {
  font-size: var(--custom-aside-text-fallback);
  font-size: var(--custom-aside-text);
  line-height: var(--line-height-body);
}

[custom-aside-text] a[href^="tel:"] {
  white-space: nowrap;
}

[custom-aside-logos] {
  width: 100%;
  display: var(--custom-aside-logos-display);
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
}

[custom-aside-logo~=nathab] {
  max-width: 60px;
  height: auto;
  justify-self: end;
}

[custom-aside-logo~=wwf] {
  max-width: 65px;
  height: auto;
  justify-self: start;
}

[custom-form] {
  display: grid;
  height: 100%;
  max-height: var(--custom-body-height-max);
  background-image: var(--gradient-silver);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[custom-form] form {
  display: block;
}

[custom-form-required],
[custom-form-thankyou] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-content: var(--custom-aside-placement);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  height: 100%;
  padding: var(--custom-aside-and-form-padding);
}
[custom-form-required] a,
[custom-form-thankyou] a {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
}

[custom-form-headline] {
  position: relative;
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  font-family: var(--font-family-header);
  grid-column: auto/span 4;
}

[custom-form-headline-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-header);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
}

[custom-form-thankyou-text~=thankyou] strong:first-child {
  display: block;
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-family: var(--font-family-body);
}

[custom-form-close] {
  position: absolute;
  top: var(--custom-form-close-offset);
  right: var(--custom-form-close-offset);
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("/assets/images/icons/close--hover.png"), url("/assets/images/icons/close.png");
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
  background-position: center center;
  border-left: solid 1px transparent;
  border-radius: 100%;
  transition: all 0.3s ease-out;
  cursor: pointer;
  z-index: 6001;
}

[custom-form-close]:hover {
  background-image: url("/assets/images/icons/close.png");
  background-color: var(--color-bg-ocean);
  transition: all 0.1s;
}

[custom-form-field] {
  display: grid;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  align-content: start;
}

[custom-form-field~=start] {
  align-content: start;
}

[custom-form-field] * {
  min-width: 0;
  max-width: 100%;
}

[custom-form-field~="1/4"] {
  grid-column: auto/span 1;
}

[custom-form-field~="1/2"],
[custom-form-field~="50%"],
[custom-form-field~=half] {
  grid-column: auto/span 2;
}

[custom-form-field~="3/4"] {
  grid-column: auto/span 3;
}

[custom-form-field~="100%"] {
  grid-column: auto/span 4;
}

@media (max-width: 860px) {
  [custom-form-field~="1/4"],
  [custom-form-field~="1/2"],
  [custom-form-field~="50%"],
  [custom-form-field~=half],
  [custom-form-field~="3/4"] {
    grid-column: 1/-1;
  }
}
@media (max-width: 1560px) {
  [custom-form-field~="1/4"],
  [custom-form-field~="1/2"],
  [custom-form-field~="50%"],
  [custom-form-field~=half],
  [custom-form-field~="3/4"] {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
}
[custom-form-field~=checkbox] input:invalid {
  outline: 1px solid red;
}

[custom-form-field~=checkbox] {
  display: flex;
  justify-items: flex-start;
  align-items: center;
  line-height: var(--line-height-header);
}

[custom-form-field~=sms] {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0;
}

[custom-form-field~=newsletter] {
  line-height: var(--line-height-header);
}

[custom-form-field~=radio] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: center;
}

[custom-form-field-list~=checkbox] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}

[custom-form-field-list~=radio] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  place-items: start;
  place-content: center;
}

[custom-form-field-list~="2-column"] {
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
}

[custom-form-field-list~="4-column"] {
  grid-template-columns: repeat(4, 0.25fr);
  grid-auto-flow: row;
}

[custom-form-field-list~=radio][custom-form-field-list~="4-column"] {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  [custom-form-field-list] {
    row-gap: 0.5rem;
  }
  [custom-form-field-list~="2-column"],
  [custom-form-field-list~="3-column"] {
    grid-template-columns: 1fr;
  }
  [custom-form-field-list~="4-column"] {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
[custom-form-field-list~=checkbox] [custom-form-label~=checkbox],
[custom-form-field-list~=radio] [custom-form-label~=radio] {
  font-weight: 500;
}

@media (max-width: 767px) {
  [custom-form-field-list~=radio][custom-form-field-list~="4-column"] {
    flex-direction: column;
  }
}
[custom-form-label] {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-header);
  line-height: var(--line-height-1);
}

[custom-form-label~=optin] {
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
}

[custom-form-label~=divider] span::after {
  content: "|";
  padding: 0 0.25rem;
}

[custom-form-label~=required]::after {
  content: "Required";
  left: 0.5rem;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  color: var(--color-text-link-dark);
}

[custom-form-input] {
  border-radius: 8px;
}

[custom-form-input~=text],
[custom-form-input~=tel],
[custom-form-input~=date],
[custom-form-input~=email],
[custom-form-input~=textarea],
[custom-form-input~=select] {
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-bg-white);
}

[custom-form-input~=textarea] {
  min-height: min(8.25rem, 15vh);
  line-height: var(--line-height-body);
}

[custom-form-input~=checkbox] {
  grid-row: 2;
  min-width: 24px;
  min-height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[custom-form-input~=sms] {
  grid-row: 1/-1;
  align-self: start;
}

[custom-form-input~=radio] {
  grid-row: 2;
  width: 24px;
  height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[custom-form-label~=checkbox] {
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

[custom-sms-privacy-wrapper] {
  grid-column: 2;
}

[custom-sms-fine-print] {
  display: none;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  padding-block-start: 0.25rem;
}

[custom-form-privacy~=sms] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

[custom-form-input~=checkbox] ~ [custom-sms-privacy-wrapper] [custom-sms-fine-print]::before {
  content: " - ";
}

[custom-form-input~=checkbox]:checked ~ [custom-sms-privacy-wrapper] [custom-sms-fine-print] {
  display: inline;
}

[custom-form-field~=button] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: start;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

[custom-form-button] {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: var(--button-or-input-max-height);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: var(--space-s) var(--space-m);
  color: var(--color-cta-primary-text);
  background-image: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  letter-spacing: 0.5px;
  filter: brightness(110%);
  cursor: pointer;
  border-radius: var(--border-radius-small);
}

[custom-form-button]:hover {
  animation: cta-primary-hover 250ms ease-out;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes progress {
  to {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
[custom-form-button]:disabled,
[custom-form-button]:disabled:hover {
  color: transparent;
  background-color: var(--color-cta-primary-bg);
  border-radius: 0.5rem;
  overflow: hidden;
}

[custom-form-button]:disabled:after,
[custom-form-button]:disabled:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  animation-name: progress;
  animation-timing-function: ease-out;
  animation-duration: 3.125s;
  border-bottom: 10px solid var(--color-bg-white);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0;
  z-index: 1;
}

[custom-form-button]:disabled:before,
[custom-form-button]:disabled:hover:before {
  content: "Sending ...";
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-weight: var(--font-weight-header);
  color: var(--color-bg-white);
  z-index: 20;
  opacity: 1;
}

[custom-form-link] {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
  cursor: pointer;
}

[custom-form-link]:hover {
  color: var(--color-text-link-dark-hover);
}

[custom-form-thankyou-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
  display: grid;
  row-gap: 0.5rem;
}

[custom-form-thankyou-text] a {
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
  transition: border-bottom 200ms ease-in-out;
  font-weight: var(--font-weight-header);
}

[custom-form-thankyou-text] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

[custom-form-catalog] {
  float: left;
  max-width: 160px;
  height: auto;
  margin-right: 1.5rem;
}

a[custom-form-privacy] {
  transition: all 200ms ease-in-out;
  line-height: var(--line-height-header);
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
}

a[custom-form-privacy]:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

@media (max-width: 767px) {
  [modal~=private] {
    --private-stage-border-radius: 0;
    --private-stage-z-index: 6002;
    --private-body-columns: 1fr;
    --private-body-width: 100vw;
    --private-body-width-max: 100vw;
    --private-body-height: 100vh;
    --private-body-height-max: 100vh;
    --private-body-rows: minmax(3rem, auto) 1fr;
    --private-aside-placement: start;
    --private-aside-and-form-padding: 1.5rem 1rem 10rem 1rem;
    display: grid;
    place-items: start;
  }
  [private-header] {
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
  }
  [private-form-input] {
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
  }
}
@media (min-width: 768px) {
  [modal~=private] {
    --private-stage-border-radius: var(--border-radius-small);
    --private-stage-z-index: 5002;
    --private-body-columns: 0.8fr 1fr;
    --private-body-width: fit-content;
    --private-body-width-max: min(95vw, 1440px);
    --private-body-height: fit-content;
    --private-body-height-max: min(100vh, 1080px);
    --private-aside-and-form-padding: clamp(0.75rem, 4vh, 5rem) clamp(0.5rem, 4vw, 5rem);
    --private-aside-placement: center;
    --private-aside-headline-sm: clamp(1.125rem, 2vw, 1.5rem);
    --private-aside-headline-sm-fallback: 1.5rem;
    --private-aside-headline-lg: clamp(1.5rem, 2.5vw, 2.125rem);
    --private-aside-headline-lg-fallback: 2.125rem;
    --private-aside-text: clamp(1rem, 1.5vmin, 1.125rem);
    --private-aside-text-fallback: 1.125rem;
    --private-aside-logos-display: grid;
    --private-form-close-offset: 0.5rem;
    display: grid;
    place-items: center;
  }
}
@media (min-width: 768px) {
  [modal~=private] {
    --private-aside-placement: start;
    --private-body-height-max: min(100vh, 100vh);
  }
}
@media (min-width: 768px) and (max-width: 889px) {
  [modal~=private] {
    --private-body-width-max: min(100vw, 1440px);
  }
}
@media (min-width: 860px) and (min-height: 700px) {
  [modal~=private] {
    --private-aside-placement: center;
  }
}
[private-stage] {
  opacity: inherit;
  border-radius: var(--private-stage-border-radius);
  overflow: hidden;
  z-index: var(--private-stage-z-index);
  background-color: var(--color-bg-white);
}

[modal-toggle]:checked + [modal] [private-stage] {
  pointer-events: all;
}

[private-body] {
  display: grid;
  grid-template-columns: var(--private-body-columns);
  grid-template-rows: var(--private-body-rows, auto);
  width: var(--private-body-width);
  max-width: var(--private-body-width-max);
  height: var(--private-body-height);
  max-height: var(--private-body-height-max);
  line-height: var(--line-height-body);
}

[private-header] {
  display: grid;
  width: 100%;
  height: 3rem;
  grid-template-columns: 1fr 3rem;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-weight: var(--font-weight-header);
  background-color: var(--color-cta-primary-bg);
  z-index: 6000;
}

[private-header-title] {
  color: var(--color-bg-white);
  padding-left: 1rem;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-family: var(--font-family-body);
}
[private-header-title] a,
[private-header-title] strong {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  margin-top: none;
  margin-left: 0.25rem;
}

[private-header-close] {
  width: 3rem;
  height: 3rem;
  background-image: url("/assets/images/icons/mobile-navbar-more-active.svg");
  background-size: 1rem 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  border-left: solid 1px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  z-index: 6001;
}

[private-aside] {
  height: 100%;
  max-height: var(--private-body-height-max);
  padding: var(--private-aside-and-form-padding);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "private-aside-headlines" "private-aside-content";
  place-content: var(--private-aside-placement);
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
  row-gap: 1.2rem;
  background-color: var(--color-bg-white);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[private-aside-headlines] {
  grid-area: private-aside-headlines;
}

[private-aside-headline] {
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  color: var(--color-text-dark);
  line-height: var(--line-height-header);
}

[private-aside-headline~=small] {
  grid-area: private-aside-headline-small;
  justify-self: start;
  font-weight: 500;
  font-size: var(--private-aside-headline-sm-fallback);
  font-size: var(--private-aside-headline-sm);
}

[private-aside-headline~=large] {
  grid-area: private-aside-headline-large;
  justify-self: start;
  font-size: var(--private-aside-headline-lg-fallback);
  font-size: var(--private-aside-headline-lg);
}

[private-aside-image-container] {
  grid-area: private-aside-image-container;
  align-self: start;
}

[private-aside-image] {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 7/9;
  border-radius: 6px;
}

@supports not (aspect-ratio: 7/9) {
  [private-aside-image] {
    position: relative;
    padding-top: 128.75%;
    height: 0;
  }
}
[private-aside-content] {
  grid-area: private-aside-content;
  display: grid;
  place-items: start;
  align-content: start;
  gap: 1.5rem;
}

[private-aside-text] {
  font-size: var(--private-aside-text-fallback);
  font-size: var(--private-aside-text);
  line-height: var(--line-height-body);
}

[private-aside-text] a[href^="tel:"] {
  white-space: nowrap;
}

[private-aside-logos] {
  width: 100%;
  display: var(--private-aside-logos-display);
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
}

[private-aside-logo~=nathab] {
  max-width: 60px;
  height: auto;
  justify-self: end;
}

[private-aside-logo~=wwf] {
  max-width: 65px;
  height: auto;
  justify-self: start;
}

[private-form] {
  display: grid;
  height: 100%;
  max-height: var(--private-body-height-max);
  background-image: var(--gradient-silver);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[private-form] form {
  display: block;
}

[private-form-required],
[private-form-thankyou] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-content: var(--private-aside-placement);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  height: 100%;
  padding: var(--private-aside-and-form-padding);
}
[private-form-required] a,
[private-form-thankyou] a {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
}

[private-form-headline] {
  position: relative;
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  font-family: var(--font-family-header);
  grid-column: auto/span 4;
}

[private-form-headline-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-header);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
}

[private-form-thankyou-text~=thankyou] strong:first-child {
  display: block;
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-family: var(--font-family-body);
}

[private-form-close] {
  position: absolute;
  top: var(--private-form-close-offset);
  right: var(--private-form-close-offset);
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("/assets/images/icons/close--hover.png"), url("/assets/images/icons/close.png");
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
  background-position: center center;
  border-left: solid 1px transparent;
  border-radius: 100%;
  transition: all 0.3s ease-out;
  cursor: pointer;
  z-index: 6001;
}

[private-form-close]:hover {
  background-image: url("/assets/images/icons/close.png");
  background-color: var(--color-bg-ocean);
  transition: all 0.1s;
}

[private-form-field] {
  display: grid;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  align-content: start;
}

[private-form-field~=start] {
  align-content: start;
}

[private-form-field] * {
  min-width: 0;
  max-width: 100%;
}

[private-form-field~="1/4"] {
  grid-column: auto/span 1;
}

[private-form-field~="1/2"],
[private-form-field~="50%"],
[private-form-field~=half] {
  grid-column: auto/span 2;
}

[private-form-field~="3/4"] {
  grid-column: auto/span 3;
}

[private-form-field~="100%"] {
  grid-column: auto/span 4;
}

@media (max-width: 860px) {
  [private-form-field~="1/4"],
  [private-form-field~="1/2"],
  [private-form-field~="50%"],
  [private-form-field~=half],
  [private-form-field~="3/4"] {
    grid-column: 1/-1;
  }
}
@media (max-width: 1560px) {
  [private-form-field~="1/4"],
  [private-form-field~="1/2"],
  [private-form-field~="50%"],
  [private-form-field~=half],
  [private-form-field~="3/4"] {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
}
[private-form-field~=checkbox] input:invalid {
  outline: 1px solid red;
}

[private-form-field~=checkbox] {
  display: flex;
  justify-items: flex-start;
  align-items: center;
  line-height: var(--line-height-header);
}

[private-form-field~=sms] {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0;
}

[private-form-field~=newsletter] {
  line-height: var(--line-height-header);
}

[private-form-field~=radio] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: center;
}

[private-form-field-list~=checkbox] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}

[private-form-field-list~=radio] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  place-items: start;
  place-content: center;
}

[private-form-field-list~="2-column"] {
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
}

[private-form-field-list~="4-column"] {
  grid-template-columns: repeat(4, 0.25fr);
  grid-auto-flow: row;
}

[private-form-field-list~=radio][private-form-field-list~="4-column"] {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  [private-form-field-list] {
    row-gap: 0.5rem;
  }
  [private-form-field-list~="2-column"],
  [private-form-field-list~="3-column"] {
    grid-template-columns: 1fr;
  }
  [private-form-field-list~="4-column"] {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
[private-form-field-list~=checkbox] [private-form-label~=checkbox],
[private-form-field-list~=radio] [private-form-label~=radio] {
  font-weight: 500;
}

@media (max-width: 767px) {
  [private-form-field-list~=radio][private-form-field-list~="4-column"] {
    flex-direction: column;
  }
}
[private-form-label] {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-header);
  line-height: var(--line-height-1);
}

[private-form-label~=optin] {
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
}

[private-form-label~=divider] span::after {
  content: "|";
  padding: 0 0.25rem;
}

[private-form-label~=required]::after {
  content: "Required";
  left: 0.5rem;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  color: var(--color-text-link-dark);
}

[private-form-input] {
  border-radius: 8px;
}

[private-form-input~=text],
[private-form-input~=tel],
[private-form-input~=date],
[private-form-input~=email],
[private-form-input~=textarea],
[private-form-input~=select] {
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-bg-white);
}

[private-form-input~=textarea] {
  min-height: min(8.25rem, 15vh);
  line-height: var(--line-height-body);
}

[private-form-input~=checkbox] {
  grid-row: 2;
  min-width: 24px;
  min-height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[private-form-input~=sms] {
  grid-row: 1/-1;
  align-self: start;
}

[private-form-input~=radio] {
  grid-row: 2;
  width: 24px;
  height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[private-form-label~=checkbox] {
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

[private-sms-privacy-wrapper] {
  grid-column: 2;
}

[private-sms-fine-print] {
  display: none;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  padding-block-start: 0.25rem;
}

[private-form-privacy~=sms] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

[private-form-input~=checkbox] ~ [private-sms-privacy-wrapper] [private-sms-fine-print]::before {
  content: " - ";
}

[private-form-input~=checkbox]:checked ~ [private-sms-privacy-wrapper] [private-sms-fine-print] {
  display: inline;
}

[private-form-field~=button] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: start;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

[private-form-button] {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: var(--button-or-input-max-height);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: var(--space-s) var(--space-m);
  color: var(--color-cta-primary-text);
  background-image: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  letter-spacing: 0.5px;
  filter: brightness(110%);
  cursor: pointer;
  border-radius: var(--border-radius-small);
}

[private-form-button]:hover {
  animation: cta-primary-hover 250ms ease-out;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes progress {
  to {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
[private-form-button]:disabled,
[private-form-button]:disabled:hover {
  color: transparent;
  background-color: var(--color-cta-primary-bg);
  border-radius: 0.5rem;
  overflow: hidden;
}

[private-form-button]:disabled:after,
[private-form-button]:disabled:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  animation-name: progress;
  animation-timing-function: ease-out;
  animation-duration: 3.125s;
  border-bottom: 10px solid var(--color-bg-white);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0;
  z-index: 1;
}

[private-form-button]:disabled:before,
[private-form-button]:disabled:hover:before {
  content: "Sending ...";
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-weight: var(--font-weight-header);
  color: var(--color-bg-white);
  z-index: 20;
  opacity: 1;
}

[private-form-link] {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
  cursor: pointer;
}

[private-form-link]:hover {
  color: var(--color-text-link-dark-hover);
}

[private-form-thankyou-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
  display: grid;
  row-gap: 0.5rem;
}

[private-form-thankyou-text] a {
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
  transition: border-bottom 200ms ease-in-out;
  font-weight: var(--font-weight-header);
}

[private-form-thankyou-text] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

[private-form-catalog] {
  float: left;
  max-width: 160px;
  height: auto;
  margin-right: 1.5rem;
}

a[private-form-privacy] {
  transition: all 200ms ease-in-out;
  line-height: var(--line-height-header);
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
}

a[private-form-privacy]:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

@media (max-width: 767px) {
  [modal~=pdf] {
    --pdf-stage-border-radius: 0;
    --pdf-stage-z-index: 6002;
    --pdf-body-columns: 1fr;
    --pdf-body-width: 100vw;
    --pdf-body-width-max: 100vw;
    --pdf-body-height: 100vh;
    --pdf-body-height-max: 100vh;
    --pdf-body-rows: minmax(3rem, auto) 1fr;
    --pdf-aside-placement: start;
    --pdf-aside-and-form-padding: 1.5rem 1rem 10rem 1rem;
    display: grid;
    place-items: start;
  }
  [pdf-header] {
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
  }
  [pdf-form-input] {
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
  }
}
@media (min-width: 768px) {
  [modal~=pdf] {
    --pdf-stage-border-radius: var(--border-radius-small);
    --pdf-stage-z-index: 5002;
    --pdf-body-columns: 0.8fr 1fr;
    --pdf-body-width: fit-content;
    --pdf-body-width-max: min(95vw, 1440px);
    --pdf-body-height: fit-content;
    --pdf-body-height-max: min(100vh, 1080px);
    --pdf-aside-and-form-padding: clamp(0.75rem, 4vh, 5rem) clamp(0.5rem, 4vw, 5rem);
    --pdf-aside-placement: center;
    --pdf-aside-headline-sm: clamp(1.125rem, 2vw, 1.5rem);
    --pdf-aside-headline-sm-fallback: 1.5rem;
    --pdf-aside-headline-lg: clamp(1.5rem, 2.5vw, 2.125rem);
    --pdf-aside-headline-lg-fallback: 2.125rem;
    --pdf-aside-text: clamp(1rem, 1.5vmin, 1.125rem);
    --pdf-aside-text-fallback: 1.125rem;
    --pdf-aside-logos-display: grid;
    --pdf-form-close-offset: 0.5rem;
    display: grid;
    place-items: center;
  }
}
@media (min-width: 768px) {
  [modal~=pdf] {
    --pdf-aside-placement: start;
    --pdf-body-height-max: min(100vh, 100vh);
  }
}
@media (min-width: 768px) and (max-width: 889px) {
  [modal~=pdf] {
    --pdf-body-width-max: min(100vw, 1440px);
  }
}
@media (min-width: 890px) and (min-height: 685px) {
  [modal~=pdf] {
    --pdf-aside-placement: center;
  }
}
[pdf-stage] {
  opacity: inherit;
  border-radius: var(--pdf-stage-border-radius);
  overflow: hidden;
  z-index: var(--pdf-stage-z-index);
  background-color: var(--color-bg-white);
}

[modal-toggle]:checked + [modal] [pdf-stage] {
  pointer-events: all;
}

[pdf-body] {
  display: grid;
  grid-template-columns: var(--pdf-body-columns);
  grid-template-rows: var(--pdf-body-rows, auto);
  width: var(--pdf-body-width);
  max-width: var(--pdf-body-width-max);
  height: var(--pdf-body-height);
  max-height: var(--pdf-body-height-max);
  line-height: var(--line-height-body);
}

[pdf-header] {
  display: grid;
  width: 100%;
  height: 3rem;
  grid-template-columns: 1fr 3rem;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-weight: var(--font-weight-header);
  background-color: var(--color-cta-primary-bg);
  z-index: 6000;
}

[pdf-header-title] {
  color: var(--color-bg-white);
  padding-left: 1rem;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-family: var(--font-family-body);
}
[pdf-header-title] a,
[pdf-header-title] strong {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  margin-top: none;
  margin-left: 0.25rem;
}

[pdf-header-close] {
  width: 3rem;
  height: 3rem;
  background-image: url("/assets/images/icons/mobile-navbar-more-active.svg");
  background-size: 1rem 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  border-left: solid 1px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  z-index: 6001;
}

[pdf-aside] {
  height: 100%;
  max-height: var(--pdf-body-height-max);
  padding: var(--pdf-aside-and-form-padding);
  display: grid;
  grid-template-columns: clamp(5rem, 9vw, 9rem) 1fr;
  grid-template-areas: "pdf-aside-headlines 			pdf-aside-headlines" "pdf-aside-image-container 		pdf-aside-content";
  place-content: var(--pdf-aside-placement);
  -moz-column-gap: min(1.75vw, 1.5rem);
       column-gap: min(1.75vw, 1.5rem);
  row-gap: 1.2rem;
  background-color: var(--color-bg-white);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[pdf-aside-headlines] {
  grid-area: pdf-aside-headlines;
}

[pdf-aside-headline] {
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  color: var(--color-text-dark);
  line-height: var(--line-height-header);
}

[pdf-aside-headline~=small] {
  grid-area: pdf-aside-headline-small;
  justify-self: start;
  font-weight: 500;
  font-size: var(--pdf-aside-headline-sm-fallback);
  font-size: var(--pdf-aside-headline-sm);
}

[pdf-aside-headline~=large] {
  grid-area: pdf-aside-headline-large;
  justify-self: start;
  font-size: var(--pdf-aside-headline-lg-fallback);
  font-size: var(--pdf-aside-headline-lg);
}

[pdf-aside-image-container] {
  grid-area: pdf-aside-image-container;
  align-self: start;
}

[pdf-aside-image] {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 7/9;
  border-radius: 6px;
}

@supports not (aspect-ratio: 7/9) {
  [pdf-aside-image] {
    position: relative;
    padding-top: 128.75%;
    height: 0;
  }
}
.icon-pdf {
  position: absolute;
  left: -1.9rem;
  top: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 4px solid var(--color-bg-white);
  border-radius: var(--border-radius);
  display: flex;
  place-items: center;
}

.icon-pdf::after {
  --badge-text: "PDF";
  content: var(--badge-text);
  color: var(--color-bg-white);
  font-weight: 800;
  text-align: center;
  background-color: var(--color-cta-primary-bg);
  border-radius: 3px;
  width: 100%;
  height: 100%;
  padding: 0.25rem 0.7rem;
  display: block;
}

@media (max-width: 1050px) {
  .icon-pdf {
    top: unset;
    bottom: -0.8rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4vw;
  }
}
[pdf-aside-content] {
  grid-area: pdf-aside-content;
  display: grid;
  place-items: start;
  align-content: start;
  gap: 1.5rem;
}

[pdf-aside-text] {
  font-size: var(--pdf-aside-text-fallback);
  font-size: var(--pdf-aside-text);
  line-height: var(--line-height-body);
}

[pdf-aside-logos] {
  width: 100%;
  display: var(--pdf-aside-logos-display);
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
}

[pdf-aside-logo~=nathab] {
  max-width: 60px;
  height: auto;
  justify-self: end;
}

[pdf-aside-logo~=wwf] {
  max-width: 65px;
  height: auto;
  justify-self: start;
}

[pdf-form] {
  display: grid;
  height: 100%;
  max-height: var(--pdf-body-height-max);
  background-image: var(--gradient-silver);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[pdf-form] form {
  display: block;
}

[pdf-form-required],
[pdf-form-thankyou] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-content: var(--pdf-aside-placement);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  height: 100%;
  padding: var(--pdf-aside-and-form-padding);
}
[pdf-form-required] a,
[pdf-form-thankyou] a {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
}

[pdf-form-headline] {
  position: relative;
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  font-family: var(--font-family-header);
  grid-column: auto/span 4;
}

[pdf-form-headline-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-header);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
}

[pdf-form-thankyou-text~=thankyou] strong:first-child {
  display: block;
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-family: var(--font-family-body);
}

[pdf-form-close] {
  position: absolute;
  top: var(--pdf-form-close-offset);
  right: var(--pdf-form-close-offset);
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("/assets/images/icons/close--hover.png"), url("/assets/images/icons/close.png");
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
  background-position: center center;
  border-left: solid 1px transparent;
  border-radius: 100%;
  transition: all 0.3s ease-out;
  cursor: pointer;
  z-index: 6001;
}

[pdf-form-close]:hover {
  background-image: url("/assets/images/icons/close.png");
  background-color: var(--color-bg-ocean);
  transition: all 0.1s;
}

[pdf-form-field] {
  display: grid;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  align-content: start;
}

[pdf-form-field~=start] {
  align-content: start;
}

[pdf-form-field] * {
  min-width: 0;
  max-width: 100%;
}

[pdf-form-field~="1/4"] {
  grid-column: auto/span 1;
}

[pdf-form-field~="1/2"],
[pdf-form-field~="50%"],
[pdf-form-field~=half] {
  grid-column: auto/span 2;
}

[pdf-form-field~="3/4"] {
  grid-column: auto/span 3;
}

[pdf-form-field~="100%"] {
  grid-column: auto/span 4;
}

@media (max-width: 860px) {
  [pdf-form-field~="1/4"],
  [pdf-form-field~="1/2"],
  [pdf-form-field~="50%"],
  [pdf-form-field~=half],
  [pdf-form-field~="3/4"] {
    grid-column: 1/-1;
  }
}
@media (max-width: 1560px) {
  [pdf-form-field~="1/4"],
  [pdf-form-field~="1/2"],
  [pdf-form-field~="50%"],
  [pdf-form-field~=half],
  [pdf-form-field~="3/4"] {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
}
[pdf-form-field~=checkbox] input:invalid {
  outline: 1px solid red;
}

[pdf-form-field~=checkbox] {
  display: flex;
  justify-items: flex-start;
  align-items: center;
  line-height: var(--line-height-header);
}

[pdf-form-field~=sms] {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0;
}

[pdf-form-field~=newsletter] {
  line-height: var(--line-height-header);
}

[pdf-form-field~=radio] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: center;
}

[pdf-form-field-list~=checkbox] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}

[pdf-form-field-list~=radio] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  place-items: start;
  place-content: center;
}

[pdf-form-field-list~="2-column"] {
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
}

[pdf-form-field-list~="4-column"] {
  grid-template-columns: repeat(4, 0.25fr);
  grid-auto-flow: row;
}

[pdf-form-field-list~=radio][pdf-form-field-list~="4-column"] {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  [pdf-form-field-list] {
    row-gap: 0.5rem;
  }
  [pdf-form-field-list~="2-column"],
  [pdf-form-field-list~="3-column"] {
    grid-template-columns: 1fr;
  }
  [pdf-form-field-list~="4-column"] {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
[pdf-form-field-list~=checkbox] [pdf-form-label~=checkbox],
[pdf-form-field-list~=radio] [pdf-form-label~=radio] {
  font-weight: 500;
}

@media (max-width: 767px) {
  [pdf-form-field-list~=radio][pdf-form-field-list~="4-column"] {
    flex-direction: column;
  }
}
[pdf-form-label] {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-header);
  line-height: var(--line-height-1);
}

[pdf-form-label~=optin] {
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
}

[pdf-form-label~=divider] span::after {
  content: "|";
  color: #7a7a7a;
  padding: 0 0.25rem;
}

[pdf-form-label~=required]::after {
  content: "Required";
  left: 0.5rem;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  color: var(--color-text-link-dark);
}

[pdf-form-input] {
  border-radius: 8px;
}

[pdf-form-input~=text],
[pdf-form-input~=tel],
[pdf-form-input~=date],
[pdf-form-input~=email],
[pdf-form-input~=select] {
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-bg-white);
}

[pdf-form-input~=checkbox] {
  min-width: 24px;
  min-height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--brand-ocean);
  accent-color: var(--brand-ocean);
}

[pdf-form-input~=sms] {
  grid-row: 1/-1;
  align-self: start;
}

[pdf-form-input~=radio] {
  grid-row: 2;
  width: 24px;
  height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--brand-ocean);
  accent-color: var(--brand-ocean);
}

[pdf-form-label~=checkbox] {
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

[pdf-sms-privacy-wrapper] {
  grid-column: 2;
}

[pdf-sms-fine-print] {
  display: none;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  padding-block-start: 0.25rem;
}

[pdf-form-privacy~=sms] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

[pdf-form-input~=checkbox] ~ [pdf-sms-privacy-wrapper] [pdf-sms-fine-print]::before {
  content: " - ";
}

[pdf-form-input~=checkbox]:checked ~ [pdf-sms-privacy-wrapper] [pdf-sms-fine-print] {
  display: inline;
}

[pdf-form-field~=button] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: start;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

[pdf-form-button] {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: var(--button-or-input-max-height);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: var(--space-s) var(--space-m);
  color: var(--color-cta-primary-text);
  background-image: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  letter-spacing: 0.5px;
  filter: brightness(110%);
  cursor: pointer;
  border-radius: var(--border-radius-small);
}

[pdf-form-button]:hover {
  animation: cta-primary-hover 250ms ease-out;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes progress {
  to {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
[pdf-form-button]:disabled,
[pdf-form-button]:disabled:hover {
  color: transparent;
  background-color: var(--color-cta-primary-bg);
  border-radius: 0.5rem;
  overflow: hidden;
}

[pdf-form-button]:disabled:after,
[pdf-form-button]:disabled:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  animation-name: progress;
  animation-timing-function: ease-out;
  animation-duration: 3.125s;
  border-bottom: 10px solid var(--color-bg-white);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0;
  z-index: 1;
}

[pdf-form-button]:disabled:before,
[pdf-form-button]:disabled:hover:before {
  content: "Sending ...";
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-weight: var(--font-weight-header);
  color: var(--color-bg-white);
  z-index: 20;
  opacity: 1;
}

[pdf-form-link] {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
  cursor: pointer;
}

[pdf-form-link]:hover {
  color: var(--color-text-link-dark-hover);
}

[pdf-form-thankyou-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
  display: grid;
  row-gap: 0.5rem;
}

[pdf-form-thankyou-text] a {
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
  transition: border-bottom 200ms ease-in-out;
  font-weight: var(--font-weight-header);
}

[pdf-form-thankyou-text] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

[pdf-form-catalog] {
  float: left;
  max-width: 160px;
  height: auto;
  margin-right: 1.5rem;
}

a[pdf-form-privacy] {
  transition: all 200ms ease-in-out;
  line-height: var(--line-height-header);
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
}

a[pdf-form-privacy]:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

@media (max-width: 767px) {
  [modal~=ask] {
    --ask-stage-border-radius: 0;
    --ask-stage-z-index: 6002;
    --ask-body-columns: 1fr;
    --ask-body-width: 100vw;
    --ask-body-width-max: 100vw;
    --ask-body-height: 100vh;
    --ask-body-height-max: 100vh;
    --ask-body-rows: minmax(3rem, auto) 1fr;
    --ask-aside-placement: start;
    --ask-aside-and-form-padding: 1.5rem 1rem 10rem 1rem;
    display: grid;
    place-items: start;
  }
  [ask-header] {
    background-image: var(--gradient-cta-primary-blue-to-green);
    background-size: 210% 210%;
  }
  [ask-form-input] {
    font-size: var(--font-size-body-small-fallback);
    font-size: var(--font-size-body-small);
  }
  [ask-form-field~=submit] {
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  [modal~=ask] {
    --ask-stage-border-radius: var(--border-radius-small);
    --ask-stage-z-index: 5002;
    --ask-body-columns: 0.8fr 1fr;
    --ask-body-width: fit-content;
    --ask-body-width-max: min(95vw, 1440px);
    --ask-body-height: fit-content;
    --ask-body-height-max: min(100vh, 1080px);
    --ask-aside-and-form-padding: clamp(0.75rem, 4vh, 5rem) clamp(0.5rem, 4vw, 5rem);
    --ask-aside-placement: center;
    --ask-aside-headline-sm: clamp(1.125rem, 2vw, 1.5rem);
    --ask-aside-headline-sm-fallback: 1.5rem;
    --ask-aside-headline-lg: clamp(1.5rem, 2.5vw, 2.125rem);
    --ask-aside-headline-lg-fallback: 2.125rem;
    --ask-aside-text: clamp(1rem, 1.5vmin, 1.125rem);
    --ask-aside-text-fallback: 1.125rem;
    --ask-aside-logos-display: grid;
    --ask-form-close-offset: 0.5rem;
    display: grid;
    place-items: center;
  }
}
@media (min-width: 768px) {
  [modal~=ask] {
    --ask-aside-placement: start;
    --ask-body-height-max: min(100vh, 100vh);
  }
}
@media (min-width: 768px) and (max-width: 889px) {
  [modal~=ask] {
    --ask-body-width-max: min(100vw, 1440px);
  }
}
@media (min-width: 860px) and (min-height: 700px) {
  [modal~=ask] {
    --ask-aside-placement: center;
  }
}
[ask-stage] {
  opacity: inherit;
  border-radius: var(--ask-stage-border-radius);
  overflow: hidden;
  z-index: var(--ask-stage-z-index);
  background-color: var(--color-bg-white);
}

[modal-toggle]:checked + [modal] [ask-stage] {
  pointer-events: all;
}

[ask-body] {
  display: grid;
  grid-template-columns: var(--ask-body-columns);
  grid-template-rows: var(--ask-body-rows, auto);
  width: var(--ask-body-width);
  max-width: var(--ask-body-width-max);
  height: var(--ask-body-height);
  max-height: var(--ask-body-height-max);
  line-height: var(--line-height-body);
}

[ask-header] {
  display: grid;
  width: 100%;
  height: 3rem;
  grid-template-columns: 1fr 3rem;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-weight: var(--font-weight-header);
  background-color: var(--color-cta-primary-bg);
  z-index: 6000;
}

[ask-header-title] {
  color: var(--color-bg-white);
  padding-left: 1rem;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-family: var(--font-family-body);
}
[ask-header-title] a,
[ask-header-title] strong {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  margin-top: none;
  margin-left: 0.25rem;
}

[ask-header-close] {
  width: 3rem;
  height: 3rem;
  background-image: url("/assets/images/icons/mobile-navbar-more-active.svg");
  background-size: 1rem 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  border-left: solid 1px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  z-index: 6001;
}

[ask-aside] {
  height: 100%;
  max-height: var(--ask-body-height-max);
  padding: var(--ask-aside-and-form-padding);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "ask-aside-headlines" "ask-aside-content";
  place-content: var(--ask-aside-placement);
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
  row-gap: 1.2rem;
  background-color: var(--color-bg-white);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[ask-aside-headlines] {
  grid-area: ask-aside-headlines;
}

[ask-aside-headline] {
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  color: var(--color-text-dark);
  line-height: var(--line-height-header);
}

[ask-aside-headline~=small] {
  grid-area: ask-aside-headline-small;
  justify-self: start;
  font-weight: 500;
  font-size: var(--ask-aside-headline-sm-fallback);
  font-size: var(--ask-aside-headline-sm);
}

[ask-aside-headline~=large] {
  grid-area: ask-aside-headline-large;
  justify-self: start;
  font-size: var(--ask-aside-headline-lg-fallback);
  font-size: var(--ask-aside-headline-lg);
}

[ask-aside-image-container] {
  grid-area: ask-aside-image-container;
  align-self: start;
}

[ask-aside-image] {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 7/9;
  border-radius: 6px;
}

@supports not (aspect-ratio: 7/9) {
  [ask-aside-image] {
    position: relative;
    padding-top: 128.75%;
    height: 0;
  }
}
[ask-aside-content] {
  grid-area: ask-aside-content;
  display: grid;
  place-items: start;
  align-content: start;
  gap: 1.5rem;
}

[ask-aside-text] {
  font-size: var(--ask-aside-text-fallback);
  font-size: var(--ask-aside-text);
  line-height: var(--line-height-body);
}

[ask-aside-text] a[href^="tel:"] {
  white-space: nowrap;
}

[ask-aside-logos] {
  width: 100%;
  display: var(--ask-aside-logos-display);
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
}

[ask-aside-logo~=nathab] {
  max-width: 60px;
  height: auto;
  justify-self: end;
}

[ask-aside-logo~=wwf] {
  max-width: 65px;
  height: auto;
  justify-self: start;
}

[ask-form] {
  display: grid;
  height: 100%;
  max-height: var(--ask-body-height-max);
  background-image: var(--gradient-silver);
  overflow-y: auto;
  overscroll-behavior: contain;
}

[ask-form] form {
  display: block;
}

[ask-form-required],
[ask-form-thankyou] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-content: var(--ask-aside-placement);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  height: 100%;
  padding: var(--ask-aside-and-form-padding);
}
[ask-form-required] a,
[ask-form-thankyou] a {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
}

[ask-form-headline] {
  position: relative;
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  font-family: var(--font-family-header);
  grid-column: auto/span 4;
}

[ask-form-headline-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-header);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
}

[ask-form-thankyou-text~=thankyou] strong:first-child {
  display: block;
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
  font-family: var(--font-family-body);
}

[ask-form-close] {
  position: absolute;
  top: var(--ask-form-close-offset);
  right: var(--ask-form-close-offset);
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("/assets/images/icons/close--hover.png"), url("/assets/images/icons/close.png");
  background-repeat: no-repeat;
  background-size: 0.75rem 0.75rem;
  background-position: center center;
  border-left: solid 1px transparent;
  border-radius: 100%;
  transition: all 0.3s ease-out;
  cursor: pointer;
  z-index: 6001;
}

[ask-form-close]:hover {
  background-image: url("/assets/images/icons/close.png");
  background-color: var(--color-bg-ocean);
  transition: all 0.1s;
}

[ask-form-field] {
  display: grid;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  align-content: start;
}

[ask-form-field~=start] {
  align-content: start;
}

[ask-form-field] * {
  min-width: 0;
  max-width: 100%;
}

[ask-form-field~="1/4"] {
  grid-column: auto/span 1;
}

[ask-form-field~="1/2"],
[ask-form-field~="50%"],
[ask-form-field~=half] {
  grid-column: auto/span 2;
}

[ask-form-field~="3/4"] {
  grid-column: auto/span 3;
}

[ask-form-field~="100%"] {
  grid-column: auto/span 4;
}

@media (max-width: 860px) {
  [ask-form-field~="1/4"],
  [ask-form-field~="1/2"],
  [ask-form-field~="50%"],
  [ask-form-field~=half],
  [ask-form-field~="3/4"] {
    grid-column: 1/-1;
  }
}
@media (max-width: 1560px) {
  [ask-form-field~="1/4"],
  [ask-form-field~="1/2"],
  [ask-form-field~="50%"],
  [ask-form-field~=half],
  [ask-form-field~="3/4"] {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
  }
}
[ask-form-field~=checkbox] input:invalid {
  outline: 1px solid red;
}

[ask-form-field~=checkbox] {
  display: flex;
  justify-items: flex-start;
  align-items: center;
  line-height: var(--line-height-header);
}

[ask-form-field~=sms] {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0;
}

[ask-form-field~=newsletter] {
  line-height: var(--line-height-header);
}

[ask-form-field~=radio] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: center;
}

[ask-form-field-list~=checkbox] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}

[ask-form-field-list~=radio] {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  place-items: start;
  place-content: center;
}

[ask-form-field-list~="2-column"] {
  grid-template-columns: repeat(auto-fill, minmax(345px, 1fr));
}

[ask-form-field-list~="4-column"] {
  grid-template-columns: repeat(4, 0.25fr);
  grid-auto-flow: row;
}

[ask-form-field-list~=radio][ask-form-field-list~="4-column"] {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  [ask-form-field-list] {
    row-gap: 0.5rem;
  }
  [ask-form-field-list~="2-column"],
  [ask-form-field-list~="3-column"] {
    grid-template-columns: 1fr;
  }
  [ask-form-field-list~="4-column"] {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
[ask-form-field-list~=checkbox] [ask-form-label~=checkbox],
[ask-form-field-list~=radio] [ask-form-label~=radio] {
  font-weight: 500;
}

@media (max-width: 767px) {
  [ask-form-field-list~=radio][ask-form-field-list~="4-column"] {
    flex-direction: column;
  }
}
[ask-form-label] {
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-header);
  line-height: var(--line-height-1);
}

[ask-form-label~=optin] {
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
}

[ask-form-label~=divider] span::after {
  content: "|";
  padding: 0 0.25rem;
}

[ask-form-label~=required]::after {
  content: "Required";
  left: 0.5rem;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  color: var(--color-text-link-dark);
}

[ask-form-input] {
  border-radius: 8px;
}

[ask-form-input~=text],
[ask-form-input~=tel],
[ask-form-input~=date],
[ask-form-input~=email],
[ask-form-input~=textarea],
[ask-form-input~=select] {
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-bg-white);
}

[ask-form-input~=textarea] {
  min-height: min(8.25rem, 15vh);
  line-height: var(--line-height-body);
}

[ask-form-input~=checkbox] {
  min-width: 24px;
  min-height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[ask-form-input~=sms] {
  grid-row: 1/-1;
  align-self: start;
}

[ask-form-input~=radio] {
  grid-row: 2;
  width: 24px;
  height: 24px;
  outline: none;
  border-radius: 4rem;
  border: solid 1px var(--color-bg-red);
  accent-color: var(--brand-ocean);
}

[ask-form-label~=checkbox] {
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

[ask-sms-privacy-wrapper] {
  grid-column: 2;
}

[ask-sms-fine-print] {
  display: none;
  font-size: var(--font-size-body-smallest-fallback);
  font-size: var(--font-size-body-smallest);
  padding-block-start: 0.25rem;
}

[ask-form-privacy~=sms] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

[ask-form-input~=checkbox] ~ [ask-sms-privacy-wrapper] [ask-sms-fine-print]::before {
  content: " - ";
}

[ask-form-input~=checkbox]:checked ~ [ask-sms-privacy-wrapper] [ask-sms-fine-print] {
  display: inline;
}

[ask-form-field~=button] {
  display: grid;
  grid-template-columns: auto 1fr;
  place-items: start;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

[ask-form-button] {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: var(--button-or-input-max-height);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: var(--space-s) var(--space-m);
  color: var(--color-cta-primary-text);
  background-image: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  letter-spacing: 0.5px;
  filter: brightness(110%);
  cursor: pointer;
  border-radius: var(--border-radius-small);
}

[ask-form-button]:hover {
  animation: cta-primary-hover 250ms ease-out;
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes progress {
  to {
    width: 100%;
  }
}
@keyframes progress {
  0% {
    width: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
[ask-form-button]:disabled,
[ask-form-button]:disabled:hover {
  color: transparent;
  background-color: var(--color-cta-primary-bg);
  border-radius: 0.5rem;
  overflow: hidden;
}

[ask-form-button]:disabled:after,
[ask-form-button]:disabled:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  animation-name: progress;
  animation-timing-function: ease-out;
  animation-duration: 3.125s;
  border-bottom: 10px solid var(--color-bg-white);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0;
  z-index: 1;
}

[ask-form-button]:disabled:before,
[ask-form-button]:disabled:hover:before {
  content: "Sending ...";
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-weight: var(--font-weight-header);
  color: var(--color-bg-white);
  z-index: 20;
  opacity: 1;
}

[ask-form-link] {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
  cursor: pointer;
}

[ask-form-link]:hover {
  color: var(--color-text-link-dark-hover);
}

[ask-form-thankyou-text] {
  position: relative;
  font-weight: 400;
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-family: var(--font-family-body);
  grid-column: auto/span 3;
  display: grid;
  row-gap: 0.5rem;
}

[ask-form-thankyou-text] a {
  color: var(--color-text-link-dark);
  font-weight: var(--font-weight-header);
  border-bottom: 1px solid transparent;
  transition: border-bottom 200ms ease-in-out;
}

[ask-form-thankyou-text] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

[ask-form-catalog] {
  float: left;
  max-width: 160px;
  height: auto;
  margin-right: 1.5rem;
}

a[ask-form-privacy] {
  transition: all 200ms ease-in-out;
  line-height: var(--line-height-header);
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
  color: var(--color-text-link-dark);
  border-bottom: 1px solid transparent;
}

a[ask-form-privacy]:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}

[modal~=carbon] {
  display: grid;
  place-items: center;
}

[modal-stage~=carbon] {
  opacity: inherit;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: min(80vw, 1080px);
  overflow: hidden;
  z-index: 6002;
}

[modal-toggle]:checked + [modal] [modal-stage~=carbon] {
  pointer-events: all;
}

[modal-carbon-header] {
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  grid-template-rows: 4rem;
  place-items: center left;
  border-radius: 0;
  background: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
}

[modal-carbon-header-text] {
  color: var(--color-bg-white);
  letter-spacing: 0.5px;
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-header);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
}

[modal-carbon-header]::before {
  content: "";
}

[modal-carbon-close] {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  cursor: pointer;
  background-image: url("/assets/images/icons/close.png"), url("/assets/images/icons/close--hover.png");
  background-repeat: no-repeat;
  background-size: 0.65rem 0.65rem;
  background-position: center center;
  z-index: 6001;
}
[modal-carbon-close]:hover {
  background-image: url("/assets/images/icons/close--hover.png");
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
}

[modal-carbon-body] {
  display: grid;
  grid-template-columns: 450px 1fr;
  grid-template-areas: "figure content";
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-bg-white);
  border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
}

[modal-carbon-image] {
  grid-area: figure;
  overscroll-behavior: contain;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: grid;
  align-items: start;
}

[carbon-image] {
  max-width: 100%;
}

[modal-carbon-content] {
  grid-area: content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 550px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--gradient-silver);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: 2rem 2.5rem;
  line-height: var(--line-height-body);
  z-index: 0;
}
[modal-carbon-content] a,
[modal-carbon-content] a strong {
  font-weight: var(--font-weight-header);
  color: var(--color-text-link-dark);
  transition: border 0.5s ease-in-out;
  border-bottom: 1px transparent var(--color-text-link-dark);
}
[modal-carbon-content] a:hover {
  border-bottom: 1px solid var(--color-text-link-dark);
}
[modal-carbon-content] strong {
  font-size: inherit;
}

@media (min-width: 768px) and (max-width: 1024px) {
  [modal-carbon-body] {
    grid-template-columns: 1fr 1fr;
    max-height: 450px;
  }
}
@media (max-width: 767px) {
  [modal-stage~=carbon] {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    height: 100svh;
    border-radius: 0;
  }
  [modal-carbon-header] {
    display: grid;
    grid-template-columns: 1rem 1fr 4rem;
    grid-template-rows: 3rem;
    place-items: center left;
    border-radius: unset;
  }
  [modal-carbon-close] {
    top: 0;
    right: 0;
    padding: 0;
    width: 3rem;
    height: 3rem;
    filter: grayscale(10%);
    background-size: 0.75rem 0.75rem;
    border-left: solid 1px rgba(255, 255, 255, 0.18);
    border-radius: 0;
  }
  [modal-carbon-close]:hover {
    background-image: url("/assets/images/icons/close.png");
    background-color: transparent;
  }
  [modal-carbon-body] {
    grid-template-columns: 1fr;
    grid-template-areas: "figure" "content";
    min-height: 100%;
    max-height: unset;
    overflow-y: auto;
    height: 100vh;
    height: 100svh;
    border-radius: unset;
  }
  [modal-carbon-content] {
    padding: 1rem 1.25rem 10rem 1.25rem;
    max-height: unset;
  }
}
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-header);
}

h2 {
  font-size: var(--font-size-h2-fallback);
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4-fallback);
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5-fallback);
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6-fallback);
  font-size: var(--font-size-h6);
}

[cta-questions] {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 5rem 0;
  font-weight: var(--font-weight-body);
  font-family: var(--font-family-body);
  line-height: var(--line-height-header);
  color: var(--color-text-dark);
  background-color: var(--brand-silver-end);
  row-gap: var(--space-s-m);
}

[cta-questions-title] {
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
  text-transform: uppercase;
}

[cta-questions-title-sub] {
  font-size: var(--font-size-h3-fallback);
  font-size: var(--font-size-h3);
}

[cta-questions-text] {
  max-width: 350px;
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
}

[cta-questions-button] {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: var(--button-or-input-max-height);
  font-weight: var(--font-weight-header);
  font-family: var(--font-family-body);
  font-size: var(--font-size-body-fallback);
  font-size: var(--font-size-body);
  padding: var(--space-s) var(--space-m);
  color: var(--color-cta-primary-text);
  background-image: var(--gradient-cta-primary-blue-to-green);
  background-size: 210% 210%;
  letter-spacing: 0.5px;
  filter: brightness(110%);
  cursor: pointer;
  border-radius: var(--border-radius-small);
}

[cta-questions-button]:hover {
  animation: cta-primary-hover 250ms ease-out;
  animation-fill-mode: both;
  opacity: 1;
}

@media (min-width: 768px) {
  [cta-questions-text] {
    max-width: 400px;
  }
}
[trip-360-modal] {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: visible;
  z-index: 99999;
  aspect-ratio: 16/9;
}

@media (orientation: portrait) {
  [trip-360-modal] {
    width: min(80vw, 1920px);
  }
}
@media (orientation: landscape) {
  [trip-360-modal] {
    height: min(55vh, 1080px);
  }
}
dialog[open] {
  display: block;
}

[trip-360-modal]::backdrop {
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99998;
}

[trip-360-toggle]:checked + [trip-360-modal] {
  pointer-events: all;
  opacity: 1;
}

[trip-360-modal-iframe] {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
}

@media (orientation: portrait) {
  [trip-360-modal-iframe] {
    width: 100%;
  }
}
@media (orientation: landscape) {
  [trip-360-modal-iframe] {
    height: 100%;
  }
}
[trip-360-modal-close] {
  all: unset;
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  color: var(--brand-black);
  background-color: rgb(255, 255, 255);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
  z-index: 99999;
  cursor: pointer;
}

@media (max-width: 1024px) and (orientation: portrait) {
  [trip-360-modal-close] {
    top: auto;
    bottom: -4rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
[trip-360-modal-close]:hover {
  background-color: var(--color-cta-primary-bg);
  color: var(--brand-white);
}

@supports not (aspect-ratio: 16/9) {
  [trip-360-modal] {
    min-width: 80vw;
    max-width: 1920px;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
  dialog[open]::after {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    background-color: rgba(0, 0, 0, 0.85);
  }
  [trip-360-modal-iframe] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
[breadcrumbs] {
  align-self: end;
  grid-row: 1;
  grid-column: 1;
  color: var(--brand-white);
  font-weight: var(--font-weight-header);
  font-size: var(--font-size-body-small-fallback);
  font-size: var(--font-size-body-small);
  width: min(95vw, 1600px);
  margin: 0 auto;
  transform: scale(1);
  transform-origin: left;
  transition: all 500ms ease-in-out;
  padding-bottom: 0.5rem;
  z-index: 601;
}

.js-transform-breadcrumbs {
  transform: scale(0.9);
  padding-bottom: 0;
}

[breadcrumbs-list] {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  list-style: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-bg-black-opaque);
  border-radius: var(--border-radius-pill);
  padding: 0.5rem 1rem;
}

[breadcrumbs-item] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

[breadcrumbs-link] {
  border-bottom: 1px solid transparent;
  transition: border-bottom 250ms ease-in-out;
}

[breadcrumbs-link]:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

[breadcrumbs-home-icon]::after,
[breadcrumbs-item]:not(:last-child)::after {
  content: "";
  background-image: url("/assets/images/icons/chevron-white.svg");
  background-repeat: no-repeat;
  width: 6px;
  height: 9px;
}

[breadcrumbs-mobile] {
  display: flex;
  -moz-column-gap: 0.4rem;
       column-gap: 0.4rem;
  color: var(--color-text-dark);
  font-size: calc(var(--font-size-body-smallest-fallback) * 0.95);
  font-size: calc(var(--font-size-body-smallest) * 0.95);
  font-weight: var(--font-weight-body-medium);
  white-space: nowrap;
  overflow: hidden;
}

[breadcrumbs-mobile-home-link] {
  height: 100%;
}

[breadcrumbs-mobile-home-icon] {
  display: grid;
  grid-template-columns: 15px auto;
  align-items: center;
  -moz-column-gap: 0.4rem;
       column-gap: 0.4rem;
  height: 100%;
  margin-left: 0.4rem;
}
[breadcrumbs-mobile-home-icon] svg {
  width: 15px;
  height: 15px;
  top: -1px;
}

[breadcrumbs-mobile-list] {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  overflow: hidden;
}

[breadcrumbs-mobile-item] {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.4rem;
       column-gap: 0.4rem;
}
[breadcrumbs-mobile-item] :hover {
  cursor: pointer;
}

[breadcrumbs-mobile-home-icon]::after,
[breadcrumbs-mobile-item]:not(:last-child)::after {
  content: "";
  background-image: url("/assets/images/icons/chevron-black.svg");
  background-repeat: no-repeat;
  width: 6px;
  height: 9px;
}

[breadcrumbs-mobile]::after {
  content: "";
  position: absolute;
  background: var(--brand-silver-light);
  opacity: 0.75;
  top: 0;
  right: 0;
  width: 1rem;
  height: 100%;
}

[style*=font]:not([id^=om-]) {
  all: unset !important;
}

a a {
  display: none;
}

.dolly-in-slow {
  animation: dolly-in-slow 10s ease-out both;
}

.invisible {
  opacity: 0;
}

.hide-off-canvas {
  position: fixed;
  top: -9999px;
}

.hide,
[hide~=all] {
  display: none;
}

[hide~="all!"] {
  display: none !important;
}

@media (max-width: 767px) {
  [hide~=sm] {
    display: none;
  }
  [hide~="sm!"] {
    display: none !important;
  }
}
@media (min-width: 0) {
  [hide~="sm+"] {
    display: none;
  }
  [hide~="sm!+"],
  [hide~="sm+!"] {
    display: none !important;
  }
  [src$="www.nathab.com"] {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  [hide~=md] {
    display: none;
  }
  [hide~="md!"] {
    display: none !important;
  }
}
@media (min-width: 768px) {
  [hide~="md+"] {
    display: none;
  }
  [hide~="md!+"],
  [hide~="md+!"] {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  [hide~=lg],
  [hide~="lg+"] {
    display: none;
  }
  [hide~="lg!"],
  [hide~="lg!+"],
  [hide~="lg+!"] {
    display: none !important;
  }
}
[divider] {
  border-top: 1px solid var(--brand-gray-dark);
}

/*# sourceMappingURL=style.css.map */