/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/header/scss/index.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.header {
  background-color: #ffffff;
  height: var(--header-mobile-height);
  width: 100%;
  position: relative;
  z-index: 11;
}
@media screen and (min-width: 1024px) {
  .header {
    height: var(--header-desktop-height);
  }
}
.header__inner {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  height: var(--header-mobile-height);
  background: #ffffff;
  transition: all 0.5s ease;
}
@media screen and (min-width: 1024px) {
  .header__inner {
    height: var(--header-desktop-height);
  }
}
.header.is-hidden .header__inner {
  top: -90px;
  transform: translateY(-90px);
}
.header.is-bordered .header__inner {
  border-bottom: 1px solid #e3e3e3;
}
.header__container {
  position: static;
  height: var(--header-mobile-height);
  display: flex;
  flex-flow: row wrap;
}
@media screen and (min-width: 768px) {
  .header__container {
    padding-right: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .header__container {
    height: var(--header-desktop-height);
    padding-right: 0;
    max-width: 1650px;
  }
}
.header__logo {
  flex-grow: 1;
  align-items: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 50px;
}
.header__logo .icon {
  width: 108px;
  height: 18px;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    flex-grow: initial;
  }
  .header__logo .icon {
    width: 137px;
    height: 22px;
  }
}
.header__search {
  width: 22px;
  height: var(--header-mobile-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 28px;
}
.header__search .icon {
  width: 22px;
  height: 22px;
  stroke: #004547;
  stroke-width: 1.5px;
  stroke-linecap: square;
  stroke-linejoin: round;
}
.header__search-link {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  appearance: none;
}
@media screen and (min-width: 1024px) {
  .header__search {
    width: var(--header-desktop-height);
    height: var(--header-desktop-height);
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header__menu-mobile-cta {
    display: none;
  }
}
.header__menu-mobile-cta {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  width: 20px;
  height: var(--header-mobile-height);
}
.header__menu-icon {
  width: 20px;
  cursor: pointer;
  padding: 0;
  display: inline-block;
  position: relative;
}
.header__menu-icon span {
  position: relative;
  height: 4px;
  width: 18px;
  display: block;
  margin: 0 auto;
}
.header__menu-icon span.middle {
  transition: all 0.3s ease;
  background-color: #004547;
  height: 2px;
}
.header__menu-icon span.middle:before, .header__menu-icon span.middle:after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #004547;
  transition: all 0.3s ease;
}
.header__menu-icon span.middle:before {
  top: -6px;
  width: 18px;
  transition-property: top, transform;
}
.header__menu-icon span.middle:after {
  bottom: -6px;
  width: 9px;
  right: 0;
  left: auto;
  transition-property: bottom, transform;
}
.nav-open .header__menu-icon span.middle {
  background-color: transparent;
  transition-delay: 0s;
}
.nav-open .header__menu-icon span.middle:before {
  top: 0;
  transform: rotate(-45deg);
}
.nav-open .header__menu-icon span.middle:after {
  top: 0;
  transform: rotate(45deg);
}
.nav-open .header__menu-icon span.middle:before, .nav-open .header__menu-icon span.middle:after {
  width: 18px;
}

.nav {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  transition: left 0.3s ease;
  background-color: #004547;
  color: #ffffff;
  z-index: 700;
  height: calc(var(--full-size-vh) - var(--header-mobile-height));
  margin-top: var(--header-mobile-height);
}
.nav-open .nav {
  left: 0;
}
@media screen and (min-width: 1024px) {
  .nav {
    position: static;
    flex-grow: 1;
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
    color: #004547;
  }
}
.nav__primary {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .nav__primary {
    justify-content: flex-start;
  }
}
.nav__item {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #1a5859;
}
@media screen and (max-width: 1023px) {
  .nav__item .nav__link .icon {
    display: none;
  }
  .nav__item.has-child .nav__link {
    padding-right: 64px;
  }
  .nav__item.has-child .nav__link .icon {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .nav__item {
    width: auto;
    height: var(--header-desktop-height);
    border: none;
  }
  .nav__item.has-child .nav__link {
    padding-right: 37px;
    position: relative;
  }
  .nav__item.has-child .nav__link .icon {
    display: block;
    position: absolute;
    width: 7px;
    height: 13px;
    padding: 0;
    right: 18px;
    top: 33px;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke: #004547;
    stroke-width: 2px;
  }
  .nav__item.has-child .nav__link:hover:after, .nav__item.has-child .nav__link.active:after {
    right: 37px;
  }
  .nav__item.has-child:hover .nav__mega-menu {
    opacity: 1;
    visibility: visible;
  }
}
.nav__link {
  position: relative;
  font-size: 16px;
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #ffffff;
  text-decoration: none;
  height: 100%;
  display: block;
  padding: 23px 24px;
  text-align: left;
  cursor: pointer;
}
.nav__link:hover, .nav__link.is-active {
  background: #00393a;
}
.nav__link .icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 65px;
  width: 64px;
  padding: 25px 28px;
  stroke: #e5ff66;
  stroke-width: 2px;
  transform: rotate(180deg);
}
@media screen and (min-width: 1024px) {
  .nav__link {
    color: #004547;
    text-align: center;
    padding: 0 18px;
    line-height: var(--header-desktop-height);
  }
  .nav__link .icon {
    display: none;
  }
  .nav__link:hover, .nav__link.is-active {
    background: transparent;
  }
  .nav__link:hover:after, .nav__link.is-active:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 26px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: #004547;
  }
}
.nav__mega-menu {
  position: absolute;
  top: 0;
  left: auto;
  right: -250%;
  width: 100%;
  transition: all 0.8s cubic-bezier(0.58, 0, 0, 0.75);
  background-color: #004547;
  z-index: 101;
  padding: 0 0 40px;
  overflow: auto;
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.nav__mega-menu.open {
  transition: all 0.8s cubic-bezier(0.42, 0, 0, 0.98);
  right: 0;
  padding: 0 0 75px;
}
@media screen and (min-width: 1024px) {
  .nav__mega-menu {
    position: absolute;
    width: calc(100% - 50px * 2);
    max-width: 1600px;
    top: 100%;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    background-color: #ffffff;
    border-top: 1px solid #e3e3e3;
    z-index: 5;
    padding: 0;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 68px 44px 0 rgba(0, 0, 0, 0.35);
    display: flex;
    flex-flow: nowrap row;
    overflow: hidden;
    transition: opacity 0.3s ease;
  }
  .nav__mega-menu .nav__back-btn {
    display: none;
  }
  .nav__mega-menu.open {
    padding: 0;
    right: auto;
  }
}
@media screen and (max-width: 1023px) {
  .nav__mega-menu .nav__banner {
    display: none;
  }
}
.nav__back-btn {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin: 24px;
}
.nav__banner {
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .nav__banner {
    background: #94f5d4;
    width: 460px;
    padding: 47px 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .nav__banner--mobile {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .nav__banner--mobile {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 22px 25px;
    background: #94f5d4;
    border-radius: 8px;
    color: #004547;
    padding: 22px 0 22px 22px;
  }
  .nav__banner--mobile .nav__img {
    margin-top: -20px;
    margin-bottom: -20px;
    margin-left: -30px;
    width: 200px;
  }
  .nav__banner--mobile .nav__banner-link {
    position: absolute;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    font-size: 0;
    text-indent: -1000em;
  }
}
.nav__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 700;
  text-transform: uppercase;
  color: #004547;
  font-size: 32px;
  text-align: left;
  line-height: 0.8;
  min-width: 50%;
  text-wrap: inherit;
}
@media screen and (min-width: 1024px) {
  .nav__title {
    font-size: 40px;
    text-align: center;
    line-height: 0.8;
    min-width: auto;
  }
}
.nav__secondary {
  display: block;
}
@media screen and (min-width: 1024px) {
  .nav__secondary {
    display: block !important;
    max-height: none !important;
    columns: 2;
    column-gap: 20px;
    padding: 37px 55px 7px;
    flex-grow: 1;
  }
  .nav__secondary .nav__secondary {
    columns: 1;
    padding: 0;
  }
}
@media screen and (min-width: 1280px) {
  .nav__secondary {
    columns: 3;
  }
}
@media screen and (min-width: 1366px) {
  .nav__secondary {
    columns: 4;
  }
}
.nav__item-secondary {
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
@media screen and (min-width: 1024px) {
  .nav__item-secondary {
    break-inside: avoid-column;
    padding-bottom: 30px;
  }
  .nav__item-secondary .nav__item-secondary {
    padding-bottom: 0;
    font-family: Gotham-book, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  .nav__item-secondary .nav__item-secondary .nav__link-secondary .icon-arrow {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .nav__item-secondary .nav__accordion-trigger {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .nav__item-secondary {
    position: relative;
    display: block;
    width: 100%;
    background: #00393a;
    border-bottom: 1px solid #1a5859;
  }
  .nav__item-secondary:first-child {
    border-top: 1px solid #1a5859;
  }
  .nav__item-secondary .nav__item-secondary {
    background: #002c2d;
    font-family: Gotham-book, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }
  .nav__item-secondary .nav__item-secondary:last-child {
    border-bottom: none;
  }
  .nav__item-secondary .nav__item-secondary .nav__link-secondary {
    padding: 20px 24px;
  }
  .nav__item-secondary .nav__accordion-trigger {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 64px;
    width: 64px;
    z-index: 15;
    cursor: pointer;
  }
}
.nav__link-secondary {
  display: block;
  text-decoration: none;
  color: #ffffff;
}
.nav__link-secondary.has-child .icon-arrow {
  display: none;
}
@media screen and (min-width: 1024px) {
  .nav__link-secondary {
    display: inline-block;
    margin-bottom: 15px;
    color: #004547;
  }
  .nav__link-secondary:hover {
    color: #004547;
    text-decoration: none;
  }
  .nav__link-secondary .icon-arrow {
    display: none;
  }
  .nav__link-secondary[href]:hover {
    color: #004547;
    text-decoration: underline;
  }
  .nav__link-secondary[href] .icon-arrow {
    display: inline-block;
    stroke: #004547;
    stroke-width: 2px;
    width: 7px;
    height: 13px;
    margin-left: 10px;
    transform: rotate(180deg);
    vertical-align: middle;
  }
}
@media screen and (max-width: 1023px) {
  .nav__link-secondary {
    padding: 23px 25px;
  }
  .nav__link-secondary .icon-arrow {
    position: absolute;
    top: 22px;
    right: 32px;
    height: 15px;
    width: 8px;
    stroke: #e5ff66;
    stroke-width: 2px;
    transform: rotate(180deg);
  }
}
.nav__link-secondary.plus-minus-icon:before, .nav__link-secondary.plus-minus-icon:after {
  background-color: #e5ff66;
}
@media screen and (min-width: 1024px) {
  .nav__link-secondary.plus-minus-icon:before, .nav__link-secondary.plus-minus-icon:after {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .nav__link-secondary.plus-minus-icon .icon-arrow {
    display: none;
  }
}
/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/inspect-modal/scss/index.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.inspect-modal__content {
  width: 1056px;
  height: calc(var(--vh, 1vh) * 71);
  min-height: 180px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0px 20px 44px 0px rgba(0, 0, 0, 0.3490196078);
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .inspect-modal__content {
    align-self: end;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: calc(var(--full-size-vh) - 98px);
    max-width: 400px;
    margin: 0 24px;
    gap: 32px;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
  .inspect-modal__content::before {
    content: "";
    position: fixed;
    top: 73px;
    left: 0;
    width: 100vw;
    background-color: #ccdada;
    height: 1px;
  }
}

.inspect-modal__image {
  background-color: #edebeb;
}
.inspect-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .inspect-modal__image {
    height: 235px;
  }
}

.inspect-modal__products {
  padding: 48px 58px 48px 56px;
  overflow-y: auto;
}
@media screen and (max-width: 1023px) {
  .inspect-modal__products {
    padding: 0;
    padding-bottom: 32px;
  }
}

.inspect-modal__products-title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #004547;
  margin-bottom: 23px;
}
@media screen and (max-width: 1023px) {
  .inspect-modal__products-title {
    font-size: 26px;
  }
}

.inspect-modal__products-list {
  display: grid;
  grid-template-columns: 202px 202px;
  gap: 24px;
}
@media screen and (max-width: 1023px) {
  .inspect-modal__products-list {
    grid-template-columns: repeat(auto-fill, minmax(154px, 0.5fr));
    gap: 16px;
  }
}

.inspect-modal__product-item {
  position: relative;
}

.inspect-modal__product-img {
  width: 202px;
  height: 202px;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--product-bg-color, #edebeb);
  margin-bottom: 24px;
}
.inspect-modal__product-img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1023px) {
  .inspect-modal__product-img {
    width: auto;
    height: 164px;
    border-radius: 3px;
  }
}

.inspect-modal__product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #004547;
  letter-spacing: -0.01em;
}

.inspect-modal__product-name a {
  text-decoration: none;
  color: #004547;
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  transition: opacity 0.3s ease;
}
.inspect-modal__product-name a::before {
  position: absolute;
  content: "";
  inset: 0;
}
.inspect-modal__product-name a:hover, .inspect-modal__product-name a:focus-visible {
  opacity: 0.7;
}

.inspect-modal__product-color {
  position: relative;
  font-size: 14px;
  display: grid;
  align-items: center;
  gap: 8px;
  grid-template-columns: 20px 1fr;
}
.inspect-modal__product-color::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--product-bg-color, transparent);
  border-radius: 50%;
}

.inspect-modal__button {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5.5px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(0, 69, 71, 0.8);
  transition: background-color 0.3s ease;
}
.inspect-modal__button:hover, .inspect-modal__button:focus-visible {
  background-color: #e5ff66;
}
.inspect-modal__button:hover .inspect-modal__icon, .inspect-modal__button:focus-visible .inspect-modal__icon {
  background-color: #004547;
}

.inspect-modal__icon {
  width: 32px;
  height: 25px;
  background-color: #ffffff;
  mask-image: url(/dist/images/inspect-icon-5354fda4de3187621467.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  transition: background-color 0.3s ease;
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/hero/scss/index.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.hero {
  padding: 0 24px;
  min-height: 164px;
  background: var(--bg-colour);
}
@media screen and (min-width: 768px) {
  .hero {
    padding: 0 50px;
    min-height: 330px;
  }
}
.hero.has-text-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.hero.has-text-center .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.hero__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 56px;
  line-height: 0.8;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 24px 0;
  max-width: 625px;
  color: var(--font-colour);
}
@media screen and (min-width: 768px) {
  .hero__title {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1024px) {
  .hero__title {
    font-size: 88px;
    line-height: 0.8;
  }
}
.hero.has-text-left .hero__title {
  text-align: left;
}
.hero.has-text-center .hero__title {
  text-align: center;
}
/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/hero-standard/scss/index.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.hero-standard {
  background: var(--bg-colour);
  min-height: 504px;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hero-standard {
    min-height: 460px;
  }
}
@media screen and (min-width: 768px) {
  .hero-standard--large-height {
    min-height: 670px;
  }
}
.hero-standard--full-sized {
  display: flex;
  color: #ffffff;
}
.hero-standard--half-sized {
  display: flex;
  flex-direction: column;
  color: var(--font-colour);
}
@media screen and (min-width: 768px) {
  .hero-standard--half-sized {
    flex-direction: row-reverse;
  }
}
.hero-standard__image {
  position: relative;
}
.hero-standard--full-sized .hero-standard__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-standard--half-sized .hero-standard__image {
  animation: clip 750ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-standard--half-sized .hero-standard__image img {
  animation: scale 750ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-standard--half-sized .hero-standard__image .inspect-modal__button {
  animation: slide 750ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media screen and (min-width: 768px) {
  .hero-standard--half-sized .hero-standard__image {
    width: 50%;
  }
}
.hero-standard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-standard__image .inspect-modal__button {
  z-index: 5;
}
.hero-standard__content {
  position: relative;
  z-index: 5;
}
.hero-standard--full-sized .hero-standard__content {
  width: 100%;
  margin-top: 48px;
  margin-bottom: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-standard--half-sized .hero-standard__content {
  max-width: none !important;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .hero-standard--half-sized .hero-standard__content {
    width: 50%;
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
@media screen and (min-width: 768px) {
  .hero-standard--half-sized .hero-standard__content-inner {
    max-width: 750px;
    margin-left: auto;
  }
}
.hero-standard__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  color: #004547;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 56px;
}
@media screen and (min-width: 1024px) {
  .hero-standard__title {
    font-size: 88px;
  }
}
.hero-standard__title {
  color: #ffffff;
  margin-bottom: 30px;
  opacity: 0;
}
.hero-standard__title.is-visible {
  opacity: 1;
}
.hero-standard__title span {
  display: block;
  animation: clipUp 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-standard--half-sized .hero-standard__title {
  color: var(--font-color);
}
@media screen and (min-width: 768px) {
  .hero-standard--half-sized .hero-standard__title {
    max-width: 575px;
  }
}
.hero-standard__text {
  font-size: 16px;
  line-height: 1.6;
  animation: fadeIn 750ms linear;
}
@media screen and (min-width: 1024px) {
  .hero-standard__text {
    font-size: 18px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  .hero-standard--half-sized .hero-standard__text {
    max-width: 575px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes clip {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes scale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slide {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes clipUp {
  0% {
    clip-path: inset(0 0 100% 0);
    transform: translateY(100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/hero-big/scss/index.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.hero-big {
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero-big {
    min-height: 670px;
  }
}
.hero-big .swiper-wrapper {
  align-items: stretch;
  flex-direction: row;
}
.hero-big__slide {
  height: auto;
  align-self: stretch;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.hero-big__slide > div {
  flex-grow: 1;
}
.hero-big__slide.swiper-slide-active {
  z-index: 10;
}
.hero-big__pagination {
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 15px;
  bottom: 0;
  color: #ffffff;
  z-index: 10;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .hero-big__pagination {
    padding-bottom: 80px;
  }
}
.hero-big__pagination .swiper-pagination-bullet {
  position: relative;
  color: #ffffff;
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  width: 32px;
  height: 32px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow: visible;
  cursor: pointer;
}
.hero-big__pagination .swiper-pagination-bullet svg {
  --progress: 0;
  position: absolute;
  left: -2px;
  top: -2px;
  z-index: 10;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  stroke-width: 2px;
  stroke: #ffffff;
  fill: none;
  stroke-dashoffset: calc(113.3px * (1 - var(--progress)));
  stroke-dasharray: 113.3px;
  transform: rotate(-90deg);
}
.hero-big.without-autoplay .hero-big__pagination .swiper-pagination-bullet svg {
  stroke-dashoffset: 113.3px;
}
.hero-big.without-autoplay .hero-big__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active svg {
  stroke-dashoffset: 0;
}
@media screen and (min-width: 768px) {
  .hero-big__pagination .swiper-pagination-bullet {
    width: 40px;
    height: 40px;
    line-height: 37px;
  }
}
.hero-big .inspect-modal__button {
  z-index: 10;
}

.title-line {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  color: #004547;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 56px;
}
@media screen and (min-width: 1024px) {
  .title-line {
    font-size: 88px;
  }
}
.title-line {
  visibility: hidden;
  position: absolute;
}

.hero-item1 {
  position: relative;
  overflow: hidden;
  --font-colour: #ffffff;
}
.hero-item1--colour-white {
  --font-colour: #ffffff;
}
.hero-item1--colour-deep-teal {
  --font-colour: #004547;
}
@media screen and (min-width: 768px) {
  .hero-item1 {
    min-height: 670px;
  }
}
.hero-item1--transparent-overlay::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-item1__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 213px;
  z-index: 0;
  animation: clip 750ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-item1__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scale 750ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media screen and (min-width: 768px) {
  .hero-item1__background {
    height: 100%;
    width: 75%;
  }
}
.hero-item1__content {
  color: var(--font-colour);
  position: relative;
  z-index: 3;
  padding-top: 265px;
}
@media screen and (min-width: 768px) {
  .hero-item1__content {
    height: 100%;
    padding-top: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}
.hero-item1__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  animation: slide 750ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-item1__image img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .hero-item1__image {
    width: 45%;
    position: relative;
    margin-right: -50px;
  }
  .hero-item1__image img {
    height: auto;
    max-height: 589px;
  }
}
@media screen and (min-width: 1024px) {
  .hero-item1__image {
    margin-right: -75px;
  }
}
.hero-item1__text {
  padding-bottom: 87px;
}
@media screen and (min-width: 768px) {
  .hero-item1__text {
    padding-top: 87px;
    padding-left: 60px;
  }
}
.hero-item1__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  color: #004547;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 56px;
}
@media screen and (min-width: 1024px) {
  .hero-item1__title {
    font-size: 88px;
  }
}
.hero-item1__title {
  color: var(--font-colour);
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .hero-item1__title {
    max-width: 350px;
  }
}
.swiper-slide:first-child .hero-item1__title {
  opacity: 0;
}
.swiper-slide:first-child .hero-item1__title.is-visible {
  opacity: 1;
}
.hero-item1__title sup {
  font-size: 0.6em;
}
.hero-item1__title span {
  display: block;
  animation: clipUp 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-item1__descr {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
  animation: fadeIn 750ms linear;
}
@media screen and (min-width: 1024px) {
  .hero-item1__descr {
    font-size: 18px;
    line-height: 1.6;
  }
}
.hero-item1__btn {
  animation: fadeIn 750ms linear;
}
.hero-item1 .inspect-modal__button {
  animation: slide 750ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes clip {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes scale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slide {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes clipUp {
  0% {
    clip-path: inset(0 0 100% 0);
    transform: translateY(100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}
.hero-item2 {
  background: var(--bg-colour, #004547);
  color: var(--font-colour, #ffffff);
}
@media screen and (min-width: 768px) {
  .hero-item2 {
    min-height: 670px;
  }
}
.hero-item2--transparent-overlay::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-item2__content {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .hero-item2__content {
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
}
.hero-item2__image {
  width: 80%;
  margin: 0 -24px 45px auto;
  animation: clip 750ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media screen and (min-width: 768px) {
  .hero-item2__image {
    width: 60%;
    margin: 0;
    align-self: flex-start;
  }
}
.hero-item2__image img {
  width: 100%;
  object-fit: contain;
}
.hero-item2__text {
  width: 75%;
  min-width: 290px;
  padding-bottom: 87px;
}
@media screen and (min-width: 768px) {
  .hero-item2__text {
    width: auto;
    max-width: 460px;
    padding-top: 87px;
    padding-left: 60px;
  }
}
.hero-item2__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  color: #004547;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 56px;
}
@media screen and (min-width: 1024px) {
  .hero-item2__title {
    font-size: 88px;
  }
}
.hero-item2__title {
  color: var(--font-colour);
  margin-bottom: 30px;
}
.swiper-slide:first-child .hero-item2__title {
  opacity: 0;
}
.swiper-slide:first-child .hero-item2__title.is-visible {
  opacity: 1;
}
.hero-item2__title sup {
  font-size: 0.6em;
}
.hero-item2__title span {
  display: block;
  animation: clipUp 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-item2__descr {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
  animation: fadeIn 750ms linear;
}
@media screen and (min-width: 1024px) {
  .hero-item2__descr {
    font-size: 18px;
    line-height: 1.6;
  }
}
.hero-item2__btn {
  animation: fadeIn 750ms linear;
}
.hero-item2 .inspect-modal__button {
  animation: slide 750ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes clip {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes slide {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes clipUp {
  0% {
    clip-path: inset(0 0 100% 0);
    transform: translateY(100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}
.hero-item3 {
  min-height: 620px;
  background: #004547;
}
@media screen and (min-width: 768px) {
  .hero-item3 {
    min-height: 670px;
  }
}
.hero-item3__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-item3__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scaleOpacity 750ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-item3--transparent-overlay .hero-item3__background::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-item3__content {
  position: relative;
  height: 100%;
  text-align: center;
  padding-bottom: 87px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .hero-item3__content {
    padding-top: 87px;
    padding-left: 60px;
  }
}
.hero-item3__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  color: #004547;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 56px;
}
@media screen and (min-width: 1024px) {
  .hero-item3__title {
    font-size: 88px;
  }
}
.hero-item3__title {
  color: #ffffff;
  margin-bottom: 30px;
}
.swiper-slide:first-child .hero-item3__title {
  opacity: 0;
}
.swiper-slide:first-child .hero-item3__title.is-visible {
  opacity: 1;
}
.hero-item3__title sup {
  font-size: 0.6em;
}
.hero-item3__title span {
  display: block;
  animation: clipUp 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hero-item3__descr {
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  animation: fadeIn 750ms linear;
}
@media screen and (min-width: 1024px) {
  .hero-item3__descr {
    font-size: 18px;
    line-height: 1.6;
  }
}
.hero-item3__btn {
  align-self: center;
  animation: fadeIn 750ms linear;
}
.hero-item3 .inspect-modal__button {
  animation: slide 750ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleOpacity {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes clipUp {
  0% {
    clip-path: inset(0 0 100% 0);
    transform: translateY(100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/intro-area/scss/index.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.intro-area {
  color: #004547;
}
.intro-area__inner {
  padding: 0 24px;
  background: #adb5ff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .intro-area__inner {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
    gap: 6%;
  }
  .intro-area--image-False .intro-area__inner {
    justify-content: center;
  }
}
.intro-area__text {
  padding: 30px 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .intro-area__text {
    padding: 55px 12% 55px 0;
    width: calc(50% - 45px);
  }
  .intro-area--image-False .intro-area__text {
    text-align: center;
    width: 48%;
    min-width: 600px;
    padding-right: 0;
  }
}
.intro-area__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 56px;
  line-height: 0.8;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 0 0 24px;
  color: #004547;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .intro-area__title {
    padding: 0 0 30px;
  }
  .intro-area--image-False .intro-area__title {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .intro-area__title {
    font-size: 64px;
    line-height: 0.8;
  }
}
.intro-area__description {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .intro-area--image-False .intro-area__description {
    text-align: center;
  }
}
.intro-area__picture img {
  width: 68%;
}
@media screen and (min-width: 768px) {
  .intro-area__picture {
    width: calc(50% - 45px);
    position: relative;
  }
  .intro-area__picture picture {
    position: absolute;
    width: auto;
    max-width: 86%;
    bottom: 0;
    top: -27px;
    left: 14%;
  }
  .intro-area__picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 0 100%;
  }
}
/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/image-gallery/scss/index.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.image-gallery__image {
  position: relative;
}
.image-gallery__image img {
  width: 100%;
}
.image-gallery__description {
  color: #004547;
  font-family: Gotham-light, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 11px 16px;
  margin-top: 16px;
  border-left: 4px solid #e5ff66;
  vertical-align: middle;
}
.image-gallery__pagination {
  padding: 56px 120px 22px;
  display: flex;
  flex-flow: row nowrap;
  gap: 7px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .image-gallery__pagination {
    position: absolute;
    width: 172px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 116px;
    padding: 0;
    z-index: 10;
  }
}
.image-gallery__pagination > span {
  display: block;
  height: 6px;
  border-radius: 3px;
  flex-basis: 40px;
  max-width: 40px;
  cursor: pointer;
  background: rgba(0, 69, 71, 0.2);
}
.image-gallery__pagination > span.swiper-pagination-bullet-active {
  background: #004547;
}
@media screen and (min-width: 768px) {
  .image-gallery__pagination > span {
    background: rgba(255, 255, 255, 0.3);
  }
  .image-gallery__pagination > span.swiper-pagination-bullet-active {
    background: #e5ff66;
  }
}
.image-gallery__next.button, .image-gallery__prev.button {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 58px;
}
@media screen and (max-width: 767px) {
  .image-gallery__next.button, .image-gallery__prev.button {
    background: transparent;
    border: 2px solid rgba(0, 69, 71, 0.2);
  }
  .image-gallery__next.button:hover, .image-gallery__next.button:focus-visible, .image-gallery__prev.button:hover, .image-gallery__prev.button:focus-visible {
    border: 2px solid #004547;
  }
}
@media screen and (min-width: 768px) {
  .image-gallery__next.button, .image-gallery__prev.button {
    bottom: 96px;
    left: 50%;
    transform: translateX(-164px);
    border: none;
    background: #edebeb;
    --arrow-color: #004547;
  }
  .image-gallery__next.button:hover, .image-gallery__next.button:focus-visible, .image-gallery__prev.button:hover, .image-gallery__prev.button:focus-visible {
    background: #e5ff66;
  }
}
.image-gallery.is-single .image-gallery__next.button, .image-gallery.is-single .image-gallery__prev.button {
  display: none;
}
.has-blocked-buttons .image-gallery__next.button, .has-blocked-buttons .image-gallery__prev.button {
  pointer-events: none;
}
.image-gallery__next.button.swiper-button-disabled, .image-gallery__prev.button.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4;
}
.image-gallery__next.button {
  left: auto;
  right: 58px;
}
@media screen and (min-width: 768px) {
  .image-gallery__next.button {
    left: 50%;
    right: auto;
    transform: translateX(116px);
  }
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/loader/scss/index.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.loader {
  display: block;
  position: relative;
  --loader-size: 64px;
  --loader-color: #004547;
  --loader-line-width: calc(var(--loader-size) / 8);
  width: var(--loader-size);
  height: var(--loader-size);
}

.loader div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: var(--loader-size);
  height: var(--loader-size);
  border: var(--loader-line-width) solid var(--loader-color);
  border-radius: 50%;
  animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--loader-color) transparent transparent transparent;
}

.loader div:nth-child(1) {
  animation-delay: -0.45s;
}

.loader div:nth-child(2) {
  animation-delay: -0.3s;
}

.loader div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader--hidden {
  display: none;
}
/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/image-with-text/scss/index.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.image-with-text {
  color: #004547;
}
@media screen and (min-width: 768px) {
  .image-with-text {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .image-with-text.image-with-text--image-left {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .image-with-text {
    gap: 78px;
  }
}
.image-with-text__image {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .image-with-text__image {
    width: 60%;
    min-width: 60%;
    margin-bottom: 0;
  }
}
.image-with-text__image img {
  width: 100%;
}
.image-with-text__image-wrapper {
  position: relative;
}
.image-with-text__image-description {
  position: relative;
  margin-top: 18px;
  font-size: 14px;
  padding: 8px 0 8px 19px;
}
.image-with-text__image-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 4px;
  height: 100%;
  background: #e5ff66;
}
.image-with-text__title {
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #004547;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .image-with-text__title {
    font-size: 28px;
    line-height: 1.3;
  }
}
.image-with-text__description p {
  font-size: 16px;
  line-height: 1.6;
}
.image-with-text__description p + p {
  margin-top: 20px;
}
.image-with-text__btn {
  margin-top: 20px;
}
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/image-with-text-columns/scss/index.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.image-with-text-columns {
  color: #004547;
}
@media screen and (min-width: 768px) {
  .image-with-text-columns {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .image-with-text-columns {
    gap: 32px;
  }
}
.image-with-text-columns__item {
  margin-bottom: 40px;
}
.image-with-text-columns__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .image-with-text-columns__item {
    flex-grow: 1;
    flex-basis: 0;
    margin-bottom: 0;
  }
}
.image-with-text-columns__image {
  position: relative;
  margin-bottom: 35px;
  aspect-ratio: 1.6;
}
.image-with-text-columns__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-with-text-columns__title {
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #004547;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .image-with-text-columns__title {
    font-size: 28px;
    line-height: 1.3;
  }
}
.image-with-text-columns__descr p {
  font-size: 16px;
  line-height: 1.6;
}
.image-with-text-columns__descr p + p {
  margin-top: 20px;
}
.image-with-text-columns__btn {
  margin-top: 30px;
}
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/image-with-structured-text/scss/index.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.image-with-structured-text {
  color: #004547;
}
@media screen and (min-width: 768px) {
  .image-with-structured-text {
    display: flex;
    flex-direction: row;
  }
  .image-with-structured-text--image-right {
    flex-direction: row-reverse;
  }
}
.image-with-structured-text__picture {
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1.55;
}
@media screen and (min-width: 768px) {
  .image-with-structured-text__picture {
    width: 50%;
    min-width: 50%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .image-with-structured-text__picture {
    width: 64%;
    min-width: 64%;
  }
}
.image-with-structured-text__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-with-structured-text--image-left .image-with-structured-text__picture .inspect-modal__button {
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .image-with-structured-text__content {
    position: relative;
    margin-top: 96px;
    padding: 70px 40px;
    flex-grow: 1;
    z-index: 5;
  }
  .image-with-structured-text__content:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    left: -72px;
    right: 0;
    width: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: -1;
  }
  .image-with-structured-text--image-right .image-with-structured-text__content:before {
    left: 0;
    right: -72px;
  }
}
@media screen and (min-width: 1024px) {
  .image-with-structured-text__content {
    padding: 88px 63px;
  }
}
.image-with-structured-text__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  color: #004547;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 48px;
}
@media screen and (min-width: 1024px) {
  .image-with-structured-text__title {
    font-size: 64px;
  }
}
.image-with-structured-text__title {
  color: #004547;
  margin-bottom: 30px;
}
.image-with-structured-text__description {
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.image-with-structured-text__list {
  column-count: 2;
  margin-bottom: 35px;
}
.image-with-structured-text__list-item {
  font-size: 16px;
}
.image-with-structured-text__list-item > .link-underlined {
  margin-bottom: 10px;
}
.image-with-structured-text__btn {
  white-space: nowrap;
}
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/image-with-text-grid/scss/index.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.image-with-text-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .image-with-text-grid {
    gap: 30px;
  }
}
.image-with-text-grid__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .image-with-text-grid__item {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width: 1024px) {
  .image-with-text-grid__item {
    width: calc(50% - 15px);
  }
}
.image-with-text-grid__image {
  position: relative;
  aspect-ratio: 1.87;
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .image-with-text-grid__image {
    margin-bottom: 50px;
  }
}
.image-with-text-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.image-with-text-grid__image:hover img {
  transform: scale(1.1);
}
.image-with-text-grid__image .inspect-modal__button,
.image-with-text-grid__image .inspect-modal__icon {
  transition: background 0.3s ease;
}
.image-with-text-grid__image:hover .inspect-modal__button {
  background: #e5ff66;
  z-index: 10;
}
.image-with-text-grid__image:hover .inspect-modal__icon {
  background: #004547;
}
.image-with-text-grid__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  font-size: 0;
  text-indent: -1000em;
}
.image-with-text-grid__link:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease;
}
.image-with-text-grid__image:hover .image-with-text-grid__link:after {
  background: rgba(0, 69, 71, 0.6);
}
.image-with-text-grid__image:hover .image-with-text-grid__link:after {
  background: rgba(0, 69, 71, 0.6);
}
.image-with-text-grid__content {
  text-align: center;
}
.image-with-text-grid__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  color: #004547;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 48px;
}
@media screen and (min-width: 1024px) {
  .image-with-text-grid__title {
    font-size: 64px;
  }
}
.image-with-text-grid__title {
  text-align: center;
}
.image-with-text-grid__descr {
  max-width: 420px;
  margin: 25px auto 0;
  color: #004547;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .image-with-text-grid__descr {
    font-size: 18px;
    line-height: 1.6;
  }
}
.image-with-text-grid__btn {
  margin: 30px 0;
}
/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/message-modal/scss/index.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.message-modal {
  text-align: center;
  padding: 24px;
}
.message-modal__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  color: #004547;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 40px;
}
@media screen and (min-width: 1024px) {
  .message-modal__title {
    font-size: 48px;
  }
}
.message-modal__content {
  position: relative;
  overflow: auto;
  max-height: 100%;
  max-width: 750px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 95px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .message-modal__content {
    padding: 105px 95px;
  }
}
.message-modal__content .modal__close {
  position: absolute;
  right: 24px;
  top: 24px;
}
.message-modal__text {
  color: #004547;
  font-size: 16px;
}
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/hero-with-ctas/scss/index.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.hero-with-ctas {
  position: relative;
  min-height: 540px;
}
@media screen and (min-width: 1024px) {
  .hero-with-ctas {
    aspect-ratio: 2.4;
  }
}
.hero-with-ctas__image {
  position: relative;
}
.hero-with-ctas__image > img, .hero-with-ctas__image > video, .hero-with-ctas__image > picture, .hero-with-ctas__image > picture > img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-with-ctas__image > img, .hero-with-ctas__image > video, .hero-with-ctas__image > picture, .hero-with-ctas__image > picture > img {
  object-fit: cover;
  object-position: center 33.3%;
}
.hero-with-ctas__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-with-ctas__content {
  position: absolute;
  inset: 0;
  color: #ffffff;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: content-box;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .hero-with-ctas__content {
    padding: 120px;
    max-width: 70%;
    gap: 10px;
  }
}
.hero-with-ctas__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  color: #004547;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 80px;
}
@media screen and (min-width: 1024px) {
  .hero-with-ctas__title {
    font-size: 144px;
  }
}
.hero-with-ctas__title {
  color: #ffffff;
}
.hero-with-ctas__buttons {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .hero-with-ctas__buttons {
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}
