:root {
  --color-brand-primary: #085251;
  --color-brand-primary-02: #003335;
  --color-brand-primary-03: #103234;
  --color-brand-secondary: #faec25;
  --color-text: #004240;
  --section-banner-min-height: 18rem;
  --header-logo-width: 7.6rem;
  --header-height: 5.8rem;
}
@media (min-width: 480px) {
  :root {
    --product-logo-width: 9rem;
    --product-logo-padding-inline: 1.2rem;
    --section-container-padding-inline: 2rem;
  }
}
@media (min-width: 640px) {
  :root {
    --banner-heading-padding-left: 1rem;
    --banner-heading-width: 40%;
    --banner-heading-min-width: 37rem;
  }
}
@media (min-width: 768px) {
  :root {
    --page-background-position: center 40%;
    --page-background-size: clamp(130rem, calc(69.2405rem + 7.9114vw), 180rem);
    --header-height: 7.5rem;
    --header-logo-width: 10.7rem;
    --section-banner-title-font-size: 2.8rem;
    --section-banner-min-height: clamp(18rem, calc(8.2785rem + 1.2658vw), 26rem);
    --section-container-padding-inline: 2.5rem;
    --section-header-max-width: 85.5rem;
    --products-max-width: 85.5rem;
    --product-width: calc(50% - 0.75rem);
    --product-logo-width: 8rem;
    --product-logo-padding-inline: 1rem;
    --banner-heading-min-width: 45rem;
  }
}
@media (min-width: 860px) {
  :root {
    --product-logo-width: 9rem;
    --product-logo-padding-inline: 1.2rem;
    --section-container-padding-inline: 2rem;
    --banner-heading-padding-left: 2rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --footer-grid-template-areas:
    "partner nav logo"
    "partner copyright logo";
    --footer-grid-template-columns: 17rem 1fr 17rem;
    --footer-logo-margin-bottom: 0;
    --footer-partner-margin-bottom: 0;
    --footer-nav-link-padding: 0;
    --footer-logo-width: 10rem;
    --section-header-align: left;
    --section-container-padding-inline: 3rem;
    --section-container-padding-top: 4rem;
    --section-container-padding-bottom: 3rem;
    --testimonials-margin-left: 0;
    --banner-heading-width: 50%;
    --banner-heading-min-width: 50%;
  }
}
@media (min-width: 1100px) {
  :root {
    --header-height: 10.2rem;
    --header-logo-width: 12.5rem;
    --header-padding-bottom: 2rem;
    --header-justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  :root {
    --section-container-padding-inline: 3rem;
    --section-header-max-width: 129rem;
    --section-container-padding-top: 5rem;
    --section-container-padding-bottom: 4rem;
    --products-max-width: 129rem;
    --product-width: calc(33.333333% - 1rem);
  }
}
@media (min-width: 1400px) {
  :root {
    --page-background-size: 180rem;
  }
}

/* GENERAL */
h1, h2, h3, h4, h5, h6, p, div, span, a {
  text-wrap: pretty;
}

/* HEADER */
.page--home .page-header,
.page--series .page-header {
  background: rgba(7, 82, 81, 0.9);
}

.page-header .container {
  max-width: 140rem;
  width: 100%;
  align-items: center;
  padding-bottom: var(--header-padding-bottom, 0);
  justify-content: var(--header-justify-content, normal);
}
.page-header .nav-main--desktop {
  display: inline-flex;
}
.page-header .logo img {
  width: var(--header-logo-width, 7.6rem);
  height: auto !important;
}
@media (max-width: 1099px) {
  .page-header .container {
    display: grid;
    grid-template-columns: 100px auto 100px;
    grid-template-areas: "nav-burger header-logo header-nav";
  }
  .page-header .nav-main--desktop {
    grid-area: header-nav;
    justify-content: flex-end;
  }
  .page-header .menu__main li:not([data-show-on-mobile=true]) {
    display: none;
  }
  .page-header .logo {
    grid-area: header-logo;
    justify-self: center;
    width: auto;
  }
  .page-header .nav-burger {
    grid-area: nav-burger;
    justify-self: start;
  }
}

@media screen and (min-width: 768px) {
  .nav-main--desktop {
    margin-right: -1rem;
  }
  .nav--contact a.icn--phone {
    margin-right: 0;
  }
}
/* FOOTER */
.page-footer .container {
  display: grid;
  grid-template-columns: var(--footer-grid-template-columns, 1fr);
  grid-template-areas: var(--footer-grid-template-areas, "partner" "logo" "copyright" "nav");
  gap: 0;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.page-footer .partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--footer-partner-margin-bottom, 2rem);
  grid-area: partner;
}
.page-footer .partner span {
  font-size: 1.25rem;
}
.page-footer .partner img {
  margin: 0 auto;
  width: 100%;
  max-width: 10rem;
}
.page-footer .footer-logo {
  margin-bottom: var(--footer-logo-margin-bottom, 1rem);
  grid-area: logo;
  display: grid;
  place-items: center;
}
.page-footer .footer-logo img {
  margin: 0 auto;
  width: 100%;
  max-width: var(--footer-logo-width, 8rem);
}
.page-footer .nav-footer {
  grid-area: nav;
}
.page-footer .nav-footer a {
  padding: var(--footer-nav-link-padding, 0.8rem 0);
}
.page-footer .copyright {
  grid-area: copyright;
  display: block;
  text-align: center;
}

