@charset "UTF-8";
.background-color-primary {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
}

.background-color-secondary {
  background-color: var(--color-secondary);
  color: var(--color-on-secondary);
}

.background-color-tiertiary {
  background-color: var(--color-tiertiary);
  color: var(--color-on-tiertiary);
}

/*
  per le media query:

  Desktop più piccolo:
  @media all and (max-width: $desktop_small) {

  Layout Tablet:
  @media all and (max-width: $tablet) {

  Layout Mobile:
  @media all and (max-width: $mobile) {

*/
.w {
  max-width: 1440px;
  padding: 0 120px;
  margin: auto;
  width: 100%;
}

.wm {
  max-width: 1200px;
  padding: 0 180px;
  margin: auto;
  width: 100%;
}

.ws {
  max-width: 1200px;
  padding: 0 180px;
  margin: auto;
  width: 100%;
}

@media all and (max-width: 1439px) {
  .w {
    padding: 0 60px;
  }
  .wm {
    padding: 0 60px;
  }
  .ws {
    padding: 0 60px;
  }
}
@media all and (max-width: 1023px) {
  .w {
    padding: 0 30px;
  }
  .wm {
    padding: 0 30px;
  }
  .ws {
    padding: 0 30px;
  }
}
@media all and (max-width: 499px) {
  .w {
    padding: 0 25px;
  }
  .wm {
    padding: 0 25px;
  }
  .ws {
    padding: 0 25px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

:root {
  --plyr-color-main: #FBDD20;
}

.plyr__control--overlaid svg {
  fill: #00309F;
}

.plyr__poster {
  background-size: cover;
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

:root {
  --real100vh: 100vh;
}

html,
body {
  -webkit-text-size-adjust: 100%;
  background-color: var(--color-body);
  line-height: 1.29;
  color: var(--color-on-body);
}

body,
body * {
  box-sizing: border-box;
  border: none;
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-appearance: none;
}
body::-webkit-input-placeholder, body *::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

body:-moz-placeholder, body *:-moz-placeholder {
  color: inherit;
  opacity: 0.5;
}

body::-moz-placeholder, body *::-moz-placeholder {
  color: inherit;
  opacity: 0.5;
}

body:-ms-input-placeholder, body *:-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

#CybotCookiebotDialog * {
  background-size: auto;
}

body.menuOpened, body.noScroll {
  overflow: hidden;
}

a,
img,
picture,
svg {
  display: block;
}

img:not([src]) {
  visibility: hidden;
}

a {
  transition: color 0.3s;
}

p a {
  display: inline;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-animation: autofill 0s forwards;
  animation: autofill 0s forwards;
}

input::-webkit-input-placeholder {
  line-height: normal !important;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

textarea {
  display: block;
}

*[data-animation-in] {
  opacity: 0;
}

#wrapper {
  position: relative;
}

.PageLoader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../images/loading.svg);
  background-size: 90px auto;
  z-index: 1000;
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.PageLoader.hidden {
  opacity: 0;
}

.editorText > *:not(:last-child) {
  margin-bottom: 1em;
}
.editorText ul {
  margin-left: 1em;
}

body .grecaptcha-badge {
  display: none !important;
}

body .iubenda-tp-btn.iubenda-cs-preferences-link {
  display: none !important;
}

body {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
body input,
body textarea,
body button {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 16px;
}

strong {
  font-weight: 700;
}

/* families */
.calibri, .font-headings {
  font-family: var(--main-font);
  font-weight: 900;
}

/* headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  font-family: var(--main-font);
}

h1 {
  font-size: 50px;
  line-height: 1.12;
}

h2 {
  font-size: 48px;
  line-height: 1.3;
}

h3 {
  font-size: 40px;
  line-height: 1.3;
}

h4 {
  font-size: 32px;
  line-height: 1.2;
}

h5 {
  font-size: 28px;
  line-height: 1.35;
}

h6 {
  font-size: 22px;
  line-height: 1.3;
}

/* links */
.link {
  font-weight: 600;
  font-size: 16px;
}

/* font sizes */
.large {
  font-size: 24px;
  line-height: 33.6px;
}

.regular {
  font-size: 18px;
  line-height: 27px;
}

.small {
  font-size: 16px;
  line-height: 22.4px;
}

.extra-small {
  font-size: 14px;
  line-height: 19.6px;
}

/* font weights */
body *.w300 {
  font-weight: 300;
}
body *.w400 {
  font-weight: 400;
}
body *.w500 {
  font-weight: 500;
}
body *.w600 {
  font-weight: 600;
}
body *.w700 {
  font-weight: 700;
}
body *.w800 {
  font-weight: 800;
}
body *.w900 {
  font-weight: 900;
}

/* text alignment da editor WYSIWYG */
.ql-align-center {
  text-align: center;
}

.ql-align-right {
  text-align: right;
}

.ql-align-justify {
  text-align: justify;
}

u {
  text-decoration: underline;
}

@keyframes arrowDownAnimate {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
.subtitle-label {
  display: inline-block;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-grey, #66686A);
  border-bottom: 0.6px solid var(--color-grey, #66686A);
  padding-bottom: 0.3em;
}

.btn,
.wpcf7-submit {
  display: block;
  padding: 0.77em 1.38em 0.73em;
  color: white;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid var(--black, #262626);
  background-color: var(--black, #262626);
  transition: all 0.3s;
  font-weight: 700;
}
.btn:hover,
.wpcf7-submit:hover {
  background-color: transparent;
  color: var(--black, #262626);
}
a[href]:hover .btn:not(.noParentHover), .clickable:hover .btn:not(.noParentHover),
a[href]:hover .wpcf7-submit:not(.noParentHover),
.clickable:hover .wpcf7-submit:not(.noParentHover) {
  background-color: transparent;
  color: var(--black, #262626);
}

.btn.secondary,
.wpcf7-submit.secondary {
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}
a[href]:hover .btn.secondary:not(.noParentHover), .clickable:hover .btn.secondary:not(.noParentHover),
a[href]:hover .wpcf7-submit.secondary:not(.noParentHover),
.clickable:hover .wpcf7-submit.secondary:not(.noParentHover) {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.btn.small,
.wpcf7-submit.small {
  font-size: 16px;
  font-weight: 800;
  padding: 0.625em 1.1875em;
}
.btn.smaller,
.wpcf7-submit.smaller {
  font-size: 11px;
  font-weight: 700;
  padding: 0.81em 1.88em;
}

.Header {
  color: var(--color-on-primary);
  line-height: 1;
  transition: all 0.3s;
  position: relative;
  z-index: 56;
  border-bottom: 1px solid var(--color-grey);
}
.Header .upper-strip {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  font-size: 18px;
  line-height: 1.16;
}
.Header .upper-strip .contents {
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.Header .upper-strip .contents .lang-switcher {
  list-style: none;
  text-transform: uppercase;
}
.Header .upper-strip .contents .lang-switcher > li {
  position: relative;
  display: flex;
  align-items: center;
}
.Header .upper-strip .contents .lang-switcher > li a:hover {
  color: var(--color-secondary);
}
.Header .upper-strip .contents .lang-switcher > li .arrow {
  content: " ";
  display: block;
  width: 8px;
  margin-left: 9px;
  flex-shrink: 0;
}
.Header .upper-strip .contents .lang-switcher > li .arrow svg {
  width: 100%;
  height: auto;
}
.Header .upper-strip .contents .lang-switcher > li .arrow svg [tofill] {
  fill: var(--color-secondary);
}
.Header .upper-strip .contents .lang-switcher > li .arrow svg [tostroke] {
  stroke: var(--color-secondary);
}
.Header .upper-strip .contents .lang-switcher > li .sub-menu {
  position: absolute;
  top: 100%;
  left: -8px;
  background-color: var(--color-primary);
  padding: 8px 8px 0;
  min-width: calc(100% + 8px + 8px);
  display: none;
}
.Header .upper-strip .contents .lang-switcher > li .sub-menu li {
  padding: 0 0 8px;
}
.Header .upper-strip .contents .lang-switcher:hover li .sub-menu {
  display: block;
}
.Header .upper-strip .contents .links {
  display: flex;
  list-style: none;
  margin-left: auto;
  margin-left: auto;
}
.Header .upper-strip .contents .links li {
  margin-left: 54px;
  margin-left: 54px;
}
.Header .upper-strip .contents .links li:first-child {
  margin-left: 0;
}
.Header .upper-strip .contents .links li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Header .upper-strip .contents .links li a i {
  margin-right: 9px;
  font-size: 0.8em;
  -webkit-text-stroke: 1px var(--color-secondary);
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.Header .upper-strip .contents .links li a .label {
  position: relative;
  transition: all 0.3s;
}
.Header .upper-strip .contents .links li a .label .line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--color-on-primary);
  width: 0%;
  transition: all 0.3s;
}
.Header .upper-strip .contents .links li a:hover .label {
  position: relative;
  color: var(--color-secondary);
}
.Header .upper-strip .contents .links li a:hover .label .line {
  width: 100%;
  background-color: var(--color-secondary);
}
.Header.layout-burger {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
}
body.scrolled .Header.layout-burger {
  background: var(--color-primary);
}
body.scrolled .Header.layout-burger .contents .langs .lang a:hover, body.scrolled .Header.layout-burger .contents .langs .lang a.selected {
  color: var(--color-on-primary);
}

.Header.layout-burger .header-main-contents {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 21px 0;
}
.Header.layout-burger .header-main-contents .menuToggler {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 32px;
}
.Header.layout-burger .header-main-contents .menuToggler .menuToggler_burger {
  position: relative;
  width: 29px;
  height: 18px;
}
.Header.layout-burger .header-main-contents .menuToggler .menuToggler_burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-on-primary);
  transition: all 0.4s;
}
.Header.layout-burger .header-main-contents .menuToggler .menuToggler_burger span:nth-child(1) {
  top: 0;
}
.Header.layout-burger .header-main-contents .menuToggler .menuToggler_burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.Header.layout-burger .header-main-contents .menuToggler .menuToggler_burger span:nth-child(3) {
  top: calc(100% - 2px);
}
body.menuOpened .Header.layout-burger .header-main-contents .menuToggler .menuToggler_burger span {
  transition-delay: 0.1em;
}
body.menuOpened .Header.layout-burger .header-main-contents .menuToggler .menuToggler_burger span:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(-38deg);
}
body.menuOpened .Header.layout-burger .header-main-contents .menuToggler .menuToggler_burger span:nth-child(2) {
  transform: translateX(25%);
  opacity: 0;
}
body.menuOpened .Header.layout-burger .header-main-contents .menuToggler .menuToggler_burger span:nth-child(3) {
  top: calc(50% - 1px);
  transform: rotate(38deg);
}

.Header.layout-burger .header-main-contents .menuToggler .menuToggler_label {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 11px;
}
@media all and (max-width: 499px) {
  .Header.layout-burger .header-main-contents .menuToggler .menuToggler_label {
    display: none;
  }
}
.Header.layout-burger .header-main-contents .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.Header.layout-burger .header-main-contents .logo .logo_lottie {
  height: 45px;
}
.Header.layout-burger .header-main-contents .logo svg,
.Header.layout-burger .header-main-contents .logo img {
  height: 45px;
  width: auto;
}
.Header.layout-burger .header-main-contents .langs {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  text-transform: uppercase;
}
@media all and (max-width: 767px) {
  .Header.layout-burger .header-main-contents .langs {
    padding-top: 38px;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 20px;
  }
}
.Header.layout-burger .header-main-contents .langs .lang {
  padding: 0 6px;
}
.Header.layout-burger .header-main-contents .langs .lang:first-child {
  padding-left: 0;
}
.Header.layout-burger .header-main-contents .langs .lang:last-child {
  padding-right: 0;
}
@media all and (max-width: 767px) {
  .Header.layout-burger .header-main-contents .langs .lang {
    padding: 6px 0;
    transition: opacity 0.3s;
  }
  .Header.layout-burger .header-main-contents .langs .lang:not(.selected) {
    opacity: 0;
    pointer-events: none;
  }
}
.Header.layout-burger .header-main-contents .langs .lang a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 12px;
  border-radius: 100%;
  overflow: hidden;
  padding-top: 1px;
  padding-left: 1px;
  transition: all 0.3s;
}
.Header.layout-burger .header-main-contents .langs .lang a:before {
  content: " ";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  border: 1px solid var(--color-on-primary);
  transition: all 0.3s;
}
.Header.layout-burger .header-main-contents .langs .lang a span {
  position: relative;
}
.Header.layout-burger .header-main-contents .langs .lang a:hover {
  background: var(--color-on-primary);
  color: var(--color-primary);
}
.Header.layout-burger .header-main-contents .langs .lang a:hover:before {
  border-width: 16px;
}
@media all and (max-width: 767px) {
  .Header.layout-burger .header-main-contents .langs .lang.selected {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 0;
  }
}
.Header.layout-burger .header-main-contents .langs .lang.selected a {
  background: var(--color-on-primary);
  color: var(--color-primary);
}
.Header.layout-burger .header-main-contents .langs .lang.selected a:before {
  border-width: 16px;
}
.Header.layout-burger .header-main-contents .langs.opened .lang {
  opacity: 1;
  pointer-events: all;
}
.Header.layout-standard {
  background-color: var(--color-body);
}
.Header.layout-standard .header-main-contents {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.16;
  font-weight: 700;
  text-transform: uppercase;
}
.Header.layout-standard .header-main-contents .logo .logo_lottie,
.Header.layout-standard .header-main-contents .logo svg,
.Header.layout-standard .header-main-contents .logo img {
  height: 45px;
  width: auto;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul {
  display: flex;
  list-style: none;
  align-items: center;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li {
  margin-left: 22px;
  position: relative;
  display: flex;
  align-items: center;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li:first-child {
  margin-left: 0;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li:last-child a {
  background: var(--black, #262626);
  color: var(--White, #FFF);
  font-family: "Karla", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: none;
  border: 1px solid var(--black, #262626);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li:last-child a:before {
  display: none;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li:last-child a:hover {
  background: var(--White, #FFF);
  color: var(--black, #262626);
  border-color: var(--black, #262626);
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li a[href="#"] {
  cursor: default;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li a:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  left: 0;
  width: 0%;
  bottom: 0;
  background-color: #fff;
  transition: all 0.3s;
  mix-blend-mode: darken;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li a:hover:before, .Header.layout-standard .header-main-contents .menu-wrapper ul li a.current-menu-ancestor:before, .Header.layout-standard .header-main-contents .menu-wrapper ul li a.current-menu-item:before {
  width: 100%;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li a {
  padding: 0.16em 0.27em 0.11em;
  position: relative;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li .sub-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  flex-direction: column;
  left: 0;
  top: 100%;
  background-color: var(--color-body);
  padding: 10px;
  transition: opacity 0.3s;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li .sub-menu li {
  margin-left: 0;
  margin-top: 5px;
  white-space: nowrap;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li .sub-menu li:first-child {
  margin-top: 0;
}
.Header.layout-standard .header-main-contents .menu-wrapper ul li:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 767px) {
  .Header.layout-standard .header-main-contents .menu-wrapper {
    display: none;
  }
}
.Header.layout-standard .header-main-contents .hamburger-wrapper {
  display: none;
}
.Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 32px;
}
.Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler .menuToggler_burger {
  position: relative;
  width: 29px;
  height: 18px;
}
.Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler .menuToggler_burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.4s;
}
.Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler .menuToggler_burger span:nth-child(1) {
  top: 0;
}
.Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler .menuToggler_burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler .menuToggler_burger span:nth-child(3) {
  top: calc(100% - 2px);
}
body.menuOpened .Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler .menuToggler_burger span {
  transition-delay: 0.1em;
}
body.menuOpened .Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler .menuToggler_burger span:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(-38deg);
}
body.menuOpened .Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler .menuToggler_burger span:nth-child(2) {
  transform: translateX(25%);
  opacity: 0;
}
body.menuOpened .Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler .menuToggler_burger span:nth-child(3) {
  top: calc(50% - 1px);
  transform: rotate(38deg);
}

.Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler .menuToggler_label {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 11px;
}
@media all and (max-width: 499px) {
  .Header.layout-standard .header-main-contents .hamburger-wrapper .menuToggler .menuToggler_label {
    display: none;
  }
}
@media (max-width: 767px) {
  .Header.layout-standard .header-main-contents .hamburger-wrapper {
    display: block;
  }
}

.imageBackground {
  opacity: 0;
  transition: opacity 0.3s;
}
.imageBackground img {
  position: absolute;
  width: 1px;
  height: 1px;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}
.imageBackground.loaded {
  opacity: 1;
}

.Modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  opacity: 0;
  background: rgba(var(--color-primary), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: scroll;
}
.Modal .Modal_box {
  background: var(--color-body);
  width: 550px;
  max-width: calc(100vw - 40px);
  border-radius: 2px;
  filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.1));
  opacity: 0;
}
.Modal .Modal_box .Modal_heading {
  padding: 15px;
  background: var(--color-primary);
}
@media all and (max-width: 1023px) {
  .Modal .Modal_box .Modal_heading {
    padding: 15px 30px;
  }
}
.Modal .Modal_box .Modal_heading .Modal_title {
  font-weight: 900;
  color: var(--color-on-primary);
  text-transform: uppercase;
  font-size: 22px;
  font-weight: normal;
  text-align: center;
}
.Modal .Modal_box .Modal_texts {
  padding: 30px 15px;
}
@media all and (max-width: 1023px) {
  .Modal .Modal_box .Modal_texts {
    padding: 15px 30px;
  }
}
.Modal .Modal_box .Modal_ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -15px;
  margin-top: -15px;
  padding: 0 15px 15px;
}
@media all and (max-width: 1023px) {
  .Modal .Modal_box .Modal_ctas {
    padding: 0 30px 15px;
  }
}
.Modal .Modal_box .Modal_ctas .btn {
  margin: 15px;
}

.Footer {
  background: var(--color-footer);
  padding: 47px 0 22px;
  padding: 47px 0 22px;
  position: relative;
  color: var(--color-on-footer);
}
.Footer .Footer_top {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding-bottom: 40px;
}
@media all and (max-width: 1023px) {
  .Footer .Footer_top {
    padding-bottom: 30px;
  }
}
@media all and (max-width: 767px) {
  .Footer .Footer_top {
    padding-bottom: 20px;
  }
}
.Footer .Footer_col {
  padding: 0 15px;
  width: 25%;
}
@media all and (max-width: 1023px) {
  .Footer .Footer_col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 767px) {
  .Footer .Footer_col {
    width: 100%;
    margin-bottom: 25px;
  }
}
@media all and (max-width: 767px) {
  .Footer .Footer_col:last-child {
    margin-bottom: 0;
  }
}
.Footer .Footer_col_title {
  display: block;
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-on-footer);
  margin-bottom: 15px;
  text-transform: lowercase;
}
@media all and (max-width: 767px) {
  .Footer .Footer_col_title {
    margin-bottom: 10px;
  }
}
.Footer .Footer_col_text {
  font-family: "Karla", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.13px;
  color: #fff;
}
.Footer .Footer_col_text p {
  margin: 0 0 0.5em;
}
.Footer .Footer_col_text p:last-child {
  margin-bottom: 0;
}
.Footer .Footer_col_text a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.Footer .Footer_col_text a:hover {
  color: var(--color-secondary);
}
.Footer .Footer_menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.Footer .Footer_menu ul li {
  margin-bottom: 0;
}
.Footer .Footer_menu ul li a {
  display: inline-block;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: -0.14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.Footer .Footer_menu ul li a:hover {
  color: #fff;
  opacity: 0.7;
}
.Footer .Footer_col--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
}
@media all and (max-width: 1023px) {
  .Footer .Footer_col--cta {
    align-items: center;
    width: 100%;
    margin-top: 10px;
  }
}
.Footer .Footer_cta_button {
  display: inline-block;
  padding: 15px 30px;
  background: #fff;
  border: 1px solid #fff;
  color: var(--color-footer);
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.Footer .Footer_cta_button:hover {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
@media all and (max-width: 767px) {
  .Footer .Footer_cta_button {
    width: 100%;
    text-align: center;
  }
}
.Footer .Footer_socials {
  margin-top: auto;
}
.Footer .Footer_socials ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0 -10px;
}
@media all and (max-width: 1023px) {
  .Footer .Footer_socials ul {
    justify-content: center;
  }
}
.Footer .Footer_socials ul li {
  margin: 0 10px;
}
.Footer .Footer_socials ul li a {
  font-size: 24px;
  color: #fff;
  transition: opacity 0.3s ease;
}
.Footer .Footer_socials ul li a:hover {
  opacity: 0.7;
}
.Footer .Footer_bottom {
  padding-top: 20px;
  text-align: center;
}
@media all and (max-width: 767px) {
  .Footer .Footer_bottom {
    padding-top: 15px;
  }
}
.Footer .Footer_bottom_text {
  font-family: "Karla", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 154%;
  color: #fff;
}
.Footer .Footer_bottom_text p {
  margin: 0;
}
.Footer .Footer_bottom_text a {
  color: #fff;
  font-family: "Karla", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 154%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
  transition: color 0.3s ease;
}
.Footer .Footer_bottom_text a:hover {
  color: var(--color-secondary);
}

[data-plyr-provider] .unblock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 40px);
  display: none;
  background: var(--color-body);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  width: 598px;
}
[data-plyr-provider] .unblock .inner {
  padding: 40px 50px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}
[data-plyr-provider] .unblock .inner a {
  font-style: normal;
  font-weight: bold;
  text-align: center;
  color: #012543;
  text-decoration: underline;
}

[data-plyr-provider] {
  padding-bottom: 54.6%;
  background: #c0c0c0;
  position: relative;
}
[data-plyr-provider] .unblock {
  display: block;
}

.MainNavBlobWrapper {
  position: fixed;
  top: -1000px;
  left: -1000px;
  pointer-events: none;
  z-index: 50;
  transform: translate(-50%, -50%);
}

.MainNav {
  background-color: var(--color-primary);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  color: var(--color-on-primary);
  padding: 100px 0;
  overflow: auto;
  pointer-events: none;
  display: none;
  align-items: center;
}
body.menuOpened .MainNav {
  pointer-events: all;
  display: flex;
}

.MainNav .MainNav_contents .MainNav_menuWrapper a:hover {
  text-decoration: underline;
}
.MainNav .MainNav_contents .MainNav_menuWrapper > ul {
  list-style: none;
}
.MainNav .MainNav_contents .MainNav_menuWrapper > ul > li {
  text-transform: uppercase;
  font-size: 35px;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
}
@media all and (max-width: 1279px) {
  .MainNav .MainNav_contents .MainNav_menuWrapper > ul > li {
    font-size: 30px;
  }
}
@media all and (max-width: 1023px) {
  .MainNav .MainNav_contents .MainNav_menuWrapper > ul > li {
    font-size: 35px;
  }
}
@media all and (max-width: 767px) {
  .MainNav .MainNav_contents .MainNav_menuWrapper > ul > li {
    font-size: 30px;
  }
}
.MainNav .MainNav_contents .MainNav_menuWrapper > ul > li a {
  display: flex;
  align-items: center;
}
.MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.menu-item-has-children > a:after {
  content: " ";
  display: block;
  width: 0.36em;
  height: 1em;
  background: url(../images/ico-arrow-submenu.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: 0.12em;
}
.MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.menu-item-has-children .sub-menu {
  width: 100%;
  position: absolute;
  pointer-events: none;
  top: 100%;
  list-style: none;
  font-size: 27px;
  font-family: var(--main-font);
  padding-bottom: 30px;
}
@media all and (max-width: 1279px) {
  .MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.menu-item-has-children .sub-menu {
    font-size: 22px;
  }
}
@media all and (max-width: 1023px) {
  .MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.menu-item-has-children .sub-menu {
    font-size: 27px;
  }
}
@media all and (max-width: 767px) {
  .MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.menu-item-has-children .sub-menu {
    font-size: 22px;
  }
}
.MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.menu-item-has-children .sub-menu li {
  opacity: 0;
  padding-top: 50px;
}
@media all and (max-width: 1279px) {
  .MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.menu-item-has-children .sub-menu li {
    padding-top: 35px;
  }
}
.MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.menu-item-has-children .sub-menu li.back {
  padding-top: 80px;
  position: absolute;
  font-size: 14px;
  font-family: var(--main-font);
  font-weight: 700;
}
.MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.menu-item-has-children .sub-menu li.back span {
  border: 2px solid var(--color-on-primary);
  padding: 9px 20px 7px;
}
.MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.socials ul {
  display: flex;
  list-style: none;
  font-size: 22px;
}
.MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.socials ul li {
  padding-right: 25px;
}
.MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.socials ul li:last-child {
  padding-right: 0;
}
body.subMenuOpen .MainNav .MainNav_contents .MainNav_menuWrapper > ul > li:not(.subMenuOpen) {
  pointer-events: none;
}
body.subMenuOpen .MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.subMenuOpen {
  opacity: 1 !important;
}
body.subMenuOpen .MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.subMenuOpen > a {
  pointer-events: none;
}
body.subMenuOpen .MainNav .MainNav_contents .MainNav_menuWrapper > ul > li.subMenuOpen .sub-menu {
  pointer-events: all;
}

.MainNav .MainNav_contents > .MainNav_socials {
  display: none;
}

.WhatsappWidget {
  position: fixed;
  bottom: 20px;
  right: 22px;
  z-index: 100;
}
@media all and (max-width: 767px) {
  .WhatsappWidget {
    bottom: 15px;
    right: 16px;
  }
}
.WhatsappWidget a img {
  width: 50px;
  height: auto;
}

.PageTransitionOverlay {
  background: var(--color-primary);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1000;
}

.Hero {
  position: relative;
  overflow: hidden;
}
.Hero:first-child {
  margin-top: 0;
}
.Hero:is(:first-child) .bg {
  opacity: 1;
}
.Hero.height-full .wrapper {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(var(--real100vh) - var(--header-height));
}
.Hero.height-medium .wrapper {
  min-height: calc(100vh - 235px);
  min-height: calc(var(--real100vh) - 235px);
}
@media all and (max-width: 1279px) {
  .Hero.height-medium .wrapper {
    min-height: calc(100vh - 160px);
    min-height: calc(var(--real100vh) - 160px);
  }
}
.Hero.height-small .wrapper {
  padding: 130px 0;
}
.Hero.bgVisible .bg {
  opacity: 1;
  transform: scale(1);
}
.Hero.layout-text-smaller .wrapper .contents .title {
  font-size: 55px;
}
@media all and (max-width: 1279px) {
  .Hero.layout-text-smaller .wrapper .contents .title {
    font-size: 40px;
  }
}
@media all and (max-width: 1023px) {
  .Hero.layout-text-smaller .wrapper .contents .title {
    font-size: 35px;
  }
}
@media all and (max-width: 767px) {
  .Hero.layout-text-smaller .wrapper .contents .title {
    font-size: 30px;
  }
}
.Hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: scale(1.12);
  transition: transform 4s cubic-bezier(0.23, 1, 0.32, 1);
  background-color: var(--color-grey);
}
.Hero .bg .bg_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0s;
}
.Hero .bg .bg_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.Hero .wrapper {
  display: flex;
  align-items: center;
  padding: 130px 0;
}
@media all and (max-width: 1023px) {
  .Hero .wrapper {
    padding: 80px 0;
  }
}
@media all and (max-width: 767px) {
  .Hero .wrapper {
    padding: 60px 0;
  }
}
.Hero .wrapper .contents {
  position: relative;
  padding: 30px 0 30px 0;
}
.Hero .wrapper .contents .title {
  color: #fff;
  font-family: "Karla", sans-serif;
  font-size: 90px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
@media all and (max-width: 1279px) {
  .Hero .wrapper .contents .title {
    font-size: 70px;
  }
}
@media all and (max-width: 1023px) {
  .Hero .wrapper .contents .title {
    font-size: 50px;
    letter-spacing: -1px;
  }
}
@media all and (max-width: 767px) {
  .Hero .wrapper .contents .title {
    font-size: 38px;
    line-height: 1.1;
  }
}
.Hero .wrapper .contents .subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Karla", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 500px;
}
@media all and (max-width: 767px) {
  .Hero .wrapper .contents .subtitle {
    font-size: 16px;
    max-width: 100%;
  }
}
.Hero .wrapper .contents .excerpt {
  margin-top: 14px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 50%;
}
@media all and (max-width: 767px) {
  .Hero .wrapper .contents .excerpt {
    width: auto;
    max-width: 100%;
    font-size: 16px;
  }
}
.Hero .wrapper .contents .cta-button {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media all and (max-width: 767px) {
  .Hero .wrapper .contents .cta-button {
    padding: 14px 24px;
    font-size: 13px;
  }
}
.Hero .wrapper .contents .cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
.Hero .wrapper .contents .cta-arrow {
  margin-top: 14px;
  display: inline-block;
}
.Hero .wrapper .contents .cta-arrow svg {
  transition: all 0.3s;
}
.Hero .wrapper .contents .cta-arrow svg .tostroke {
  stroke: var(--color-secondary);
}
.Hero .arrowDown {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  color: var(--color-on-primary);
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.Hero .arrowDown.visible {
  opacity: 1;
}
.Hero .arrowDown .arrowDown_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Hero .arrowDown .arrowDown_contents span {
  display: block;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
}
.Hero .arrowDown .arrowDown_contents .arrowDown_iconWrapper {
  width: 8px;
  height: 24px;
  overflow: hidden;
}
.Hero .arrowDown .arrowDown_contents .arrowDown_iconWrapper .arrowDown_icon {
  animation: arrowDownAnimate 1s infinite linear;
  padding: 2px 0;
}
.Hero .arrowDown .arrowDown_contents .arrowDown_iconWrapper .arrowDown_icon svg:nth-child(1) {
  margin-bottom: 4px;
}

.js-split-in-rows {
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
}
.js-split-in-rows.parsed {
  opacity: 1;
}
.js-split-in-rows.parsed .row {
  opacity: 0;
}
.js-split-in-rows.animated .row {
  opacity: 1;
}
.js-split-in-rows .row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.js-split-in-rows .word {
  display: block;
}
.js-split-in-rows .word br {
  display: none;
}
.js-split-in-rows .clear {
  width: 100%;
}

.HorizontalScrollBoxes {
  padding: 0;
  position: relative;
}
@media all and (max-width: 767px) {
  .HorizontalScrollBoxes {
    height: auto !important;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 104, 106, 0.08);
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper {
  height: 100vh;
  height: var(--real100vh);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    width: auto;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .title-container {
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (max-width: 767px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .title-container {
    position: relative;
    top: auto;
    padding: 35px 0 0;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .title-container .label {
  display: inline-block;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-grey, #66686A);
  border-bottom: 0.6px solid var(--color-grey, #66686A);
  padding-bottom: 0.3em;
  margin-bottom: 15px;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .title-container h2,
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .title-container .title {
  font-family: "Karla", sans-serif;
  font-size: 35px;
  line-height: 1.17;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 12px;
}
@media all and (max-width: 767px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .title-container h2,
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .title-container .title {
    font-size: 32px;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .title-container .description {
  color: var(--testo, #2F2F2F);
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.16px;
  max-width: 600px;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller {
  position: absolute;
  left: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  padding: 100px 120px 86px 25vw;
  min-width: 100vw;
}
@media all and (max-width: 1023px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller {
    padding-right: 0;
  }
}
@media all and (max-width: 767px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller {
    position: relative;
    top: auto;
    transform: none;
    flex-direction: column;
    padding: 0 30px 30px;
    left: auto !important;
    margin-top: -25px;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller::after {
  content: " ";
  display: block;
  width: 325px;
}
@media all and (max-width: 1023px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller::after {
    display: none;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box {
  padding-left: 70px;
}
@media all and (max-width: 1023px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box {
    padding-left: 0;
    padding-right: 70px;
  }
}
@media all and (max-width: 1023px) and (min-width: 768px) {
  body.portrait .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box {
    padding-top: 200px;
    padding-bottom: 200px;
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
@media all and (max-width: 767px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box {
    padding-top: 60px;
    padding-bottom: 0;
    padding-right: 0;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents {
  position: relative;
  padding-right: 200px;
}
@media all and (max-width: 1023px) and (min-width: 768px) {
  body.portrait .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents {
    padding-right: 0;
  }
}
@media all and (max-width: 767px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents {
    padding-right: 0;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_imageWrapper {
  width: 400px;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  max-width: calc(100vw - 250px);
}
@media all and (max-width: 1023px) and (min-width: 768px) {
  body.portrait .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_imageWrapper {
    max-width: none;
    max-width: none;
    width: calc(100vw - 100px);
    padding-bottom: 60%;
  }
}
@media all and (max-width: 767px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_imageWrapper {
    width: calc(100% - 30px);
    max-width: none;
    min-height: 100px;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_imageWrapper .HorizontalScrollBoxes_box_imageBlend {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: var(--color-on-primary);
  z-index: 1;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_imageWrapper .HorizontalScrollBoxes_box_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  transform: scale(1.2);
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 68%;
  z-index: 3;
  padding: 40px 35px;
}
@media all and (max-width: 1023px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper {
    padding: 30px;
  }
}
@media all and (max-width: 1023px) and (min-width: 768px) {
  body.portrait .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper {
    top: 110%;
    right: 10%;
  }
}
@media all and (max-width: 767px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: auto;
    margin-left: 30px;
    margin-top: -30px;
    margin-top: -30px;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper .HorizontalScrollBoxes_box_texts_blend {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: var(--grigio-brand, #66686A);
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper .HorizontalScrollBoxes_box_texts_excerpt,
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper .HorizontalScrollBoxes_box_texts_btnWrapper {
  opacity: 0;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper .HorizontalScrollBoxes_box_texts_title {
  color: var(--White, #FFF);
  font-family: "Karla", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.18px;
  margin-bottom: 22px;
}
@media all and (max-width: 767px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper .HorizontalScrollBoxes_box_texts_title {
    margin-bottom: 10px;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper .HorizontalScrollBoxes_box_texts_excerpt {
  color: var(--White, #FFF);
  font-family: "Karla", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.13px;
  min-height: 76px;
  margin-bottom: 30px;
}
@media all and (max-width: 767px) {
  .HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper .HorizontalScrollBoxes_box_texts_excerpt {
    min-height: none;
    margin-bottom: 20px;
  }
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper .HorizontalScrollBoxes_box_texts_btnWrapper {
  display: flex;
  align-items: flex-start;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_boxesScroller .HorizontalScrollBoxes_box .HorizontalScrollBoxes_box_contents .HorizontalScrollBoxes_box_textsWrapper .HorizontalScrollBoxes_box_texts_btnWrapper .btn {
  color: var(--White, #FFF);
  text-decoration: underline;
  border: none;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_arrowDown {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  color: var(--color-primary);
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_arrowDown.visible {
  opacity: 1;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_arrowDown .HorizontalScrollBoxes_arrowDown_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_arrowDown .HorizontalScrollBoxes_arrowDown_contents span {
  display: block;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_arrowDown .HorizontalScrollBoxes_arrowDown_contents .HorizontalScrollBoxes_arrowDown_iconWrapper {
  width: 8px;
  height: 24px;
  overflow: hidden;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_arrowDown .HorizontalScrollBoxes_arrowDown_contents .HorizontalScrollBoxes_arrowDown_iconWrapper .HorizontalScrollBoxes_arrowDown_icon {
  animation: arrowDownAnimate 1s infinite linear;
  padding: 2px 0;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_arrowDown .HorizontalScrollBoxes_arrowDown_contents .HorizontalScrollBoxes_arrowDown_iconWrapper .HorizontalScrollBoxes_arrowDown_icon svg:nth-child(1) {
  margin-bottom: 4px;
}
.HorizontalScrollBoxes .HorizontalScrollBoxes_boxesWrapper .HorizontalScrollBoxes_arrowDown .HorizontalScrollBoxes_arrowDown_contents .HorizontalScrollBoxes_arrowDown_iconWrapper .HorizontalScrollBoxes_arrowDown_icon svg path {
  stroke: var(--color-primary);
}

.TitleAndText {
  padding: 60px 0 60px;
  text-align: center;
}
@media all and (max-width: 1279px) {
  .TitleAndText {
    padding: 40px 0;
  }
}
@media all and (max-width: 767px) {
  .TitleAndText {
    padding: 30px 0;
  }
}
.TitleAndText[css-background=primary] {
  background: var(--color-primary);
  color: var(--color-on-primary);
}
.TitleAndText[css-background=primary] .TitleAndText_title {
  color: var(--color-on-primary);
}
.TitleAndText[css-background=secondary] {
  background: var(--color-secondary);
  color: var(--color-on-secondary);
}
.TitleAndText[css-background=secondary] .TitleAndText_title {
  color: var(--color-on-secondary);
}
.TitleAndText[css-background=tiertiary] {
  background: var(--color-tiertiary);
  color: var(--color-on-tiertiary);
}
.TitleAndText[css-background=tiertiary] .TitleAndText_title {
  color: var(--color-primary);
}
.TitleAndText .TitleAndText_title {
  font-size: 35px;
  line-height: 1.17;
  font-weight: 900;
}
@media all and (max-width: 767px) {
  .TitleAndText .TitleAndText_title {
    font-size: 32px;
  }
}
.TitleAndText .TitleAndText_title:not(:last-child) {
  margin-bottom: 30px;
}
@media all and (max-width: 767px) {
  .TitleAndText .TitleAndText_title:not(:last-child) {
    margin-bottom: 10px;
  }
}
.TitleAndText .TitleAndText_text {
  max-width: 840px;
  margin: auto;
}

.TextAndImage {
  padding: 85px 0 125px;
  background: rgba(102, 104, 106, 0.08);
}
@media all and (max-width: 1279px) {
  .TextAndImage {
    padding: 60px 0 80px;
  }
}
@media all and (max-width: 767px) {
  .TextAndImage {
    padding: 50px 0;
  }
}
.TextAndImage.noPT {
  padding-top: 0;
}
.TextAndImage ol {
  list-style: none;
}
.TextAndImage ol li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 50px;
}
@media all and (max-width: 767px) {
  .TextAndImage ol li {
    margin-bottom: 30px;
  }
}
.TextAndImage ol li:last-child {
  margin-bottom: 0;
}
.TextAndImage ol li .index {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 85px;
  max-height: 100%;
  border-right: 1px solid var(--color-secondary);
  display: flex;
  align-items: flex-end;
  line-height: 1;
  transition: border 0.3s;
}
.TextAndImage .contents {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media all and (max-width: 767px) {
  .TextAndImage .contents {
    flex-direction: column !important;
  }
}
.TextAndImage .contents .imageArea {
  width: 42.5%;
  display: flex;
  align-items: center;
  position: relative;
}
@media all and (max-width: 767px) {
  .TextAndImage .contents .imageArea {
    width: 100%;
    transform: none !important;
  }
}
.TextAndImage .contents .imageArea .imageWrapper {
  width: 100%;
  position: relative;
}
.TextAndImage .contents .imageArea .imageWrapper .imageBlend {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: var(--color-primary);
  transition: background-color 0.3s;
}
.TextAndImage .contents .imageArea .imageWrapper .image {
  visibility: hidden;
}
@media all and (max-width: 767px) {
  .TextAndImage .contents .imageArea .imageWrapper .image {
    max-height: 40vh;
  }
}
.TextAndImage .contents .imageArea .imageWrapper .image img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}
.TextAndImage .contents .textArea {
  width: 57.5%;
  padding-left: 65px;
  transition: color 0.3s;
}
@media all and (max-width: 767px) {
  .TextAndImage .contents .textArea {
    padding-left: 0;
    width: 100%;
    padding-top: 60px;
  }
}
@media all and (max-width: 499px) {
  .TextAndImage .contents .textArea {
    padding-top: 40px;
  }
}
.TextAndImage .contents .textArea .textBox > * {
  margin-bottom: 22px;
}
.TextAndImage .contents .textArea .textBox > *:last-child {
  margin-bottom: 0;
}
.TextAndImage .contents .textArea .textBox .subtitle {
  margin-bottom: 15px;
}
.TextAndImage .contents .textArea .textBox .title {
  font-size: 35px;
  font-weight: 900;
  line-height: 1.17;
  color: var(--color-primary);
}
@media all and (max-width: 767px) {
  .TextAndImage .contents .textArea .textBox .title {
    font-size: 32px;
  }
}
.TextAndImage .contents .textArea .textBox .listItems {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
}
.TextAndImage .contents .textArea .textBox .listItems li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.16px;
}
.TextAndImage .contents .textArea .textBox .listItems li:last-child {
  margin-bottom: 0;
}
.TextAndImage .contents .textArea .textBox .listItems li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black, #262626);
}
.TextAndImage .contents .textArea .textBox .btnWrapper {
  display: flex;
  justify-content: flex-start;
}
.TextAndImage.image-right .contents {
  flex-direction: row-reverse;
}
.TextAndImage.image-right .contents .textArea {
  padding-left: 0;
  padding-right: 65px;
}
@media all and (max-width: 1279px) {
  .TextAndImage.image-right .contents .textArea {
    padding-right: 70px;
  }
}
@media all and (max-width: 767px) {
  .TextAndImage.image-right .contents .textArea {
    padding-right: 0;
  }
}
.TextAndImage.bg-white {
  background: #fff;
}

.TextAndHTML {
  padding: 85px 0 125px;
}
@media all and (max-width: 1279px) {
  .TextAndHTML {
    padding: 60px 0 80px;
  }
}
@media all and (max-width: 767px) {
  .TextAndHTML {
    padding: 50px 0;
  }
}
.TextAndHTML.noPT {
  padding-top: 0;
}
.TextAndHTML .contents {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media all and (max-width: 767px) {
  .TextAndHTML .contents {
    flex-direction: column !important;
  }
}
.TextAndHTML .contents .htmlArea {
  width: 42.5%;
  display: flex;
  align-items: center;
  position: relative;
}
@media all and (max-width: 767px) {
  .TextAndHTML .contents .htmlArea {
    width: 100%;
    transform: none !important;
  }
}
.TextAndHTML .contents .htmlArea .htmlWrapper {
  width: 100%;
  position: relative;
}
.TextAndHTML .contents .textArea {
  width: 57.5%;
  padding-right: 65px;
  transition: color 0.3s;
}
@media all and (max-width: 1279px) {
  .TextAndHTML .contents .textArea {
    padding-right: 70px;
  }
}
@media all and (max-width: 767px) {
  .TextAndHTML .contents .textArea {
    padding-right: 0;
    width: 100%;
    padding-bottom: 80px;
  }
}
.TextAndHTML .contents .textArea .textBox > * {
  margin-bottom: 22px;
}
.TextAndHTML .contents .textArea .textBox > *:last-child {
  margin-bottom: 0;
}
.TextAndHTML .contents .textArea .textBox .subtitle {
  margin-bottom: 15px;
}
.TextAndHTML .contents .textArea .textBox .title {
  font-size: 35px;
  font-weight: 900;
  line-height: 1.17;
  color: var(--color-primary);
}
@media all and (max-width: 767px) {
  .TextAndHTML .contents .textArea .textBox .title {
    font-size: 32px;
  }
}
.TextAndHTML .contents .textArea .textBox .btnWrapper {
  display: flex;
  justify-content: flex-start;
}

.BlogScroller {
  padding: 60px 0;
}
@media all and (max-width: 1279px) {
  .BlogScroller {
    padding: 40px 0;
  }
}
@media all and (max-width: 1023px) {
  .BlogScroller .contents {
    margin: 0 -30px;
  }
}
@media all and (max-width: 767px) {
  .BlogScroller .contents {
    margin: 0 -25px;
  }
}
.BlogScroller .contents .title {
  color: var(--color-primary);
  font-size: 35px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
}
@media all and (max-width: 767px) {
  .BlogScroller .contents .title {
    font-size: 32px;
  }
}
.BlogScroller .contents .text {
  max-width: 840px;
  margin: auto;
  text-align: center;
}
.BlogScroller .contents .scrollerWrapper {
  margin: 48px -17px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 1023px) {
  .BlogScroller .contents .scrollerWrapper {
    margin: 0;
  }
}
.BlogScroller .contents .scrollerWrapper .arrow_prev,
.BlogScroller .contents .scrollerWrapper .arrow_next {
  padding: 6px;
  margin: 6px;
}
.BlogScroller .contents .scrollerWrapper .arrow_prev svg,
.BlogScroller .contents .scrollerWrapper .arrow_next svg {
  width: 16px;
  height: auto;
}
.BlogScroller .contents .scrollerWrapper .arrow_prev svg path,
.BlogScroller .contents .scrollerWrapper .arrow_next svg path {
  stroke: var(--color-primary);
}
.BlogScroller .contents .scrollerWrapper .arrow_prev svg {
  transform: rotate(180deg);
}
.BlogScroller .contents .scrollerWrapper .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  order: 3;
  margin: -2.5px;
  font-size: 0;
}
.BlogScroller .contents .scrollerWrapper .slick-dots li {
  margin: 2.5px;
}
.BlogScroller .contents .scrollerWrapper .slick-dots li button {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  text-indent: 100px;
  color: rgba(0, 0, 0, 0);
  background: var(--color-secondary);
  cursor: pointer;
  transition: background-color 0.3s;
  overflow: hidden;
  font-size: 0;
}
.BlogScroller .contents .scrollerWrapper .slick-dots li.slick-active button {
  background: var(--color-primary);
}
.BlogScroller .contents .scrollerWrapper .carousel {
  padding-bottom: 55px;
  width: 100%;
  opacity: 0;
}
@media all and (max-width: 767px) {
  .BlogScroller .contents .scrollerWrapper .carousel {
    padding-bottom: 0;
  }
}
.BlogScroller .contents .scrollerWrapper .carousel .item {
  padding: 0 17px;
  width: 50%;
}
@media all and (max-width: 1023px) {
  .BlogScroller .contents .scrollerWrapper .carousel .item {
    padding: 0 30px;
  }
}

.QuoteScroller {
  padding: 80px 0 40px;
  background: var(--color-tiertiary);
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 85px;
}
@media all and (max-width: 767px) {
  .QuoteScroller .QuoteScroller_contents .QuoteScroller_controls {
    margin-top: 55px;
  }
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_controls .QuoteScroller_arrow_prev,
.QuoteScroller .QuoteScroller_contents .QuoteScroller_controls .QuoteScroller_arrow_next {
  padding: 6px;
  margin: 6px;
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_controls .QuoteScroller_arrow_prev svg,
.QuoteScroller .QuoteScroller_contents .QuoteScroller_controls .QuoteScroller_arrow_next svg {
  width: 16px;
  height: auto;
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_controls .QuoteScroller_arrow_prev svg path,
.QuoteScroller .QuoteScroller_contents .QuoteScroller_controls .QuoteScroller_arrow_next svg path {
  stroke: var(--color-primary);
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_arrow_prev svg {
  transform: rotate(180deg);
}
.QuoteScroller .QuoteScroller_contents .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  order: 3;
  margin: -2.5px;
  font-size: 0;
}
.QuoteScroller .QuoteScroller_contents .slick-dots li {
  margin: 2.5px;
}
.QuoteScroller .QuoteScroller_contents .slick-dots li button {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  text-indent: 100px;
  color: rgba(0, 0, 0, 0);
  background: var(--color-secondary);
  cursor: pointer;
  transition: background-color 0.3s;
  overflow: hidden;
  font-size: 0;
}
.QuoteScroller .QuoteScroller_contents .slick-dots li.slick-active button {
  background: var(--color-primary);
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container {
  max-width: 926px;
  margin: auto;
  position: relative;
}
@media all and (max-width: 1279px) {
  .QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container {
    max-width: 740px;
  }
}
@media all and (max-width: 1023px) {
  .QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container {
    max-width: 610px;
  }
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box_shadow {
  position: absolute;
  top: 45px;
  right: -45px;
  bottom: -45px;
  left: 45px;
  background: red;
  opacity: 0;
}
@media all and (max-width: 767px) {
  .QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box_shadow {
    top: 25px;
    right: -25px;
    bottom: -25px;
    left: 25px;
  }
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box {
  background: var(--color-body);
  padding: 70px 0 60px;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 1279px) {
  .QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box {
    padding: 50px 0;
  }
}
@media all and (max-width: 1023px) {
  .QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box {
    padding: 30px 0;
  }
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_box_title {
  font-size: 37px;
  font-weight: 400;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .slick-track {
  display: flex;
  align-items: stretch;
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .slick-track .slick-slide {
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .slick-track .slick-slide.slick-current {
  transition-delay: 0.1s;
  opacity: 1;
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .QuoteScroller_item {
  padding: 0 44px;
}
@media all and (max-width: 1023px) {
  .QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .QuoteScroller_item {
    padding: 0 30px;
  }
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .QuoteScroller_item .QuoteScroller_item_contents {
  text-align: center;
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .QuoteScroller_item .QuoteScroller_item_contents .QuoteScroller_item_text_quote_mark_open,
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .QuoteScroller_item .QuoteScroller_item_contents .QuoteScroller_item_text_quote_mark_close {
  font-size: 60px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  height: 0.5em;
  overflow: hidden;
  text-align: right;
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .QuoteScroller_item .QuoteScroller_item_contents .QuoteScroller_item_text_quote_mark_open {
  transform: scale(-1);
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .QuoteScroller_item .QuoteScroller_item_contents .QuoteScroller_item_text {
  font-size: 18px;
  line-height: 1.5;
  padding: 0 30px;
  margin: -5px 0;
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .QuoteScroller_item .QuoteScroller_item_contents .QuoteScroller_item_text p {
  margin-bottom: 1em;
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .QuoteScroller_item .QuoteScroller_item_contents .QuoteScroller_item_text p:last-child {
  margin-bottom: 0;
}
.QuoteScroller .QuoteScroller_contents .QuoteScroller_box_container .QuoteScroller_box .QuoteScroller_scrollerWrapper .QuoteScroller_carousel .QuoteScroller_item .QuoteScroller_item_contents .QuoteScroller_item_name {
  font-family: var(--main-font);
  font-size: 30px;
  line-height: 1.13;
  color: var(--color-primary);
}

.CTAS {
  padding: 100px 0;
  position: relative;
}
@media all and (max-width: 1279px) {
  .CTAS {
    padding: 60px 0;
  }
}
@media all and (max-width: 767px) {
  .CTAS {
    padding: 30px 0;
  }
}
.CTAS .CTAS_contents .CTAS_items {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: -25px -25px 0 -25px;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 1279px) {
  .CTAS .CTAS_contents .CTAS_items {
    margin: -15px -15px 0;
  }
}
.CTAS .CTAS_contents .CTAS_items .CTAS_item {
  padding: 25px 25px 0 25px;
}
@media all and (max-width: 1279px) {
  .CTAS .CTAS_contents .CTAS_items .CTAS_item {
    padding: 15px 15px 0;
  }
}
.CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 8px 15px;
  line-height: 1;
  color: var(--color-primary);
  font-size: 22px;
  transition: background-color 0.3s, color 0.3s;
}
@media all and (max-width: 1279px) {
  .CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link {
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link {
    min-width: 310px;
  }
}
.CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link .ico {
  padding-right: 1.1em;
}
.CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link .ico img, .CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link .ico svg {
  height: 1.22em;
  width: auto;
}
.CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link .text {
  padding-top: 0.2em;
}
.CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link .arrow {
  padding-left: 0.9em;
}
@media all and (max-width: 767px) {
  .CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link .arrow {
    margin-left: auto;
  }
}
.CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link .arrow svg, .CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link .arrow img {
  width: 1.36em;
  height: auto;
}
.CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link *[tofill] {
  transition: fill 0.3s;
}
.CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link:hover {
  background: var(--color-primary);
  color: var(--color-on-primary);
}
.CTAS .CTAS_contents .CTAS_items .CTAS_item .CTAS_link:hover *[tofill] {
  fill: var(--color-on-primary);
}

.Video {
  padding: 100px 0;
}
@media all and (max-width: 1279px) {
  .Video {
    padding: 60px 0;
  }
}
@media all and (max-width: 767px) {
  .Video {
    padding: 50px 0;
  }
}
.Video .Video_contents .Video_titleBox {
  padding-bottom: 15px;
}
.Video .Video_contents .Video_titleBox .Video_title {
  font-size: 37px;
  font-weight: 400;
  color: var(--color-primary);
  transition: color 0.3s;
}
.Video .Video_contents .Video_videoWrapper div {
  position: relative;
}
.Video .Video_contents .Video_videoWrapper div iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.Video .Video_contents .Video_description {
  font-size: 22px;
  width: 50%;
  transition: color 0.3s;
  margin-top: 15px;
}
@media all and (max-width: 1279px) {
  .Video .Video_contents .Video_description {
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .Video .Video_contents .Video_description {
    width: 100%;
  }
}
.Video .Video_contents .Video_btnWrapper {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 767px) {
  .Video .Video_contents .Video_btnWrapper {
    margin-top: 30px;
  }
}

.VideoOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 60;
  display: none;
}
.VideoOverlay .VideoOverlay_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* support backdrop-filter */
}
@supports (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px)) {
  .VideoOverlay .VideoOverlay_bg {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}
.VideoOverlay .VideoOverlay_bg {
  /* no support backdrop-filter */
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .VideoOverlay .VideoOverlay_bg {
    -webkit-filter: url(#backdrop-filter-blur);
    filter: url(#backdrop-filter-blur);
  }
}
.VideoOverlay .VideoOverlay_bg:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #949494;
  opacity: 0.34;
}
.VideoOverlay .VideoOverlay_boxWrapper {
  position: absolute;
  width: calc(100vw - 300px);
  height: calc(100vh - 300px);
}
@media all and (max-width: 1023px) {
  .VideoOverlay .VideoOverlay_boxWrapper {
    width: calc(100vw - 100px);
    height: calc(100vh - 200px);
  }
}
.VideoOverlay .VideoOverlay_boxWrapper {
  max-width: 1000px;
  max-height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.VideoOverlay .VideoOverlay_boxWrapper .VideoOverlay_box {
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.38));
  background: #000;
}
.VideoOverlay .VideoOverlay_boxWrapper .VideoOverlay_box .VideoOverlay_close {
  position: absolute;
  right: -20px;
  top: 0px;
  padding: 20px;
  transform: translateY(-100%);
}
.VideoOverlay .VideoOverlay_boxWrapper .VideoOverlay_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.BlogArchive {
  padding: 85px 0;
}
@media all and (max-width: 1279px) {
  .BlogArchive {
    padding: 60px 0;
  }
}
.BlogArchive.loading {
  pointer-events: none;
}
.BlogArchive.loading .contents .loading {
  opacity: 1;
}
.BlogArchive .contents .filtersWrapper {
  margin-bottom: 85px;
  margin-top: -20px;
}
@media all and (max-width: 1279px) {
  .BlogArchive .contents .filtersWrapper {
    margin-bottom: 60px;
  }
}
.BlogArchive .contents .filtersWrapper .filters {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.BlogArchive .contents .filtersWrapper .filters li {
  margin-top: 20px;
  padding: 0 26px;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.17;
  font-family: var(--secondary-font);
  text-transform: uppercase;
}
@media all and (max-width: 1023px) {
  .BlogArchive .contents .filtersWrapper .filters li {
    font-size: 25px;
    padding: 0 15px;
  }
}
@media all and (max-width: 767px) {
  .BlogArchive .contents .filtersWrapper .filters li {
    font-size: 22px;
    padding: 0 10px;
  }
}
.BlogArchive .contents .filtersWrapper .filters li a {
  color: var(--color-primary);
}
.BlogArchive .contents .filtersWrapper .filters li a.selected {
  color: var(--color-secondary);
}
.BlogArchive .contents .filtersWrapper .filters li a:not(.selected):hover {
  color: var(--color-secondary);
}
.BlogArchive .contents .loading {
  display: block;
  pointer-events: none;
  transition: opacity 0.3s;
  width: 90px;
  height: 90px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}
.BlogArchive .contents .loading svg {
  width: 100%;
  height: auto;
}
.BlogArchive .contents .loading svg [tostroke] {
  stroke: var(--color-primary);
}
.BlogArchive .contents .postsWrapper {
  position: relative;
}
.BlogArchive .contents .postsWrapper .posts {
  display: flex;
  flex-wrap: wrap;
  margin: -90px -20px 0 -20px;
}
@media all and (max-width: 1279px) {
  .BlogArchive .contents .postsWrapper .posts {
    margin-top: -60px;
  }
}
.BlogArchive .contents .postsWrapper .posts .item {
  width: 33.3333333333%;
  padding: 90px 20px 0 20px;
}
@media all and (max-width: 1279px) {
  .BlogArchive .contents .postsWrapper .posts .item {
    padding-top: 60px;
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .BlogArchive .contents .postsWrapper .posts .item {
    width: 100%;
  }
}
.BlogArchive .contents .postsWrapper .posts .navWrapper {
  width: 100%;
  padding-top: 85px;
}
.BlogArchive .contents .postsWrapper .posts .navWrapper .nav {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: -20px -10px 0;
}
.BlogArchive .contents .postsWrapper .posts .navWrapper .nav li {
  padding: 20px 10px 0 10px;
}
.BlogArchive .contents .postsWrapper .posts .navWrapper .nav li a {
  width: 2.5em;
  height: 2.5em;
  border: 1px solid var(--color-primary);
  color: var(--color-on-primary);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: 1;
  padding-top: 0.1em;
  transition: all 0.3s;
}
.BlogArchive .contents .postsWrapper .posts .navWrapper .nav li a.selected {
  background: var(--color-body);
  color: var(--color-primary);
  pointer-events: none;
}
.BlogArchive .contents .postsWrapper .posts .navWrapper .nav li a:hover {
  background: var(--color-body);
  color: var(--color-primary);
}

.CardPost .item_contents {
  flex-direction: column;
}
.CardPost .item_contents .image_wrapper {
  position: relative;
  margin-bottom: 23px;
  padding-bottom: 56%;
  background: var(--color-grey);
  border: 1px solid var(--color-grey);
}
.CardPost .item_contents .image_wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.CardPost .item_contents .item_texts {
  position: relative;
}
.CardPost .item_contents .item_texts strong {
  font-size: 18px;
  line-height: 1.16;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--color-primary);
}
.CardPost .item_contents .item_texts .item_text {
  margin-bottom: 24px;
}
.CardPost .item_contents .item_texts .item_text p {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 1em;
}
.CardPost .item_contents .item_texts .item_text p:last-child {
  margin-bottom: 0;
}
.CardPost .item_contents .item_texts .more {
  font-weight: 800;
  font-size: 15px;
  color: var(--color-primary);
  text-decoration: underline;
  text-transform: uppercase;
  transition: all 0.3s;
}
.CardPost:hover .item_contents .more {
  color: var(--color-secondary);
}

.Text {
  padding: 65px 0;
  font-size: 20px;
}
.Text .Text_contents a {
  display: inline;
}
.Text .Text_contents p {
  margin-bottom: 1.5em;
}
.Text .Text_contents p:last-child {
  margin-bottom: 0;
}
.Text .Text_contents strong {
  font-weight: 800;
}
.Text .Text_contents ul, .Text .Text_contents ol {
  margin-left: 1em;
}
.Text .Text_contents ul li, .Text .Text_contents ol li {
  margin-bottom: 0.5em;
}
.Text .Text_contents ul li:last-child, .Text .Text_contents ol li:last-child {
  margin-bottom: 0;
}
.Text.background-color-tiertiary .Text_contents strong, .Text.background-color-body .Text_contents strong, .Text.background-color-secondary .Text_contents strong {
  color: var(--color-primary);
}
.Text.background-color-primary .Text_contents strong {
  color: var(--color-secondary);
}

.Share {
  margin: 50px 0 100px;
}
@media all and (max-width: 1279px) {
  .Share {
    margin: 40px 0 80px;
  }
}
@media all and (max-width: 767px) {
  .Share {
    margin: 30px 0 60px;
  }
}
.Share .Share_contents {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Share .Share_contents span {
  font-weight: 700;
  font-size: 18px;
  margin-right: 20px;
}
.Share .Share_contents ul {
  display: flex;
  list-style: none;
  margin: -5px -8px 0;
}
.Share .Share_contents ul li {
  margin: 5px 8px 0;
  font-size: 18px;
}
.Share .Share_contents ul li a {
  border-radius: 100%;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  border: 1px solid var(--color-primary);
  padding-top: 0.05em;
  transition: all 0.3s;
}
.Share .Share_contents ul li a:hover {
  color: var(--color-primary);
  background-color: var(--color-on-primary);
}

.ContactForm {
  padding: 80px 0 70px;
  background-color: #fff;
  color: var(--black, #262626);
}
.ContactForm.bg-grey {
  background: rgba(102, 104, 106, 0.08);
}
@media all and (max-width: 1279px) {
  .ContactForm {
    padding: 70px 0;
  }
}
@media all and (max-width: 767px) {
  .ContactForm {
    padding: 60px 0;
  }
}
.ContactForm .contents .texts_intro {
  padding-bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ContactForm .contents .texts_intro .label {
  display: inline-block;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-grey, #66686A);
  border-bottom: 0.6px solid var(--color-grey, #66686A);
  padding-bottom: 0.3em;
  margin-bottom: 15px;
}
.ContactForm .contents .texts_intro .title {
  color: var(--black, #262626);
  text-align: center;
  font-family: "Karla", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
@media all and (max-width: 767px) {
  .ContactForm .contents .texts_intro .title {
    font-size: 22px;
    line-height: 32px;
  }
}
.ContactForm .contents .texts_intro .description {
  color: var(--testo, #2F2F2F);
  text-align: center;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.16px;
  max-width: 600px;
}
.ContactForm .contents .form .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -11px;
  font-size: 18px;
}
@media all and (max-width: 1279px) {
  .ContactForm .contents .form .wpcf7-form {
    margin: 0 -10px;
  }
}
.ContactForm .contents .form .wpcf7-form .field,
.ContactForm .contents .form .wpcf7-form > p {
  width: 100%;
  padding: 0 11px;
  position: relative;
  margin-bottom: 1.5em;
}
.ContactForm .contents .form .wpcf7-form .field.half,
.ContactForm .contents .form .wpcf7-form > p.half {
  width: 50%;
}
@media all and (max-width: 767px) {
  .ContactForm .contents .form .wpcf7-form .field.half,
  .ContactForm .contents .form .wpcf7-form > p.half {
    width: 100%;
  }
}
.ContactForm .contents .form .wpcf7-form .field br,
.ContactForm .contents .form .wpcf7-form > p br {
  display: none;
}
.ContactForm .contents .form .wpcf7-form .field:not(.privacy) span,
.ContactForm .contents .form .wpcf7-form > p:not(.privacy) span {
  display: block;
}
.ContactForm .contents .form .wpcf7-form .field:not(.privacy) label,
.ContactForm .contents .form .wpcf7-form > p:not(.privacy) label {
  position: absolute;
  top: 50%;
  left: 26px;
  transform: translateY(-50%);
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--grigio-brand, #66686A);
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.ContactForm .contents .form .wpcf7-form .field:not(.privacy) input[type=text],
.ContactForm .contents .form .wpcf7-form .field:not(.privacy) input[type=tel],
.ContactForm .contents .form .wpcf7-form .field:not(.privacy) input[type=email],
.ContactForm .contents .form .wpcf7-form > p:not(.privacy) input[type=text],
.ContactForm .contents .form .wpcf7-form > p:not(.privacy) input[type=tel],
.ContactForm .contents .form .wpcf7-form > p:not(.privacy) input[type=email] {
  display: flex;
  height: 50px;
  width: 100%;
  padding: 18px 15px;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  border: 1px solid var(--grigio-brand, #66686A);
  border-radius: 5px;
  outline: none;
  color: var(--black, #262626);
  background: #fff;
}
.ContactForm .contents .form .wpcf7-form .field:not(.privacy) input[type=text]::placeholder,
.ContactForm .contents .form .wpcf7-form .field:not(.privacy) input[type=tel]::placeholder,
.ContactForm .contents .form .wpcf7-form .field:not(.privacy) input[type=email]::placeholder,
.ContactForm .contents .form .wpcf7-form > p:not(.privacy) input[type=text]::placeholder,
.ContactForm .contents .form .wpcf7-form > p:not(.privacy) input[type=tel]::placeholder,
.ContactForm .contents .form .wpcf7-form > p:not(.privacy) input[type=email]::placeholder {
  color: var(--grigio-brand, #66686A);
  opacity: 1;
}
.ContactForm .contents .form .wpcf7-form .field:not(.privacy) textarea,
.ContactForm .contents .form .wpcf7-form > p:not(.privacy) textarea {
  display: flex;
  height: 150px;
  width: 100%;
  padding: 18px 15px;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.4;
  border: 1px solid var(--grigio-brand, #66686A);
  border-radius: 5px;
  outline: none;
  color: var(--black, #262626);
  background: #fff;
  resize: vertical;
}
.ContactForm .contents .form .wpcf7-form .field:not(.privacy) textarea::placeholder,
.ContactForm .contents .form .wpcf7-form > p:not(.privacy) textarea::placeholder {
  color: var(--grigio-brand, #66686A);
  opacity: 1;
}
.ContactForm .contents .form .wpcf7-form .field:not(.privacy).focused label,
.ContactForm .contents .form .wpcf7-form > p:not(.privacy).focused label {
  opacity: 0;
}
.ContactForm .contents .form .wpcf7-form .field:not(.privacy) .wpcf7-not-valid-tip,
.ContactForm .contents .form .wpcf7-form > p:not(.privacy) .wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0;
  font-size: 13.8px;
  right: 6px;
}
.ContactForm .contents .form .wpcf7-form .field.textarea label,
.ContactForm .contents .form .wpcf7-form > p.textarea label {
  top: 18px;
  transform: none;
}
.ContactForm .contents .form .wpcf7-form .field input[type=checkbox],
.ContactForm .contents .form .wpcf7-form > p input[type=checkbox] {
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid var(--grigio-brand, #66686A);
  border-radius: 5px;
  flex-shrink: 0;
}
.ContactForm .contents .form .wpcf7-form .field input[type=checkbox]:checked,
.ContactForm .contents .form .wpcf7-form > p input[type=checkbox]:checked {
  background: var(--black, #262626);
}
.ContactForm .contents .form .wpcf7-form .field.privacy span,
.ContactForm .contents .form .wpcf7-form > p.privacy span {
  display: block;
}
.ContactForm .contents .form .wpcf7-form .field.privacy .wpcf7-list-item,
.ContactForm .contents .form .wpcf7-form > p.privacy .wpcf7-list-item {
  margin: 0;
}
.ContactForm .contents .form .wpcf7-form .field.privacy .wpcf7-list-item label,
.ContactForm .contents .form .wpcf7-form > p.privacy .wpcf7-list-item label {
  display: flex;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black, #262626);
}
.ContactForm .contents .form .wpcf7-form .field.privacy .wpcf7-list-item label input,
.ContactForm .contents .form .wpcf7-form > p.privacy .wpcf7-list-item label input {
  margin-right: 1em;
  margin-top: 5px;
}
.ContactForm .contents .form .wpcf7-form .field.privacy .wpcf7-list-item label a,
.ContactForm .contents .form .wpcf7-form > p.privacy .wpcf7-list-item label a {
  display: inline;
  text-decoration: underline;
  color: var(--black, #262626);
}
.ContactForm .contents .form .wpcf7-form .submitWrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.ContactForm .contents .form .wpcf7-form .submitWrapper .wpcf7-spinner {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.ContactForm .contents .form .wpcf7-form .submitWrapper input {
  background-color: var(--black, #262626);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-family: "Karla", sans-serif;
  padding: 14px 32px;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.ContactForm .contents .form .wpcf7-form .submitWrapper input:hover {
  background-color: #000;
}
.ContactForm .contents .form .wpcf7-form .submitWrapper input:disabled {
  pointer-events: none;
  opacity: 0.4;
}
.ContactForm .contents .form .wpcf7-form .wpcf7-response-output {
  margin: 0 11px;
  width: 100%;
}
.ContactForm .contents .form .wpcf7-form .separator {
  width: 100%;
  height: 1px;
  background: var(--grigio-brand, #66686A);
  border: none;
  margin: 10px 11px 30px;
}
.ContactForm .codedropz-upload-handler {
  background-color: var(--color-body);
  color: var(--color-on-body);
}
.ContactForm .codedropz-upload-handler h3 {
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}
.ContactForm .codedropz-upload-handler .cd-upload-btn {
  color: var(--color-primary);
  text-decoration: underline !important;
}
.ContactForm .codedropz-upload-handler .dnd-upload-counter span {
  display: inline !important;
}
.ContactForm .dnd-upload-status {
  background-color: var(--color-body);
  color: var(--color-on-body);
  padding: 15px;
}
.ContactForm .dnd-upload-status .remove-file {
  right: 15px;
}

.CategoryBanner {
  background: #F3F3F3;
  padding: 50px 0;
  text-align: center;
}
.CategoryBanner h2 {
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}
.CategoryBanner p {
  color: var(--testo, #2F2F2F);
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.16px;
  max-width: 800px;
  margin: 0 auto;
}

.ProductList {
  padding: 60px 0 80px;
}
.ProductList.bg-tiertiary {
  background-color: var(--color-tiertiary);
}
.ProductList .headings {
  text-align: center;
}
.ProductList .headings h2 {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 35px;
  line-height: 1.17;
}
.ProductList .headings p {
  max-width: 630px;
  margin: auto;
}
.ProductList .headings p:not(:first-child) {
  margin-top: 9px;
}
.ProductList .items {
  display: flex;
  margin: 23px -13px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.ProductList .items .item {
  width: 33.3333333333%;
  padding: 35px 13px 0;
  display: flex;
}
.ProductList .items .item .inner {
  width: 100%;
  background-color: var(--color-body);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.ProductList .items .item .inner:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.ProductList .items .item .inner .promo-badge {
  position: absolute;
  top: 12px;
  left: 0;
  background: var(--accento, #C52233);
  color: #fff;
  font-family: var(--main-font);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  text-transform: uppercase;
  z-index: 2;
}
.ProductList .items .item .inner .image-wrapper {
  position: relative;
  padding-bottom: 75%;
  background-color: #fff;
  border: 1px solid #e5e5e5;
}
.ProductList .items .item .inner .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.ProductList .items .item .inner .texts {
  padding: 20px 15px 10px;
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.ProductList .items .item .inner .texts .product-title {
  font-family: var(--main-font);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  color: #262626;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ProductList .items .item .inner .texts .product-subtitle {
  font-family: var(--main-font);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  color: #66686A;
  margin-top: 5px;
}
.ProductList .items .item .inner .price-wrapper {
  padding: 10px 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}
.ProductList .items .item .inner .price-wrapper .price-discounted {
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 400;
  color: #66686A;
  text-decoration: line-through;
}
.ProductList .items .item .inner .price-wrapper .price-current {
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 800;
  color: #262626;
}
.ProductList .items .item .inner .price-label {
  color: #66686A;
  font-family: "Karla", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.13px;
  text-align: center;
}
.ProductList .items .item .inner .cta-wrapper {
  padding: 10px 15px 20px;
  text-align: center;
}
.ProductList .items .item .inner .cta-wrapper .cta-link {
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--black, #262626);
  letter-spacing: -0.16px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
  transition: color 0.3s ease;
}
.ProductList .items .item .inner .cta-wrapper .cta-link:hover {
  color: var(--color-primary);
}
@media (max-width: 1023px) {
  .ProductList .items .item {
    width: 50%;
  }
}
@media (max-width: 499px) {
  .ProductList .items .item {
    width: 100%;
  }
}
.ProductList .pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.ProductList .pagination ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ProductList .pagination ul li a,
.ProductList .pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black, #262626);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.ProductList .pagination ul li a:hover {
  border-color: var(--grigio-brand, #66686A);
}
.ProductList .pagination ul li.active span,
.ProductList .pagination ul li span.current {
  font-weight: 700;
  border-color: var(--black, #262626);
}
.ProductList .pagination ul li.disabled span {
  color: #ccc;
  pointer-events: none;
}

.ProductDetail {
  margin: 80px 0;
}
@media all and (max-width: 1439px) {
  .ProductDetail {
    margin: 60px 0 80px;
  }
}
@media all and (max-width: 1279px) {
  .ProductDetail {
    margin: 45px 0 80px;
  }
}
@media all and (max-width: 1023px) {
  .ProductDetail {
    margin: 30px 0 80px;
  }
}
@media all and (max-width: 767px) {
  .ProductDetail {
    margin: 0 0 50px;
  }
}
.ProductDetail .contents {
  display: flex;
  flex-direction: row-reverse;
}
@media all and (max-width: 767px) {
  .ProductDetail .contents {
    flex-direction: column;
  }
}
.ProductDetail .contents .gallery-area {
  width: 50%;
  flex-shrink: 0;
  padding-left: 30px;
}
@media all and (max-width: 1023px) {
  .ProductDetail .contents .gallery-area {
    padding-left: 15px;
  }
}
@media all and (max-width: 767px) {
  .ProductDetail .contents .gallery-area {
    width: 100%;
    padding: 30px 0 30px 0;
  }
}
.ProductDetail .contents .gallery-area .gallery .item .image {
  padding-bottom: 90%;
  position: relative;
  background-size: contain;
}
.ProductDetail .contents .gallery-area .gallery .slick-dots {
  position: absolute;
  top: 50%;
  left: calc(100% + 40px);
  list-style: none;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
}
@media all and (max-width: 1439px) {
  .ProductDetail .contents .gallery-area .gallery .slick-dots {
    left: calc(100% + 25px);
  }
}
@media all and (max-width: 1023px) {
  .ProductDetail .contents .gallery-area .gallery .slick-dots {
    top: calc(100% + 20px);
    transform: translateX(-50%);
    left: 50%;
    flex-direction: row;
  }
}
@media all and (max-width: 767px) {
  .ProductDetail .contents .gallery-area .gallery .slick-dots {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    justify-content: center;
    padding-top: 20px;
  }
}
.ProductDetail .contents .gallery-area .gallery .slick-dots li {
  padding: 5px 0;
  font-size: 0px;
}
@media all and (max-width: 1023px) {
  .ProductDetail .contents .gallery-area .gallery .slick-dots li {
    padding: 0 5px;
  }
}
.ProductDetail .contents .gallery-area .gallery .slick-dots li button {
  font-size: 0px;
  color: rgba(0, 0, 0, 0);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  cursor: pointer;
  background-color: #66686A;
}
.ProductDetail .contents .gallery-area .gallery .slick-dots li.slick-active button {
  background-color: var(--color-primary);
}
.ProductDetail .contents .texts-area {
  width: 50%;
  flex-shrink: 0;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media all and (max-width: 1023px) {
  .ProductDetail .contents .texts-area {
    padding-right: 15px;
  }
}
.ProductDetail .contents .texts-area.mobile {
  display: none;
}
.ProductDetail .contents .texts-area.mobile h1 {
  margin-bottom: 0;
  font-size: 30px;
  text-align: center;
}
@media all and (max-width: 767px) {
  .ProductDetail .contents .texts-area.mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media all and (max-width: 767px) {
  .ProductDetail .contents .texts-area:not(.mobile) h1 {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .ProductDetail .contents .texts-area {
    width: 100%;
    padding: 0;
  }
}
.ProductDetail .contents .texts-area h1 {
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 50px;
  letter-spacing: -0.8px;
}
@media (max-width: 1023px) {
  .ProductDetail .contents .texts-area h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .ProductDetail .contents .texts-area h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
.ProductDetail .contents .texts-area .description strong {
  color: var(--color-primary);
}
.ProductDetail .contents .texts-area .colors-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.ProductDetail .contents .texts-area .colors-block .colors-title {
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.16px;
  margin: 0;
}
.ProductDetail .contents .texts-area .colors-block .colors-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .ProductDetail .contents .texts-area .colors-block .colors-list {
    grid-template-columns: 1fr;
  }
}
.ProductDetail .contents .texts-area .colors-block .colors-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ProductDetail .contents .texts-area .colors-block .colors-list li svg {
  width: 7px;
  height: 7px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.ProductDetail .contents .texts-area .colors-block .colors-list li svg circle {
  fill: var(--black, #262626);
}
.ProductDetail .contents .texts-area .colors-block .colors-list li span {
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.16px;
}
.ProductDetail .contents .texts-area .price-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ProductDetail .contents .texts-area .price-block .price-original {
  color: #66686A;
  font-family: "Karla", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: line-through;
}
.ProductDetail .contents .texts-area .price-block .price-sale {
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 38px;
}
@media (max-width: 767px) {
  .ProductDetail .contents .texts-area .price-block .price-sale {
    font-size: 22px;
    line-height: 32px;
  }
}
.ProductDetail .contents .texts-area .price-block .price-label {
  color: #66686A;
  font-family: "Karla", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.13px;
  margin-right: 50px;
}
.ProductDetail .contents .texts-area .price-block .promo-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  background: var(--accento, #C52233);
  color: #fff;
  font-family: "Karla", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.13px;
}
.ProductDetail .contents .texts-area .phone-button {
  display: flex;
  max-width: 385px;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--black, #262626);
  text-decoration: none;
  transition: background 0.3s ease;
}
.ProductDetail .contents .texts-area .phone-button:hover {
  background: var(--color-primary);
}
.ProductDetail .contents .texts-area .phone-button span {
  color: var(--White, #FFF);
  font-family: "Karla", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.ProductSpecs .w {
  display: flex;
  flex-direction: column;
}
.ProductSpecs .spec-separator {
  width: 100%;
  height: 1px;
  background-color: #E0E0E0;
}
.ProductSpecs .spec-block {
  padding: 40px 0;
}
@media all and (max-width: 767px) {
  .ProductSpecs .spec-block {
    padding: 30px 0;
  }
}
.ProductSpecs .spec-block h3 {
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.18px;
  margin: 0 0 16px 0;
}
.ProductSpecs .spec-block .spec-content {
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.16px;
}
.ProductSpecs .spec-block .spec-content p {
  margin: 0 0 1em 0;
}
.ProductSpecs .spec-block .spec-content p:last-child {
  margin-bottom: 0;
}
.ProductSpecs .spec-block .spec-content strong, .ProductSpecs .spec-block .spec-content b {
  font-weight: 700;
}

.RelatedProducts {
  padding: 60px 0 80px;
  background: #fff;
}
@media all and (max-width: 767px) {
  .RelatedProducts {
    padding: 40px 0 60px;
  }
}
.RelatedProducts .headings {
  text-align: center;
  margin-bottom: 40px;
}
.RelatedProducts .headings .subtitle-label {
  display: inline-block;
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--black, #262626);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--black, #262626);
  padding-bottom: 2px;
}
.RelatedProducts .headings h2 {
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.17;
  margin-bottom: 10px;
}
@media all and (max-width: 767px) {
  .RelatedProducts .headings h2 {
    font-size: 28px;
  }
}
.RelatedProducts .headings p {
  max-width: 840px;
  margin: 0 auto;
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 16px;
  line-height: 28px;
}
.RelatedProducts .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media all and (max-width: 1279px) {
  .RelatedProducts .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 1023px) {
  .RelatedProducts .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 767px) {
  .RelatedProducts .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.RelatedProducts .products-grid .item .inner {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  transition: box-shadow 0.3s ease;
  height: 100%;
}
.RelatedProducts .products-grid .item .inner:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.RelatedProducts .products-grid .item .inner .promo-badge {
  position: absolute;
  top: 12px;
  left: 0;
  background: var(--accento, #C52233);
  color: #fff;
  font-family: var(--main-font);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  text-transform: uppercase;
  z-index: 2;
}
.RelatedProducts .products-grid .item .inner .image-wrapper {
  position: relative;
  padding-bottom: 75%;
  background-color: #fff;
  border: 1px solid #e5e5e5;
}
.RelatedProducts .products-grid .item .inner .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.RelatedProducts .products-grid .item .inner .texts {
  padding: 20px 15px 10px;
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.RelatedProducts .products-grid .item .inner .texts .product-title {
  font-family: var(--main-font);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  color: #262626;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.RelatedProducts .products-grid .item .inner .texts .product-subtitle {
  font-family: var(--main-font);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  color: #66686A;
  margin-top: 5px;
}
.RelatedProducts .products-grid .item .inner .price-wrapper {
  padding: 10px 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}
.RelatedProducts .products-grid .item .inner .price-wrapper .price-discounted {
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 400;
  color: #66686A;
  text-decoration: line-through;
}
.RelatedProducts .products-grid .item .inner .price-wrapper .price-current {
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 800;
  color: #262626;
}
.RelatedProducts .products-grid .item .inner .cta-wrapper {
  padding: 10px 15px 20px;
  text-align: center;
}
.RelatedProducts .products-grid .item .inner .cta-wrapper .cta-link {
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--black, #262626);
  letter-spacing: -0.16px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.Back {
  padding: 20px 0;
}

.ProductsTermsArchive {
  padding: 100px 0;
}
.ProductsTermsArchive .contents .items {
  display: flex;
  flex-wrap: wrap;
  margin: -80px -15px 0;
}
.ProductsTermsArchive .contents .items .item {
  padding: 80px 15px;
  width: 50%;
  display: flex;
}
.ProductsTermsArchive .contents .items .item .inner {
  width: 100%;
  display: flex;
  align-items: center;
}
.ProductsTermsArchive .contents .items .item .inner .image-wrapper {
  width: 70%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.ProductsTermsArchive .contents .items .item .inner .image-wrapper .image-spacer {
  padding-bottom: 100%;
  position: relative;
}
.ProductsTermsArchive .contents .items .item .inner .image-wrapper .image-blend {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background-color: var(--color-tiertiary);
  z-index: 1;
}
.ProductsTermsArchive .contents .items .item .inner .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  transform: scale(1.1);
}
.ProductsTermsArchive .contents .items .item .inner .texts-wrapper {
  margin-left: -35%;
  position: relative;
  padding: 40px 35px;
  z-index: 2;
}
.ProductsTermsArchive .contents .items .item .inner .texts-wrapper .texts-blend {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background-color: var(--color-primary);
}
.ProductsTermsArchive .contents .items .item .inner .texts-wrapper .texts h3 {
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 22px;
}
.ProductsTermsArchive .contents .items .item .inner .texts-wrapper .texts .excerpt {
  color: var(--color-on-primary);
  font-size: 16px;
  line-height: 1.25;
}
.ProductsTermsArchive .contents .items .item .inner .texts-wrapper .texts .btn-wrapper {
  margin-top: 31px;
  display: flex;
}
@media (max-width: 1023px) {
  .ProductsTermsArchive .contents .items .item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .ProductsTermsArchive .contents .items .item {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.HistoryTimeline {
  background: var(--color-tiertiary);
  padding: 70px 0;
  overflow: hidden;
}
.HistoryTimeline .contents .headings {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.HistoryTimeline .contents .headings .subtitle {
  margin-bottom: 15px;
}
.HistoryTimeline .contents .headings .title {
  font-size: 35px;
  line-height: 1.17;
  color: var(--color-primary);
}
@media all and (max-width: 767px) {
  .HistoryTimeline .contents .headings .title {
    text-align: center;
    font-size: 30px;
  }
}
.HistoryTimeline .contents .scroller-wrapper:not(:first-child) {
  margin-top: 100px;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .flickity-viewport {
  overflow: visible !important;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents {
  width: 256px;
  padding: 0;
}
@media all and (max-width: 767px) {
  .HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents {
    padding: 0 20px;
    width: 75vw;
    max-width: 270px;
  }
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .year-wrapper {
  margin-bottom: 13px;
  text-align: center;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .year-wrapper strong {
  font-size: 25px;
  line-height: 1.16;
  font-weight: 900;
  font-family: var(--secondary-font);
  color: var(--color-primary);
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .line-square-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 13px;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .line-square-wrapper .line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-primary);
}
@media all and (max-width: 767px) {
  .HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .line-square-wrapper .line {
    left: -20px;
    right: -20px;
  }
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .line-square-wrapper .square {
  width: 17px;
  height: 17px;
  border-radius: 2px;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  position: relative;
  z-index: 1;
  transition: background-color 0.3s;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .card {
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--color-body);
  opacity: 0;
  transition: opacity 0.3s;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .card .image-wrapper {
  padding-bottom: 39.45%;
  position: relative;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .card .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .card .texts-wrapper {
  padding: 14px 16px;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .card .texts-wrapper h4 {
  font-size: 16px;
  line-height: 1.25;
  color: var(--color-primary);
  font-weight: 700;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .card .texts-wrapper p {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.33;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item:first-child .item-contents .line-square-wrapper .line {
  left: 50%;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item:last-child .item-contents .line-square-wrapper .line {
  right: 50%;
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item:hover .item-contents .line-square-wrapper .square, .HistoryTimeline .contents .scroller-wrapper .carousel .item.is-selected .item-contents .line-square-wrapper .square {
  background-color: var(--color-secondary);
}
.HistoryTimeline .contents .scroller-wrapper .carousel .item:hover .item-contents .card, .HistoryTimeline .contents .scroller-wrapper .carousel .item.is-selected .item-contents .card {
  opacity: 1;
}
@media all and (max-width: 767px) {
  .HistoryTimeline .contents .scroller-wrapper .carousel .item .item-contents .card {
    opacity: 1;
  }
}
.HistoryTimeline .contents .scroller-wrapper .arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 46px;
}
.HistoryTimeline .contents .scroller-wrapper .arrows .arrow {
  cursor: pointer;
}
.HistoryTimeline .contents .scroller-wrapper .arrows .arrow svg {
  height: 17px;
  width: auto;
}
.HistoryTimeline .contents .scroller-wrapper .arrows .arrow svg [tofill] {
  fill: var(--color-primary);
}
.HistoryTimeline .contents .scroller-wrapper .arrows .arrow.arrow-left {
  transform: rotate(-180deg);
}
.HistoryTimeline .contents .scroller-wrapper .arrows .sep {
  margin: 0 36px;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color: var(--color-secondary);
}

.Tabs .top-contents {
  padding: 0 0 29px;
}
.Tabs .top-contents ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  justify-content: center;
}
.Tabs .top-contents ul li {
  flex-grow: 1;
  margin-top: 29px;
  padding: 0 26px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 260px;
  position: relative;
}
.Tabs .top-contents ul li:not(.fol):before {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 42px;
  width: 1px;
  background-color: #e3e3e3;
  transform: translateY(-50%);
}
.Tabs .top-contents ul li a {
  font-family: var(--secondary-font);
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.16;
  text-transform: uppercase;
  color: var(--color-primary);
}
.Tabs .top-contents ul li a.current span, .Tabs .top-contents ul li a:hover span {
  text-decoration: underline;
}
.Tabs .tabs-wrapper {
  background-color: #F7F7F7;
  padding: 85px 0;
}
.Tabs .tabs-wrapper .tabs-container {
  position: relative;
  height: 1000px;
}
.Tabs .tabs-wrapper .tabs-container .tab {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.Tabs .tabs-wrapper .tabs-container .tab.current {
  opacity: 1;
  pointer-events: all;
}
.Tabs .tabs-wrapper .tabs-container .tab .tab-contents {
  display: flex;
  align-items: center;
}
.Tabs .tabs-wrapper .tabs-container .tab .tab-contents .texts {
  width: 55%;
  flex-shrink: 0;
  padding-right: 65px;
}
.Tabs .tabs-wrapper .tabs-container .tab .tab-contents .texts > * {
  margin-bottom: 20px;
}
.Tabs .tabs-wrapper .tabs-container .tab .tab-contents .texts > *:last-child {
  margin-bottom: 0;
}
.Tabs .tabs-wrapper .tabs-container .tab .tab-contents .texts h3 {
  font-size: 35px;
  line-height: 1.17;
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .Tabs .tabs-wrapper .tabs-container .tab .tab-contents .texts h3 {
    font-size: 30px;
  }
}
.Tabs .tabs-wrapper .tabs-container .tab .tab-contents .texts .cta-wrapper {
  margin-top: 40px;
  display: flex;
}
@media (max-width: 767px) {
  .Tabs .tabs-wrapper .tabs-container .tab .tab-contents .texts .cta-wrapper {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .Tabs .tabs-wrapper .tabs-container .tab .tab-contents .texts {
    width: 100%;
    padding-right: 0;
    padding-top: 40px;
    text-align: center;
  }
}
.Tabs .tabs-wrapper .tabs-container .tab .tab-contents .image-wrapper {
  width: 45%;
}
.Tabs .tabs-wrapper .tabs-container .tab .tab-contents .image-wrapper .image-area {
  padding-bottom: 100%;
  position: relative;
}
.Tabs .tabs-wrapper .tabs-container .tab .tab-contents .image-wrapper .image-area .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .Tabs .tabs-wrapper .tabs-container .tab .tab-contents .image-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .Tabs .tabs-wrapper .tabs-container .tab .tab-contents {
    flex-direction: column-reverse;
  }
}

.IconBoxes {
  padding: 80px 0;
  text-align: center;
}
@media all and (max-width: 1279px) {
  .IconBoxes {
    padding: 60px 0;
  }
}
@media all and (max-width: 767px) {
  .IconBoxes {
    padding: 40px 0;
  }
}
.IconBoxes[css-background=primary] {
  background: var(--color-primary);
  color: var(--color-on-primary);
}
.IconBoxes[css-background=primary] .IconBoxes_title,
.IconBoxes[css-background=primary] .IconBoxes_item-title {
  color: var(--color-on-primary);
}
.IconBoxes[css-background=primary] .IconBoxes_icon *[tofill] {
  fill: var(--color-on-primary);
}
.IconBoxes[css-background=primary] .IconBoxes_icon *[tostroke] {
  stroke: var(--color-on-primary);
}
.IconBoxes[css-background=secondary] {
  background: var(--color-secondary);
  color: var(--color-on-secondary);
}
.IconBoxes[css-background=secondary] .IconBoxes_title,
.IconBoxes[css-background=secondary] .IconBoxes_item-title {
  color: var(--color-on-secondary);
}
.IconBoxes[css-background=tiertiary] {
  background: var(--color-tiertiary);
}
.IconBoxes[css-background=tiertiary] .IconBoxes_title {
  color: var(--color-primary);
}
.IconBoxes .IconBoxes_title {
  font-size: 35px;
  line-height: 1.17;
  font-weight: 900;
  margin-bottom: 50px;
}
@media all and (max-width: 1279px) {
  .IconBoxes .IconBoxes_title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 767px) {
  .IconBoxes .IconBoxes_title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
.IconBoxes .IconBoxes_items {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.IconBoxes .IconBoxes_item {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (max-width: 1279px) {
  .IconBoxes .IconBoxes_item {
    padding: 15px 20px;
  }
}
@media all and (max-width: 767px) {
  .IconBoxes .IconBoxes_item {
    padding: 15px 10px;
  }
}
.IconBoxes[css-columns="2"] .IconBoxes_item {
  width: 50%;
}
@media all and (max-width: 767px) {
  .IconBoxes[css-columns="2"] .IconBoxes_item {
    width: 100%;
  }
}
.IconBoxes[css-columns="3"] .IconBoxes_item {
  width: 33.333%;
}
@media all and (max-width: 1023px) {
  .IconBoxes[css-columns="3"] .IconBoxes_item {
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .IconBoxes[css-columns="3"] .IconBoxes_item {
    width: 100%;
  }
}
.IconBoxes[css-columns="4"] .IconBoxes_item {
  width: 25%;
}
@media all and (max-width: 1279px) {
  .IconBoxes[css-columns="4"] .IconBoxes_item {
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .IconBoxes[css-columns="4"] .IconBoxes_item {
    width: 100%;
  }
}
.IconBoxes .IconBoxes_icon {
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .IconBoxes .IconBoxes_icon {
    margin-bottom: 15px;
  }
}
.IconBoxes .IconBoxes_icon img, .IconBoxes .IconBoxes_icon svg {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
}
.IconBoxes .IconBoxes_icon *[tofill] {
  fill: var(--color-grey);
}
.IconBoxes .IconBoxes_icon *[tostroke] {
  stroke: var(--color-grey);
}
.IconBoxes .IconBoxes_item-title {
  font-family: "Karla", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.18px;
  margin-bottom: 8px;
  color: #1D1D1B;
}
.IconBoxes .IconBoxes_item-description {
  font-family: "Karla", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.13px;
  color: #1D1D1B;
  margin: 0;
  max-width: 280px;
}

.ProductSlider {
  padding: 60px 0 80px;
}
@media all and (max-width: 767px) {
  .ProductSlider {
    padding: 40px 0 60px;
  }
}
.ProductSlider .headings {
  text-align: center;
  margin-bottom: 40px;
}
.ProductSlider .headings .subtitle-label {
  display: inline-block;
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-grey);
  padding-bottom: 2px;
}
.ProductSlider .headings h2 {
  color: var(--color-primary);
  font-size: 35px;
  font-weight: 900;
  line-height: 1.17;
  margin-bottom: 10px;
}
@media all and (max-width: 767px) {
  .ProductSlider .headings h2 {
    font-size: 32px;
  }
}
.ProductSlider .headings p {
  max-width: 840px;
  margin: auto;
}
.ProductSlider .sliderWrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 -13px;
}
@media all and (max-width: 1023px) {
  .ProductSlider .sliderWrapper {
    margin: 0;
  }
}
.ProductSlider .sliderWrapper .arrow_prev,
.ProductSlider .sliderWrapper .arrow_next {
  padding: 6px;
  margin: 6px;
}
.ProductSlider .sliderWrapper .arrow_prev svg,
.ProductSlider .sliderWrapper .arrow_next svg {
  width: 16px;
  height: auto;
}
.ProductSlider .sliderWrapper .arrow_prev svg path,
.ProductSlider .sliderWrapper .arrow_next svg path {
  stroke: var(--color-primary);
}
.ProductSlider .sliderWrapper .arrow_prev svg {
  transform: rotate(180deg);
}
.ProductSlider .sliderWrapper .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  order: 3;
  margin: -2.5px;
  font-size: 0;
}
.ProductSlider .sliderWrapper .slick-dots li {
  margin: 2.5px;
}
.ProductSlider .sliderWrapper .slick-dots li button {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  text-indent: 100px;
  color: rgba(0, 0, 0, 0);
  background: var(--color-on-secondary);
  cursor: pointer;
  transition: background-color 0.3s;
  overflow: hidden;
  font-size: 0;
}
.ProductSlider .sliderWrapper .slick-dots li.slick-active button {
  background: var(--color-primary);
}
.ProductSlider .sliderWrapper .carousel {
  padding-bottom: 55px;
  width: 100%;
  opacity: 0;
}
@media all and (max-width: 767px) {
  .ProductSlider .sliderWrapper .carousel {
    padding-bottom: 0;
  }
}
.ProductSlider .sliderWrapper .carousel .item {
  padding: 15px 13px;
}
@media all and (max-width: 1023px) {
  .ProductSlider .sliderWrapper .carousel .item {
    padding: 15px 30px;
  }
}
.ProductSlider .sliderWrapper .carousel .item .inner {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.ProductSlider .sliderWrapper .carousel .item .inner:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.ProductSlider .sliderWrapper .carousel .item .inner .promo-badge {
  position: absolute;
  top: 12px;
  left: 0;
  background: var(--accento, #C52233);
  color: #fff;
  font-family: var(--main-font);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  text-transform: uppercase;
  z-index: 2;
}
.ProductSlider .sliderWrapper .carousel .item .inner .image-wrapper {
  position: relative;
  padding-bottom: 75%;
  background-color: #fff;
  border: 1px solid #e5e5e5;
}
.ProductSlider .sliderWrapper .carousel .item .inner .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.ProductSlider .sliderWrapper .carousel .item .inner .texts {
  padding: 20px 15px 10px;
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.ProductSlider .sliderWrapper .carousel .item .inner .texts .product-title {
  font-family: var(--main-font);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  color: #262626;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ProductSlider .sliderWrapper .carousel .item .inner .texts .product-subtitle {
  font-family: var(--main-font);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  color: #66686A;
  margin-top: 5px;
}
.ProductSlider .sliderWrapper .carousel .item .inner .price-wrapper {
  padding: 10px 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}
.ProductSlider .sliderWrapper .carousel .item .inner .price-wrapper .price-discounted {
  font-family: var(--main-font);
  font-size: 14px;
  font-weight: 400;
  color: #66686A;
  text-decoration: line-through;
}
.ProductSlider .sliderWrapper .carousel .item .inner .price-wrapper .price-current {
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 800;
  color: #262626;
}
.ProductSlider .sliderWrapper .carousel .item .inner .price-label {
  color: #66686A;
  font-family: "Karla", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.13px;
  text-align: center;
}
.ProductSlider .sliderWrapper .carousel .item .inner .cta-wrapper {
  padding: 10px 15px 20px;
  text-align: center;
}
.ProductSlider .sliderWrapper .carousel .item .inner .cta-wrapper .cta-link {
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--black, #262626);
  letter-spacing: -0.16px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
  transition: color 0.3s ease;
}
.ProductSlider .sliderWrapper .carousel .item .inner .cta-wrapper .cta-link:hover {
  color: var(--color-primary);
}

.BannerCTA {
  position: relative;
  min-height: 450px;
  padding: 77px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 80px;
}
@media all and (max-width: 1023px) {
  .BannerCTA {
    min-height: 400px;
    padding: 60px 0;
    margin-top: 60px;
  }
}
@media all and (max-width: 767px) {
  .BannerCTA {
    min-height: 350px;
    padding: 50px 0;
    margin-top: 40px;
  }
}
.BannerCTA .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.BannerCTA .bg .bg_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.BannerCTA .bg .bg_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.BannerCTA .w {
  position: relative;
  z-index: 1;
}
.BannerCTA .contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.BannerCTA .contents .subtitle-label {
  display: inline-block;
  font-family: Karla, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}
.BannerCTA .contents h2 {
  color: #fff;
  font-family: Karla, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}
.BannerCTA .contents p {
  color: #fff;
  font-family: Karla, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.16px;
  max-width: 700px;
  margin-bottom: 30px;
}
.BannerCTA .contents .cta .btn {
  background-color: #fff;
  border-color: #fff;
  color: var(--black, #262626);
}
.BannerCTA .contents .cta .btn:hover {
  background-color: transparent;
  color: #fff;
}

.BrandSlider {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  .BrandSlider {
    padding: 40px 0;
  }
}
.BrandSlider .title {
  text-align: center;
  font-family: Karla, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: -0.5px;
  color: var(--black, #262626);
  margin-bottom: 30px;
}
@media all and (max-width: 767px) {
  .BrandSlider .title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
.BrandSlider .sliderWrapper {
  position: relative;
  margin-left: 120px;
}
@media all and (max-width: 1279px) {
  .BrandSlider .sliderWrapper {
    margin-left: 60px;
  }
}
@media all and (max-width: 1023px) {
  .BrandSlider .sliderWrapper {
    margin-left: 30px;
  }
}
@media all and (max-width: 767px) {
  .BrandSlider .sliderWrapper {
    margin-left: 25px;
  }
}
.BrandSlider .sliderWrapper .carousel {
  opacity: 0;
}
.BrandSlider .sliderWrapper .carousel .item {
  padding: 0 15px;
}
@media all and (max-width: 767px) {
  .BrandSlider .sliderWrapper .carousel .item {
    padding: 0 10px;
  }
}
.BrandSlider .sliderWrapper .carousel .item .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
@media all and (max-width: 767px) {
  .BrandSlider .sliderWrapper .carousel .item .inner {
    height: 60px;
  }
}
.BrandSlider .sliderWrapper .carousel .item .inner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.Breadcrumb {
  background: rgba(102, 104, 106, 0.08);
  width: 100%;
  padding: 10px 0;
}
.Breadcrumb .w {
  display: flex;
  align-items: center;
}
.Breadcrumb .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .Breadcrumb .breadcrumb-nav {
    gap: 10px;
  }
}
.Breadcrumb .separator {
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.13px;
  opacity: 0.7;
}
.Breadcrumb .breadcrumb-item {
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.13px;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.Breadcrumb .breadcrumb-item:hover {
  opacity: 1;
}
.Breadcrumb .breadcrumb-item.active {
  font-weight: 700;
  opacity: 1;
}

.BoxGrid {
  padding: 80px 0;
  background: rgba(102, 104, 106, 0.08);
}
@media all and (max-width: 1023px) {
  .BoxGrid {
    padding: 60px 0;
  }
}
@media all and (max-width: 767px) {
  .BoxGrid {
    padding: 40px 0;
  }
}
.BoxGrid .w {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media all and (max-width: 767px) {
  .BoxGrid .w {
    gap: 40px;
  }
}
.BoxGrid .BoxGrid_headings {
  text-align: center;
}
.BoxGrid .BoxGrid_headings h2 {
  font-family: "Karla", sans-serif;
  font-size: 35px;
  line-height: 1.17;
  font-weight: 900;
  color: var(--color-primary);
}
@media all and (max-width: 767px) {
  .BoxGrid .BoxGrid_headings h2 {
    font-size: 28px;
  }
}
.BoxGrid .BoxGrid_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media all and (max-width: 1023px) {
  .BoxGrid .BoxGrid_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media all and (max-width: 767px) {
  .BoxGrid .BoxGrid_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.BoxGrid .BoxGrid_item .BoxGrid_item_inner {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  padding-right: 60px;
}
@media all and (max-width: 767px) {
  .BoxGrid .BoxGrid_item .BoxGrid_item_inner {
    padding-right: 0;
  }
}
.BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_imageWrapper {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  width: calc(100% - 60px);
}
@media all and (max-width: 767px) {
  .BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_imageWrapper {
    width: calc(100% - 30px);
  }
}
.BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_imageWrapper .BoxGrid_item_image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_texts {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 75%;
  z-index: 3;
  background: var(--grigio-brand, #66686A);
  padding: 40px 35px;
}
@media all and (max-width: 767px) {
  .BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_texts {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: auto;
    margin-left: 30px;
    margin-top: -30px;
    padding: 30px;
  }
}
.BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_texts .BoxGrid_item_title {
  color: var(--White, #FFF);
  font-family: "Karla", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: -0.18px;
  margin-bottom: 22px;
}
@media all and (max-width: 767px) {
  .BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_texts .BoxGrid_item_title {
    margin-bottom: 10px;
  }
}
.BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_texts .BoxGrid_item_excerpt {
  color: var(--White, #FFF);
  font-family: "Karla", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.13px;
  margin-bottom: 30px;
}
@media all and (max-width: 767px) {
  .BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_texts .BoxGrid_item_excerpt {
    margin-bottom: 20px;
  }
}
.BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_texts .BoxGrid_item_btnWrapper {
  display: flex;
  align-items: flex-start;
}
.BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_texts .BoxGrid_item_btnWrapper .btn {
  color: var(--White, #FFF);
  text-decoration: underline;
  border: none;
  background: transparent;
  padding: 0;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
.BoxGrid .BoxGrid_item .BoxGrid_item_inner .BoxGrid_item_texts .BoxGrid_item_btnWrapper .btn:hover {
  opacity: 0.7;
}
.BoxGrid .BoxGrid_item .BoxGrid_item_inner:hover .BoxGrid_item_image img {
  transform: scale(1.05);
}
.BoxGrid .BoxGrid_item .BoxGrid_item_image img {
  transition: transform 0.4s ease;
}
.BoxGrid .BoxGrid_buttonWrapper {
  display: flex;
  justify-content: center;
}
.BoxGrid .BoxGrid_buttonWrapper .BoxGrid_button {
  display: inline-block;
  background: var(--black, #262626);
  color: #fff;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 40px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.BoxGrid .BoxGrid_buttonWrapper .BoxGrid_button:hover {
  background: #fff;
  color: var(--black, #262626);
}

.ProductFilters {
  padding: 40px 0 0 0;
  background: #fff;
}
@media all and (max-width: 1023px) {
  .ProductFilters {
    padding: 30px 0 0 0;
  }
}
@media all and (max-width: 767px) {
  .ProductFilters {
    padding: 20px 0 0 0;
  }
}
.ProductFilters .filters-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
@media all and (max-width: 1023px) {
  .ProductFilters .filters-list {
    gap: 10px;
  }
}
@media all and (max-width: 767px) {
  .ProductFilters .filters-list {
    gap: 8px;
  }
}
.ProductFilters .filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: transparent;
  border: 1px solid var(--black, #262626);
  color: var(--black, #262626);
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media all and (max-width: 1023px) {
  .ProductFilters .filter-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
@media all and (max-width: 767px) {
  .ProductFilters .filter-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}
.ProductFilters .filter-btn:hover {
  background: var(--black, #262626);
  color: #fff;
}
.ProductFilters .filter-btn.active {
  background: var(--black, #262626);
  color: #fff;
}

.ProductList.loading {
  pointer-events: none;
}
.ProductList.loading .js-product-items {
  opacity: 0.5;
}

.no-products {
  width: 100%;
  text-align: center;
  padding: 60px 20px;
}
.no-products p {
  font-family: "Karla", sans-serif;
  font-size: 18px;
  color: var(--grigio-brand, #66686A);
  margin: 0;
}

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