/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/modal/scss/index.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.modal {
  --modal-bg-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: background-color, translate 0.3s ease;
  height: var(--full-size-vh);
  overflow-y: hidden;
  animation-duration: 187.5ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.modal > .modal__close {
  position: absolute;
  right: 24px;
  top: 24px;
}
@media screen and (max-width: 1023px) {
  .modal > .modal__close {
    right: 16px;
    top: 16px;
    z-index: 2;
  }
}
@media screen and (min-width: 1024px) {
  .modal {
    animation-duration: 750ms;
  }
}
.modal.open {
  animation-name: overlayFadeIn;
}
.modal.close {
  animation-name: overlayFadeOut;
}
@media screen and (max-width: 1023px) {
  .modal--white-bg-mobile {
    --modal-bg-color: #ffffff;
    transition: none;
    animation: none;
  }
  .modal--white-bg-mobile.open {
    background-color: var(--modal-bg-color);
  }
}
.modal--with-top-offset {
  transform: translateY(var(--offset-top));
}

@keyframes overlayFadeIn {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: var(--modal-bg-color);
  }
}
@keyframes overlayFadeOut {
  from {
    background: var(--modal-bg-color);
  }
  to {
    background: rgba(0, 0, 0, 0);
  }
}
.modal__close {
  flex-shrink: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #edebeb;
  border-radius: 50%;
  display: flex;
  place-items: center;
  border: none;
  padding: 0;
  transition: background-color 0.3s ease;
}
.modal__close::after {
  content: "";
  background-color: #004547;
  mask-image: url(/dist/images/large-crest-icon-afea7d531a35c7d2023c.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  width: 100%;
  height: 14px;
  transition: background-color 0.3s ease;
}
.modal__close:hover, .modal__close:focus-visible {
  background-color: #004547;
}
.modal__close:hover::after, .modal__close:focus-visible::after {
  background-color: #ffffff;
}

/*** Dotter modal override ***/
.dtr-modal-container .dtr-modal-content {
  max-height: 75vh !important;
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/select/scss/index.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.ss-main {
  --ss-border-color: #ccdada;
  --ss-primary-color: #004547;
  --ss-bg-color: #ffffff;
  --ss-font-color: #004547;
  --ss-disabled-color: #004547;
  --ss-highlight-color: #edebeb;
  margin-bottom: 20px;
  height: 48px;
  color: #004547;
  border-width: 2px;
  border-radius: 8px;
}
.ss-main .ss-values {
  min-width: 0;
}
.ss-main:hover, .ss-main:focus, .ss-main.ss-open-below {
  box-shadow: none;
  border-color: #004547;
  border-radius: 8px;
}

.ss-content {
  --ss-primary-color: #004547;
  --ss-bg-color: #edebeb;
  --ss-font-color: #004547;
  background: transparent !important;
  margin-top: 8px !important;
  border: none !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

.ss-content .ss-list {
  padding: 0 !important;
}

.ss-content .ss-list .ss-option {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  height: 48px !important;
  line-height: 22px !important;
  padding: 0 12px !important;
  background-color: #edebeb !important;
  color: #004547 !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.ss-content .ss-list .ss-option > span {
  display: inline-block;
  margin-right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
.ss-content .ss-list .ss-option:hover {
  background-color: #004547 !important;
  color: #ffffff !important;
}
.ss-content .ss-list .ss-option:hover > span {
  border: 1px solid #ffffff;
}
.ss-content .ss-list .ss-option.ss-disabled {
  background-color: #004547 !important;
  color: #ffffff !important;
}
.ss-content .ss-list .ss-option.ss-highlighted {
  background-color: #004547 !important;
  color: #ffffff !important;
}
.ss-content .ss-list .ss-option.ss-selected, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  background-color: #004547 !important;
  color: #ffffff !important;
}
.ss-content .ss-list .ss-option.ss-selected > span, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected > span {
  border: 1px solid #ffffff;
}

.ss-single {
  align-items: center;
  height: 38px;
  line-height: 19px;
  padding: 0 10px 0 6px;
  color: #004547;
}
.ss-single > span {
  display: inline-block;
  margin-right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

div.ss-main .ss-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 24px;
  height: 14px;
  margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m);
  padding-right: 10px;
}
div.ss-main .ss-arrow path {
  stroke: #004547;
}
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/signup-form/scss/index.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.signup-form {
  display: flex;
  flex-direction: column;
  padding: 18px 16px 38px 16px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 20px 44px 0px rgba(0, 0, 0, 0.3490196078);
  transition: transform, opacity 0.3s ease;
  width: 345px;
  min-height: 548px;
  max-height: calc(var(--full-size-vh) - 30px);
  overflow-y: auto;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 1023px) {
  .signup-form {
    animation-duration: 187.5ms;
    opacity: 0;
  }
  .signup-form button[type=submit] {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .signup-form {
    animation-duration: 750ms;
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 428px;
    min-height: 548px;
    transform: translateX(100vw);
    padding: 18px 16px 30px 16px;
  }
}
.signup-form h1,
.signup-form h2,
.signup-form h3,
.signup-form h4,
.signup-form h5 {
  max-width: 70%;
}

.signup-form__content {
  padding: 0 8px;
}
@media screen and (min-width: 1024px) {
  .signup-form__content {
    padding: 0 16px;
  }
}

.signup-form__close {
  align-self: flex-end;
}
.signup-form__close::after {
  mask-image: url(/dist/images/crest-icon-6a3f9257c996a9b51514.svg);
}

.open .signup-form {
  animation-name: bubbleIn;
}
@media screen and (min-width: 1024px) {
  .open .signup-form {
    animation-name: slideIn;
  }
}

.close .signup-form {
  animation-name: bubbleOut;
}
@media screen and (min-width: 1024px) {
  .close .signup-form {
    animation-name: slideOut;
  }
}

@keyframes bubbleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes bubbleOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.9);
    opacity: 0;
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(100vw);
  }
  70% {
    transform: translateX(-25px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100vw);
  }
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/single-image/scss/index.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.single-image {
  margin: 0 auto;
  max-width: 1328px;
}
@media screen and (max-width: 1023px) {
  .single-image {
    max-width: 100%;
  }
}

.single-image__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;
}