/* HOME BACKGROUND */
.page--home,
.page--series {
  position: relative;
  --page-background-image: url(../images/home-bg-mobile.jpg);
}
.page--home::before,
.page--series::before {
  content: "";
  width: 100%;
  height: 100%;
  max-height: calc(var(--section-banner-min-height) + var(--header-height) + 4.5rem + 1rem);
  display: block;
  position: absolute;
  z-index: -1;
  background-image: var(--page-background-image);
  background-size: var(--page-background-size, 100%) auto;
  background-position: var(--page-background-position, center 10%);
  background-repeat: no-repeat;
  background-color: #1b2816;
  pointer-events: none;
}
@media (min-width: 768px) {
  .page--home,
  .page--series {
    --page-background-image: url(../images/home-bg-desktop.jpg);
  }
}

.page--series {
  --page-background-image: url(../images/banner1-bg-mobile.jpg);
}
@media (min-width: 768px) {
  .page--series {
    --page-background-image: url(../images/banner1-bg-desktop.jpg);
  }
}

/* SECTION BANNER */
.section--banner {
  padding-top: 2rem;
  padding-bottom: clamp(0.75rem, -0.769rem + 3.165vw, 2rem);
  position: relative;
  min-height: var(--section-banner-min-height);
  display: flex;
  align-items: end;
  justify-content: center;
}
.section--banner::after {
  content: "";
  background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.5) 70%);
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.section--banner .title {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 1.056rem + 2.222vw, 3rem);
  line-height: 1.15;
  letter-spacing: normal;
  color: #ffffff;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  font-family: "Halisa Wide", Helvetica, Arial sans-serif;
  font-weight: 500;
  text-wrap: pretty;
  max-width: 35ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section--banner .title strong {
  font-family: "Halisa Wide Bold", Helvetica, Arial sans-serif;
  font-weight: 700;
}

/* SECTION */
.section-bg--light-grey {
  background: #F5F5F5;
}

p.note {
  max-width: 100ch;
}

p.center {
  text-align: center;
  margin: 0 auto;
}

/* SECTION PRODUCT & OPERATOR */
.section--product {
  background: rgb(255, 255, 255);
}

.section--operator .container,
.section--product .container {
  max-width: 140rem;
  padding-top: var(--section-container-padding-top, 3rem);
  padding-bottom: var(--section-container-padding-bottom, 2rem);
  padding-left: var(--section-container-padding-inline, 1.5rem);
  padding-right: var(--section-container-padding-inline, 1.5rem);
}

.section__header {
  text-align: var(--section-header-align, center);
  margin-bottom: 1.5rem;
  max-width: var(--section-header-max-width, none);
  margin-left: auto;
  margin-right: auto;
}
.section__header .title {
  font-family: "BT Brik Oblique";
  font-size: 4rem;
  line-height: 0.85;
  font-weight: 500;
  text-wrap: pretty;
  margin-bottom: 1rem;
}
.section__header h2.title {
  font-size: 3rem;
}
.section__header p {
  font-size: 1.6rem;
  line-height: 1.4;
  text-wrap: pretty;
}
.section__header *:last-child {
  margin-bottom: 0;
}

.product-list,
.operator-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
  padding-bottom: 2rem;
  max-width: var(--products-max-width, 50rem);
  margin: 0 auto;
}

.product-list {
  margin-top: 1rem;
}

.card-wrapper {
  filter: drop-shadow(0 0.4rem 1rem rgba(0, 0, 0, 0.15));
  width: var(--product-width, 100%);
  max-width: none;
}

.card.product,
.card.operator {
  width: 100%;
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2rem 2.5rem;
  color: var(--color-text);
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0 100%);
}

.card.product {
  background: linear-gradient(180deg, var(--color-brand-primary-02), var(--color-brand-primary));
  padding-right: 1.5rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.card.product::before {
  content: "";
  background: no-repeat 100% 50%/25% url(../images/texture-vertical.svg);
  position: absolute;
  width: 100%;
  height: 100%;
}

.card.product .logo {
  width: var(--product-logo-width, 8rem);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.card.product .logo img {
  width: 100%;
  height: auto;
}
.card.product .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 0.5rem;
}
.card.product .title,
.card.product .venue,
.card.product .date {
  text-align: left;
  color: #ffffff;
  text-wrap: pretty;
}
.card.product .venue {
  margin-bottom: 0.5rem;
}
.card.product .date {
  margin-bottom: 1rem;
}
.card.product hr {
  margin: 0 0 1rem 0;
  width: calc(100% - 1.5rem);
}
.card.product .title + hr {
  margin-top: -0.7rem;
}
.card.product .action {
  align-items: flex-start;
  padding: 0;
  margin: 0;
  min-height: auto;
}
.card.product .action .button {
  width: auto;
  padding: 1rem 1.2rem 1.2rem 1.2rem;
  font-size: 1.7rem;
  line-height: 1.2;
  position: relative;
}

.card.operator {
  text-decoration: none;
}
.card.operator .title {
  font-family: "Halisa Wide Bold", Helvetica, Arial sans-serif;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: pretty;
}

/* TESTIMONIALS */
.section--testimonials h1,
.section--testimonials .testimonials {
  margin-left: var(--testimonials-margin-left, auto);
  margin-right: auto;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  display: flex;
  opacity: 0.2;
}

/* PACKAGE INCLUSIONS */
ul.package_inclusions {
  margin: 0 auto 3rem auto;
  row-gap: 0;
  -moz-column-gap: var(--package-inclusions-gap, 0);
       column-gap: var(--package-inclusions-gap, 0);
}
ul.package_inclusions li {
  margin: 0;
}

@media screen and (min-width: 580px) {
  ul.package_inclusions li {
    width: 46%;
  }
}
@media screen and (min-width: 980px) {
  ul.package_inclusions li {
    width: 33.333333%;
  }
}
/* BANNER HEADING */
.banner .banner__heading {
  padding-left: var(--banner-heading-padding-left, 0.5rem);
  min-width: var(--banner-heading-min-width, 100%);
  width: var(--banner-heading-width, 100%);
}
.banner .banner__heading .text {
  max-width: 67rem;
  text-wrap: pretty;
}
.banner .banner__heading .text h1 {
  text-wrap: pretty;
}/*# sourceMappingURL=style-2026.css.map */