.single-image__container {
  position: relative;
}
.single-image__container img {
  max-width: 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/we-recommend/scss/index.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.we-recommend {
  color: #ffffff;
  background: #004547;
  overflow-y: hidden;
}
@media screen and (max-width: 767px) {
  .we-recommend > .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.we-recommend__title {
  color: #e5ff66;
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  text-transform: uppercase;
  font-size: 56px;
  letter-spacing: -0.01em;
  line-height: 0.8;
  padding: 25px 24px 0;
}
@media screen and (min-width: 768px) {
  .we-recommend__title {
    padding: 50px 50px 0;
  }
}
@media screen and (min-width: 1024px) {
  .we-recommend__title {
    font-size: 144px;
    line-height: 0.8;
  }
}
.we-recommend__carousel {
  overflow-y: visible;
  overflow-x: clip;
}
.we-recommend__item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .we-recommend__item {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.we-recommend__item.swiper-slide-active {
  z-index: 5;
}
.we-recommend__image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .we-recommend__image {
    width: 50%;
    margin: 0 0 57px;
    overflow: visible;
  }
}
.we-recommend__image img {
  display: block;
  margin: 0 auto;
  max-height: 565px;
  max-width: 100%;
  opacity: 0;
}
.swiper-slide-active .we-recommend__image img, .swiper-slide-visible .we-recommend__image img, .swiper-slide-next .we-recommend__image img, .swiper-slide-prev .we-recommend__image img, .is-single .we-recommend__image img {
  opacity: 1;
}
.swiper-slide-next .we-recommend__image img {
  transform: translate(300%, 20%);
}
.swiper-slide-prev .we-recommend__image img {
  transform: translate(-300%, -20%);
}
.we-recommend__content {
  padding: 0 24px 35px;
  opacity: 0;
}
.swiper-slide-active .we-recommend__content, .is-single .we-recommend__content {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .we-recommend__content {
    width: 50%;
    padding-right: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .we-recommend__content {
    width: 43%;
    padding-right: 75px;
  }
}
@media screen and (min-width: 768px) {
  .we-recommend__content-inner {
    max-width: 442px;
  }
}
.we-recommend__product-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) {
  .we-recommend__product-title {
    font-size: 64px;
  }
}
.we-recommend__product-title {
  color: #ffffff;
  margin-bottom: 25px;
}
.we-recommend__features {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.we-recommend__features li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
}
.we-recommend__features li:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  width: 25px;
  height: 15px;
  background: #e5ff66;
  mask-image: url(/dist/images/tick-icon-adc3b203f5eec01686b3.svg);
  mask-repeat: no-repeat;
  mask-size: 15px 19px;
  mask-position: 0 0;
}
@media screen and (min-width: 768px) {
  .we-recommend__features li:before {
    height: 17px;
    mask-size: 17px 20px;
  }
}
.we-recommend__btn {
  margin-bottom: 22px;
}
.we-recommend__pagination {
  padding: 0 120px 57px;
  display: flex;
  flex-flow: row nowrap;
  gap: 7px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .we-recommend__pagination {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 10;
  }
}
.we-recommend__pagination > span {
  display: block;
  height: 6px;
  border-radius: 3px;
  flex-basis: 40px;
  max-width: 40px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
}
.we-recommend__pagination > span.swiper-pagination-bullet-active {
  background: #e5ff66;
}
.we-recommend__next, .we-recommend__prev {
  position: absolute;
  z-index: 10;
  bottom: 35px;
  left: 58px;
}
@media screen and (min-width: 768px) {
  .we-recommend__next, .we-recommend__prev {
    top: 50%;
    transform: translateY(-50%);
    bottom: 50%;
    left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .we-recommend__next, .we-recommend__prev {
    left: 58px;
  }
}
.we-recommend.is-single .we-recommend__next, .we-recommend.is-single .we-recommend__prev {
  display: none;
}
.we-recommend__next.swiper-button-disabled, .we-recommend__prev.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4;
}
.we-recommend__next {
  left: auto;
  right: 58px;
}
@media screen and (min-width: 768px) {
  .we-recommend__next {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .we-recommend__next {
    left: auto;
    right: 58px;
  }
}
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/quick-links/scss/index.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.quick-links {
  max-width: 1055px;
  margin: 0 auto;
  padding: 43px;
  padding-left: 54px;
  border-radius: 8px;
  background-color: #edebeb;
  width: calc(100vw - 48px);
}
@media screen and (max-width: 767px) {
  .quick-links {
    padding: 32px 20px 36px 24px;
  }
}

.quick-links__list {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .quick-links__list {
    column-gap: 38px;
  }
}
@media screen and (max-width: 767px) {
  .quick-links__list a {
    font-size: 14px;
  }
}

.quick-links__item {
  flex-grow: 1;
  flex-basis: calc(30% - 28px);
}
.quick-links__item .link-underlined {
  white-space: normal;
}
@media screen and (max-width: 767px) {
  .quick-links__item {
    flex-basis: calc(50% - 38px);
  }
  .quick-links__item .link-underlined:after, .quick-links__item .link-underlined:before {
    display: none;
  }
  .quick-links__item .link-underlined {
    text-decoration: underline;
    text-decoration-color: rgba(0, 69, 71, 0.3);
  }
  .quick-links__item .link-underlined:hover, .quick-links__item .link-underlined:focus, .quick-links__item .link-underlined:active {
    text-decoration-color: #004547;
  }
}

@media screen and (min-width: 768px) {
  .quick-links__text {
    overflow: hidden;
    display: block; /* Fallback for non-webkit */
    display: -webkit-box;
    height: 16px; /* Fallback for non-webkit */
    font-size: 16px;
    line-height: 1;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/promo-panel/scss/index.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.promo-panel__wrapper {
  background-color: var(--bg-colour);
}

.promo-panel {
  --item-gap: 32px;
  --vertical-paddings: 40px;
  --side-paddings: 23px;
  max-width: 1700px;
  margin: 0 auto;
  padding: var(--vertical-paddings) var(--side-paddings);
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 25px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .promo-panel {
    padding-top: 0;
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .promo-panel {
    --side-paddings: 50px;
  }
}
@media screen and (min-width: 1366px) {
  .promo-panel {
    --side-paddings: 186px;
  }
}
.promo-panel.mask-bag, .promo-panel.mask-bucket {
  justify-content: start;
  column-gap: 8vw;
  --side-paddings: 0;
  --item-gap: 40px;
}
.promo-panel.mask-bag .promo-panel__image, .promo-panel.mask-bucket .promo-panel__image {
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: calc(-1 * var(--vertical-paddings));
}
.promo-panel.mask-bag .promo-panel__image img, .promo-panel.mask-bucket .promo-panel__image img {
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .promo-panel.mask-bag .promo-panel__image, .promo-panel.mask-bucket .promo-panel__image {
    width: 97%;
    height: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .promo-panel.mask-bag .promo-panel__image, .promo-panel.mask-bucket .promo-panel__image {
    width: 452px;
    height: 467px;
  }
}
@media screen and (min-width: 1024px) {
  .promo-panel.mask-bag .promo-panel__image, .promo-panel.mask-bucket .promo-panel__image {
    width: 678px;
    height: 640px;
  }
}
@media screen and (max-width: 767px) {
  .promo-panel.mask-bag .promo-panel__title, .promo-panel.mask-bucket .promo-panel__title {
    max-width: 80%;
  }
}
.promo-panel.mask-bag .promo-panel__cta-wrapper, .promo-panel.mask-bucket .promo-panel__cta-wrapper {
  max-width: 432px;
}
@media screen and (max-width: 767px) {
  .promo-panel.mask-bag, .promo-panel.mask-bucket {
    --item-gap: 32px;
    --side-paddings: 25px;
    gap: 15px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .promo-panel.mask-bag, .promo-panel.mask-bucket {
    --side-paddings: 25px;
  }
}
@media screen and (min-width: 1366px) {
  .promo-panel.mask-bag, .promo-panel.mask-bucket {
    --side-paddings: 100px;
  }
}
@media screen and (min-width: 1500px) {
  .promo-panel.mask-bag, .promo-panel.mask-bucket {
    --side-paddings: 170px;
  }
}
.promo-panel.left .promo-panel__image {
  order: 0;
}
.promo-panel.left .promo-panel__cta-wrapper {
  order: 1;
}
@media screen and (max-width: 767px) {
  .promo-panel .promo-panel__image {
    width: 345px;
    height: 217px;
    order: 0;
    align-self: end;
    margin-right: calc(-1 * var(--vertical-paddings));
  }
  .promo-panel .promo-panel__cta-wrapper {
    order: 0;
    align-self: start;
  }
}
.promo-panel.mask-bag .promo-panel__image {
  mask-image: url(/dist/images/bag-68a5d801e8ab86e8998d.svg);
}
.promo-panel.mask-bucket .promo-panel__image {
  mask-image: url(/dist/images/bucket-b4f3ab465465c24dfc60.svg);
}
.promo-panel.mask- .promo-panel__image img {
  width: 100%;
  object-fit: contain;
  object-position: 50% 0;
}

.promo-panel__title,
.promo-panel__desc {
  color: var(--font-colour) !important;
}

.promo-panel__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) {
  .promo-panel__title {
    font-size: 72px;
  }
}
.promo-panel__title {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .promo-panel__title {
    max-width: 62%;
  }
}

.promo-panel__desc {
  font-family: Gotham-light, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  font-weight: 325;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .promo-panel__desc {
    max-width: 82%;
  }
}

.promo-panel__image {
  order: 1;
  width: 553px;
  height: 348px;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: top;
  overflow: hidden;
}
.promo-panel__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-panel__cta-wrapper {
  order: 0;
  max-width: 462px;
  display: flex;
  gap: var(--item-gap);
  flex-direction: column;
}

.promo-panel__cta {
  --cta-bg-color: #e5ff66;
  --cta-text-color: #004547;
  max-width: max-content;
  background-color: var(--cta-bg-color);
  color: var(--cta-text-color);
}
.promo-panel__cta::before {
  background-color: var(--cta-text-color);
}

.has-theme-bright-teal .promo-panel__cta {
  --cta-bg-color: #004547;
  --cta-text-color: #ffffff;
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/related-products/scss/index.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.related-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-weight: bold;
  color: #004547;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 40px;
}
@media screen and (min-width: 1024px) {
  .related-products__title {
    font-size: 48px;
  }
}
.related-products__title {
  margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  .related-products__title {
    margin-bottom: 35px;
  }
}
.related-products__image {
  position: relative;
  background: #edebeb;
  border-radius: 8px;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 20px;
}
.related-products__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.related-products__image-link {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background: rgba(0, 69, 71, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.related-products__image:hover .related-products__image-link {
  opacity: 1;
  pointer-events: auto;
  text-decoration: none;
}
.related-products__content {
  padding-bottom: 5px;
}
.related-products__product-title {
  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;
  margin-bottom: 8px;
  font-weight: 700;
  color: #004547;
}
@media screen and (min-width: 1024px) {
  .related-products__product-title {
    font-size: 18px;
  }
}
.related-products__link {
  font-size: 16px;
}
.related-products__pagination {
  padding: 58px 50px 0;
  display: flex;
  flex-flow: row nowrap;
  gap: 7px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .related-products__pagination {
    display: none;
  }
}
.related-products__pagination > span {
  display: block;
  height: 6px;
  border-radius: 3px;
  flex-basis: 40px;
  max-width: 40px;
  cursor: pointer;
  background: rgba(0, 69, 71, 0.2);
}
.related-products__pagination > span.swiper-pagination-bullet-active {
  background: #004547;
}
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/promo-video/scss/index.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.promo-video__wrapper {
  background-color: #adb5ff;
}

.promo-video {
  max-width: 1700px;
  margin: 0 auto;
  padding: 62px var(--side-paddings);
  color: #004547;
  display: flex;
  justify-content: space-between;
  column-gap: 25px;
}
@media screen and (max-width: 1023px) {
  .promo-video {
    padding: 48px 24px 50px 24px;
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .promo-video {
    --side-paddings: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .promo-video {
    --side-paddings: 100px;
  }
}
@media screen and (min-width: 1500px) {
  .promo-video {
    --side-paddings: 186px;
  }
}

.promo-video__text-wrapper {
  max-width: 387px;
}
@media screen and (max-width: 1023px) {
  .promo-video__text-wrapper {
    max-width: 345px;
  }
}

.promo-video__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) {
  .promo-video__title {
    font-size: 72px;
  }
}

.promo-video__desc {
  font-family: Gotham-book, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-top: 32px;
}

.promo-video__image {
  aspect-ratio: 16/9;
  position: relative;
  max-width: 707px;
  min-width: 62%;
  cursor: pointer;
}
.promo-video__image:hover .promo-video__button {
  background-color: #e5ff66;
}
.promo-video__image:hover .promo-video__button .promo-video__icon {
  stroke: #004547;
}
.promo-video__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .promo-video__image {
    margin: 0 auto;
  }
}

.promo-video__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: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background-color: #004547;
  transition: background-color 0.3s ease;
}
.promo-video__button:hover, .promo-video__button:focus-visible {
  background-color: #e5ff66;
}
.promo-video__button:hover .promo-video__icon, .promo-video__button:focus-visible .promo-video__icon {
  stroke: #004547;
}

.promo-video__icon {
  width: 32px;
  height: 25px;
  stroke: #ffffff;
  stroke-width: 2px;
  transition: stroke 0.3s ease;
}

.promo-video__modal-media {
  position: relative;
  z-index: 1;
  height: calc(var(--full-size-vh) * 0.8);
  width: calc(100vw - 48px);
  max-width: 1114px;
  max-height: 626px;
  aspect-ratio: 16/9;
}
.promo-video__modal-media iframe {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 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/testimonial/scss/index.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
@media screen and (min-width: 768px) {
  .testimonial {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .testimonial {
    gap: 40px;
  }
}
.testimonial__picture {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .testimonial__picture {
    width: 345px;
    min-width: 345px;
    margin: 0;
  }
}
.testimonial__text {
  position: relative;
  flex-grow: 1;
  padding-left: 32px;
  color: #004547;
}
.testimonial__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 9px;
  height: 100%;
  background: #e5ff66;
}
.testimonial__quote {
  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) {
  .testimonial__quote {
    font-size: 64px;
  }
}
.testimonial__author {
  margin-top: 25px;
  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/tabs/scss/index.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.tabs-content {
  display: none;
}
.tabs-content.is-active {
  display: block;
}

.tabs-links {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  gap: 24px;
  margin-bottom: 27px;
}
@media screen and (min-width: 768px) {
  .tabs-links {
    margin-bottom: 40px;
  }
}
.tabs-links__item {
  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: 40px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0.3;
  text-decoration: none;
  padding-bottom: 12px;
  display: block;
  position: relative;
  transition: opacity 0.3s ease;
}
.tabs-links__item::after {
  content: "";
  position: absolute;
  border-bottom: 2px solid #004547;
  bottom: 0;
  left: 0;
  width: 0;
}
@media screen and (min-width: 1024px) {
  .tabs-links__item {
    font-size: 48px;
    line-height: 35px;
  }
}
.tabs-links__item.is-active, .tabs-links__item:hover {
  opacity: 1;
}
.tabs-links__item.is-active::after {
  width: 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/related-searches/scss/index.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.related-searches {
  display: flex;
  gap: 32px;
  flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .related-searches {
    flex-direction: row;
  }
}
.related-searches__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) {
  .related-searches__title {
    font-size: 72px;
  }
}
@media screen and (min-width: 1280px) {
  .related-searches__title {
    flex-basis: 28%;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .related-searches__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .related-searches__list {
    display: grid;
    grid-gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.related-searches__item {
  position: relative;
  overflow: hidden;
  display: flex;
  border-radius: 8px;
  border: 1px solid #edebeb;
  text-decoration: none;
  height: 88px;
}
@media screen and (min-width: 1024px) {
  .related-searches__item {
    height: 129px;
  }
}
.related-searches__item:hover .related-searches__image img, .related-searches__item:focus-within .related-searches__image img {
  transform: scale(1.1);
}
.related-searches__item:hover .related-searches__content, .related-searches__item:focus-within .related-searches__content {
  background-color: #004547;
}
.related-searches__item:hover .related-searches__content::after, .related-searches__item:focus-within .related-searches__content::after {
  background-color: #e5ff66;
  background-position-x: 215%;
}
.related-searches__item:hover .related-searches__text, .related-searches__item:focus-within .related-searches__text {
  color: #ffffff;
}
.related-searches__image {
  position: relative;
  overflow: hidden;
  width: 35px;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .related-searches__image {
    width: 129px;
  }
}
.related-searches__image img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.related-searches__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  gap: 16px;
  width: 100%;
  transition: background-color 0.3s ease;
}
.related-searches__content::after {
  flex-shrink: 0;
  content: "";
  width: 48px;
  height: 48px;
  background-color: #edebeb;
  border-radius: 50%;
  background-image: url(/dist/images/right-angle-fe5a7d913fec939fd363.svg);
  background-repeat: repeat-x;
  background-position: center center;
  background-size: 30px 15px;
  transition: background-color, background-position 0.3s ease;
}
.related-searches__text {
  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: 26px;
}
@media screen and (min-width: 1024px) {
  .related-searches__text {
    font-size: 32px;
  }
}
.related-searches__text {
  transition: color 0.3s ease;
}
.related-searches__text span {
  color: #80a2a3;
}
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/ugc-list/scss/index.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.ugc-list__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) {
  .ugc-list__title {
    font-size: 48px;
  }
}
.ugc-list__title {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .ugc-list__title {
    margin-bottom: 32px;
  }
}
.ugc-list__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .ugc-list__container {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
.ugc-list__item {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  color: #ffffff;
}
.ugc-list__item::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.ugc-list__item .inspect-modal__button {
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .ugc-list__item .inspect-modal__button {
    top: 0;
  }
}
.ugc-list__item:hover::after, .ugc-list__item:focus-within::after {
  background-color: rgba(0, 69, 71, 0.6);
}
.ugc-list__item:hover .ugc-list__image, .ugc-list__item:focus-within .ugc-list__image {
  transform: scale(1.1);
}
.ugc-list__item:hover .inspect-modal__button, .ugc-list__item:focus-within .inspect-modal__button {
  background-color: #e5ff66;
}
.ugc-list__item:hover .inspect-modal__icon, .ugc-list__item:focus-within .inspect-modal__icon {
  background-color: #004547;
}
.ugc-list__link {
  text-decoration: none;
  color: #ffffff;
}
.ugc-list__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.3s ease;
}
.ugc-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ugc-list__content {
  position: relative;
  z-index: 2;
  padding: 15px 12px;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .ugc-list__content {
    padding: 28px 26px;
  }
}
.ugc-list__author {
  font-size: 10px;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 1024px) {
  .ugc-list__author {
    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/project-card/scss/index.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.project-card {
  border-radius: 8px;
  background: #004547;
  color: #ffffff;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .project-card {
    padding: 40px 40px 0;
    min-height: 453px;
  }
}
@media screen and (max-width: 767px) {
  .project-card {
    flex-direction: column-reverse;
    padding: 37px 24px 0;
    justify-content: space-between;
  }
}
.project-card__image {
  flex-basis: 50%;
  flex-shrink: 1;
  flex-grow: 0;
  height: 356px;
  margin-top: auto;
  padding: 0;
  position: relative;
  position: relative;
}
.project-card__image > img, .project-card__image > video, .project-card__image > picture, .project-card__image > picture > img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.project-card__image > img, .project-card__image > video, .project-card__image > picture, .project-card__image > picture > img {
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .project-card__image {
    min-height: 142px;
    margin-top: 20px;
  }
}
.project-card__image img {
  object-position: bottom;
}
@media screen and (max-width: 767px) {
  .project-card__image img {
    object-position: left bottom;
  }
}
.project-card__text {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .project-card__text {
    padding: 12px 30px 60px;
    gap: 56px;
    max-width: 671px;
  }
}
.project-card__desc {
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .project-card__desc {
    font-size: 18px;
    line-height: 28.8px;
  }
}
.project-card__title {
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-bottom: 16px;
}
.project-card__icons {
  max-width: 237px;
  width: 100%;
}
.project-card__icon {
  height: 48px;
  line-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.project-card__icon .icon {
  stroke: #ffffff;
}
.project-card__icon:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/product-carousel/scss/index.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.product-carousel {
  position: relative;
}
.product-carousel__header {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .product-carousel__header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .product-carousel__header {
    margin-bottom: 38px;
  }
}
.product-carousel__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) {
  .product-carousel__title {
    font-size: 48px;
  }
}
.product-carousel__title {
  margin-bottom: 0;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .product-carousel__title {
    text-align: center;
  }
}
.product-carousel__select + div {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .product-carousel__select + div {
    max-width: 273px;
  }
}
.product-carousel__carousel {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .product-carousel__controls {
    position: absolute;
    right: 50px;
    top: 0;
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .product-carousel__controls > a:first-child {
    margin-right: 18px;
  }
}
@media screen and (max-width: 767px) {
  .product-carousel__controls {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .product-carousel__view-all {
    display: none;
  }
}
.product-carousel__item {
  width: 230px;
}
@media screen and (min-width: 768px) {
  .product-carousel__item {
    width: 363px;
  }
}
.product-carousel__image {
  background-color: #edebeb;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 24px;
}
.product-carousel__content {
  padding-bottom: 5px;
}
.product-carousel__item-name {
  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: 28.8px;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #004547;
  margin-bottom: 8px;
}
.product-carousel__next.button, .product-carousel__prev.button {
  background: transparent;
  border: 2px solid rgba(0, 69, 71, 0.2);
}
.product-carousel__next.button:hover, .product-carousel__next.button:focus-visible, .product-carousel__prev.button:hover, .product-carousel__prev.button:focus-visible {
  border: 2px solid #004547;
}
.product-carousel.is-single .product-carousel__next.button, .product-carousel.is-single .product-carousel__prev.button {
  display: none;
}
.product-carousel__next.button.swiper-button-disabled, .product-carousel__prev.button.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4;
}
@media screen and (max-width: 1023px) {
  .product-carousel__link {
    display: flex;
    justify-content: center;
    margin-top: 44px;
  }
}
@media screen and (min-width: 1024px) {
  .product-carousel__link {
    display: none;
  }
}
.product-carousel__no-results {
  display: none;
  font-size: 18px;
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/search-suggestions/scss/index.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.search-suggestions__content {
  padding: 24px 0 0;
  background-color: #ffffff;
  border-radius: 8px;
  height: calc(var(--vh, 1vh) * 62);
  min-height: calc(var(--vh, 1vh) * 30);
  display: flex;
  flex-direction: column;
  width: 90vw;
  max-width: 1056px;
}
.search-suggestions__content-empty {
  padding-bottom: 48px;
}
.search-suggestions__content .loader {
  --loader-size: 24px;
  margin: 0 auto 24px;
}
.search-suggestions__content > .modal__close {
  position: absolute;
  right: 24px;
  top: 24px;
}
@media screen and (max-width: 1023px) {
  .search-suggestions__content > .modal__close {
    right: 16px;
    top: 16px;
    z-index: 2;
  }
}
@media screen and (max-width: 1023px) {
  .search-suggestions__content {
    padding: 0 24px;
    padding-top: 65px;
    padding-bottom: 31px;
    height: var(--full-size-vh);
    width: 100vw;
    border-radius: unset;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-duration: 500ms;
    transform: translateY(100vh);
    transition: transform 0.3s ease;
  }
}
.search-suggestions__footer {
  border-top: 1px solid rgba(0, 69, 71, 0.2);
  padding: 12px 0;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1023px) {
  .modal.search-suggestions__modal {
    align-items: flex-start;
  }
}

.open .search-suggestions__content {
  animation-name: animationUp;
}
@media screen and (min-width: 1024px) {
  .open .search-suggestions__content {
    animation: none;
  }
}

.close .search-suggestions__content {
  animation-name: animationDown;
}
@media screen and (min-width: 1024px) {
  .close .search-suggestions__content {
    animation: none;
  }
}

@keyframes animationUp {
  0% {
    transform: translateY(100vh);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animationDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100vh);
  }
}
.search-suggestions__footer-desktop {
  margin-top: auto;
}
@media screen and (max-width: 1023px) {
  .search-suggestions__footer-desktop {
    display: none;
  }
}

.search-suggestions__footer-mobile {
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .search-suggestions__footer-mobile {
    display: none;
  }
}

.ss-form {
  position: relative;
  margin: 0 48px 20px;
}
@media screen and (max-width: 1023px) {
  .ss-form {
    margin: 0;
    margin-bottom: 15px;
  }
}
.ss-form .form__input .ss-form__input[type=text] {
  padding-bottom: 0;
  height: 80px;
  padding-left: 36px;
  font-size: 48px;
}
@media screen and (max-width: 1023px) {
  .ss-form .form__input .ss-form__input[type=text] {
    height: 72px;
    font-size: 40px;
  }
}
.ss-form .form__input .ss-form__icon {
  stroke: #004547;
  position: absolute;
  top: 28px;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .ss-form .form__input .ss-form__icon {
    top: 24px;
  }
}
.ss-form__btn {
  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: none;
  background-color: #004547;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 32px;
  right: 0;
  border-radius: 8px;
}
@media screen and (max-width: 1023px) {
  .ss-form__btn {
    top: 28px;
  }
}
.ss-form__btn::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  mask-image: url(/dist/images/crest-icon-6a3f9257c996a9b51514.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.ss-form__btn.active {
  display: block;
}

.ss-results {
  overflow-y: auto;
  padding: 0 24px 0 32px;
  margin: 0 16px;
  scrollbar-width: thin;
  scrollbar-color: #004547 transparent;
}
@media screen and (max-width: 1023px) {
  .ss-results {
    margin: 0;
    padding: 0;
  }
}
.ss-results::-webkit-scrollbar {
  width: 8px;
}
.ss-results::-webkit-scrollbar-track {
  background: transparent;
}
.ss-results::-webkit-scrollbar-thumb {
  background-color: #004547;
}
.ss-results__title {
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #004547;
  margin-bottom: 12px;
}
.ss-results__list {
  display: flex;
  flex-direction: column;
}
.ss-results__no-results {
  color: #004547;
  text-align: center;
  padding-bottom: 24px;
}

.ss-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  align-items: center;
  border-radius: 8px;
  padding: 8px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .ss-item {
    padding: 4px 0;
  }
}
.ss-item__image {
  background-color: #edebeb;
  border-radius: 4px;
  width: 48px;
  height: 48px;
}
.ss-item__image-default {
  mask-image: url(/dist/images/default-f7ec7a0a3179d5fff4cb.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.ss-item__title {
  font-size: 16px;
  line-height: 25.6px;
  color: #004547;
}
.ss-item:hover .ss-item__title, .ss-item:focus-visible .ss-item__title {
  color: #ffffff;
}
.ss-item__title .highlight {
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.ss-item:hover, .ss-item:focus-visible {
  outline: none;
  background-color: #004547;
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/next-prev-articles/scss/index.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.next-prev-articles {
  max-width: 1328px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #ccdada;
  border-radius: 8px;
  position: relative;
}
.next-prev-articles::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #ccdada;
  top: 0;
  left: 50%;
}
.next-prev-articles .button {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .next-prev-articles {
    width: 100vw;
    margin: 0 -24px;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
}

.next-prev-articles__link-container {
  padding: 0 32px;
  transition: background-color 0.3s ease;
}
.next-prev-articles__link-container:has(a:hover), .next-prev-articles__link-container:focus-within {
  background-color: #004547;
}
@media screen and (max-width: 767px) {
  .next-prev-articles__link-container {
    padding: 24px;
  }
}

.next-prev-articles__link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .next-prev-articles__link {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}
.next-prev-articles__link:hover, .next-prev-articles__link:focus-visible {
  outline: none;
  color: #ffffff;
}
.next-prev-articles__link:hover .button, .next-prev-articles__link:focus-visible .button {
  --arrow-position-x-offset: var(--arrow-width);
  background: #e5ff66;
}

.next-prev-articles__link-wrapper {
  display: grid;
  gap: 16px;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .next-prev-articles__link-wrapper {
    padding: 0;
  }
}

.next-prev-articles__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: 32px;
}
@media screen and (min-width: 1024px) {
  .next-prev-articles__title {
    font-size: 48px;
  }
}
.next-prev-articles__title {
  color: inherit;
}

.next-prev-articles__text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .next-prev-articles__text {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .next-prev-articles__next-btn {
    order: -1;
  }
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/social/scss/index.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
/*
    put mixins which have consistant styles for all designs
 */
.social__title {
  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";
  margin-bottom: 16px;
  color: #004547;
}

.social__list {
  display: flex;
  gap: 8px;
}

.social__link {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 69, 71, 0.15);
  display: flex;
  place-items: center;
  --mask-img-color: #004547;
  transition: background-color 0.3s ease;
}
.social__link:hover, .social__link:focus-visible {
  --mask-img-color: #ffffff;
  background-color: #004547;
}
.social__link.facebook {
  --mask-url: url(/dist/images/fb-icon-470b6941bdc65d2fd23d.svg);
}
.social__link.x {
  --mask-url: url(/dist/images/x-icon-15b790c0df0b61d5b776.svg);
}
.social__link.email {
  --mask-url: url(/dist/images/mail-icon-f73f279ba88c74534932.svg);
}

.social__masked-img {
  mask-image: var(--mask-url);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--mask-img-color);
  width: 15px;
  height: 15px;
  margin: 0 auto;
  transition: background-color 0.3s ease;
}

.social__share-page {
  max-width: 1056px;
  margin: 0 auto;
}
