/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

@charset "UTF-8";
/* ========================
Variables
=========================== */
/* ========================

    MIXINS

=========================== */
/* ---- Breakpoints ---- */
/* ---- Fonts ---- */
.text-description, .description {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}

.size-8 {
  font-size: 8px !important;
}

.size-9 {
  font-size: 9px !important;
}

.size-10 {
  font-size: 10px !important;
}

.size-11 {
  font-size: 11px !important;
}

.size-12 {
  font-size: 12px !important;
}

.size-13 {
  font-size: 13px !important;
}

.size-14 {
  font-size: 14px !important;
}

.size-15 {
  font-size: 15px !important;
}

.size-16 {
  font-size: 16px !important;
}

.size-17 {
  font-size: 17px !important;
}

.size-18 {
  font-size: 18px !important;
}

.size-19 {
  font-size: 19px !important;
}

.size-20 {
  font-size: 20px !important;
}

.size-21 {
  font-size: 21px !important;
}

.size-22 {
  font-size: 22px !important;
}

.size-23 {
  font-size: 23px !important;
}

.size-24 {
  font-size: 24px !important;
}

.size-25 {
  font-size: 25px !important;
}

.size-26 {
  font-size: 26px !important;
}

.size-27 {
  font-size: 27px !important;
}

.size-28 {
  font-size: 28px !important;
}

.size-29 {
  font-size: 29px !important;
}

.size-30 {
  font-size: 30px !important;
}

.size-31 {
  font-size: 31px !important;
}

.size-32 {
  font-size: 32px !important;
}

.size-33 {
  font-size: 33px !important;
}

.size-34 {
  font-size: 34px !important;
}

.size-35 {
  font-size: 35px !important;
}

.size-36 {
  font-size: 36px !important;
}

.size-37 {
  font-size: 37px !important;
}

.size-38 {
  font-size: 38px !important;
}

.size-39 {
  font-size: 39px !important;
}

.size-40 {
  font-size: 40px !important;
}

.size-41 {
  font-size: 41px !important;
}

.size-42 {
  font-size: 42px !important;
}

.size-43 {
  font-size: 43px !important;
}

.size-44 {
  font-size: 44px !important;
}

.size-45 {
  font-size: 45px !important;
}

.size-46 {
  font-size: 46px !important;
}

.size-47 {
  font-size: 47px !important;
}

.size-48 {
  font-size: 48px !important;
}

.size-49 {
  font-size: 49px !important;
}

.size-50 {
  font-size: 50px !important;
}

.size-51 {
  font-size: 51px !important;
}

.size-52 {
  font-size: 52px !important;
}

.size-53 {
  font-size: 53px !important;
}

.size-54 {
  font-size: 54px !important;
}

.size-55 {
  font-size: 55px !important;
}

.size-56 {
  font-size: 56px !important;
}

.size-57 {
  font-size: 57px !important;
}

.size-58 {
  font-size: 58px !important;
}

.size-59 {
  font-size: 59px !important;
}

.size-60 {
  font-size: 60px !important;
}

/* City Icons */
.icons-size {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-color: transparent;
  background-repeat: no-repeat;
  -webkit-transition: none;
  transition: none;
}

/* Social Icons */
.social-icon, .youtube-icon, .instagram-icon, .twitter-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-right: 16px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 36px;
  vertical-align: middle;
  -webkit-transition: none;
  transition: none;
}

/* Grey Line */
.grey-line {
  height: 100%;
  border-bottom: 1px solid #e0e0e0;
}

/* Max-width container */
h1 {
  font-size: 72px;
  line-height: 80px;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
    line-height: 54px;
  }
}

h2 {
  font-size: 60px;
  line-height: 72px;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 40px;
    line-height: 48px;
  }
}

h3 {
  font-size: 48px;
  line-height: 60px;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 36px;
    line-height: 48px;
  }
}

.h1 {
  font-size: 72px !important;
  line-height: 80px !important;
}
@media screen and (max-width: 767px) {
  .h1 {
    font-size: 48px !important;
    line-height: 54px !important;
  }
}

.h1_60 {
  font-size: 60px !important;
  line-height: 72px !important;
}
@media screen and (max-width: 767px) {
  .h1_60 {
    font-size: 40px !important;
    line-height: 48px !important;
  }
}

.h1_48 {
  font-size: 48px !important;
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .h1_48 {
    font-size: 36px !important;
    line-height: 48px !important;
  }
}

.h2 {
  font-size: 60px !important;
  line-height: 72px !important;
}
@media screen and (max-width: 767px) {
  .h2 {
    font-size: 40px !important;
    line-height: 48px !important;
  }
}

.h2_72 {
  font-size: 72px !important;
  line-height: 80px !important;
}
@media screen and (max-width: 767px) {
  .h2_72 {
    font-size: 48px !important;
    line-height: 54px !important;
  }
}

.h2_48 {
  font-size: 48px !important;
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .h2_48 {
    font-size: 36px !important;
    line-height: 48px !important;
  }
}

.h3 {
  font-size: 48px !important;
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .h3 {
    font-size: 36px !important;
    line-height: 48px !important;
  }
}

.h3_72 {
  font-size: 72px !important;
  line-height: 80px !important;
}
@media screen and (max-width: 767px) {
  .h3_72 {
    font-size: 48px !important;
    line-height: 54px !important;
  }
}

.h3_60 {
  font-size: 60px !important;
  line-height: 72px !important;
}
@media screen and (max-width: 767px) {
  .h3_60 {
    font-size: 40px !important;
    line-height: 48px !important;
  }
}

h4 {
  font-size: 32px !important;
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 30px !important;
    line-height: 42px !important;
  }
}

h5 {
  font-size: 24px !important;
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  h5 {
    font-size: 24px !important;
    line-height: 36px !important;
  }
}

.container-1440 {
  /* max-width: 1440px; */
  width: 100%;
  display: block;
  margin: auto;
}

.container-1140 {
  width: 100%;
  display: block;
  margin: auto;
}
@media (min-width: 1024px) {
  .container-1140 {
    max-width: 1140px;
  }
}
@media (min-width: 1920px) {
  .container-1140 {
    max-width: 1368px;
  }
}

@media screen and (min-width: 1025px) {
  .cookies-container .container {
    padding: 0 11.6%;
    margin: auto;
    display: block;
  }
}
@media screen and (min-width: 1441px) {
  .cookies-container .container {
    padding: 0 15.6%;
    margin: auto;
    display: block;
  }
}
@media screen and (min-width: 1921px) {
  .cookies-container .container {
    max-width: 1920px;
    width: 100%;
  }
}

.container {
  max-width: none !important;
  /*  width: unset !important; */
}
@media screen and (min-width: 1025px) {
  .container {
    padding: 0 10%;
    margin: auto;
    display: block;
  }
}
@media screen and (min-width: 1441px) {
  .container {
    padding: 0 14%;
    margin: auto;
    display: block;
  }
}
@media screen and (min-width: 1921px) {
  .container {
    max-width: 1920px;
    width: 100%;
  }
}

.img-change {
  background-position: center !important;
}

.active-image {
  display: block;
}

.not-visible {
  display: none;
}

.light-blue {
  color: #000000;
}

.panel-grey {
  background: #f8f8f8;
}

a {
  text-decoration: none !important;
  color: #000000;
}

a {
  text-decoration: none;
  color: #000000;
}

.card-overlay:before {
  content: "";
  padding-top: 68.1003584229%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  top: 0;
  z-index: 100;
}
.card-overlay::after {
  content: url("clientlib-site/resources/images/icons/figure-icon.png");
  width: 65px;
  height: 65px;
  position: absolute;
  z-index: 120;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main.container {
  padding: 0 !important;
}

.container.responsivegrid {
  padding: 0 !important;
}

.ratio-container, picture, picture img {
  background-color: #c4c4c4;
}

.d__more {
  text-transform: uppercase;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.d__more:hover {
  border: 1px solid #000000;
  background-color: #000000;
  color: #ffffff !important;
}

.h2-capolavori {
  font-family: "Canela" !important;
  font-style: normal !important;
  font-weight: 300 !important;
  font-size: 60px !important;
  line-height: 72px !important;
  letter-spacing: 0.02em !important;
  margin: 0 !important;
  color: #000000 !important;
}

.h2-mostre {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 48px !important;
  line-height: 60px !important;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 1024px) {
  .page-contacts .info-card-container--short {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .page-contacts .info-card-container--short {
    padding: 140px 10%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1441px) {
  .page-contacts .info-card-container--short {
    padding: 140px 14%;
    margin-bottom: 0;
  }
}
.page-contacts .info-card-container--short .container__info-card {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .page-contacts .info-card-container--short .container__info-card {
    margin: 0;
  }
}

a:focus-visible {
  outline: solid 1px !important;
}

button:focus-visible {
  outline: solid 1px !important;
}

input:focus-visible {
  outline: solid 1px !important;
}

input + label:focus-visible {
  outline: solid 1px !important;
}

.button-no-back {
  border: none;
  background-color: transparent;
}

.skipComponent {
  position: absolute;
  left: -50rem;
  padding: 10px;
  border-radius: 20px;
  background: white;
  z-index: 1002;
}

.skipComponent:focus-visible {
  left: 50%;
}

.basic-modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(96, 96, 96, 0.8);
  z-index: 1000;
}
.basic-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
}
.basic-modal .basic-modal-container {
  margin: auto auto;
  min-height: 50vh;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-height: 500px) {
  .basic-modal .basic-modal-container {
    max-height: 100vh;
    padding: 0px 30px;
  }
}
@media screen and (max-width: 767px) {
  .basic-modal .basic-modal-container {
    margin-left: 0;
    margin-right: 0;
    min-height: auto;
    height: auto;
  }
}
.basic-modal .basic-modal-container iframe {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .basic-modal .basic-modal-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.basic-modal .basic-button-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: transparent;
  border: none;
}
.basic-modal .basic-button-close img {
  width: 1.5pc;
  height: 1.5pc;
  -webkit-filter: invert(1);
          filter: invert(1);
}
@media screen and (max-width: 767px) {
  .basic-modal .basic-button-close img {
    width: 1pc;
    height: 1pc;
  }
}
@media screen and (min-width: 1025px) {
  .basic-modal .basic-button-close {
    top: 20px;
    right: 4%;
  }
}
@media screen and (min-width: 1441px) {
  .basic-modal .basic-button-close {
    top: 20px;
    right: 6%;
  }
}
.basic-modal .basic-modal-body {
  margin: inherit;
  max-height: inherit;
  position: relative;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .basic-modal .basic-modal-body.video-modal-container {
    margin: inherit;
    max-height: inherit;
    position: relative;
    height: inherit;
    padding-top: 56%;
    width: 100%;
  }
}
.basic-modal .basic-modal-body.video-modal-container .play-icon {
  position: relative;
  width: 100%;
  height: 100%;
}
.basic-modal .basic-modal-body.video-modal-container .play-icon::before {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #333333;
  z-index: 1;
  content: "";
  top: 50%;
  left: 54%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.basic-modal .basic-modal-body.video-modal-container .player {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0);
}
.basic-modal .basic-modal-body.video-modal-container .player .player-button {
  height: 70px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-color: white;
  width: 70px;
  border-radius: 50%;
}

.hasDatepicker {
  position: absolute;
  top: 100%;
  margin-top: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 1px 6px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 1px 6px 3px rgba(0, 0, 0, 0.08);
  max-width: 350px;
  right: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  pointer-events: none;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  display: none;
}
.hasDatepicker .ui-datepicker {
  border: none !important;
}
.hasDatepicker .ui-datepicker-header {
  padding: 24px 0 !important;
  border-bottom: 1px solid #e0e0e0 !important;
  margin-bottom: 20px;
}
.hasDatepicker .ui-datepicker-prev,
.hasDatepicker .ui-datepicker-next {
  top: 50% !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hasDatepicker .ui-datepicker-prev.ui-state-hover,
.hasDatepicker .ui-datepicker-next.ui-state-hover {
  border: none;
  border-radius: 50%;
}
.hasDatepicker .ui-datepicker-prev {
  left: 50px !important;
}
.hasDatepicker .ui-datepicker-next {
  right: 50px !important;
}
.hasDatepicker .ui-datepicker-calendar {
  margin: 20px auto;
}
.hasDatepicker .ui-datepicker-calendar thead tr th span {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: center;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td {
  padding: 2px 0;
  width: 14.285% !important;
  margin-top: 2px;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td:first-of-type.ui-datepicker-custom-between a {
  border-top-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td:last-of-type.ui-datepicker-custom-between a {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td a {
  padding: 0;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-current-day a {
  color: #ffffff !important;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-current-day.ui-datepicker-today a {
  color: #000000 !important;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-selected a {
  background-color: #000000 !important;
  border: 1px solid #000000 !important;
  border-radius: 50%;
  color: #ffffff;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-start {
  overflow: hidden;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-start a {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-start a:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  bottom: -1px;
  right: -10px;
  left: 50%;
  background: rgba(90, 135, 178, 0.2) !important;
  z-index: -1;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-start.ui-datepicker-today a {
  color: #ffffff !important;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-end {
  overflow: hidden;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-end a {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-end a:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -10px;
  right: 50%;
  background: rgba(90, 135, 178, 0.2) !important;
  z-index: -1;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-end.ui-datepicker-today a {
  color: #000000 !important;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-end.ui-datepicker-today.ui-datepicker-current-day a {
  background-color: #5a87b2 !important;
  border: 1px solid #5a87b2 !important;
  border-radius: 50%;
  color: #ffffff;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-end.ui-datepicker-today.ui-datepicker-custom-between a {
  background: rgba(90, 135, 178, 0.2) !important;
  border-radius: 0 !important;
  color: #000000 !important;
  width: 100% !important;
  position: relative;
  z-index: 2;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-between a {
  background: rgba(90, 135, 178, 0.2) !important;
  border-radius: 0 !important;
  color: #000000 !important;
  width: 100% !important;
  position: relative;
  z-index: 2;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-custom-between.ui-datepicker-today a {
  background: rgba(90, 135, 178, 0.2) !important;
  background-color: rgba(90, 135, 178, 0.2) !important;
  border: none;
  border-radius: 0;
  color: #000000;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hasDatepicker .ui-datepicker-calendar tbody tr td a.ui-state-active {
  color: #ffffff;
}
.hasDatepicker .ui-datepicker-other-month a.ui-state-default {
  color: #d6d6d6;
}
.hasDatepicker .ui-datepicker-controls {
  padding: 5px 0;
  max-width: 247px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 20px;
}
.hasDatepicker .ui-datepicker-controls:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -50px;
  right: -50px;
  border-top: 1px solid #e0e0e0;
}
.hasDatepicker .ui-datepicker-controls .ui-datepicker-current-week,
.hasDatepicker .ui-datepicker-controls .ui-datepicker-current-weekend {
  background-color: transparent;
  border: none;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-decoration: underline;
  padding: 20px 0;
  white-space: nowrap;
}
.hasDatepicker.visible {
  z-index: 1;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: all;
  display: block;
}

.elem-cities {
  margin-top: 80px;
  padding-top: 80px;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1023px) {
  .elem-cities .title-component {
    font-size: 40px !important;
    line-height: 48px !important;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .elem-cities {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.elem-cities .title-component {
  font-size: 60px !important;
  margin-bottom: 28px;
  color: #000000;
}
@media (min-width: 1024px) {
  .elem-cities .title-component {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .elem-cities .cities-container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .elem-cities {
    margin-top: 50px;
  }
}

.cities-left-container {
  margin-bottom: 46px;
}
@media screen and (max-width: 1024px) {
  .cities-left-container {
    padding: 0;
  }
}
.cities-left-container .title-component {
  font-size: 60px !important;
}
.cities-left-container .title-component b {
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .cities-right-container {
    padding-right: 0;
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .cities-right-container {
    padding: 0;
  }
}
.cities-right-container a {
  text-decoration: none;
  display: block;
}
.cities-right-container a span:not(.icon) {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  background-position: left bottom;
  text-decoration: none;
  background-repeat: no-repeat;
  padding-bottom: 3px;
}
.cities-right-container a:hover {
  color: #000000;
}
.cities-right-container a:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.cities-right-container a:hover .city-cta .arrow-cta {
  color: #000000;
}
.cities-right-container a:hover span:not(.icon) {
  background-size: 100% 2px;
}
@media (min-width: 1024px) {
  .cities-right-container {
    margin-top: 9px;
  }
}

.city-container {
  border-top: 1px solid #e0e0e0;
  padding: 24px 15px;
}
.city-container .city-name {
  margin-top: 4px;
}

.city-container-bottom-right {
  border-bottom: 1px solid #e0e0e0;
}

@media (min-width: 768px) {
  .city-container-bottom-left {
    border-bottom: 1px solid #e0e0e0;
  }
}

.city-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 35px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 768px) {
  .city-top {
    padding-bottom: 56px;
  }
}

.city-icon-container {
  margin-left: 3px;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat !important;
  background-position: center;
}
.city-icon-container picture {
  background-color: white !important;
}
.city-icon-container img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: 100%;
  background-color: transparent !important;
  -webkit-filter: invert(91%) sepia(0%) saturate(0%) hue-rotate(205deg) brightness(83%) contrast(79%);
          filter: invert(91%) sepia(0%) saturate(0%) hue-rotate(205deg) brightness(83%) contrast(79%);
}

.city-name {
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 28px !important;
  line-height: 45px !important;
  letter-spacing: 0.03em;
  color: #000000;
  margin-left: 16px;
  margin-bottom: 0;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.city-name b {
  font-weight: bold !important;
}
@media (min-width: 768px) {
  .city-name {
    font-size: 30px !important;
  }
}

.city-cta {
  text-align: right;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 4px 6px 4px;
}

.component-title {
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 60px !important;
  line-height: 72px !important;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .component-title {
    font-size: 40px !important;
    line-height: 48px !important;
    letter-spacing: 0.01em;
  }
}

.city-info-container {
  color: #ffffff;
  padding: 0;
}
.city-info-container:nth-child(3) .city-info {
  margin-bottom: 0;
}
.city-info-container:nth-child(4) .city-info {
  margin-bottom: 0;
}

.city-info {
  list-style: none;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px !important;
  line-height: 20px !important;
  letter-spacing: 0.01em;
  margin-bottom: 60px;
}
.city-info li a[href^=tel] {
  color: white !important;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px !important;
  line-height: 20px !important;
  text-decoration: none;
}
.city-info .info-mail a {
  text-decoration: none;
  color: #ffffff;
  position: relative;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.city-info .info-mail a::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
}
.city-info .info-mail a:hover::after {
  -webkit-animation: underline 0.5s ease;
          animation: underline 0.5s ease;
}
@-webkit-keyframes underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .city-info {
    font-size: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .city-info {
    display: none;
    font-size: 12px !important;
    padding-left: 20px;
  }
}

.city-title-footer {
  margin-bottom: 18px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .city-title-footer {
    margin-bottom: 0;
  }
}

.arrow-down {
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .arrow-down {
    visibility: visible;
  }
}

.line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .line {
    padding: 20px 20px;
    border-bottom: 2px solid #ffffff;
  }
  .line[data-open=true] .arrow-down {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transform-origin: center;
            transform-origin: center;
    margin-left: 0;
    margin-right: 5px;
  }
}

.coms {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px !important;
  line-height: 18px !important;
  letter-spacing: 0.01em;
}
.coms a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  padding: 0 15px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.coms a:after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  height: 1px;
  width: 0;
  left: 10%;
  bottom: 0px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.coms a:hover:after {
  width: 80%;
}
.coms a:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1024px) {
  .coms a {
    padding: 0 10px;
  }
}
.coms a:nth-child(2) {
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .coms {
    display: none;
  }
}

.footer-left .coms {
  display: none;
}

.footer .coms-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  margin-top: 50px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px !important;
  line-height: 18px !important;
  letter-spacing: 0.01em;
}
.footer .coms-bottom a {
  color: #ffffff;
  padding: 0 10px;
}
@media screen and (max-width: 375px) {
  .footer .coms-bottom a {
    padding: 0 8px;
  }
}
.footer .coms-bottom span {
  padding: 0 5px;
}
.footer .coms-bottom span:nth-child(2) {
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
@media screen and (max-width: 1024px) {
  .footer .coms-bottom {
    margin-left: -12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .coms-bottom .footer-item {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .footer .coms-bottom .footer-item.no-border {
    padding-left: 0 !important;
    border-left: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .footer .coms-bottom {
    margin-left: -12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .coms-bottom .footer-item {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .footer .coms-bottom .footer-item.no-border {
    padding-left: 0 !important;
    border-left: none !important;
  }
}
@media screen and (max-width: 767px) {
  .footer .coms-bottom {
    margin-left: -12px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
  }
  .footer .coms-bottom .footer-item {
    padding: 15px 20px !important;
    border-left: none !important;
  }
  .footer .coms-bottom .footer-item:first-child {
    padding: 15px 20px !important;
  }
  .footer .coms-bottom .footer-item.no-border {
    padding: 15px 20px !important;
    border-left: none !important;
  }
}

.cookies-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
}
.cookies-container p {
  margin-bottom: 0 !important;
}
.cookies-container.open {
  display: block;
}
.cookies-container.author-open {
  display: block !important;
  position: relative !important;
  margin-top: 12% !important;
}
.cookies-container .container {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .cookies-container .container {
    top: auto;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 767px) {
  .cookies-container {
    padding: 15px;
    overflow: scroll;
    top: 0;
  }
}
.cookies-container .cookies-main-container {
  background-color: #ffffff;
  border: 1px solid #000000;
  position: absolute;
  padding: 43px 65px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cookies-container .cookies-main-container {
    padding: 65px 25px;
  }
}
.cookies-container .cookies-main-container .close-button {
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 30px;
  height: 16px;
  width: 16px;
  border: none;
  background-color: white;
  background-image: url("clientlib-site/resources/images/icons/close-btn.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.cookies-container .cookies-main-container .cookie-title {
  margin: 0;
  padding-bottom: 20px;
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px !important;
  line-height: 36px !important;
  letter-spacing: 0.02em;
  color: #000000;
}
.cookies-container .cookies-main-container .cookie-title__privacy-link {
  color: #000000;
  text-decoration: underline !important;
}
.cookies-container .cookies-main-container .cookie-description {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px !important;
  line-height: 22px !important;
  color: #000000;
}
.cookies-container .cookies-main-container .cookies-btn-container {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .cookies-container .cookies-main-container .cookies-btn-container {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .cookies-container .cookies-main-container .cookies-btn-container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}
@media screen and (max-width: 1024px) {
  .cookies-container .cookies-main-container .cookies-btn-container {
    margin-top: 27px;
  }
}
.cookies-container .cookies-main-container .cookies-btn-container .cookies-btn {
  background-color: #000000;
  width: 170px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 54px;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .cookies-container .cookies-main-container .cookies-btn-container .cookies-btn {
    width: 35.73vw;
    max-width: 134px;
    min-width: 102px;
  }
}
@media screen and (max-width: 767px) {
  .cookies-container .cookies-main-container .cookies-btn-container .cookies-btn {
    margin: 0;
    border: 1px solid #000000;
  }
  .cookies-container .cookies-main-container .cookies-btn-container .cookies-btn span {
    white-space: nowrap;
  }
}
@media screen and (max-width: 1024px) {
  .cookies-container .cookies-main-container .cookies-btn-container .cookies-btn {
    padding: 15px 20px;
    margin: 0;
  }
}
.cookies-container .cookies-main-container .cookies-btn-container .cookies-btn span {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 15px;
}
.cookies-container .cookies-main-container .cookies-btn-container .cookies-btn:hover {
  border: 1px solid #000000;
  background-color: #ffffff;
}
.cookies-container .cookies-main-container .cookies-btn-container .cookies-btn:hover span {
  color: #000000;
}
.cookies-container .cookies-main-container .cookies-btn-container .agree {
  background-color: #000000;
  margin-left: 24px;
  border: 1px solid transparent;
}
.cookies-container .cookies-main-container .cookies-btn-container .agree span {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .cookies-container .cookies-main-container .cookies-btn-container .agree {
    margin-left: 19px;
  }
}

.cookieAcceptance input[type=radio]:checked {
  -webkit-filter: grayscale(100%) brightness(70%) contrast(2);
          filter: grayscale(100%) brightness(70%) contrast(2);
}

.cta-component-container {
  width: 100%;
  padding: 40px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .cta-component-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0px;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
@media screen and (max-width: 767px) {
  .cta-component-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cta-component-container .btn-container {
  margin-top: 0;
}
@media screen and (min-width: 1367px) {
  .cta-component-container .btn-container:last-child {
    margin-left: 40px;
  }
}
@media screen and (max-width: 1366px) {
  .cta-component-container .btn-container:last-child {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .cta-component-container .btn-container {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .cta-component-container .btn-container {
    width: 100%;
  }
}
.cta-component-container .btn-container:hover .button {
  border: 1px solid #000000;
  background: #000000;
}
.cta-component-container .btn-container:hover .button .button-text {
  color: #ffffff;
}
.cta-component-container .cta-component-text-cta {
  padding-left: 3rem;
}
@media screen and (min-width: 1367px) {
  .cta-component-container .cta-component-text-cta:last-child {
    margin-left: 40px;
  }
}
@media screen and (max-width: 1366px) {
  .cta-component-container .cta-component-text-cta:last-child {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .cta-component-container .cta-component-text-cta {
    padding-left: 23px;
  }
}
@media screen and (max-width: 767px) {
  .cta-component-container .cta-component-text-cta {
    margin-top: 30px;
  }
}
.cta-component-container .cta-component-text-cta .arrow-cta {
  text-decoration: none;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-transform: scale(1);
          transform: scale(1);
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  background-position: left bottom;
  text-decoration: none;
  background-repeat: no-repeat;
  padding-bottom: 3px;
}
.cta-component-container .cta-component-text-cta .arrow-cta:hover {
  color: #000000;
  background-size: calc(100% - 25px) 2px;
}
.cta-component-container .cta-component-text-cta .arrow-cta:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.download {
  margin-bottom: 140px;
  margin-top: 120px;
}
@media screen and (min-width: 1025px) {
  .download__width {
    width: 32.014vw;
  }
}
.download__filterTags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.download__filterTags .hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  .download__filterTags {
    display: none;
  }
}
.download__filterTags__wrapper {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.download__filterTags__item {
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0.08em;
  text-align: right;
  color: #000000;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-right: 12px;
  border: 1px solid #000000;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.download__filterTags__item span {
  width: 9px;
  height: 9px;
  cursor: pointer;
}
.download__filterTags .action {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  text-transform: uppercase;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  cursor: pointer;
  white-space: nowrap;
}
.download__filterTags .action--reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  background-color: #ffffff;
  color: #000000;
}
.download__filterTags .action--reset:hover {
  color: #000000;
  text-decoration: underline;
}
.download__filterTags .action--submit {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.download__filterTags .action--submit:hover {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.download .hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  .download {
    margin-top: 90px;
  }
}
.download__header {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .download__header {
    margin-bottom: 0;
  }
}
.download__title {
  font-family: "Canela", Arial, sans-serif;
  font-size: 48px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 60px !important;
  letter-spacing: 0.01em;
  text-align: left;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .download__title {
    font-size: 36px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 48px !important;
    letter-spacing: 0.01em;
    text-align: left;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .download__filters {
    margin-bottom: 32px;
  }
}
.download__item {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 24px;
  padding-right: 150px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .download__item {
    padding-right: 143px;
  }
}
.download__label {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 15px !important;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .download__label {
    font-size: 12px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 16px !important;
    letter-spacing: 0.05em;
    text-align: left;
  }
}
.download__namefile {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 18px !important;
  letter-spacing: 0em;
  text-align: left;
  color: #6f6f6f;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .download__namefile {
    font-size: 14px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 18px !important;
    letter-spacing: 0em;
    text-align: left;
  }
}
.download__button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 102px;
  border: none;
  border-left: 2px solid #ffffff;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  text-decoration: none;
}
.download__button img {
  width: 38px;
  height: auto;
  display: block;
  -webkit-filter: invert(91%) sepia(0%) saturate(0%) hue-rotate(205deg) brightness(83%) contrast(79%);
          filter: invert(91%) sepia(0%) saturate(0%) hue-rotate(205deg) brightness(83%) contrast(79%);
}
@media screen and (max-width: 767px) {
  .download__button {
    width: 82px;
  }
}
.download__more {
  width: 100%;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  padding: 15px 20px;
  margin-top: 80px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.download__more:hover {
  background-color: #000;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .download__more {
    margin-top: 70px;
  }
}
.download__filters {
  width: 100%;
}
.download .filters {
  position: relative;
  width: 100%;
}
.download .filters__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .download .filters__item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
  }
}
.download .filters__item.open .filters__toggle:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.download .filters__close {
  display: none;
}
@media screen and (max-width: 767px) {
  .download .filters__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
  }
  .download .filters__close span {
    margin: 0;
  }
}
.download .filters__toggle {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-align: right;
  color: #000000;
  text-transform: uppercase;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.download .filters__toggle:after {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  background-image: url("clientlib-site/resources/images/icons/vectordown.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
@media screen and (max-width: 767px) {
  .download .filters__toggle:after {
    width: 10px;
    height: 5px;
    margin-right: 10px;
  }
}
.download .filters__list {
  display: none;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
  padding: 20px;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  margin-top: 20px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .download .filters__list {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    margin-top: 40px;
  }
}
.download .filters__option {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  padding: 6px 0;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.download .filters__option label {
  position: relative;
  width: 100%;
  padding-left: 14px;
}
.download .filters__option label span {
  content: "";
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.download .filters__option label span:before {
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #e0e0e0;
  margin-right: 10px;
}
.download .filters__option label input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.download .filters__option label input:checked + span:after {
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.download .filters__option label input:focus-visible + span {
  outline: 1px solid #000;
  height: 100%;
}
.download .filters__actions {
  display: none;
}
@media screen and (max-width: 767px) {
  .download .filters__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}
.download .filters__actions .action {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  text-transform: uppercase;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-align: center;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  cursor: pointer;
}
.download .filters__actions .action--reset {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.download .filters__actions .action--reset:hover {
  border: 1px solid #000000;
  color: #000000;
}
.download .filters__actions .action--submit {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.download .filters__actions .action--submit:hover {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .download .filters {
    display: none;
  }
  .download .filters.open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding: 20px;
    padding-top: 110px;
    background-color: #ffffff;
  }
  .download .filters.open .filters__toggle {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.download .hidden {
  display: none;
}
.download__openFilters {
  display: none;
}
@media screen and (max-width: 767px) {
  .download__openFilters {
    font-weight: 600;
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.04em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    cursor: pointer;
  }
  .download__openFilters span {
    margin-left: 10px;
    margin-bottom: 0;
  }
}

.page-pianifica-visita .pianifica-maxi-container .container-title-main .title-component {
  margin-bottom: 32px !important;
}
@media screen and (max-width: 767px) {
  .page-pianifica-visita .pianifica-maxi-container .container-title-main .title-component {
    margin-bottom: 20px !important;
  }
}
.page-pianifica-visita .pianifica-maxi-container .download__item {
  display: block;
  margin-top: 45px;
}

html.aem-AuthorLayer-Edit .download-component.hidden,
html.aem-AuthorLayer-Developer .download-component.hidden {
  display: block !important;
}

.elem-events-list .event-list-container-title {
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 1024px) {
  .elem-events-list {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .elem-events-list .component-title {
    margin-bottom: 40px !important;
  }
}
.elem-events-list .hero-component_description-container {
  width: 100%;
}
.elem-events-list .hero-component_description-container .hero-component_description {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 9px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-top: 8px;
  padding: 0;
}
.elem-events-list .hero-component_description-container .hero-component_description p {
  margin-left: 0;
  margin-right: 0;
  font-size: 9px;
  word-wrap: break-word;
}

@media screen and (max-width: 1024px) {
  .highlights__container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .highlights__container .highlights-title {
    margin-bottom: 40px !important;
  }
}

.event-list-container-main {
  /* margin-bottom: 130px;
  margin-top: 130px; */
  /*   margin-bottom: 60px; */
}

.event {
  margin-bottom: 140px;
}
.event .event-list-container-title {
  border-bottom: 1px solid #e0e0e0;
}

.single-event-container {
  color: #000000;
}
@media screen and (max-width: 767px) {
  .single-event-container .lista-eventi-img-container {
    display: none;
  }
}
.single-event-container a {
  text-decoration: none;
}
.single-event-container a:hover {
  color: #000000;
}
.single-event-container a:hover .event-info h5, .single-event-container a:hover .event-info p:first-of-type {
  background-size: 100% 2px;
}

.event-date-container {
  color: #000000;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 24px;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .event-date-container {
    padding-bottom: 0px;
  }
}
@media (min-width: 1024px) {
  .event-date-container {
    margin-bottom: 0;
  }
}
.event-date-container .title {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px !important;
  line-height: 17px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .event-date-container .title {
    margin-bottom: 0;
  }
}
.event-date-container .title p {
  margin-bottom: 0;
}
.event-date-container .date {
  height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.event-date-container .date .start-from {
  margin-right: 8px;
}
.event-date-container .date .start-from p {
  margin-bottom: 0;
  padding-top: 17px;
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.03em;
  color: #000000;
}
.event-date-container .date .day {
  padding-top: 5px;
  height: 100%;
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 56px;
}
.event-date-container .date .day span {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .event-date-container .date {
    margin-bottom: 10px !important;
  }
}
.event-date-container .date .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 25px;
  height: 100%;
}
.event-date-container .date .time span:first-of-type {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  padding-top: 18px;
}
.event-date-container .date .time span:last-of-type {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  padding-top: 4px;
}
.event-date-container .event-cta {
  display: inline-block;
  border: 1px solid #000000;
  border-radius: 15px;
  padding: 7px 14px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.event-date-container h5 {
  font-size: 14px !important;
  font-weight: 600;
  line-height: 17px;
}

.event-info__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.event-info__container .event-info {
  padding: 0;
  height: 100%;
  color: #000000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media screen and (max-width: 767px) {
  .event-info__container .event-info {
    padding-right: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .event-info__container .event-info {
    padding-right: 24px !important;
  }
}
@media screen and (min-width: 1025px) {
  .event-info__container .event-info {
    padding-right: 24px !important;
  }
}
.event-info__container .event-info:hover h5 {
  color: #000000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.event-info__container .event-info:hover + .event-img .event-img-container-top img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.event-info__container .event-info:hover + .event-img .event-img-container-mid img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.event-info__container .event-info:hover + .event-img .event-img-container-bot img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.event-info__container .event-info h5, .event-info__container .event-info p:first-of-type {
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 12px;
}
.event-info__container .event-info p {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 30px;
}
.event-info__container .event-info .event-info__price {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #6f6f6f;
}
.event-info__container .event-info .event-info__price .price-info {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  margin-left: 10px;
  color: #6f6f6f;
}
.event-info__container .event-info .event-info__price .icon-ticket {
  margin-right: 10px;
}
.event-info__container .event-img-container {
  position: relative;
  /* padding-top: 25%; */
  overflow: hidden;
}
.event-info__container .event-img-container:hover .event-img-container__content img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.event-info__container .event-img-container .event-img-container__content {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  padding-top: 73%;
}
.event-info__container .event-img-container .event-img-container__content .event-img-container__content-img {
  overflow: hidden;
  position: absolute;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 1024px) {
  .event-info__container .event-img-container {
    display: none;
  }
}

.event-list-container {
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .event-list-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.event-list-container:first-child {
  border-bottom: 1px solid #e0e0e0;
}
.event-list-container-btn {
  border: 0 !important;
  text-align: center;
  margin: auto;
  display: block;
  padding-top: 60px;
  padding-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .event-list-container-btn {
    padding-top: 7px;
    padding-bottom: 20px;
  }
}
.event-list-container .centered-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .event-list-container .centered-img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .event-list-container .component-title {
    margin-top: 40px;
  }
}
.event-list-container-title {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .event-list-container-title {
    padding-top: 40px !important;
  }
}
.event-list-container-title.no-border {
  border: 0 !important;
}
.event-list-container.btn {
  display: block;
  margin: auto;
}
.event-list-container .event-info h5, .event-list-container .event-info p:first-of-type {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  background-position: left bottom;
  padding-bottom: 3px;
  display: inline;
}
.event-list-container .event-info p {
  margin-top: 8px;
}
.event-list-container .event-info:hover + .event-img .event-img-container__content img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.event-list-container .event-info:hover + .event-img .event-img-container-mid img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.event-list-container .event-info:hover + .event-img .event-img-container-bot img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.event-list-container .price-info {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  margin-left: 10px;
  color: #6f6f6f;
}
.event-list-container .event-date-container {
  height: 100%;
}
.event-list-container .event-date-container .event-cta {
  border: 1px solid #6f6f6f;
  color: #6f6f6f;
  font-weight: 600;
}
.event-list-container .event-date-container .date {
  margin-bottom: 0;
}
.event-list-container .event-img-container-top:before {
  display: none;
}

.listaEventi .elem-events-list .event-img-container-top {
  padding-top: 73%;
  overflow: hidden;
  display: block;
  position: relative;
}
.listaEventi .elem-events-list .event-img-container-top img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.listaEventi .elem-events-list .event-img-container-top:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

@media screen and (min-width: 768px) {
  .highlight .info-card-container:not(.no-cta) .title-component {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .page-home .info-card-container.text-right {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
.page-home .info-card-container .img-component {
  padding-top: 138% !important;
}

.homepage .event-list-container-btn {
  padding-bottom: 0;
}
.homepage .visit-title-container .component-title-container {
  padding-top: 0;
}
.homepage .btn-container .button:hover {
  background-color: #000000;
  color: #ffffff;
}

.contacts {
  display: none;
}
@media screen and (min-width: 1025px) {
  .contacts {
    display: block;
  }
}
.contacts.xs-only {
  display: block;
}
@media screen and (min-width: 1025px) {
  .contacts.xs-only {
    display: none;
  }
}
.contacts .row {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .contacts .row {
    margin-bottom: 10px;
  }
}
.contacts__item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contacts__item {
    margin-bottom: 60px;
  }
}
.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .contacts__row {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .contacts__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contacts__row:last-of-type {
  margin-bottom: 0;
}
.contacts__row .col-xs-12:nth-of-type(2) {
  margin-left: 8.33333333%;
}
@media screen and (max-width: 767px) {
  .contacts__row .col-xs-12:nth-of-type(2) {
    margin-left: 0;
  }
}
.contacts__name {
  font-family: "Canela", Arial, sans-serif;
  font-size: 28px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 36px !important;
  letter-spacing: 0.02em;
  text-align: left;
}
.contacts__role {
  margin-top: 15px;
  width: 100%;
}
.contacts__role a {
  word-break: break-all;
}
.contacts__label {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 22px !important;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 0;
}
.contacts__label p {
  margin-bottom: 0 !important;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.contacts__label p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.contacts__label p b {
  font-weight: bold;
}
.contacts__label p .size-8 {
  font-size: 8px !important;
}
.contacts__label p .size-9 {
  font-size: 9px !important;
}
.contacts__label p .size-10 {
  font-size: 10px !important;
}
.contacts__label p .size-11 {
  font-size: 11px !important;
}
.contacts__label p .size-12 {
  font-size: 12px !important;
}
.contacts__label p .size-13 {
  font-size: 13px !important;
}
.contacts__label p .size-14 {
  font-size: 14px !important;
}
.contacts__label p .size-15 {
  font-size: 15px !important;
}
.contacts__label p .size-16 {
  font-size: 16px !important;
}
.contacts__label p .size-17 {
  font-size: 17px !important;
}
.contacts__label p .size-18 {
  font-size: 18px !important;
}
.contacts__label p .size-19 {
  font-size: 19px !important;
}
.contacts__label p .size-20 {
  font-size: 20px !important;
}
.contacts__label p .size-21 {
  font-size: 21px !important;
}
.contacts__label p .size-22 {
  font-size: 22px !important;
}
.contacts__label p .size-23 {
  font-size: 23px !important;
}
.contacts__label p .size-24 {
  font-size: 24px !important;
}
.contacts__label p .size-25 {
  font-size: 25px !important;
}
.contacts__label p .size-26 {
  font-size: 26px !important;
}
.contacts__label p .size-27 {
  font-size: 27px !important;
}
.contacts__label p .size-28 {
  font-size: 28px !important;
}
.contacts__label p .size-29 {
  font-size: 29px !important;
}
.contacts__label a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.contacts__label b {
  font-weight: bold;
}
.contacts__email {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 26px !important;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  text-decoration: underline !important;
}
.contacts a:hover {
  color: #000000;
}

/* ========================
Fonts
=========================== */
@font-face {
  font-family: "Canela";
  src: url("clientlib-site/resources/fonts/Canela-Thin.woff2") format("woff2"), url("clientlib-site/resources/fonts/Canela-Thin.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  src: url("clientlib-site/resources/fonts/Inter-Light.woff2") format("woff2"), url("clientlib-site/resources/fonts/Inter-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("clientlib-site/resources/fonts/Inter-Regular.woff2") format("woff2"), url("clientlib-site/resources/fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("clientlib-site/resources/fonts/Inter-SemiBold.woff2") format("woff2"), url("clientlib-site/resources/fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
}
.page-home .hero-container--video .hero-big-picture {
  margin-top: 0 !important;
}

.show-hero-slider .hero-big-picture-container {
  display: none;
}

.hero-container--video {
  position: relative;
  height: 100vh;
  width: 100%;
}
.hero-container--video .hero-big-picture-container {
  width: 100%;
  height: 100vh;
  position: relative;
}
.hero-container--video video {
  width: 100% !important;
  height: 100vh !important;
  margin: 0 auto !important;
  display: block !important;
  position: absolute !important;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-container--video video.video--mobile {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .hero-container--video video.video--mobile {
    display: block !important;
  }
}
.hero-container--video video.video--desktop {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .hero-container--video video.video--desktop {
    display: none !important;
  }
}
.hero-container--video .hero-big-picture {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: 0 !important;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .hero-container--video .hero-big-picture {
    top: 50%;
  }
}
.hero-container--video .hero-big-picture .hero-big-picture-title {
  position: relative;
  z-index: 2;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title + .hero-big-picture-cta {
  position: relative;
  z-index: 2;
  padding-top: 42px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-8 {
  font-size: 8px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-8 i {
  font-size: 8px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-8 b {
  font-size: 8px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-9 {
  font-size: 9px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-9 i {
  font-size: 9px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-9 b {
  font-size: 9px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-10 {
  font-size: 10px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-10 i {
  font-size: 10px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-10 b {
  font-size: 10px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-11 {
  font-size: 11px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-11 i {
  font-size: 11px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-11 b {
  font-size: 11px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-12 {
  font-size: 12px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-12 i {
  font-size: 12px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-12 b {
  font-size: 12px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-13 {
  font-size: 13px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-13 i {
  font-size: 13px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-13 b {
  font-size: 13px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-14 {
  font-size: 14px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-14 i {
  font-size: 14px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-14 b {
  font-size: 14px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-15 {
  font-size: 15px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-15 i {
  font-size: 15px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-15 b {
  font-size: 15px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-16 {
  font-size: 16px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-16 i {
  font-size: 16px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-16 b {
  font-size: 16px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-17 {
  font-size: 17px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-17 i {
  font-size: 17px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-17 b {
  font-size: 17px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-18 {
  font-size: 18px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-18 i {
  font-size: 18px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-18 b {
  font-size: 18px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-19 {
  font-size: 19px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-19 i {
  font-size: 19px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-19 b {
  font-size: 19px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-20 {
  font-size: 20px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-20 i {
  font-size: 20px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-20 b {
  font-size: 20px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-21 {
  font-size: 21px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-21 i {
  font-size: 21px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-21 b {
  font-size: 21px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-22 {
  font-size: 22px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-22 i {
  font-size: 22px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-22 b {
  font-size: 22px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-23 {
  font-size: 23px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-23 i {
  font-size: 23px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-23 b {
  font-size: 23px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-24 {
  font-size: 24px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-24 i {
  font-size: 24px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-24 b {
  font-size: 24px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-25 {
  font-size: 25px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-25 i {
  font-size: 25px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-25 b {
  font-size: 25px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-26 {
  font-size: 26px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-26 i {
  font-size: 26px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-26 b {
  font-size: 26px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-27 {
  font-size: 27px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-27 i {
  font-size: 27px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-27 b {
  font-size: 27px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-28 {
  font-size: 28px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-28 i {
  font-size: 28px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-28 b {
  font-size: 28px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-29 {
  font-size: 29px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-29 i {
  font-size: 29px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-29 b {
  font-size: 29px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-30 {
  font-size: 30px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-30 i {
  font-size: 30px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-30 b {
  font-size: 30px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-31 {
  font-size: 31px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-31 i {
  font-size: 31px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-31 b {
  font-size: 31px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-32 {
  font-size: 32px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-32 i {
  font-size: 32px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-32 b {
  font-size: 32px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-33 {
  font-size: 33px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-33 i {
  font-size: 33px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-33 b {
  font-size: 33px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-34 {
  font-size: 34px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-34 i {
  font-size: 34px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-34 b {
  font-size: 34px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-35 {
  font-size: 35px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-35 i {
  font-size: 35px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-35 b {
  font-size: 35px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-36 {
  font-size: 36px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-36 i {
  font-size: 36px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-36 b {
  font-size: 36px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-37 {
  font-size: 37px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-37 i {
  font-size: 37px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-37 b {
  font-size: 37px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-38 {
  font-size: 38px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-38 i {
  font-size: 38px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-38 b {
  font-size: 38px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-39 {
  font-size: 39px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-39 i {
  font-size: 39px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-39 b {
  font-size: 39px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-40 {
  font-size: 40px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-40 i {
  font-size: 40px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-40 b {
  font-size: 40px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-41 {
  font-size: 41px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-41 i {
  font-size: 41px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-41 b {
  font-size: 41px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-42 {
  font-size: 42px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-42 i {
  font-size: 42px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-42 b {
  font-size: 42px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-43 {
  font-size: 43px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-43 i {
  font-size: 43px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-43 b {
  font-size: 43px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-44 {
  font-size: 44px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-44 i {
  font-size: 44px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-44 b {
  font-size: 44px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-45 {
  font-size: 45px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-45 i {
  font-size: 45px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-45 b {
  font-size: 45px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-46 {
  font-size: 46px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-46 i {
  font-size: 46px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-46 b {
  font-size: 46px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-47 {
  font-size: 47px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-47 i {
  font-size: 47px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-47 b {
  font-size: 47px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-48 {
  font-size: 48px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-48 i {
  font-size: 48px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-48 b {
  font-size: 48px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-49 {
  font-size: 49px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-49 i {
  font-size: 49px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-49 b {
  font-size: 49px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-50 {
  font-size: 50px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-50 i {
  font-size: 50px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-50 b {
  font-size: 50px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-51 {
  font-size: 51px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-51 i {
  font-size: 51px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-51 b {
  font-size: 51px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-52 {
  font-size: 52px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-52 i {
  font-size: 52px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-52 b {
  font-size: 52px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-53 {
  font-size: 53px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-53 i {
  font-size: 53px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-53 b {
  font-size: 53px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-54 {
  font-size: 54px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-54 i {
  font-size: 54px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-54 b {
  font-size: 54px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-55 {
  font-size: 55px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-55 i {
  font-size: 55px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-55 b {
  font-size: 55px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-56 {
  font-size: 56px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-56 i {
  font-size: 56px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-56 b {
  font-size: 56px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-57 {
  font-size: 57px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-57 i {
  font-size: 57px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-57 b {
  font-size: 57px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-58 {
  font-size: 58px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-58 i {
  font-size: 58px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-58 b {
  font-size: 58px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-59 {
  font-size: 59px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-59 i {
  font-size: 59px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-59 b {
  font-size: 59px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-60 {
  font-size: 60px !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-60 i {
  font-size: 60px !important;
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero-big-picture-title .size-60 b {
  font-size: 60px !important;
  font-style: bold !important;
}
.hero-container--video .hero-big-picture .hero__title {
  padding-bottom: 0 !important;
  max-width: 946px;
}
.hero-container--video .hero-big-picture .hero__title b {
  font-weight: bold !important;
}
.hero-container--video .hero-big-picture .hero__title b span {
  font-weight: bold !important;
}
.hero-container--video .hero-big-picture .hero__title b i {
  font-style: italic;
  font-weight: bold !important;
}
.hero-container--video .hero-big-picture .hero__title i {
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero__title i span {
  font-style: italic !important;
}
.hero-container--video .hero-big-picture .hero__title i b {
  font-style: italic !important;
  font-weight: bold;
}
.hero-container--video.author {
  height: 700px !important;
}
.hero-container--video.author .hero-big-picture-container {
  height: 700px !important;
}
.hero-container--video.author video {
  height: 700px !important;
}

.page-home .hero-big-picture {
  z-index: 100;
}
.page-home .hero-big-picture-container {
  position: relative !important;
}

body:not(.page-home) .hero-image,
body:not(.page-home) .hero-image-or-slide {
  height: 0 !important;
  padding-top: 35.21%;
  display: block;
  position: relative !important;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body:not(.page-home) .hero-image,
  body:not(.page-home) .hero-image-or-slide {
    padding-top: 66.67%;
  }
}
body:not(.page-home) .hero-image .image__slider,
body:not(.page-home) .hero-image-or-slide .image__slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body:not(.page-home) .hero-big-picture {
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body:not(.page-home) .hero-big-picture-container {
  position: relative !important;
}

@media screen and (max-width: 1024px) {
  .page-home .show-hero-big-picture {
    margin-top: -80px !important;
  }
}

.show-hero-big-picture .hero__title p {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: block;
}
.show-hero-big-picture .hero__title span,
.show-hero-big-picture .hero__title i,
.show-hero-big-picture .hero__title b {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: contents;
}
.show-hero-big-picture .hero__title .size-8 {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-8 {
    line-height: 14px !important;
  }
}
.show-hero-big-picture .hero__title .size-8 i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-8 i {
    line-height: 14px !important;
  }
}
.show-hero-big-picture .hero__title .size-8 b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-8 b {
    line-height: 14px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 14px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 14px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 14px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 14px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 14px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 14px !important;
  }
}
.show-hero-big-picture .hero__title .size-9 {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-9 {
    line-height: 15px !important;
  }
}
.show-hero-big-picture .hero__title .size-9 i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-9 i {
    line-height: 15px !important;
  }
}
.show-hero-big-picture .hero__title .size-9 b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-9 b {
    line-height: 15px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 15px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 15px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 15px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 15px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 15px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 15px !important;
  }
}
.show-hero-big-picture .hero__title .size-10 {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-10 {
    line-height: 16px !important;
  }
}
.show-hero-big-picture .hero__title .size-10 i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-10 i {
    line-height: 16px !important;
  }
}
.show-hero-big-picture .hero__title .size-10 b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-10 b {
    line-height: 16px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 16px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 16px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 16px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 16px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 16px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 16px !important;
  }
}
.show-hero-big-picture .hero__title .size-11 {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-11 {
    line-height: 17px !important;
  }
}
.show-hero-big-picture .hero__title .size-11 i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-11 i {
    line-height: 17px !important;
  }
}
.show-hero-big-picture .hero__title .size-11 b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-11 b {
    line-height: 17px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 17px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 17px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 17px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 17px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 17px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 17px !important;
  }
}
.show-hero-big-picture .hero__title .size-12 {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-12 {
    line-height: 18px !important;
  }
}
.show-hero-big-picture .hero__title .size-12 i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-12 i {
    line-height: 18px !important;
  }
}
.show-hero-big-picture .hero__title .size-12 b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-12 b {
    line-height: 18px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 18px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 18px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 18px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 18px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 18px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 18px !important;
  }
}
.show-hero-big-picture .hero__title .size-13 {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-13 {
    line-height: 19px !important;
  }
}
.show-hero-big-picture .hero__title .size-13 i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-13 i {
    line-height: 19px !important;
  }
}
.show-hero-big-picture .hero__title .size-13 b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-13 b {
    line-height: 19px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 19px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 19px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 19px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 19px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 19px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 19px !important;
  }
}
.show-hero-big-picture .hero__title .size-14 {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-14 {
    line-height: 20px !important;
  }
}
.show-hero-big-picture .hero__title .size-14 i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-14 i {
    line-height: 20px !important;
  }
}
.show-hero-big-picture .hero__title .size-14 b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-14 b {
    line-height: 20px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 20px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 20px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 20px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 20px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 20px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 20px !important;
  }
}
.show-hero-big-picture .hero__title .size-15 {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-15 {
    line-height: 21px !important;
  }
}
.show-hero-big-picture .hero__title .size-15 i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-15 i {
    line-height: 21px !important;
  }
}
.show-hero-big-picture .hero__title .size-15 b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-15 b {
    line-height: 21px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 21px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 21px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 21px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 21px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 21px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 21px !important;
  }
}
.show-hero-big-picture .hero__title .size-16 {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-16 {
    line-height: 22px !important;
  }
}
.show-hero-big-picture .hero__title .size-16 i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-16 i {
    line-height: 22px !important;
  }
}
.show-hero-big-picture .hero__title .size-16 b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-16 b {
    line-height: 22px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 22px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 22px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 22px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 22px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 22px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 22px !important;
  }
}
.show-hero-big-picture .hero__title .size-17 {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-17 {
    line-height: 23px !important;
  }
}
.show-hero-big-picture .hero__title .size-17 i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-17 i {
    line-height: 23px !important;
  }
}
.show-hero-big-picture .hero__title .size-17 b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-17 b {
    line-height: 23px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 23px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 23px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 23px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 23px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 23px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 23px !important;
  }
}
.show-hero-big-picture .hero__title .size-18 {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-18 {
    line-height: 24px !important;
  }
}
.show-hero-big-picture .hero__title .size-18 i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-18 i {
    line-height: 24px !important;
  }
}
.show-hero-big-picture .hero__title .size-18 b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-18 b {
    line-height: 24px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 24px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 24px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 24px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 24px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 24px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 24px !important;
  }
}
.show-hero-big-picture .hero__title .size-19 {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-19 {
    line-height: 25px !important;
  }
}
.show-hero-big-picture .hero__title .size-19 i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-19 i {
    line-height: 25px !important;
  }
}
.show-hero-big-picture .hero__title .size-19 b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-19 b {
    line-height: 25px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 25px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 25px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 25px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 25px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 25px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 25px !important;
  }
}
.show-hero-big-picture .hero__title .size-20 {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-20 {
    line-height: 26px !important;
  }
}
.show-hero-big-picture .hero__title .size-20 i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-20 i {
    line-height: 26px !important;
  }
}
.show-hero-big-picture .hero__title .size-20 b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-20 b {
    line-height: 26px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 26px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 26px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 26px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 26px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 26px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 26px !important;
  }
}
.show-hero-big-picture .hero__title .size-21 {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-21 {
    line-height: 27px !important;
  }
}
.show-hero-big-picture .hero__title .size-21 i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-21 i {
    line-height: 27px !important;
  }
}
.show-hero-big-picture .hero__title .size-21 b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-21 b {
    line-height: 27px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 27px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 27px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 27px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 27px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 27px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 27px !important;
  }
}
.show-hero-big-picture .hero__title .size-22 {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-22 {
    line-height: 28px !important;
  }
}
.show-hero-big-picture .hero__title .size-22 i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-22 i {
    line-height: 28px !important;
  }
}
.show-hero-big-picture .hero__title .size-22 b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-22 b {
    line-height: 28px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 28px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 28px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 28px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 28px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 28px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 28px !important;
  }
}
.show-hero-big-picture .hero__title .size-23 {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-23 {
    line-height: 29px !important;
  }
}
.show-hero-big-picture .hero__title .size-23 i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-23 i {
    line-height: 29px !important;
  }
}
.show-hero-big-picture .hero__title .size-23 b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-23 b {
    line-height: 29px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 29px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 29px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 29px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 29px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 29px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 29px !important;
  }
}
.show-hero-big-picture .hero__title .size-24 {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-24 {
    line-height: 30px !important;
  }
}
.show-hero-big-picture .hero__title .size-24 i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-24 i {
    line-height: 30px !important;
  }
}
.show-hero-big-picture .hero__title .size-24 b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-24 b {
    line-height: 30px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 30px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 30px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 30px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 30px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 30px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 30px !important;
  }
}
.show-hero-big-picture .hero__title .size-25 {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-25 {
    line-height: 31px !important;
  }
}
.show-hero-big-picture .hero__title .size-25 i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-25 i {
    line-height: 31px !important;
  }
}
.show-hero-big-picture .hero__title .size-25 b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-25 b {
    line-height: 31px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 31px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 31px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 31px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 31px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 31px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 31px !important;
  }
}
.show-hero-big-picture .hero__title .size-26 {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-26 {
    line-height: 32px !important;
  }
}
.show-hero-big-picture .hero__title .size-26 i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-26 i {
    line-height: 32px !important;
  }
}
.show-hero-big-picture .hero__title .size-26 b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-26 b {
    line-height: 32px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 32px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 32px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 32px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 32px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 32px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 32px !important;
  }
}
.show-hero-big-picture .hero__title .size-27 {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-27 {
    line-height: 33px !important;
  }
}
.show-hero-big-picture .hero__title .size-27 i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-27 i {
    line-height: 33px !important;
  }
}
.show-hero-big-picture .hero__title .size-27 b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-27 b {
    line-height: 33px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 33px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 33px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 33px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 33px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 33px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 33px !important;
  }
}
.show-hero-big-picture .hero__title .size-28 {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-28 {
    line-height: 34px !important;
  }
}
.show-hero-big-picture .hero__title .size-28 i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-28 i {
    line-height: 34px !important;
  }
}
.show-hero-big-picture .hero__title .size-28 b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-28 b {
    line-height: 34px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 34px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 34px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 34px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 34px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 34px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 34px !important;
  }
}
.show-hero-big-picture .hero__title .size-29 {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-29 {
    line-height: 35px !important;
  }
}
.show-hero-big-picture .hero__title .size-29 i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-29 i {
    line-height: 35px !important;
  }
}
.show-hero-big-picture .hero__title .size-29 b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-29 b {
    line-height: 35px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 35px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 35px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 35px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 35px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 35px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 35px !important;
  }
}
.show-hero-big-picture .hero__title .size-30 {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-30 {
    line-height: 36px !important;
  }
}
.show-hero-big-picture .hero__title .size-30 i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-30 i {
    line-height: 36px !important;
  }
}
.show-hero-big-picture .hero__title .size-30 b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-30 b {
    line-height: 36px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 36px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 36px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 36px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 36px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 36px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 36px !important;
  }
}
.show-hero-big-picture .hero__title .size-31 {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-31 {
    line-height: 37px !important;
  }
}
.show-hero-big-picture .hero__title .size-31 i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-31 i {
    line-height: 37px !important;
  }
}
.show-hero-big-picture .hero__title .size-31 b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-31 b {
    line-height: 37px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 37px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 37px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 37px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 37px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 37px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 37px !important;
  }
}
.show-hero-big-picture .hero__title .size-32 {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-32 {
    line-height: 38px !important;
  }
}
.show-hero-big-picture .hero__title .size-32 i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-32 i {
    line-height: 38px !important;
  }
}
.show-hero-big-picture .hero__title .size-32 b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-32 b {
    line-height: 38px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 38px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 38px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 38px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 38px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 38px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 38px !important;
  }
}
.show-hero-big-picture .hero__title .size-33 {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-33 {
    line-height: 39px !important;
  }
}
.show-hero-big-picture .hero__title .size-33 i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-33 i {
    line-height: 39px !important;
  }
}
.show-hero-big-picture .hero__title .size-33 b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-33 b {
    line-height: 39px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 39px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 39px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 39px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 39px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 39px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 39px !important;
  }
}
.show-hero-big-picture .hero__title .size-34 {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-34 {
    line-height: 40px !important;
  }
}
.show-hero-big-picture .hero__title .size-34 i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-34 i {
    line-height: 40px !important;
  }
}
.show-hero-big-picture .hero__title .size-34 b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-34 b {
    line-height: 40px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 40px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 40px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 40px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 40px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 40px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 40px !important;
  }
}
.show-hero-big-picture .hero__title .size-35 {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-35 {
    line-height: 41px !important;
  }
}
.show-hero-big-picture .hero__title .size-35 i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-35 i {
    line-height: 41px !important;
  }
}
.show-hero-big-picture .hero__title .size-35 b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-35 b {
    line-height: 41px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 41px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 41px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 41px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 41px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 41px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 41px !important;
  }
}
.show-hero-big-picture .hero__title .size-36 {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-36 {
    line-height: 42px !important;
  }
}
.show-hero-big-picture .hero__title .size-36 i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-36 i {
    line-height: 42px !important;
  }
}
.show-hero-big-picture .hero__title .size-36 b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-36 b {
    line-height: 42px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 42px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 42px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 42px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 42px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 42px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 42px !important;
  }
}
.show-hero-big-picture .hero__title .size-37 {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-37 {
    line-height: 43px !important;
  }
}
.show-hero-big-picture .hero__title .size-37 i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-37 i {
    line-height: 43px !important;
  }
}
.show-hero-big-picture .hero__title .size-37 b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-37 b {
    line-height: 43px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 43px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 43px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 43px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 43px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 43px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 43px !important;
  }
}
.show-hero-big-picture .hero__title .size-38 {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-38 {
    line-height: 44px !important;
  }
}
.show-hero-big-picture .hero__title .size-38 i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-38 i {
    line-height: 44px !important;
  }
}
.show-hero-big-picture .hero__title .size-38 b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-38 b {
    line-height: 44px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 44px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 44px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 44px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 44px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 44px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 44px !important;
  }
}
.show-hero-big-picture .hero__title .size-39 {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-39 {
    line-height: 45px !important;
  }
}
.show-hero-big-picture .hero__title .size-39 i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-39 i {
    line-height: 45px !important;
  }
}
.show-hero-big-picture .hero__title .size-39 b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-39 b {
    line-height: 45px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 45px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 45px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 45px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 45px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 45px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 45px !important;
  }
}
.show-hero-big-picture .hero__title .size-40 {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-40 {
    line-height: 46px !important;
  }
}
.show-hero-big-picture .hero__title .size-40 i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-40 i {
    line-height: 46px !important;
  }
}
.show-hero-big-picture .hero__title .size-40 b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-40 b {
    line-height: 46px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 46px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 46px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 46px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 46px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 46px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 46px !important;
  }
}
.show-hero-big-picture .hero__title .size-41 {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-41 {
    line-height: 47px !important;
  }
}
.show-hero-big-picture .hero__title .size-41 i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-41 i {
    line-height: 47px !important;
  }
}
.show-hero-big-picture .hero__title .size-41 b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-41 b {
    line-height: 47px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 47px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 47px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 47px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 47px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 47px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 47px !important;
  }
}
.show-hero-big-picture .hero__title .size-42 {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-42 {
    line-height: 48px !important;
  }
}
.show-hero-big-picture .hero__title .size-42 i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-42 i {
    line-height: 48px !important;
  }
}
.show-hero-big-picture .hero__title .size-42 b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-42 b {
    line-height: 48px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 48px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 48px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 48px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 48px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 48px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 48px !important;
  }
}
.show-hero-big-picture .hero__title .size-43 {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-43 {
    line-height: 49px !important;
  }
}
.show-hero-big-picture .hero__title .size-43 i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-43 i {
    line-height: 49px !important;
  }
}
.show-hero-big-picture .hero__title .size-43 b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-43 b {
    line-height: 49px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 49px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 49px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 49px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 49px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 49px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 49px !important;
  }
}
.show-hero-big-picture .hero__title .size-44 {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-44 {
    line-height: 50px !important;
  }
}
.show-hero-big-picture .hero__title .size-44 i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-44 i {
    line-height: 50px !important;
  }
}
.show-hero-big-picture .hero__title .size-44 b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-44 b {
    line-height: 50px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 50px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 50px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 50px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 50px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 50px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 50px !important;
  }
}
.show-hero-big-picture .hero__title .size-45 {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-45 {
    line-height: 51px !important;
  }
}
.show-hero-big-picture .hero__title .size-45 i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-45 i {
    line-height: 51px !important;
  }
}
.show-hero-big-picture .hero__title .size-45 b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-45 b {
    line-height: 51px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 51px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 51px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 51px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 51px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 51px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 51px !important;
  }
}
.show-hero-big-picture .hero__title .size-46 {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-46 {
    line-height: 52px !important;
  }
}
.show-hero-big-picture .hero__title .size-46 i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-46 i {
    line-height: 52px !important;
  }
}
.show-hero-big-picture .hero__title .size-46 b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-46 b {
    line-height: 52px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 52px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 52px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 52px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 52px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 52px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 52px !important;
  }
}
.show-hero-big-picture .hero__title .size-47 {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-47 {
    line-height: 53px !important;
  }
}
.show-hero-big-picture .hero__title .size-47 i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-47 i {
    line-height: 53px !important;
  }
}
.show-hero-big-picture .hero__title .size-47 b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-47 b {
    line-height: 53px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 53px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 53px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 53px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 53px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 53px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 53px !important;
  }
}
.show-hero-big-picture .hero__title .size-48 {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-48 {
    line-height: 54px !important;
  }
}
.show-hero-big-picture .hero__title .size-48 i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-48 i {
    line-height: 54px !important;
  }
}
.show-hero-big-picture .hero__title .size-48 b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-48 b {
    line-height: 54px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 54px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 54px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 54px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 54px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 54px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 54px !important;
  }
}
.show-hero-big-picture .hero__title .size-49 {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-49 {
    line-height: 55px !important;
  }
}
.show-hero-big-picture .hero__title .size-49 i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-49 i {
    line-height: 55px !important;
  }
}
.show-hero-big-picture .hero__title .size-49 b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-49 b {
    line-height: 55px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 55px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 55px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 55px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 55px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 55px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 55px !important;
  }
}
.show-hero-big-picture .hero__title .size-50 {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-50 {
    line-height: 56px !important;
  }
}
.show-hero-big-picture .hero__title .size-50 i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-50 i {
    line-height: 56px !important;
  }
}
.show-hero-big-picture .hero__title .size-50 b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-50 b {
    line-height: 56px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 56px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 56px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 56px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 56px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 56px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 56px !important;
  }
}
.show-hero-big-picture .hero__title .size-51 {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-51 {
    line-height: 57px !important;
  }
}
.show-hero-big-picture .hero__title .size-51 i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-51 i {
    line-height: 57px !important;
  }
}
.show-hero-big-picture .hero__title .size-51 b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-51 b {
    line-height: 57px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 57px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 57px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 57px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 57px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 57px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 57px !important;
  }
}
.show-hero-big-picture .hero__title .size-52 {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-52 {
    line-height: 58px !important;
  }
}
.show-hero-big-picture .hero__title .size-52 i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-52 i {
    line-height: 58px !important;
  }
}
.show-hero-big-picture .hero__title .size-52 b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-52 b {
    line-height: 58px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 58px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 58px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 58px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 58px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 58px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 58px !important;
  }
}
.show-hero-big-picture .hero__title .size-53 {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-53 {
    line-height: 59px !important;
  }
}
.show-hero-big-picture .hero__title .size-53 i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-53 i {
    line-height: 59px !important;
  }
}
.show-hero-big-picture .hero__title .size-53 b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-53 b {
    line-height: 59px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 59px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 59px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 59px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 59px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 59px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 59px !important;
  }
}
.show-hero-big-picture .hero__title .size-54 {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-54 {
    line-height: 60px !important;
  }
}
.show-hero-big-picture .hero__title .size-54 i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-54 i {
    line-height: 60px !important;
  }
}
.show-hero-big-picture .hero__title .size-54 b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-54 b {
    line-height: 60px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 60px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 60px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 60px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 60px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 60px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 60px !important;
  }
}
.show-hero-big-picture .hero__title .size-55 {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-55 {
    line-height: 61px !important;
  }
}
.show-hero-big-picture .hero__title .size-55 i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-55 i {
    line-height: 61px !important;
  }
}
.show-hero-big-picture .hero__title .size-55 b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-55 b {
    line-height: 61px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 61px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 61px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 61px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 61px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 61px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 61px !important;
  }
}
.show-hero-big-picture .hero__title .size-56 {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-56 {
    line-height: 62px !important;
  }
}
.show-hero-big-picture .hero__title .size-56 i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-56 i {
    line-height: 62px !important;
  }
}
.show-hero-big-picture .hero__title .size-56 b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-56 b {
    line-height: 62px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 62px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 62px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 62px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 62px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 62px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 62px !important;
  }
}
.show-hero-big-picture .hero__title .size-57 {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-57 {
    line-height: 63px !important;
  }
}
.show-hero-big-picture .hero__title .size-57 i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-57 i {
    line-height: 63px !important;
  }
}
.show-hero-big-picture .hero__title .size-57 b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-57 b {
    line-height: 63px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 63px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 63px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 63px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 63px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 63px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 63px !important;
  }
}
.show-hero-big-picture .hero__title .size-58 {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-58 {
    line-height: 64px !important;
  }
}
.show-hero-big-picture .hero__title .size-58 i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-58 i {
    line-height: 64px !important;
  }
}
.show-hero-big-picture .hero__title .size-58 b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-58 b {
    line-height: 64px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 64px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 64px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 64px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 64px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 64px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 64px !important;
  }
}
.show-hero-big-picture .hero__title .size-59 {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-59 {
    line-height: 65px !important;
  }
}
.show-hero-big-picture .hero__title .size-59 i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-59 i {
    line-height: 65px !important;
  }
}
.show-hero-big-picture .hero__title .size-59 b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-59 b {
    line-height: 65px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 65px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 65px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 65px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 65px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 65px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 65px !important;
  }
}
.show-hero-big-picture .hero__title .size-60 {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-60 {
    line-height: 66px !important;
  }
}
.show-hero-big-picture .hero__title .size-60 i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-60 i {
    line-height: 66px !important;
  }
}
.show-hero-big-picture .hero__title .size-60 b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title .size-60 b {
    line-height: 66px !important;
  }
}
.show-hero-big-picture .hero__title b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b {
    line-height: 66px !important;
  }
}
.show-hero-big-picture .hero__title b span {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b span {
    line-height: 66px !important;
  }
}
.show-hero-big-picture .hero__title b i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title b i {
    line-height: 66px !important;
  }
}
.show-hero-big-picture .hero__title i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i {
    line-height: 66px !important;
  }
}
.show-hero-big-picture .hero__title i span {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i span {
    line-height: 66px !important;
  }
}
.show-hero-big-picture .hero__title i b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .show-hero-big-picture .hero__title i b {
    line-height: 66px !important;
  }
}
.show-hero-big-picture .hero-component-slider {
  display: none;
}
@media screen and (max-width: 1024px) {
  .show-hero-big-picture {
    /* margin-top: -30px; */
    overflow-x: hidden;
  }
}
.show-hero-big-picture .image__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.show-hero-big-picture .hero-big-picture-container {
  z-index: 500;
  position: absolute;
}

.hero-slider-sidebar .hero-image-container {
  width: 69.5% !important;
  height: 100% !important;
}
.hero-slider-sidebar .hero-text-container {
  width: 30% !important;
}
.hero-slider-sidebar .hero-component-container {
  height: 100vh;
}
@media screen and (max-width: 999px) {
  .hero-slider-sidebar .hero-component-container {
    height: calc(100vh - 80px);
    position: relative;
  }
  .hero-slider-sidebar .hero-component-container .hero-image-container {
    width: 100% !important;
    height: 50% !important;
    margin-top: 0;
  }
  .hero-slider-sidebar .hero-component-container .hero-text-container {
    height: 45% !important;
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .hero-slider-sidebar .hero-component-container .hero-text-container {
    height: 45% !important;
  }
  .hero-slider-sidebar .hero-component-container .hero-text-container .hero-title-component {
    font-size: 28px !important;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
}
.hero-slider-sidebar .hero-component-container .hero-image {
  height: 100% !important;
}
.hero-slider-sidebar .hero-component-container .hero-component_description-container {
  display: none;
  width: 70% !important;
}
@media screen and (max-width: 999px) {
  .hero-slider-sidebar .hero-component-container .hero-component_description-container {
    width: 100% !important;
  }
}
.hero-slider-sidebar .hero-component-container .hero-component_description-container .hero-component_description {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 9px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-top: 8px;
  padding: 0;
}
.hero-slider-sidebar .hero-component-container .hero-component_description-container.active-slide-credit {
  display: block;
}
@media screen and (max-width: 999px) {
  .hero-slider-sidebar .hero-component-container .hero-component_description-container.active-slide-credit {
    position: absolute;
    top: 50%;
    left: 0;
  }
  .hero-slider-sidebar .hero-component-container .hero-component_description-container.active-slide-credit p {
    line-height: 16px;
    font-size: 9px;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-slide-author {
  height: 750px !important;
}

.hero-image-author {
  height: 750px !important;
}
.hero-image-author img {
  height: 750px !important;
}

.hero-component-container {
  padding-top: 131px;
  margin: 0 0 130px 0;
}
.hero-component-container .image__slider {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .hero-component-container {
    padding: 0;
    padding-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  .hero-component-container {
    margin-bottom: 0;
  }
}
.hero-component-container .hero-image-container {
  padding: 0;
  margin: 0;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hero-component-container .hero-image-container {
    height: 50%;
    margin-top: 0;
  }
}
.hero-component-container .hero-image-container .hero-image {
  height: 100%;
  display: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-component-container .hero-image-container .active-image {
  display: block;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.hero-component-container .hero-image-container .active-image:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.hero-component-container .hero-text-container {
  padding: 50px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .hero-component-container .hero-text-container {
    padding: 15px;
    height: 45% !important;
    position: absolute;
    background: #f8f8f8;
    top: 95%;
    -webkit-transform: translateY(-95%);
            transform: translateY(-95%);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.hero-component-container .hero-text-container .hero-arrows {
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .hero-component-container .hero-text-container .hero-arrows {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .hero-component-container .hero-text-container .hero-arrows {
    text-align: right;
    margin-bottom: 20px;
    z-index: 50;
    margin-bottom: 0;
    display: block;
  }
}
.hero-component-container .hero-text-container .hero-arrows .big-arrow-left {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.hero-component-container .hero-text-container .hero-arrows .big-arrow-left:hover {
  background-image: url("clientlib-site/resources/images/icons/big-blue-arrow-left.png");
  -webkit-filter: contrast(0);
          filter: contrast(0);
}
.hero-component-container .hero-text-container .hero-arrows .big-arrow-right {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.hero-component-container .hero-text-container .hero-arrows .big-arrow-right:hover {
  background-image: url("clientlib-site/resources/images/icons/big-blue-arrow-right.png");
  -webkit-filter: contrast(0);
          filter: contrast(0);
}
.hero-component-container .hero-text-container .hero-text-middle {
  padding-top: 90px;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .hero-component-container .hero-text-container .hero-text-middle {
    padding-top: 0;
  }
}
.hero-component-container .hero-text-container .hero-text-middle .slide-info-container {
  display: none;
}
.hero-component-container .hero-text-container .hero-text-middle .slide-info-container .hero-title-component {
  font-size: 40px !important;
  line-height: 52px !important;
  max-width: 350px;
}
@media screen and (max-width: 1024px) {
  .hero-component-container .hero-text-container .hero-text-middle .slide-info-container .hero-title-component {
    max-width: unset !important;
  }
  .hero-component-container .hero-text-container .hero-text-middle .slide-info-container .hero-title-component p {
    font-size: 40px !important;
    line-height: 52px !important;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .hero-component-container .hero-text-container .hero-text-middle .slide-info-container .hero-title-component {
    margin-bottom: 0;
  }
  .hero-component-container .hero-text-container .hero-text-middle .slide-info-container .hero-title-component p {
    margin-top: 0px;
    font-size: 28px !important;
    line-height: 38px !important;
  }
}
.hero-component-container .hero-text-container .hero-text-middle .slide-info-container .hero-title-component a {
  text-decoration: none;
  color: black;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.hero-component-container .hero-text-container .hero-text-middle .slide-info-container .hero-title-component a:hover {
  color: #000000;
}
.hero-component-container .hero-text-container .hero-text-middle .slide-info-container .hero-title-component h1 a {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 3px;
  text-decoration: none;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  background-position: left bottom;
  padding-bottom: 3px;
  display: inline;
}
.hero-component-container .hero-text-container .hero-text-middle .slide-info-container .hero-title-component h1 a:hover {
  background-size: 100% 3px;
  color: #000000;
}
.hero-component-container .hero-text-container .hero-text-middle .slide-info-container .hero-date {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px !important;
  line-height: 26px !important;
  color: #000000;
}
.hero-component-container .hero-text-container .hero-text-middle .slide-info-container .hero-address {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px !important;
  line-height: 26px !important;
  color: #000000;
}
.hero-component-container .hero-text-container .hero-text-middle .active-slide-info {
  display: block;
}
.hero-component-container .hero-text-container .hero-text-middle h1 a {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 3px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  background-position: left bottom;
  padding-bottom: 3px;
  display: inline;
}
.hero-component-container .hero-text-container .hero-text-middle h1 a:hover {
  background-size: 100% 3px;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .hero-component-container .hero-text-container .hero-cta {
    display: none !important;
  }
}
.hero-component-container .hero-text-container .hero-cta .slide-cta-container {
  display: none;
}
.hero-component-container .hero-text-container .hero-cta .slide-cta-container .separator-component {
  margin-bottom: 50px;
}
.hero-component-container .hero-text-container .hero-cta .slide-cta-container a {
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
  text-decoration: none;
  display: inline-block;
}
.hero-component-container .hero-text-container .hero-cta .slide-cta-container a:hover {
  color: #000000;
  background-size: calc(100% - 28px) 2px;
  font-weight: bold;
}
.hero-component-container .hero-text-container .hero-cta .slide-cta-container a:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.hero-component-container .hero-text-container .hero-cta a.arrow-cta {
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
  text-decoration: none;
  display: inline-block;
}
.hero-component-container .hero-text-container .hero-cta a.arrow-cta:hover {
  color: #000000;
  background-size: calc(100% - 28px) 2px;
  font-weight: bold;
}
.hero-component-container .hero-text-container .hero-cta a.arrow-cta:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.hero-component-container .hero-text-container .hero-cta .active-slide-cta {
  display: block;
}

.page-home .hero-container.banner .image__slider {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home .hero-container.banner .hero-big-picture {
  position: absolute;
}

.hero-container.banner .hero-big-picture-title {
  color: white;
  font-family: "Canela", Arial, sans-serif;
  font-weight: 300;
  font-size: 72px;
  line-height: 80px;
}
@media screen and (max-width: 767px) {
  .hero-container.banner .hero-big-picture-title {
    font-size: 48px;
    line-height: 54px;
  }
}

@media screen and (max-width: 767px) {
  body:not(.page-home) .hero-container--video video.video--mobile {
    display: block !important;
    height: unset !important;
  }
}
.logo-img {
  display: inline-block;
  width: 59px;
  height: 75px;
  background-size: 59px 75px;
  background-image: url("clientlib-site/resources/images/icons/new-logo.svg");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  vertical-align: middle;
  -webkit-transition: none;
  transition: none;
}

.arrow-right {
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url("clientlib-site/resources/images/icons/arrow-right-black.svg");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  vertical-align: middle;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.big-arrow-left {
  display: inline-block;
  width: 22px;
  height: 12px;
  background-image: url("clientlib-site/resources/images/icons/big-arrow-left.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.big-arrow-right {
  display: inline-block;
  width: 22px;
  height: 12px;
  background-image: url("clientlib-site/resources/images/icons/big-arrow-right.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  vertical-align: middle;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.arrow-down {
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url("clientlib-site/resources/images/icons/arrow-down.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  -webkit-transition: none;
  transition: none;
}

.social-icon, .youtube-icon, .instagram-icon, .twitter-icon {
  background-image: url("clientlib-site/resources/images/icons/facebook.png");
}

.twitter-icon {
  background-image: url("clientlib-site/resources/images/icons/twitter.png");
}

.instagram-icon {
  background-image: url("clientlib-site/resources/images/icons/instagram.png");
}

.youtube-icon {
  background-image: url("clientlib-site/resources/images/icons/youtube.png");
}

.icon-short-arrow-down {
  display: inline-block;
  width: 8px;
  height: 4px;
  background-image: url("clientlib-site/resources/images/icons/short-arrow-down.svg");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  vertical-align: middle;
  -webkit-transition: none;
  transition: none;
}

.icon-search {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: 16px;
  background-image: url("clientlib-site/resources/images/icons/search.svg");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  vertical-align: middle;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.icon-search:hover {
  background-image: url("clientlib-site/resources/images/icons/search-blue.svg");
}

.icon-close {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: 18px;
  background-image: url("clientlib-site/resources/images/icons/close-btn.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  vertical-align: middle;
  -webkit-transition: none;
  transition: none;
}

.icon-ticket {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: 100%;
  background-image: url("clientlib-site/resources/images/icons/ticket.png");
  background-color: transparent;
  background-repeat: no-repeat;
  vertical-align: middle;
  -webkit-transition: none;
  transition: none;
}

.close {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("clientlib-site/resources/images/icons/close.png");
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  vertical-align: middle;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.icon-filters {
  display: inline-block;
  width: 16px;
  height: 13px;
  background-image: url("clientlib-site/resources/images/icons/filters.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  vertical-align: middle;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
}
.pswp__button--close {
  width: 16px;
  height: 16px;
  background-image: url("clientlib-site/resources/images/icons/close-btn.png");
  background-size: 16px;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .pswp__button--close {
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
    Arrow buttons hit area
    (icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background-repeat: no-repeat;
  background-size: 26px 15px;
  top: 26px;
  margin-top: 0;
  width: 26px;
  height: 15px;
  position: absolute;
}
@media (min-width: 1024px) {
  .pswp__button--arrow--left,
  .pswp__button--arrow--right {
    top: 50%;
  }
}

.pswp__button--arrow--left {
  background-image: url("clientlib-site/resources/images/icons/big-arrow-left.png");
  left: 20px;
}
@media (min-width: 1024px) {
  .pswp__button--arrow--left {
    left: 0;
  }
}

.pswp__button--arrow--right {
  background-image: url("clientlib-site/resources/images/icons/big-arrow-right.png");
  left: 74px;
}
@media (min-width: 1024px) {
  .pswp__button--arrow--right {
    right: 0;
    left: auto;
  }
}

.swipingArrow {
  display: none;
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  opacity: 1 !important;
}
.swipingArrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.swipingArrow-left {
  left: -25px;
}
.swipingArrow-left::before {
  top: 10px;
  left: 10px;
  background-image: url("clientlib-site/resources/images/icons/narrow-left.svg");
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.swipingArrow-right {
  right: -25px;
}
.swipingArrow-right::before {
  top: 10px;
  left: -10px;
  background-image: url("clientlib-site/resources/images/icons/narrow-right.svg");
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .swipingArrow {
    display: block;
  }
}

.swipingCross {
  position: relative;
  overflow: hidden;
}
.swipingCross::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("clientlib-site/resources/images/icons/close-white.svg");
  background-position: center;
  background-size: 32px;
  background-repeat: no-repeat;
}

/*

    2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

    3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
  display: none;
}

.pswp__image-number {
  position: absolute;
  font-size: 30px;
  left: 0;
  color: #ffffff;
}

/*

    4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: none;
  display: none;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 50%;
  margin: 0;
  font-size: 16px;
  padding: 0px;
  line-height: 20px;
  color: #fff;
  text-align: left;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

    5. Loading indicator (preloader)

    You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
  display: none;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(clientlib-site/css/preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /*
            The idea of animating inner circle is based on Polymer ("material") loading indicator
             by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
        */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
/*

    6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 25px 20px;
}
@media (min-width: 1024px) {
  .pswp__top-bar {
    padding: 30px 30px 16px 30px;
  }
}

.pswp__caption,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: transparent;
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
/*
    pswp__ui--hidden class is added when controls are hidden
    e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
    Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  outline: none;
}

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: default !important;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
    Background is added as a separate element.
    As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  opacity: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  left: 0%;
  margin: 0 auto;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container {
  -webkit-transition: none;
  transition: none;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0%;
  max-width: 100%;
  padding: 0;
}

/*
    stretched thumbnail or div placeholder element (see below)
    style is added to avoid flickering in webkit/blink when layers overlap
*/
/*
    div element that matches size of large image
    large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
    Error message appears when image is not loaded
    (JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

.pswp__img {
  max-width: 100%;
}

.pswp__fake-el {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: white;
  opacity: 0;
  -webkit-transition: none;
  transition: none;
}
.pswp--animated-in .pswp__fake-el {
  opacity: 1;
  -webkit-transition: opacity 0.1s ease-in;
  transition: opacity 0.1s ease-in;
}

.pswp__label-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 24px 30px;
  background-color: white;
}

.number-label {
  position: absolute;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  line-height: 21px;
  color: #555;
  max-width: 70%;
  top: 14px;
  right: 40px;
}

.title-label {
  left: 0;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-size: 9px;
  line-height: 15px;
  color: #6f6f6f;
  width: 45%;
}
@media (min-width: 1024px) {
  .title-label {
    width: auto;
    max-width: 220px;
  }
}
.title-label:before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background-color: #2b8804;
  margin-bottom: 10px;
}

.pswp__button.pswp__button--fs {
  display: none;
}

.pswp__item {
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
}
.pswp__item.pswp__active-slide {
  opacity: 1;
  -webkit-transition: opacity 0.1s ease-in;
  transition: opacity 0.1s ease-in;
}

.pswp__caption .pswp__caption__center {
  width: 100%;
  max-width: none;
}

.pswp--open .pswp__item {
  opacity: 1;
}
@media (max-width: 1023px) {
  .pswp--open .pswp__item {
    background: #e0e0e0;
    top: 90px;
    max-height: 500px;
  }
}
.pswp--open .pswp__caption {
  display: block;
}

.image-gallery {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .image-gallery {
    padding: 120px 0;
  }
}
.image-gallery__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .image-gallery__top {
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {
  .image-gallery__top {
    padding: 0;
  }
}
.image-gallery__top .title-component {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .image-gallery-container {
    margin-top: 40px;
  }
}
.image-gallery-grid-item a {
  display: block;
  color: #000000;
  text-decoration: none;
}
.image-gallery-grid-item img {
  width: 100%;
  height: auto;
}
.image-gallery-container {
  margin-left: 20px;
}
@media (min-width: 1024px) {
  .image-gallery-container {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .image-gallery .swiper-container {
    padding-right: 35px;
  }
}
.image-gallery .swiper-button-prev,
.image-gallery .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 26px;
  height: 15px;
  margin-top: 0;
  background-size: 26px 15px;
}
@media (max-width: 1023px) {
  .image-gallery .swiper-button-prev,
  .image-gallery .swiper-button-next {
    display: none;
  }
}
.image-gallery .swiper-button-prev {
  display: inline-block;
  margin-left: auto;
  width: 22px;
  height: 21px;
  right: 10px;
  background-size: 20px;
  background-image: url("clientlib-site/resources/images/icons/big-arrow-left.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.image-gallery .swiper-button-prev:hover {
  background-image: url("clientlib-site/resources/images/icons/big-blue-arrow-left.png");
}
.image-gallery .swiper-button-next {
  display: inline-block;
  width: 22px;
  height: 21px;
  background-size: 20px;
  background-image: url("clientlib-site/resources/images/icons/big-arrow-right.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.image-gallery .swiper-button-next:hover {
  background-image: url("clientlib-site/resources/images/icons/big-blue-arrow-right.png");
}
.image-gallery figcaption {
  display: none;
}
.image-gallery .pswp__button--arrow--right {
  display: inline-block;
  width: 26px;
  height: 26px;
  background-size: 26px;
  background-image: url("clientlib-site/resources/images/icons/big-arrow-right.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.image-gallery .pswp__button--arrow--right:hover {
  background-image: url("clientlib-site/resources/images/icons/big-blue-arrow-right.png");
}
@media screen and (min-width: 1441px) {
  .image-gallery .pswp__button--arrow--right {
    right: 14%;
  }
}
@media screen and (min-width: 1025px) {
  .image-gallery .pswp__button--arrow--right {
    right: 10%;
  }
}
.image-gallery .pswp__button--arrow--left {
  display: inline-block;
  width: 26px;
  height: 26px;
  background-size: 26px;
  background-image: url("clientlib-site/resources/images/icons/big-arrow-left.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.image-gallery .pswp__button--arrow--left:hover {
  background-image: url("clientlib-site/resources/images/icons/big-blue-arrow-left.png");
}
@media screen and (min-width: 1441px) {
  .image-gallery .pswp__button--arrow--left {
    left: 14%;
  }
}
@media screen and (min-width: 1025px) {
  .image-gallery .pswp__button--arrow--left {
    left: 10%;
  }
}
.image-gallery .image-gallery-grid-item .container-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.image-gallery .image-gallery-grid-item .container-img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.image-gallery .image-gallery-grid-item .container-img .image-caption__title {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.image-gallery .image-gallery-grid-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.image-gallery .image-gallery-grid-item:hover .image-caption__title {
  color: #000000;
}
.image-gallery .image-gallery-pswp .image-caption__info {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.image-gallery .image-gallery-pswp .image-caption__title {
  text-align: center;
  margin-bottom: 50px !important;
  max-width: 764px;
  width: 100%;
  margin: auto;
  display: block;
}

.image-caption__info {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  padding-top: 24px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.image-caption__title {
  font-family: "Canela", Arial, sans-serif;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  margin-top: 8px;
  color: #000000;
}
.image-caption__separator {
  padding: 0 14px;
}

.image-component_wrapper {
  margin-top: 100px;
  margin-bottom: 0px !important;
  position: relative;
}
@media screen and (max-width: 767px) {
  .image-component_wrapper {
    margin-top: 70px;
  }
}
.image-component_wrapper .image-component_main-container {
  position: relative;
  width: 100%;
  margin: 0;
  padding-top: 56.25%;
}
.image-component_wrapper .image-component_main-container .image-component_container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  background-size: cover;
  display: block;
  /*         position: relative; */
  overflow: hidden;
}
.image-component_wrapper .image-component_main-container .image-component_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.image-component_wrapper .image-component_main-container .image-component_container .overlay-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 11;
}
.image-component_wrapper .image-component_main-container .image-component_container .overlay-container .overlay-icon {
  width: 65px;
  height: 65px;
}
.image-component_wrapper .image-component_main-container .image-component_container .overlay-container .overlay-text {
  display: none;
  margin-top: 15px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}
.image-component_wrapper .image-component_main-container .image-component_container .overlay-container .overlay-text-visible {
  display: block;
}
.image-component_wrapper .image-component_main-container .image-component_container .overlay-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.image-component_wrapper .image-component_main-container .image-overlay:before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  top: 0;
  z-index: 10;
}
.image-component_wrapper .image_marginIfNotEmpty {
  margin-bottom: 100px;
  min-height: 0 !important;
}
@media screen and (max-width: 767px) {
  .image-component_wrapper .image_marginIfNotEmpty {
    margin-bottom: 70px;
    min-height: 0 !important;
  }
}
.image-component_wrapper .image-component_description-container {
  width: 100%;
  min-height: 100px;
}
@media screen and (max-width: 767px) {
  .image-component_wrapper .image-component_description-container {
    max-width: 335px;
    min-height: 70px;
  }
}
.image-component_wrapper .image-component_description-container .image-component_description {
  margin-top: 20px;
  max-width: 364px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #6f6f6f;
}
@media screen and (max-width: 767px) {
  .image-component_wrapper .image-component_description-container .image-component_description {
    margin-top: 16px;
  }
}
.image-component_wrapper .description-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.image-component_wrapper .image-component_main-container .image-component_container.vertical-image-configurator {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.image-component_wrapper .image-component_main-container .image-component_container.vertical-image-configurator picture {
  background-color: transparent !important;
}

.image-component_wrapper .image-component_main-container .image-component_container.vertical-image-configurator img {
  background-color: transparent !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.image-component-container .image-component-inner {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding-top: 57.1808510638%;
}

.image-component-subtext {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #e0e0e0;
}

.component-title-container {
  padding-bottom: 45px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .component-title-container {
    margin: 0 !important;
    padding: 0 !important;
  }
}
.component-title-container .break {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;
}
.component-title-container .event-list-filter {
  text-decoration: none;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
.component-title-container .event-list-filter .filter-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .component-title-container .event-list-filter .filter-desktop {
    display: none;
  }
}
.component-title-container .event-list-filter .filter-desktop .filter-container-desktop {
  cursor: pointer;
  position: relative;
}
.component-title-container .event-list-filter .filter-desktop .filter-container-desktop .filter-title {
  margin-left: 35px;
}
.component-title-container .event-list-filter .filter-desktop .filter-container-desktop .arrow-down {
  visibility: visible;
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url("clientlib-site/resources/images/icons/vectordown.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  -webkit-transition: none;
  transition: none;
}
.component-title-container .event-list-filter .filter-desktop .filter-container-desktop .arrow-up {
  visibility: visible;
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url("clientlib-site/resources/images/icons/vectorup.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  -webkit-transition: none;
  transition: none;
}
.component-title-container .event-list-filter .filter-desktop .filter-container-desktop .filter-options-desktop {
  margin-top: 20px;
  min-width: 22em;
  padding: 25px;
  position: absolute;
  right: 4px;
  list-style-type: none;
  z-index: 100;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
}
.component-title-container .event-list-filter .filter-desktop .filter-container-desktop .filter-options-desktop label {
  padding-left: 12px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px !important;
  line-height: 22px !important;
  color: #000000;
  text-transform: initial;
}
.component-title-container .event-list-filter .filter-desktop .filter-container-desktop .date-dropdown {
  display: none;
}
.component-title-container .event-list-filter .filter-desktop .filter-container-desktop .type-dropdown {
  display: none;
}
.component-title-container .event-list-filter .filter-desktop .filter-container-desktop .subject-dropdown {
  display: none;
}
.component-title-container .event-list-filter .filter-desktop .ui-widget-content {
  border: 0;
}
@media screen and (min-width: 1025px) {
  .component-title-container .event-list-filter .filter-mobile {
    display: none;
  }
}
.component-title-container .event-list-filter .filter-mobile .filter-icon {
  height: 12px;
  width: 15px;
  margin-right: 15px;
  display: inline-block;
  background-image: url("clientlib-site/resources/images/icons/filter.png");
  background-size: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
}
.component-title-container .filter-menu {
  display: none;
  padding: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  padding-top: 110px;
  overflow: scroll;
}
.component-title-container .filter-menu .filter-icon-close {
  position: absolute;
  top: 18px;
  right: 5px;
  height: 16px;
  width: 16px;
  margin-right: 15px;
  display: inline-block;
  background-image: url("clientlib-site/resources/images/icons/close-btn.png");
  background-size: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
}
.component-title-container .filter-menu .filter-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .component-title-container .filter-menu .filter-line {
    padding: 10px 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
  }
}
.component-title-container .filter-menu .filter-line .filter-type-title {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px !important;
  line-height: 17px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
}
.component-title-container .filter-menu .filter-line .arrow-down {
  background-image: url("clientlib-site/resources/images/icons/vectordown.png");
}
.component-title-container .filter-menu .filter-line .arrow-up {
  background-image: url("clientlib-site/resources/images/icons/vectorup.png");
}
.component-title-container .filter-menu .filter-line .break {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;
}
.component-title-container .filter-menu .filter-line .selected-filters {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px !important;
  line-height: 26px !important;
  text-transform: capitalize;
  color: #6f6f6f;
}
.component-title-container .filter-menu .filter-options {
  display: none;
  list-style-type: none;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px !important;
  line-height: 26px !important;
  color: #000000;
  overflow: scroll;
  height: 100;
}
.component-title-container .filter-menu .filter-options label {
  padding-left: 12px;
}
.component-title-container .filter-menu .filter-btn-container {
  position: absolute;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .component-title-container .filter-menu .filter-btn-container {
    margin-top: 27px;
  }
}
.component-title-container .filter-menu .filter-btn-container .filter-btn {
  width: 155px;
  height: 45px;
  text-align: center;
  padding: 15px 54px;
  border: 1px solid #000000;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .component-title-container .filter-menu .filter-btn-container .filter-btn {
    margin: 0;
    border: 1px solid #000000;
  }
}
@media screen and (max-width: 1024px) {
  .component-title-container .filter-menu .filter-btn-container .filter-btn {
    padding: 10px 20px;
    margin: 0;
  }
}
.component-title-container .filter-menu .filter-btn-container .filter-btn span {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
.component-title-container .filter-menu .filter-btn-container .apply {
  background-color: #000000;
  border: 1px solid transparent;
}
.component-title-container .filter-menu .filter-btn-container .apply span {
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .component-title-container .filter-menu .filter-btn-container .apply {
    margin-left: 38px;
  }
}
@media screen and (max-width: 767px) {
  .component-title-container .filter-menu .filter-btn-container .apply {
    margin-left: 21px;
  }
}
.component-title-container .filters-label-container {
  display: none;
}
@media screen and (min-width: 1025px) {
  .component-title-container .filters-label-container {
    display: block;
  }
}
.component-title-container .filters-label-container .filters-label {
  cursor: pointer;
  display: inline-block;
  border: 1px solid #000000;
  border-radius: 15px;
  padding: 7px 14px;
  margin: 15px 5px 0 0;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 10px !important;
  line-height: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.component-title-container .filters-label-container .filters-label span {
  margin-left: 10px;
}
.component-title-container .filters-label-container .filter-reset-desktop {
  display: inline-block;
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  margin-left: 20px;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

.exhibitions-initiatives .ui-datepicker {
  width: 347px !important;
}
.exhibitions-initiatives .ui-datepicker a {
  font-size: 14px;
}
.exhibitions-initiatives .ui-datepicker td {
  padding-top: 2px;
  padding-bottom: 2px;
}
.exhibitions-initiatives .ui-datepicker table {
  max-width: 247px;
  margin: auto;
}
.exhibitions-initiatives .ui-datepicker .ui-state-default {
  height: 31px;
  width: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.exhibitions-initiatives .ui-datepicker .ui-state-disabled {
  font-size: 14px;
}
.exhibitions-initiatives .ui-datepicker .ui-widget-header {
  background-color: #ffffff;
  border: 0;
}
.exhibitions-initiatives .ui-datepicker .ui-widget-header .ui-datepicker-next .ui-icon {
  background-image: url("clientlib-site/resources/images/icons/right-arrow-filter.png");
}
.exhibitions-initiatives .ui-datepicker .ui-widget-header .ui-datepicker-next .ui-icon-circle-triangle-e {
  background-position: center;
}
.exhibitions-initiatives .ui-datepicker .ui-widget-header .ui-datepicker-prev .ui-icon {
  background-image: url("clientlib-site/resources/images/icons/left-arrow-filter.png");
}
.exhibitions-initiatives .ui-datepicker .ui-widget-header .ui-datepicker-prev .ui-icon-circle-triangle-w {
  background-position: center;
}
.exhibitions-initiatives .ui-datepicker .ui-datepicker-calendar .ui-state-default {
  text-align: center;
  width: 31px;
  border: 0;
  height: 31px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.exhibitions-initiatives .ui-datepicker .ui-datepicker-calendar .ui-state-highlight {
  border: 1px solid #000000;
  border-radius: 50%;
  width: 31px;
  color: #000000;
  height: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
}
.exhibitions-initiatives .ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default {
  border: 1px solid #000000;
  border-radius: 50%;
  width: 31px;
  color: #000000;
  height: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* background-color: $light-blue; */
}
.exhibitions-initiatives .ui-datepicker .ui-datepicker-calendar .ui-state-active {
  border-radius: 50%;
  width: 31px;
  color: white;
  height: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000000;
}

.logo-container {
  margin-bottom: 50px;
}

.logo-container-footer img {
  max-width: 263px;
  max-height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.cmp-navigation__item--level-0:hover > .cmp-navigation__group {
  background: #ECECEC;
}

@media screen and (max-width: 767px) {
  .quote {
    margin-bottom: 30px;
  }
}
.quote__title {
  font-family: "Canela", Arial, sans-serif;
  font-size: 32px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 45px !important;
  letter-spacing: 0.01em;
  text-align: left;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .quote__title {
    font-size: 30px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 42px !important;
    letter-spacing: 0.01em;
    text-align: left;
  }
}
.quote__description {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 26px !important;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .quote__description {
    font-size: 16px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 26px !important;
    letter-spacing: 0em;
    text-align: left;
  }
}
.quote__textarea {
  font-family: "Canela", Arial, sans-serif;
  font-size: 24px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 36px !important;
  letter-spacing: 0.02em;
  text-align: left;
  margin-top: 50px;
  padding-top: 30px;
  position: relative;
  color: #000000;
  padding-right: 12.5%;
}
.quote__textarea:before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  position: absolute;
  background-color: #000000;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .quote__textarea {
    padding-right: 5%;
    font-size: 24px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 36px !important;
    letter-spacing: 0.02em;
    text-align: left;
  }
}
.quote__author {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 22px !important;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .quote__author {
    font-size: 14px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 22px !important;
    letter-spacing: 0em;
    text-align: left;
  }
}

.page-mostra .quote {
  margin-top: 0;
}

main.open-search-menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  main.open-search-menu .search__text--error {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  main.open-search-menu footer {
    margin-top: 300px;
  }
}

.open-search-window .search__container {
  display: block !important;
  min-height: 620px;
}
@media screen and (max-width: 767px) {
  .open-search-window .search__container {
    min-height: 550px;
  }
}
.open-search-window .hero-big-picture-container {
  display: none;
}
.open-search-window .hero-component-container {
  display: none;
}
.open-search-window .hero-container {
  display: none;
}
.open-search-window .toggle-menu {
  display: none;
}
.open-search-window .hero-container--video {
  display: none;
}
.open-search-window .newsLetter__maxi-container {
  display: none;
}
.open-search-window .breadcrumb {
  display: none;
}

.search__container {
  display: none;
}
.search__container.active-author {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .search__container-page {
    padding: 0 20px;
  }
}
.search__container-page .align-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.search__container-page .align-top .wrapper-img-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 0 !important;
}
@media screen and (max-width: 767px) {
  .search__container-page .align-top .wrapper-img-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.search__container-page .event-info {
  padding-left: 24px;
}
.search__container-page .event-info .event-img-container-top {
  display: none;
}
@media screen and (max-width: 767px) {
  .search__container-page .event-info .event-img-container-top {
    display: block !important;
    padding-top: 70.1754385965%;
    background-image: url(clientlib-site/resources/images/dipinto-verde.png);
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center !important;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
}
@media screen and (max-width: 767px) {
  .search__container-page .event-info {
    padding: 0 !important;
  }
}
.search__container-page .event-list-container .category {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .search__container-page .event-list-container .category {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.search__container-page .event-list-container .text-title {
  font-family: "Canela", Arial, sans-serif;
  font-size: 24px !important;
  font-weight: 300;
  line-height: 36px !important;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .search__container-page .event-list-container .text-title {
    padding: 0;
    margin-top: 25px;
  }
}
.search__container-page .event-list-container .data-event {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #6f6f6f;
  padding: 6px 0 0 !important;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .search__container-page .event-list-container .data-event {
    margin-top: 5px;
  }
}
.search__container-page .search__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 28px;
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
  row-gap: 20px;
  height: 15;
  white-space: nowrap;
  padding-bottom: 20px;
}
.search__container-page .search__filters .filter-item.event {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1024px) {
  .search__container-page .search__filters {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: auto;
    -webkit-column-gap: 47px !important;
       -moz-column-gap: 47px !important;
            column-gap: 47px !important;
  }
}
@media screen and (max-width: 767px) {
  .search__container-page .search__filters {
    margin-bottom: 18px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .search__container-page .search__filters {
    -ms-flex-wrap: unset;
        flex-wrap: unset;
    overflow-y: scroll;
  }
  .search__container-page .search__filters::-webkit-scrollbar {
    height: 0;
    background: transparent;
  }
  .search__container-page .search__filters::-webkit-scrollbar-track {
    height: 0;
    background-color: transparent;
  }
  .search__container-page .search__filters::-webkit-scrollbar-thumb {
    height: 0;
    background-color: transparent;
  }
}
.search__container-page .search__filters .filter-item {
  font-weight: 600;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  color: #000000;
  text-transform: uppercase;
  cursor: pointer;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.search__container-page .search__filters .filter-item[data-count="0"] {
  pointer-events: none;
}
.search__container-page .search__filters .filter-item:hover {
  color: #000000;
}
.search__container-page .search__filters .filter-item.active {
  color: #000000;
  display: block;
  position: relative;
}
.search__container-page .search__filters .filter-item.active:after {
  content: "";
  position: absolute;
  background-color: #000000;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
}
.search__container-page .search__filters .filter-item p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 0;
}
.search__container-page .search__container--input {
  margin-bottom: 100px !important;
}
.search__container-page .event-img {
  padding-right: 0 !important;
  display: block !important;
}
.search__container-page .event-img .search-img-container {
  /* @include breakpoint(mobile) { 
    margin-bottom: 25px;
  } */
  position: relative;
  width: 100%;
  padding-top: 61.8557%;
  overflow: hidden;
  background-color: #c4c4c4;
}
.search__container-page .event-img .search-img-container img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .search__container-page .event-img .event-img-container-top {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .search__container-page .event-date-container {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .search__container-page .event-single-container {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .search__container-page .event-list-container-main {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .search__container .search__list-description {
    margin-top: 16px;
  }
}
.search__container .search__list-description a {
  color: #000000;
  font-size: 16px;
  line-height: 26px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .search__container .search__list-description a {
    padding-bottom: 5px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #000000), color-stop(98%, #000000));
    background-image: linear-gradient(90deg, #000000 0, #000000 98%);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: left 85%;
  }
  .search__container .search__list-description a:after {
    display: none;
  }
}
.search__container .search__list-description a:after {
  content: "";
  position: absolute;
  background-color: #000000;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
}
.search__container .search__list-description a:hover:after {
  -webkit-animation: underline 0.5s ease;
          animation: underline 0.5s ease;
}
@keyframes underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.search__container,
.search__container-page {
  margin-top: 280px;
}
.search__container .event-list-container-main .event-list-container:first-child,
.search__container-page .event-list-container-main .event-list-container:first-child {
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 1024px) {
  .search__container,
  .search__container-page {
    margin-top: 230px;
    padding: 20px;
  }
}
.search__container .search__container--input,
.search__container-page .search__container--input {
  border-bottom: 1px solid #000000;
  margin-bottom: 70px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search__container .search__container--input .search__search-input,
.search__container-page .search__container--input .search__search-input {
  width: 100%;
  font-size: 85px !important;
  font-weight: 300;
  font-family: "Canela", Arial, sans-serif;
  color: #000000;
  border: 0;
  height: 85px;
  margin-bottom: 12px;
  outline: unset !important;
}
@media screen and (max-width: 767px) {
  .search__container .search__container--input .search__search-input,
  .search__container-page .search__container--input .search__search-input {
    font-size: 40px !important;
    height: 48px;
  }
}
.search__container .search__container--input .search__search-input::-webkit-input-placeholder, .search__container-page .search__container--input .search__search-input::-webkit-input-placeholder {
  color: #6f6f6f;
}
.search__container .search__container--input .search__search-input::-moz-placeholder, .search__container-page .search__container--input .search__search-input::-moz-placeholder {
  color: #6f6f6f;
}
.search__container .search__container--input .search__search-input:-ms-input-placeholder, .search__container-page .search__container--input .search__search-input:-ms-input-placeholder {
  color: #6f6f6f;
}
.search__container .search__container--input .search__search-input::-ms-input-placeholder, .search__container-page .search__container--input .search__search-input::-ms-input-placeholder {
  color: #6f6f6f;
}
.search__container .search__container--input .search__search-input::placeholder,
.search__container-page .search__container--input .search__search-input::placeholder {
  color: #6f6f6f;
}
.search__container .search__container--input .search__search-input:-ms-input-placeholder,
.search__container-page .search__container--input .search__search-input:-ms-input-placeholder {
  color: #6f6f6f;
}
.search__container .search__container--input .search__search-input::-ms-input-placeholder,
.search__container-page .search__container--input .search__search-input::-ms-input-placeholder {
  color: #6f6f6f;
}
.search__container .search__text--title,
.search__container-page .search__text--title {
  font-size: 12px !important;
  font-weight: 600;
  font-family: "Inter", Arial, sans-serif;
  text-transform: uppercase;
}
.search__container .search__fr_list,
.search__container .search__sr_list,
.search__container-page .search__fr_list,
.search__container-page .search__sr_list {
  list-style: none;
  padding-left: 0;
}
.search__container .search__frequent-requests.active-author,
.search__container-page .search__frequent-requests.active-author {
  display: block !important;
}
.search__container .search__frequent-requests .search__text--title,
.search__container-page .search__frequent-requests .search__text--title {
  margin-bottom: 12px;
}
.search__container .search__frequent-requests .search__fr_list .search__fr_list-item a,
.search__container-page .search__frequent-requests .search__fr_list .search__fr_list-item a {
  font-size: 16px;
  line-height: 29px;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
}
.search__container .search__frequent-requests .search__fr_list .search__fr_list-item a:hover,
.search__container-page .search__frequent-requests .search__fr_list .search__fr_list-item a:hover {
  text-decoration: underline !important;
}
.search__container .search__suggested-result,
.search__container-page .search__suggested-result {
  display: none;
}
.search__container .search__suggested-result.active-author,
.search__container-page .search__suggested-result.active-author {
  display: block !important;
}
.search__container .search__suggested-result .search__text--title,
.search__container-page .search__suggested-result .search__text--title {
  margin-bottom: 12px;
}
.search__container .search__suggested-result .search__sr_list .search__sr_list-item,
.search__container-page .search__suggested-result .search__sr_list .search__sr_list-item {
  padding: 40px 0;
  border-bottom: 1px solid #e0e0e0;
}
.search__container .search__suggested-result .search__sr_list .search__sr_list-item:first-child,
.search__container-page .search__suggested-result .search__sr_list .search__sr_list-item:first-child {
  border-top: 1px solid #e0e0e0;
}
.search__container .search__suggested-result .search__sr_list .search__sr_list-item .search__list-title,
.search__container-page .search__suggested-result .search__sr_list .search__sr_list-item .search__list-title {
  font-size: 12px !important;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 15px !important;
  font-family: "Inter", Arial, sans-serif;
  color: #000000;
}
.search__container .search__suggested-result .search__sr_list .search__sr_container,
.search__container-page .search__suggested-result .search__sr_list .search__sr_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search__container .search__text--error,
.search__container-page .search__text--error {
  display: none;
  margin-bottom: 300px;
}
.search__container .search__text--error.active-author,
.search__container-page .search__text--error.active-author {
  display: block !important;
}
.search__container .search__text--error .text--error_desription,
.search__container-page .search__text--error .text--error_desription {
  font-weight: 300;
  font-family: "Canela", Arial, sans-serif;
  font-size: 24px;
  line-height: 36px;
  color: #000000;
}
.search__container .search__text--error .text--error_desription a,
.search__container-page .search__text--error .text--error_desription a {
  color: #000000;
}
.search__container .search__text--error .text--error_desription b,
.search__container-page .search__text--error .text--error_desription b {
  font-weight: bold;
}
.search__container .search__text--error .text--error_desription p,
.search__container-page .search__text--error .text--error_desription p {
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}
.search__container .search__text--error .text--error_desription p a,
.search__container-page .search__text--error .text--error_desription p a {
  color: #000000;
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}
.search__container .search__text--error .text--error_desription p b,
.search__container-page .search__text--error .text--error_desription p b {
  font-weight: bold;
}
.search__container .search__text--error .text--error_desription p .size-8,
.search__container-page .search__text--error .text--error_desription p .size-8 {
  font-size: 8px !important;
}
.search__container .search__text--error .text--error_desription p .size-9,
.search__container-page .search__text--error .text--error_desription p .size-9 {
  font-size: 9px !important;
}
.search__container .search__text--error .text--error_desription p .size-10,
.search__container-page .search__text--error .text--error_desription p .size-10 {
  font-size: 10px !important;
}
.search__container .search__text--error .text--error_desription p .size-11,
.search__container-page .search__text--error .text--error_desription p .size-11 {
  font-size: 11px !important;
}
.search__container .search__text--error .text--error_desription p .size-12,
.search__container-page .search__text--error .text--error_desription p .size-12 {
  font-size: 12px !important;
}
.search__container .search__text--error .text--error_desription p .size-13,
.search__container-page .search__text--error .text--error_desription p .size-13 {
  font-size: 13px !important;
}
.search__container .search__text--error .text--error_desription p .size-14,
.search__container-page .search__text--error .text--error_desription p .size-14 {
  font-size: 14px !important;
}
.search__container .search__text--error .text--error_desription p .size-15,
.search__container-page .search__text--error .text--error_desription p .size-15 {
  font-size: 15px !important;
}
.search__container .search__text--error .text--error_desription p .size-16,
.search__container-page .search__text--error .text--error_desription p .size-16 {
  font-size: 16px !important;
}
.search__container .search__text--error .text--error_desription p .size-17,
.search__container-page .search__text--error .text--error_desription p .size-17 {
  font-size: 17px !important;
}
.search__container .search__text--error .text--error_desription p .size-18,
.search__container-page .search__text--error .text--error_desription p .size-18 {
  font-size: 18px !important;
}
.search__container .search__text--error .text--error_desription p .size-19,
.search__container-page .search__text--error .text--error_desription p .size-19 {
  font-size: 19px !important;
}
.search__container .search__text--error .text--error_desription p .size-20,
.search__container-page .search__text--error .text--error_desription p .size-20 {
  font-size: 20px !important;
}
.search__container .search__text--error .text--error_desription p .size-21,
.search__container-page .search__text--error .text--error_desription p .size-21 {
  font-size: 21px !important;
}
.search__container .search__text--error .text--error_desription p .size-22,
.search__container-page .search__text--error .text--error_desription p .size-22 {
  font-size: 22px !important;
}
.search__container .search__text--error .text--error_desription p .size-23,
.search__container-page .search__text--error .text--error_desription p .size-23 {
  font-size: 23px !important;
}
.search__container .search__text--error .text--error_desription p .size-24,
.search__container-page .search__text--error .text--error_desription p .size-24 {
  font-size: 24px !important;
}
.search__container .search__text--error .text--error_desription p .size-25,
.search__container-page .search__text--error .text--error_desription p .size-25 {
  font-size: 25px !important;
}
.search__container .search__text--error .text--error_desription p .size-26,
.search__container-page .search__text--error .text--error_desription p .size-26 {
  font-size: 26px !important;
}
.search__container .search__text--error .text--error_desription p .size-27,
.search__container-page .search__text--error .text--error_desription p .size-27 {
  font-size: 27px !important;
}
.search__container .search__text--error .text--error_desription p .size-28,
.search__container-page .search__text--error .text--error_desription p .size-28 {
  font-size: 28px !important;
}
.search__container .search__text--error .text--error_desription p .size-29,
.search__container-page .search__text--error .text--error_desription p .size-29 {
  font-size: 29px !important;
}
.search__container .btn-container,
.search__container-page .btn-container {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .search__container .btn-container,
  .search__container-page .btn-container {
    margin-top: 20px !important;
    padding: 0;
  }
}
.search__container .search__icon,
.search__container-page .search__icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: 25px;
  background-image: url("clientlib-site/resources/images/icons/search.svg");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  vertical-align: middle;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border: 0;
  outline: unset;
}
.search__container .search__icon:hover,
.search__container-page .search__icon:hover {
  background-image: url("clientlib-site/resources/images/icons/search-blue.svg");
}
@media screen and (max-width: 767px) {
  .search__container .search__icon,
  .search__container-page .search__icon {
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
}

.container-left-side {
  margin-top: 45px;
  position: absolute;
  left: 0;
  margin-left: 13.6%;
}
@media screen and (max-width: 767px) {
  .container-left-side {
    margin-bottom: 10px !important;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .container-left-side .container-left-side-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.container-left-side .last-tag-mobile {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .container-left-side .last-tag-mobile {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .container-left-side .last-tag-desktop {
    display: none !important;
  }
}
.container-left-side .last-icon-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .container-left-side .last-icon-mobile {
    display: inline-block;
    max-width: 245px;
    width: 70%;
  }
}
@media screen and (max-width: 1440px) {
  .container-left-side {
    margin-left: 9.6%;
  }
}
@media screen and (max-width: 1024px) {
  .container-left-side {
    margin-left: unset;
  }
}
@media screen and (max-width: 767px) {
  .container-left-side {
    position: relative;
    left: unset;
  }
}
.container-left-side .container-left-side-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .container-left-side .container-left-side-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.container-left-side .container-left-side-content .container-left-side-title {
  width: 25%;
  height: 100%;
}
.container-left-side .container-left-side-content .container-left-side-title .title {
  padding-top: 3px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
}
.container-left-side .container-left-side-content .container-left-side-paragraph {
  width: 100%;
  height: 100%;
  max-width: 245px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #6f6f6f;
}
.container-left-side .container-left-side-content .container-left-side-paragraph p {
  margin-bottom: 0 !important;
}
.container-left-side .sidebar-button {
  display: block;
  text-align: center;
  border: 1px solid #000000;
  padding: 10px 0;
  margin-top: 24px;
  margin-bottom: 45px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media screen and (min-width: 1025px) {
  .container-left-side .sidebar-button {
    width: 70%;
  }
}
@media screen and (max-width: 1204px) {
  .container-left-side .sidebar-button {
    width: 100%;
  }
}
.container-left-side .sidebar-button:hover {
  border-color: #000000;
  color: #ffffff;
  background-color: #000000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.container-left-side .sidebar-button:hover .button {
  color: #ffffff;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.container-left-side .sidebar-button .button {
  text-decoration: none;
  color: #000000;
}
.container-left-side .sidebar-button .button .button-text {
  font-size: 12px;
  font-weight: 600;
  font-family: "Inter", Arial, sans-serif;
}
.container-left-side .sidebar-cta {
  margin: 32px 0;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 4px 6px 4px;
}
.container-left-side .sidebar-cta:hover .arrow-cta {
  color: #000000;
  background-size: calc(100% - 28px) 2px;
}
.container-left-side .sidebar-cta:hover .arrow-cta .arrow-right {
  -webkit-filter: brightness(0);
          filter: brightness(0);
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
}
.container-left-side .sidebar-cta .arrow-cta {
  text-decoration: none;
  color: #000000;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
  display: inline;
}
.container-left-side .sidebar-cta .sidebar-cta-info {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 10px;
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .container-left-side .sidebar-cta .sidebar-cta-info {
    font-size: 12px;
  }
}
.container-left-side .sidebar-cta span:hover {
  color: #000000;
}
.container-left-side .sidebar-label-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.container-left-side .sidebar-label-container .title {
  display: none;
  padding-top: 3px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .container-left-side .sidebar-label-container .title {
    display: block;
  }
}
.container-left-side .sidebar-label-container .sidebar-label {
  display: inline-block;
  border: 1px solid #000000;
  border-radius: 15px;
  padding: 7px 14px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  margin-bottom: 45px;
  line-height: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .container-left-side .sidebar-label-container .sidebar-label {
    margin: 0;
  }
}

/* .desktop-only{
  display: none;
  @include breakpoint(desktop){
    display: block;
  }
} */
.mobile-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}

.container-right-side {
  background-color: bisque;
  height: 100px;
}

.min-height {
  min-height: 1000px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .min-height {
    margin-top: 60px;
  }
}

.sidebar-margin-top {
  margin-top: 74px;
}

.margin-bottom {
  margin-bottom: 45px;
}

.noscroll {
  overflow: hidden;
}

.cmp-carousel {
  margin-bottom: 60px;
  margin-top: 50px;
}
.cmp-carousel.slider__overlay {
  margin-bottom: 170px;
}
@media screen and (max-width: 767px) {
  .cmp-carousel.slider__overlay {
    margin-bottom: 110px;
  }
}
.cmp-carousel.slider__overlay .info-card-cta {
  display: none;
}
.cmp-carousel.slider__overlay .author {
  display: none;
}
.cmp-carousel.slider__overlay .copyright {
  display: none;
}
.cmp-carousel.slider__overlay .carousel-description {
  display: none;
}
.cmp-carousel.slider__overlay .city-event {
  font-weight: 300 !important;
}
.cmp-carousel.slider__overlay .carousel-image-text-top {
  color: #000000 !important;
}
@media screen and (max-width: 1024px) {
  .cmp-carousel.slider__overlay .carousel-image {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .cmp-carousel.slider__overlay .slider-container .slick-list {
    padding: 0 10% 0 0;
  }
}
@media screen and (max-width: 767px) {
  .cmp-carousel.slider__overlay .carousel-image {
    margin: 0 !important;
  }
}
@media screen and (min-width: 1025px) {
  .cmp-carousel.slider__overlay.equal-height-img .img-container {
    padding-top: 138.1868131868%;
  }
  .cmp-carousel.slider__overlay.equal-height-img .img-container .slider-image {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.cmp-carousel.slider__overlay .title-component {
  font-size: 48px !important;
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .cmp-carousel.slider__overlay .title-component {
    font-size: 36px !important;
    line-height: 60px !important;
  }
}
.cmp-carousel .hidden-exhibition {
  display: none;
}
.cmp-carousel .carousel-image-container {
  overflow: initial !important;
}
.cmp-carousel .carousel-image-container.show-lable .lable {
  display: block;
  z-index: 100 !important;
}
.cmp-carousel.panel-grey {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .cmp-carousel.panel-grey {
    padding: 80px 0 90px 0;
  }
}
.cmp-carousel.simple-carousel.equal-height-img .img-container {
  padding-top: 138.1868131868%;
}
@media screen and (max-width: 767px) {
  .cmp-carousel.simple-carousel.equal-height-img .img-container {
    padding-top: 73.1343283582%;
  }
}
.cmp-carousel.simple-carousel.equal-height-img .img-container .slider-image {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cmp-carousel .hidden-event {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .cmp-carousel .hidden-event {
    display: none !important;
  }
}
.cmp-carousel .load-more {
  display: none;
}
@media screen and (max-width: 767px) {
  .cmp-carousel .load-more {
    display: block;
  }
}
.cmp-carousel .load-more-slider-mostre {
  display: none;
}
@media screen and (max-width: 767px) {
  .cmp-carousel .load-more-slider-mostre {
    display: block;
  }
}

.slider-container {
  margin-right: 0;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .slider-container {
    margin: 0;
  }
}
.slider-container .slick-slide {
  margin-left: 12px;
  margin-right: 12px;
}
@media screen and (max-width: 1024px) {
  .slider-container .slick-list {
    padding: 0 9%;
  }
}
@media screen and (min-width: 1025px) {
  .slider-container .slick-list {
    padding: 0 9%;
  }
}
@media screen and (min-width: 1441px) {
  .slider-container .slick-list {
    padding: 0 13%;
  }
}
.slider-container .slider {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .slider-container .slider {
    padding: 0;
  }
}
.slider-container .carousel-image:hover .img-container {
  display: block;
  overflow: hidden;
  position: relative;
}
.slider-container .carousel-image:hover .img-container .slider-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.slider-container .carousel-image .slider-image {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.slider-container .carousel-image .carousel-image-text span {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  background-position: left bottom;
  padding-bottom: 3px;
  display: inline;
}
.slider-container .carousel-image:hover .carousel-image-text h3 {
  color: #000000;
  background-size: 100% 2px;
}
.slider-container .slider-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-container .img-container {
  display: block;
  position: relative;
  overflow: hidden;
}
.slider-container .img-container:hover {
  cursor: pointer !important;
}
.slider-container .carousel-image-remove-pointer:hover {
  cursor: default !important;
}

@media screen and (max-width: 767px) {
  .slider-container-inner .load-more-slider-mostre {
    padding: 0 20px;
  }
}

.slider-title-container {
  padding: 0 10px 0 10px;
}
@media screen and (max-width: 1024px) {
  .slider-title-container {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .slider-title-container {
    padding: 0 15px;
  }
}
.slider-title-container .title-controls {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; /**/
}
@media screen and (max-width: 767px) {
  .slider-title-container .title-controls {
    margin-bottom: 23px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .slider-title-container .title-controls h1 {
    margin-bottom: 0;
  }
}

.carousel-image:hover .zoom-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
@media screen and (max-width: 767px) {
  .carousel-image {
    margin-bottom: 55px !important;
    padding: 0 20px;
  }
}
.carousel-image .carousel-image-container {
  display: block;
  overflow: hidden;
  position: relative;
}
.carousel-image .carousel-image-container .lable {
  display: none;
  background-color: #ffffff;
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 7px 14px;
  border-radius: 15px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  text-align: right;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
}
.carousel-image .carousel-image-container .slider-img {
  height: 100%;
  width: 100%;
  /*      background-image: url("clientlib-site/resources/images/CUCCHI_LE_STIMMATE_.png"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.carousel-image .carousel-image-container + .carousel-image-text h3 {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  background-position: left bottom;
  padding-bottom: 6px;
  display: inline;
}
.carousel-image .carousel-image-container:hover + .carousel-image-text h3 {
  color: #000000;
  background-size: 100% 2px;
}
.carousel-image .carousel-image-container .zoom-image {
  padding-top: 138.1868131868%;
  background-size: cover !important;
  background-position: center !important;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media screen and (max-width: 767px) {
  .carousel-image .carousel-image-container .zoom-image {
    padding-top: 73.1343283582%;
  }
}
.carousel-image .show-lable .lable {
  display: block;
}
.carousel-image .carousel-image-text {
  text-decoration: none;
  color: #000000;
}
.carousel-image .carousel-image-text:hover h3 {
  background-size: 0% 2px;
}
.carousel-image .carousel-image-text .carousel-image-text-top {
  padding: 25px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.carousel-image .carousel-image-text .carousel-image-text-top p {
  margin-bottom: 0 !important;
}
.carousel-image .carousel-image-text .carousel-image-text-top .carousel-image-text-title {
  display: inline-block;
}
.carousel-image .carousel-image-text .carousel-image-text-top .carousel-image-text-title p {
  display: inline-block;
  padding-right: 16px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
}
.carousel-image .carousel-image-text .carousel-image-text-top .carousel-image-text-date {
  display: inline-block;
}
.carousel-image .carousel-image-text .carousel-image-text-top .carousel-image-text-date p {
  display: inline-block;
  padding-left: 16px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}
.carousel-image .carousel-image-text .carousel-image-text-top .city-event {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Inter", Arial, sans-serif;
  line-height: 22px;
}
.carousel-image .carousel-image-text .carousel-image-text-top .date-event {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
}
.carousel-image .carousel-image-text .carousel-image-text-top__separator {
  height: 14px;
  width: 1px;
  margin: -2px 14px;
  background-color: #000000;
  display: inline-block;
}
.carousel-image .carousel-image-text .carousel-title {
  margin: 0;
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px !important;
  line-height: 36px !important;
  letter-spacing: 0.02em;
  color: #000000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  cursor: pointer !important;
}
@media screen and (max-width: 767px) {
  .carousel-image {
    margin: 0;
  }
}

.controls {
  text-align: right;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .controls {
    display: none;
  }
}
.controls .hero-arrows .big-arrow-left {
  background-image: url("clientlib-site/resources/images/icons/big-arrow-left-svg.svg") !important;
  width: 28px;
  height: 16px;
}
.controls .hero-arrows .big-arrow-right {
  background-image: url("clientlib-site/resources/images/icons/big-arrow-right-svg.svg") !important;
  width: 28px;
  height: 16px;
}
.controls .hero-arrows .big-arrow-right:hover, .controls .hero-arrows .big-arrow-left:hover {
  -webkit-filter: invert(0.4);
          filter: invert(0.4);
}

a {
  outline: 0 !important;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #f8f8f8;
  opacity: 1;
}

.close-btn-slider-overlay {
  cursor: pointer !important;
  position: absolute;
  right: 30px;
  top: 30px;
  height: 16px;
  width: 16px;
  background-image: url("clientlib-site/resources/images/icons/close-btn.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1045;
}
@media screen and (max-width: 767px) {
  .close-btn-slider-overlay {
    right: 20px;
    top: 25px;
  }
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .mfp-container {
    overflow: scroll;
    position: fixed;
  }
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: absolute;
  display: inline-block;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
  top: 10%;
  height: 60%;
}
@media screen and (max-width: 767px) {
  .mfp-content {
    width: 100%;
    height: 60%;
  }
}
.mfp-content .carousel-title {
  display: none;
}
.mfp-content .container-text {
  position: absolute;
  max-width: 765px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 50px;
}
.mfp-content .container-text.block-cta {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .mfp-content .container-text {
    padding: 0 20px 10% 20px;
  }
}
@media screen and (max-width: 767px) {
  .mfp-content .container-text {
    max-width: unset;
    position: relative;
    width: 100%;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.mfp-content .city-event {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  line-height: 22px;
}
.mfp-content .date-event {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  padding-left: 14px;
  margin-left: 14px;
  border-left: 1px solid #000000;
}
.mfp-content .carousel-description {
  margin: 0;
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: #000000;
}
.mfp-content .carousel-description p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.mfp-content .carousel-description p b {
  font-weight: bold;
}
.mfp-content .carousel-description p .size-8 {
  font-size: 8px !important;
}
.mfp-content .carousel-description p .size-9 {
  font-size: 9px !important;
}
.mfp-content .carousel-description p .size-10 {
  font-size: 10px !important;
}
.mfp-content .carousel-description p .size-11 {
  font-size: 11px !important;
}
.mfp-content .carousel-description p .size-12 {
  font-size: 12px !important;
}
.mfp-content .carousel-description p .size-13 {
  font-size: 13px !important;
}
.mfp-content .carousel-description p .size-14 {
  font-size: 14px !important;
}
.mfp-content .carousel-description p .size-15 {
  font-size: 15px !important;
}
.mfp-content .carousel-description p .size-16 {
  font-size: 16px !important;
}
.mfp-content .carousel-description p .size-17 {
  font-size: 17px !important;
}
.mfp-content .carousel-description p .size-18 {
  font-size: 18px !important;
}
.mfp-content .carousel-description p .size-19 {
  font-size: 19px !important;
}
.mfp-content .carousel-description p .size-20 {
  font-size: 20px !important;
}
.mfp-content .carousel-description p .size-21 {
  font-size: 21px !important;
}
.mfp-content .carousel-description p .size-22 {
  font-size: 22px !important;
}
.mfp-content .carousel-description p .size-23 {
  font-size: 23px !important;
}
.mfp-content .carousel-description p .size-24 {
  font-size: 24px !important;
}
.mfp-content .carousel-description p .size-25 {
  font-size: 25px !important;
}
.mfp-content .carousel-description p .size-26 {
  font-size: 26px !important;
}
.mfp-content .carousel-description p .size-27 {
  font-size: 27px !important;
}
.mfp-content .carousel-description p .size-28 {
  font-size: 28px !important;
}
.mfp-content .carousel-description p .size-29 {
  font-size: 29px !important;
}
.mfp-content .carousel-description a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.mfp-content .carousel-description b {
  font-weight: bold;
}
.mfp-content .carousel-image-container {
  color: #000000 !important;
}
.mfp-content .author {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  font-family: "Inter", Arial, sans-serif;
  color: #000000;
  margin-top: 20px;
}
.mfp-content .author a {
  color: #000000;
  display: inline-block;
  position: relative;
}
.mfp-content .author a:after {
  content: "";
  position: absolute;
  background-color: #000000;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
}
.mfp-content .author b {
  font-weight: bold;
}
.mfp-content .author p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.mfp-content .author p b {
  font-weight: bold;
}
.mfp-content .author p .size-8 {
  font-size: 8px !important;
}
.mfp-content .author p .size-9 {
  font-size: 9px !important;
}
.mfp-content .author p .size-10 {
  font-size: 10px !important;
}
.mfp-content .author p .size-11 {
  font-size: 11px !important;
}
.mfp-content .author p .size-12 {
  font-size: 12px !important;
}
.mfp-content .author p .size-13 {
  font-size: 13px !important;
}
.mfp-content .author p .size-14 {
  font-size: 14px !important;
}
.mfp-content .author p .size-15 {
  font-size: 15px !important;
}
.mfp-content .author p .size-16 {
  font-size: 16px !important;
}
.mfp-content .author p .size-17 {
  font-size: 17px !important;
}
.mfp-content .author p .size-18 {
  font-size: 18px !important;
}
.mfp-content .author p .size-19 {
  font-size: 19px !important;
}
.mfp-content .author p .size-20 {
  font-size: 20px !important;
}
.mfp-content .author p .size-21 {
  font-size: 21px !important;
}
.mfp-content .author p .size-22 {
  font-size: 22px !important;
}
.mfp-content .author p .size-23 {
  font-size: 23px !important;
}
.mfp-content .author p .size-24 {
  font-size: 24px !important;
}
.mfp-content .author p .size-25 {
  font-size: 25px !important;
}
.mfp-content .author p .size-26 {
  font-size: 26px !important;
}
.mfp-content .author p .size-27 {
  font-size: 27px !important;
}
.mfp-content .author p .size-28 {
  font-size: 28px !important;
}
.mfp-content .author p .size-29 {
  font-size: 29px !important;
}
.mfp-content .copyright {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  font-family: "Inter", Arial, sans-serif;
  color: #000000;
  margin-top: 20px;
}
.mfp-content .info-card-cta {
  margin-top: 40px;
}
.mfp-content .info-card-cta .arrow-cta {
  text-decoration: none;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mfp-content .info-card-cta .arrow-cta:hover {
  color: #000000;
}
.mfp-content .info-card-cta .arrow-cta:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}
@media screen and (max-width: 767px) {
  button.mfp-close,
  button.mfp-arrow {
    margin-left: 20px;
    margin-top: 10px;
  }
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .mfp-arrow {
    margin-top: 0;
    height: 50px;
    width: 50px;
  }
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
}
@media screen and (max-width: 767px) {
  .mfp-arrow:before,
  .mfp-arrow:after {
    display: block;
    position: absolute;
    top: 10px;
    width: 50px;
    height: 50px;
  }
}

.mfp-arrow-left {
  left: 10%;
  position: absolute;
  top: 45%;
  display: inline-block;
  background-size: 26px !important;
  width: 30px;
  height: 30px;
  background-image: url("clientlib-site/resources/images/icons/big-arrow-left-svg.svg") !important;
  background-color: transparent;
  background-repeat: no-repeat !important;
  margin-right: 10px;
  vertical-align: middle;
  -webkit-transition: 0.2s all ease !important;
  transition: 0.2s all ease !important;
}
.mfp-arrow-left:hover {
  -webkit-filter: invert(55%) sepia(11%) saturate(1584%) hue-rotate(168deg) brightness(90%) contrast(92%);
          filter: invert(55%) sepia(11%) saturate(1584%) hue-rotate(168deg) brightness(90%) contrast(92%);
}
@media screen and (max-width: 767px) {
  .mfp-arrow-left {
    left: 0;
    position: absolute;
    top: 15px;
  }
}

.mfp-arrow-right {
  right: 10%;
  position: absolute;
  top: 45%;
  display: inline-block;
  background-size: 26px !important;
  width: 30px;
  height: 30px;
  background-image: url("clientlib-site/resources/images/icons/big-arrow-right-svg.svg") !important;
  background-color: transparent;
  background-repeat: no-repeat !important;
  margin-left: 10px;
  vertical-align: middle;
  -webkit-transition: 0.2s all ease !important;
  transition: 0.2s all ease !important;
}
.mfp-arrow-right:hover {
  -webkit-filter: invert(55%) sepia(11%) saturate(1584%) hue-rotate(168deg) brightness(90%) contrast(92%);
          filter: invert(55%) sepia(11%) saturate(1584%) hue-rotate(168deg) brightness(90%) contrast(92%);
}
@media screen and (max-width: 767px) {
  .mfp-arrow-right {
    left: 55px;
    position: absolute;
    top: 15px;
  }
}

img.mfp-img {
  position: relative;
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none !important; /**/
}
@media screen and (max-width: 1024px) {
  img.mfp-img {
    background-color: #e0e0e0;
  }
}

.mfp-figure {
  line-height: 0;
  width: 100%;
  height: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: auto;
}

.icon-expand {
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 20px;
  height: 39px;
  width: 39px;
  background-image: url("clientlib-site/resources/images/icons/expand-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.icon-close-carousel {
  cursor: pointer;
  position: fixed;
  right: 24px;
  top: 20px;
  height: 40px;
  width: 39px;
  background-image: url("clientlib-site/resources/images/icons/close-icon-carousel.svg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1102;
}

.img-full-screen-container {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1100;
  background-color: #e0e0e0;
  background-repeat: no-repeat;
  background-size: cover;
}

.img-full-screen {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1101;
  background-position: center;
}
@media screen and (min-width: 1025px) {
  .img-full-screen {
    background-size: cover;
    cursor: -webkit-grab;
    cursor: grab;
    position: fixed;
    inset: 0;
  }
}

.img-full-screen-mobile {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1101;
  background-position: left;
}

.img-mobile-full {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1101;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
}

.page-gallerie-off .cmp-carousel {
  margin-bottom: 130px;
  margin-top: 0;
}

.rich-text {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
}
.rich-text p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.rich-text p a {
  color: #000000;
  text-decoration: underline !important;
  width: 300px;
  height: 400px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.rich-text p b {
  font-weight: bold;
}
.rich-text p .size-8 {
  font-size: 8px !important;
}
.rich-text p .size-9 {
  font-size: 9px !important;
}
.rich-text p .size-10 {
  font-size: 10px !important;
}
.rich-text p .size-11 {
  font-size: 11px !important;
}
.rich-text p .size-12 {
  font-size: 12px !important;
}
.rich-text p .size-13 {
  font-size: 13px !important;
}
.rich-text p .size-14 {
  font-size: 14px !important;
}
.rich-text p .size-15 {
  font-size: 15px !important;
}
.rich-text p .size-16 {
  font-size: 16px !important;
}
.rich-text p .size-17 {
  font-size: 17px !important;
}
.rich-text p .size-18 {
  font-size: 18px !important;
}
.rich-text p .size-19 {
  font-size: 19px !important;
}
.rich-text p .size-20 {
  font-size: 20px !important;
}
.rich-text p .size-21 {
  font-size: 21px !important;
}
.rich-text p .size-22 {
  font-size: 22px !important;
}
.rich-text p .size-23 {
  font-size: 23px !important;
}
.rich-text p .size-24 {
  font-size: 24px !important;
}
.rich-text p .size-25 {
  font-size: 25px !important;
}
.rich-text p .size-26 {
  font-size: 26px !important;
}
.rich-text p .size-27 {
  font-size: 27px !important;
}
.rich-text p .size-28 {
  font-size: 28px !important;
}
.rich-text p .size-29 {
  font-size: 29px !important;
}
.rich-text a {
  color: #000000;
  text-decoration: underline !important;
  width: 300px;
  height: 400px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.rich-text b {
  font-weight: bold;
}

.description {
  max-width: 460px;
  width: 100%;
  font-weight: 300px;
}
@media screen and (max-width: 767px) {
  .description {
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 50px;
  }
}

/* .cmp-title {}
.cmp-title__text {}
.cmp-title__link {} */
.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

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

.video-list .video-gallery {
  margin-top: 90px;
}
.video-list__item {
  margin-bottom: 70px;
}
.video-list__alert {
  font-family: "Canela", Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #000000;
}
.video-list__openFilters {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  display: none;
}
@media screen and (max-width: 767px) {
  .video-list__openFilters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    cursor: pointer;
  }
  .video-list__openFilters span {
    margin-left: 10px;
    margin-bottom: 0;
  }
}
.video-list__filterTags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video-list__filterTags .hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  .video-list__filterTags {
    display: none;
  }
}
.video-list__filterTags__wrapper {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.video-list__filterTags__item {
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0.08em;
  text-align: right;
  color: #000000;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-right: 12px;
  border: 1px solid #000000;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video-list__filterTags__item span {
  width: 9px;
  height: 9px;
  cursor: pointer;
}
.video-list__filterTags .action {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  text-transform: uppercase;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  cursor: pointer;
  white-space: nowrap;
}
.video-list__filterTags .action--reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  background-color: #ffffff;
  color: #000000;
}
.video-list__filterTags .action--reset:hover {
  color: #000000;
  text-decoration: underline;
}
.video-list__filterTags .action--submit {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.video-list__filterTags .action--submit:hover {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.video-list .hidden {
  display: none;
}
.video-list__filters {
  margin-bottom: 40px;
}
.video-list__filters .filters {
  position: relative;
  width: 100%;
}
.video-list__filters .filters__item {
  margin-left: 20px;
  position: relative;
  background: none;
  border: none;
}
@media screen and (max-width: 767px) {
  .video-list__filters .filters__item {
    margin-left: 0;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
  }
}
.video-list__filters .filters__item.open .filters__toggle:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.video-list__filters .filters__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .video-list__filters .filters__wrapper {
    overflow: auto;
    height: 100%;
    display: block;
  }
}
.video-list__filters .filters__close {
  display: none;
}
@media screen and (max-width: 767px) {
  .video-list__filters .filters__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
  }
  .video-list__filters .filters__close span {
    margin: 0;
  }
}
.video-list__filters .filters__toggle {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: right;
  color: #000000;
  text-transform: uppercase;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.video-list__filters .filters__toggle:after {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  background-image: url("clientlib-site/resources/images/icons/vectordown.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
@media screen and (max-width: 767px) {
  .video-list__filters .filters__toggle:after {
    width: 10px;
    height: 5px;
    margin-right: 10px;
  }
}
.video-list__filters .filters__list {
  display: none;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 20px;
  z-index: 2;
  min-width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .video-list__filters .filters__list {
    width: 100%;
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    margin-top: 40px;
  }
}
.video-list__filters .filters__option {
  background-color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  width: 100%;
}
.video-list__filters .filters__option label {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video-list__filters .filters__option label:first-child {
  margin-top: 10px;
}
.video-list__filters .filters__option label:last-child {
  margin-bottom: 10px !important;
}
.video-list__filters .filters__option label:last-of-type {
  margin-bottom: 0;
}
.video-list__filters .filters__option label input {
  cursor: pointer;
  opacity: 0;
  position: relative;
}
.video-list__filters .filters__option label input:checked + span:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 15px;
  left: 25px;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.video-list__filters .filters__option label input:focus-visible + span {
  border: 1px solid #000;
  width: 100%;
  height: 100%;
}
.video-list__filters .filters__option label span {
  display: block;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  color: #000000;
  padding: 10px 20px 10px 40px;
  cursor: pointer;
}
.video-list__filters .filters__option label span::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 14px;
  width: 14px;
  height: 14px;
  outline: 1px solid #e0e0e0;
  background-color: #ffffff;
}
.video-list__filters .filters__actions {
  display: none;
}
@media screen and (max-width: 767px) {
  .video-list__filters .filters__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}
.video-list__filters .filters__actions .action {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  text-transform: uppercase;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  cursor: pointer;
}
.video-list__filters .filters__actions .action--reset {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.video-list__filters .filters__actions .action--reset:hover {
  border: 1px solid #000000;
  color: #000000;
}
.video-list__filters .filters__actions .action--submit {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.video-list__filters .filters__actions .action--submit:hover {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .video-list__filters .filters {
    display: none;
  }
  .video-list__filters .filters.open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding: 20px;
    padding-top: 110px;
    background-color: #ffffff;
    overflow: hidden;
    padding-bottom: 100px;
  }
  .video-list__filters .filters.open .filters__toggle {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.video-list__filters .hidden {
  display: none;
}
.video-list__iframe {
  padding-top: 56.25%;
  height: 0;
  position: relative;
}
.video-list__iframe iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.video-list__title {
  font-family: "Canela", Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #000000;
  margin-top: 21px;
}
.video-list__title p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.video-list__title p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.video-list__title p b {
  font-weight: bold;
}
.video-list__title p .size-8 {
  font-size: 8px !important;
}
.video-list__title p .size-9 {
  font-size: 9px !important;
}
.video-list__title p .size-10 {
  font-size: 10px !important;
}
.video-list__title p .size-11 {
  font-size: 11px !important;
}
.video-list__title p .size-12 {
  font-size: 12px !important;
}
.video-list__title p .size-13 {
  font-size: 13px !important;
}
.video-list__title p .size-14 {
  font-size: 14px !important;
}
.video-list__title p .size-15 {
  font-size: 15px !important;
}
.video-list__title p .size-16 {
  font-size: 16px !important;
}
.video-list__title p .size-17 {
  font-size: 17px !important;
}
.video-list__title p .size-18 {
  font-size: 18px !important;
}
.video-list__title p .size-19 {
  font-size: 19px !important;
}
.video-list__title p .size-20 {
  font-size: 20px !important;
}
.video-list__title p .size-21 {
  font-size: 21px !important;
}
.video-list__title p .size-22 {
  font-size: 22px !important;
}
.video-list__title p .size-23 {
  font-size: 23px !important;
}
.video-list__title p .size-24 {
  font-size: 24px !important;
}
.video-list__title p .size-25 {
  font-size: 25px !important;
}
.video-list__title p .size-26 {
  font-size: 26px !important;
}
.video-list__title p .size-27 {
  font-size: 27px !important;
}
.video-list__title p .size-28 {
  font-size: 28px !important;
}
.video-list__title p .size-29 {
  font-size: 29px !important;
}
.video-list__title a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.video-list__title b {
  font-weight: bold;
}
.video-list__more {
  margin-top: 80px;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .video-list__more {
    margin-top: 70px;
  }
}
.video-list__more button {
  width: 100%;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  padding: 15px 20px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.video-list__more button:hover {
  border: 1px solid #000000;
  color: #000000;
}

.component-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 60px;
  padding-top: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.component-title-container .component-title {
  margin-bottom: 0;
}
.component-title-container .component-title p {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .component-title-container {
    margin-right: 0;
  }
  .component-title-container .visit-component-title {
    font-size: 40px !important;
    margin: 0 0 40px;
  }
}
.component-title-container .visit-title-cta-container {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.component-title-container .visit-title-cta-container a {
  color: #000000;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
}
.component-title-container .visit-title-cta-container a:hover {
  color: #000000;
  background-size: calc(100% - 28px) 2px;
  font-weight: bold;
  /*         &+a{
            .art-card-cta{
              .cta-title{
                color: $light-blue;
                background-size: calc(100% - 28px) 2px;
              }
              .arrow-right {

                background-image: url("clientlib-site/resources/images/icons/arrow.png");
                filter: brightness(0);
              }
            }
          } */
}
.component-title-container .visit-title-cta-container a:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.component-title-container .visit-title-cta-container a + a:hover .art-card-cta .cta-title {
  color: #000000;
  background-size: calc(100% - 28px) 2px;
}
.component-title-container .visit-title-cta-container a + a:hover .art-card-cta .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
@media screen and (max-width: 767px) {
  .component-title-container .visit-title-cta-container {
    display: none;
  }
}

.visit-images-container {
  margin-bottom: 50px;
  height: 100%;
}
.visit-images-container .art-card-cta-container {
  display: block;
}
.visit-images-container a:not(.art-card-cta-container) {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .visit-images-container {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .visit-images-container {
    padding: 0 20px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .visit-images-container.big-image-right {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .visit-images-container .art-card-cta {
    margin-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
  }
}
.visit-images-container .art-card-cta-container .art-card-cta:hover .arrow-right {
  background-image: url(clientlib-site/resources/images/icons/arrow.png);
  width: 16px;
}

.hidden-event {
  display: none;
}

.cta-mobile {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .cta-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
  }
}

.swap-img-position {
  float: right;
}

.art-card-container a {
  text-decoration: none;
}

.visit-cta {
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .visit-cta {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .visit-cta {
    margin-top: 70px;
  }
}

.two-images-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.two-images-container .art-card-cta-container {
  display: block;
}
.two-images-container .cta-title {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
}
.two-images-container .art-card-cta span:first-of-type {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
}
.two-images-container > a:hover {
  /*     &+a{
        .art-card-cta{
          .cta-title{
            color: $light-blue;
            background-size: 100% 2px;
          }
          .arrow-right {

            background-image: url("clientlib-site/resources/images/icons/arrow.png");
            filter: brightness(0);
          }
        }
      }
      &+a{
        .art-card-cta{
          .cta-title{
            color: $light-blue;
            background-size: calc(100% - 28px) 2px;
          }
          .arrow-right {

            background-image: url("clientlib-site/resources/images/icons/arrow.png");
            filter: brightness(0);
          }
        }
        .art-card-cta{
          span:first-of-type {
            color: $light-blue;
          background-size: 100% 2px;
        }
        }
      } */
}
.two-images-container > a:hover .cta-title {
  color: #000000;
  background-size: 100% 2px;
}
.two-images-container > a:hover .art-card-cta span:first-of-type {
  color: #000000;
  background-size: 100% 2px;
}
.two-images-container > a:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.two-images-container > a:hover .real-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
@media screen and (max-width: 1024px) {
  .two-images-container {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .two-images-container {
    margin: 0;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .two-images-container .art-card-cta {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .two-images-container .two-images-cta .art-card-cta-container {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .two-images-container > a:last-of-type {
    margin-bottom: 48px;
  }
}

.two-images-picture {
  width: 100%;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .two-images-picture {
    margin: 0;
    width: 100%;
    padding: 0 15px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .two-images-picture {
    margin: 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .art-card-cta-container:first-of-type:not(:only-child) .art-card-cta {
    margin-bottom: 0px;
  }
}

.big-image-left .two-images-container > a:first-of-type, .big-image-right .two-images-container > a:first-of-type {
  height: 100%;
}

.real-img {
  height: 100%;
  background-image: url("clientlib-site/resources/images/statue.png");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  padding-top: 117%;
}
.real-img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
@media screen and (max-width: 767px) {
  .real-img {
    padding-top: 65.671641791%;
  }
}

#right {
  background-position: right;
}
@media screen and (max-width: 767px) {
  #right {
    background-position: top;
  }
}
@media screen and (max-width: 1024px) {
  #right {
    background-position: top;
  }
}

@media screen and (max-width: 1024px) {
  .left {
    background-position: center;
  }
}
@media screen and (max-width: 767px) {
  .left {
    background-position: top;
  }
}

.two-images-cta {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .two-images-cta {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .two-images-cta {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .four-images-component .three-images-container {
    margin-bottom: 0px;
    padding: 0;
  }
}
.four-images-component .three-images-container .visit-small-image {
  padding-bottom: 48px;
}

.three-images-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .three-images-container {
    margin-bottom: -20px;
  }
}
.three-images-container .cta-title {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
}
.three-images-container .art-card-cta span:first-of-type {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
}
.three-images-container .visit-small-image {
  margin: 0;
  padding-right: 0;
  position: relative;
  height: auto;
}
.three-images-container .visit-small-image .cta-title {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
}
.three-images-container .visit-small-image:hover {
  /*       &+a{
          .art-card-cta{
            .cta-title{
              color: $light-blue;
              background-size: 100% 2px;
            }

            .arrow-right {
              background-image: url(clientlib-site/resources/images/icons/arrow.png);
              width: 16px;
              filter: brightness(0);
            }
          }
          .art-card-cta{
            span:first-of-type {
              color: $light-blue;
            background-size: 100% 2px;
          }
          }
        } */
}
.three-images-container .visit-small-image:hover .cta-title {
  color: #000000;
  background-size: 100% 2px;
}
.three-images-container .visit-small-image:hover .art-card-cta span:first-of-type {
  color: #000000;
  background-size: 100% 2px;
}
.three-images-container .visit-small-image:hover .arrow-right {
  background-image: url(clientlib-site/resources/images/icons/arrow.png);
  width: 16px;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.three-images-container .visit-small-image:hover .visit-small-img-container .visit-small-image-picture {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.three-images-container .visit-small-image + a:hover .art-card-cta .cta-title {
  color: #000000;
  background-size: 100% 2px;
}
.three-images-container .visit-small-image + a:hover .art-card-cta .arrow-right {
  background-image: url(clientlib-site/resources/images/icons/arrow.png);
  width: 16px;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.three-images-container .visit-small-image + a:hover .art-card-cta span:first-of-type {
  color: #000000;
  background-size: 100% 2px;
}
.three-images-container .visit-small-image:nth-child(2) {
  /*       position: absolute;
        padding-right: 24px; */
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .three-images-container .visit-small-image:nth-child(2) {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .three-images-container .visit-small-image {
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .three-images-container .visit-small-image {
    padding-left: 0;
  }
}
.three-images-container .visit-small-image .visit-small-img-container {
  overflow: hidden;
}
.three-images-container .visit-small-image .visit-small-img-container .visit-small-image-picture {
  padding-top: 51.0752688172%;
  background-image: url("clientlib-site/resources/images/opere-azzurro.png");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.three-images-container .visit-small-image .visit-small-img-container .visit-small-image-picture:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
@media screen and (max-width: 1024px) {
  .three-images-container .visit-small-image .visit-small-img-container .visit-small-image-picture {
    background-position: center;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .three-images-container .visit-small-image .visit-small-img-container .visit-small-image-picture {
    padding-top: 65.671641791%;
  }
}
@media screen and (max-width: 767px) {
  .three-images-container .visit-small-image .art-card-cta {
    margin: 0;
  }
}

.small-img-cta-top {
  width: 100%;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .small-img-cta-top {
    width: 100%;
    margin-left: 0;
  }
}

.small-img-cta-bot {
  width: 100%;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .small-img-cta-bot {
    width: 100%;
    margin-left: 0;
  }
}

.four-images-left-top {
  padding-left: 15px;
}
@media screen and (min-width: 1025px) {
  .four-images-left-top {
    padding-left: 0px;
  }
}

#four-images-left-bot {
  padding-left: 15px;
}
@media screen and (min-width: 1025px) {
  #four-images-left-bot {
    padding-left: 0px;
  }
}

@media screen and (max-width: 1024px) {
  #four-images-left-top-cta {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  #four-images-left-bot-cta {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }
}

.no-padding {
  padding: 0;
}

.padding-left {
  padding-left: 15px;
}

.hide-some .three-images-container {
  display: none;
}

.show-two-images .big-image-left {
  display: none;
}
.show-two-images .big-image-right {
  display: none;
}
.show-two-images .four-images-component {
  display: none;
}
@media screen and (max-width: 767px) {
  .show-two-images .two-images-container {
    margin: 0;
    padding: 0;
  }
}

.show-big-image-left .two-images-component {
  display: none;
}
@media screen and (max-width: 767px) {
  .show-big-image-left .two-images-container {
    padding: 0;
  }
  .show-big-image-left .three-images-container {
    padding: 0;
  }
}
.show-big-image-left .big-image-right {
  display: none;
}
.show-big-image-left .four-images-component {
  display: none;
}

.show-big-image-right .two-images-component {
  display: none;
}
.show-big-image-right .big-image-left {
  display: none;
}
.show-big-image-right .four-images-component {
  display: none;
}
@media screen and (max-width: 1024px) {
  .show-big-image-right {
    padding: 0 20px;
  }
}

.show-four-images .two-images-component {
  display: none;
}
.show-four-images .big-image-right {
  display: none;
}
.show-four-images .big-image-left {
  display: none;
}

.padding-top {
  padding-top: 257px;
}

.padding {
  padding: 70px 0;
}

.four-images-component .three-images-container .visit-small-image {
  display: block;
  position: relative !important;
  padding-right: 0 !important;
  display: flow-root;
}
@media screen and (max-width: 767px) {
  .four-images-component .three-images-container .visit-small-image {
    padding: 0;
    margin: 0;
  }
}
.four-images-component .three-images-container #four-images-left-top {
  padding-left: 0;
}
.four-images-component .three-images-container #four-images-left-bot {
  padding-left: 0;
}
.four-images-component .three-images-container .visit-small-image {
  height: auto;
  padding: 0;
}
.four-images-component .three-images-container > div > a:last-of-type:only-child {
  margin-bottom: 56px;
}

.mosaicoImmagini .tabs-container .hero-component_description-container {
  height: 26px;
}
@media screen and (max-width: 767px) {
  .mosaicoImmagini .tabs-container .hero-component_description-container {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.mosaicoImmagini .tabs-container .hero-component_description-container .hero-component_description p {
  font-size: 9px;
  word-wrap: break-word;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.not-found__fixed-height {
  max-height: 500px !important;
}
.not-found__img-bg-blur-picture {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.not-found__img-bg-blur {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.not-found__center-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
  width: 100% !important;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  .not-found__center-text-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.not-found__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.not-found__center-text-row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  z-index: 1;
  height: 100vh;
}
.not-found__center-text-title {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  line-height: 72px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .not-found__center-text-title {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    line-height: 42px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #000000;
  }
}
.not-found__center-text-description {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .not-found__center-text-description {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #000000;
  }
}
.not-found__center-text-button {
  max-width: 217px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px !important;
  text-align: center;
  padding: 10px 54px;
  border: 1px solid #000000;
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .not-found__center-text-button {
    max-width: 198px;
  }
}
@media screen and (max-width: 767px) {
  .not-found__center-text-button {
    margin: 0;
    border: 1px solid #000000;
  }
  .not-found__center-text-button span {
    white-space: nowrap;
  }
}
@media screen and (max-width: 1024px) {
  .not-found__center-text-button {
    padding: 10px 20px;
    margin: 0;
  }
}
@media screen and (max-width: 374px) {
  .not-found__center-text-button {
    padding: 10px 14px;
  }
}
.not-found__center-text-button span {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
.not-found__center-text-button:hover {
  border: 1px solid #000000;
}
.not-found__center-text-button:hover span {
  color: #000000;
}
.not-found__center-text-button.return {
  background-color: #000000;
  border: 1px solid transparent;
}
.not-found__center-text-button.return span {
  color: white;
}
.not-found__center-text-button.return:hover {
  background-color: #ffffff;
}
.not-found__center-text-button.return:hover span {
  color: #000000;
}

.accessibilita__img-container {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.accessibilita__img-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.accessibilita .title-component {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px !important;
  line-height: 60px;
  /* identical to box height, or 125% */
  margin-top: 30px;
  letter-spacing: 0.01em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .accessibilita .title-component {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    /* identical to box height, or 128% */
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.accessibilita .info-card-container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .accessibilita .info-card-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 110px;
  }
}
@media screen and (max-width: 767px) {
  .accessibilita .component-image-segment {
    margin-bottom: 24px;
    margin-top: 0;
  }
}

.pianifica-anchor-tag {
  width: 0 !important;
}
@media screen and (min-width: 1025px) {
  .pianifica-anchor-tag {
    width: 0 !important;
    padding: 0 !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .pianifica-anchor-tag {
    width: 0 !important;
    padding: 0 !important;
  }
}

.img-not-find {
  background-color: #c4c4c4;
}
@media screen and (min-width: 1025px) {
  .img-not-find {
    height: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .img-not-find {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .img-not-find {
    height: 200px;
  }
}

.video-list__iframe {
  background-color: #c4c4c4;
}

body:not(.page-home) .hero-image, body:not(.page-home) .hero-image-or-slide {
  background-color: #c4c4c4;
}

.container_img_raccoglitoreopere3 picture {
  background: unset;
}
.container_img_raccoglitoreopere3 picture img {
  background: unset;
}

.container_img_raccoglitoreopere3 > a {
  background: unset !important;
}

*:focus-visible {
  border: 1px solid black;
}

.area-stampa .contacts__label {
  font-weight: 300;
  text-transform: unset !important;
  margin-bottom: 0;
}
.area-stampa .contacts__label p {
  font-size: 16px;
  margin-bottom: 0 !important;
}
.area-stampa .contacts__label b {
  font-size: 14px;
  font-weight: 600 !important;
}
@media screen and (min-width: 768px) {
  .area-stampa .download .download__content .row .download-component {
    max-width: 50% !important;
  }
}
@media screen and (min-width: 768px) {
  .area-stampa .download .download__content .row .download-component .download__width {
    width: 100% !important;
  }
}

.audioguide__button-img {
  max-width: 152px;
  max-height: 45px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.audioguide__title {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 60px !important;
  line-height: 72px !important;
  letter-spacing: 0.02em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .audioguide__title {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 40px !important;
    line-height: 48px !important;
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.audioguide__description-title {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px !important;
  line-height: 60px !important;
  letter-spacing: 0.01em;
  color: #000000;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .audioguide__description-title {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px !important;
    line-height: 46px !important;
    letter-spacing: 0.01em;
    color: #000000;
    margin-top: 50px;
  }
}
.audioguide__description-description {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .audioguide__description-description {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    margin-top: 20px;
  }
}
.audioguide__description-description {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .audioguide__description-description {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
  }
}
.audioguide__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 42px;
  margin-bottom: 42px;
}
@media screen and (max-width: 360px) {
  .audioguide__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.audioguide__button-playstore {
  width: 152px;
  height: 45px;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.audioguide__button-appstore {
  width: 152px;
  height: 45px;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.audioguide__last-desc {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .audioguide__last-desc {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
  }
}

.biglietti {
  /* stile modale */
}
.biglietti p {
  margin-bottom: 0 !important;
}
.biglietti__icon {
  background-image: url("clientlib-site/resources/images/icons/arrow-right-black.svg");
  -webkit-transition: 0.3s all ease !important;
  transition: 0.3s all ease !important;
  display: inline-block;
  width: 16px;
  height: 10px;
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  vertical-align: middle;
}
.biglietti__title-component {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .biglietti__title-component {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.biglietti__modal-container {
  width: 100%;
  height: 76.13vh;
  overflow: auto;
  overflow-x: hidden;
  background-color: #ffffff;
  position: relative;
  margin-left: 150px;
  margin-right: 150px;
}
@media screen and (max-width: 767px) {
  .biglietti__modal-container {
    margin-left: 20px;
    margin-right: 20px;
    height: 79.19vh;
  }
}
.biglietti__text-component {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.biglietti__text-component p {
  margin-bottom: 0 !important;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.biglietti__text-component p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.biglietti__text-component p b {
  font-weight: bold;
}
.biglietti__text-component p .size-8 {
  font-size: 8px !important;
}
.biglietti__text-component p .size-9 {
  font-size: 9px !important;
}
.biglietti__text-component p .size-10 {
  font-size: 10px !important;
}
.biglietti__text-component p .size-11 {
  font-size: 11px !important;
}
.biglietti__text-component p .size-12 {
  font-size: 12px !important;
}
.biglietti__text-component p .size-13 {
  font-size: 13px !important;
}
.biglietti__text-component p .size-14 {
  font-size: 14px !important;
}
.biglietti__text-component p .size-15 {
  font-size: 15px !important;
}
.biglietti__text-component p .size-16 {
  font-size: 16px !important;
}
.biglietti__text-component p .size-17 {
  font-size: 17px !important;
}
.biglietti__text-component p .size-18 {
  font-size: 18px !important;
}
.biglietti__text-component p .size-19 {
  font-size: 19px !important;
}
.biglietti__text-component p .size-20 {
  font-size: 20px !important;
}
.biglietti__text-component p .size-21 {
  font-size: 21px !important;
}
.biglietti__text-component p .size-22 {
  font-size: 22px !important;
}
.biglietti__text-component p .size-23 {
  font-size: 23px !important;
}
.biglietti__text-component p .size-24 {
  font-size: 24px !important;
}
.biglietti__text-component p .size-25 {
  font-size: 25px !important;
}
.biglietti__text-component p .size-26 {
  font-size: 26px !important;
}
.biglietti__text-component p .size-27 {
  font-size: 27px !important;
}
.biglietti__text-component p .size-28 {
  font-size: 28px !important;
}
.biglietti__text-component p .size-29 {
  font-size: 29px !important;
}
.biglietti__text-component a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.biglietti__text-component b {
  font-weight: bold;
}
.biglietti #load-button {
  margin-top: 0px !important;
}
.biglietti .btn-container {
  margin-top: 0px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .biglietti .btn-container {
    width: 100%;
  }
  .biglietti .btn-container .button {
    padding: 15px 33px !important;
    max-width: unset;
  }
}
.biglietti__price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
}
.biglietti__price-container-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #e0e0e0;
  gap: 92px;
}
@media screen and (max-width: 767px) {
  .biglietti__price-container-modal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.biglietti__price {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  padding: 32px 0;
  max-width: 200px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .biglietti__price {
    padding: 29px 0;
  }
}
.biglietti__price-description {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  padding: 32px 0;
  /* or 162% */
  text-align: right;
  color: #000000;
  max-width: 237px;
}
@media screen and (max-width: 767px) {
  .biglietti__price-description {
    padding: 29px 0;
  }
}
.biglietti__price-description p {
  margin-bottom: 0 !important;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.biglietti__price-description p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.biglietti__price-description p b {
  font-weight: bold;
}
.biglietti__price-description p .size-8 {
  font-size: 8px !important;
}
.biglietti__price-description p .size-9 {
  font-size: 9px !important;
}
.biglietti__price-description p .size-10 {
  font-size: 10px !important;
}
.biglietti__price-description p .size-11 {
  font-size: 11px !important;
}
.biglietti__price-description p .size-12 {
  font-size: 12px !important;
}
.biglietti__price-description p .size-13 {
  font-size: 13px !important;
}
.biglietti__price-description p .size-14 {
  font-size: 14px !important;
}
.biglietti__price-description p .size-15 {
  font-size: 15px !important;
}
.biglietti__price-description p .size-16 {
  font-size: 16px !important;
}
.biglietti__price-description p .size-17 {
  font-size: 17px !important;
}
.biglietti__price-description p .size-18 {
  font-size: 18px !important;
}
.biglietti__price-description p .size-19 {
  font-size: 19px !important;
}
.biglietti__price-description p .size-20 {
  font-size: 20px !important;
}
.biglietti__price-description p .size-21 {
  font-size: 21px !important;
}
.biglietti__price-description p .size-22 {
  font-size: 22px !important;
}
.biglietti__price-description p .size-23 {
  font-size: 23px !important;
}
.biglietti__price-description p .size-24 {
  font-size: 24px !important;
}
.biglietti__price-description p .size-25 {
  font-size: 25px !important;
}
.biglietti__price-description p .size-26 {
  font-size: 26px !important;
}
.biglietti__price-description p .size-27 {
  font-size: 27px !important;
}
.biglietti__price-description p .size-28 {
  font-size: 28px !important;
}
.biglietti__price-description p .size-29 {
  font-size: 29px !important;
}
.biglietti__price-description a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.biglietti__price-description b {
  font-weight: bold;
}
.biglietti__price-description-modal {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  /* or 162% */
  text-align: left;
  color: #000000;
  max-width: 655px;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .biglietti__price-description-modal {
    padding: 0 0 29px 0;
  }
}
.biglietti__price-description-modal p {
  margin-bottom: 0 !important;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.biglietti__price-description-modal p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.biglietti__price-description-modal p b {
  font-weight: bold;
}
.biglietti__price-description-modal p .size-8 {
  font-size: 8px !important;
}
.biglietti__price-description-modal p .size-9 {
  font-size: 9px !important;
}
.biglietti__price-description-modal p .size-10 {
  font-size: 10px !important;
}
.biglietti__price-description-modal p .size-11 {
  font-size: 11px !important;
}
.biglietti__price-description-modal p .size-12 {
  font-size: 12px !important;
}
.biglietti__price-description-modal p .size-13 {
  font-size: 13px !important;
}
.biglietti__price-description-modal p .size-14 {
  font-size: 14px !important;
}
.biglietti__price-description-modal p .size-15 {
  font-size: 15px !important;
}
.biglietti__price-description-modal p .size-16 {
  font-size: 16px !important;
}
.biglietti__price-description-modal p .size-17 {
  font-size: 17px !important;
}
.biglietti__price-description-modal p .size-18 {
  font-size: 18px !important;
}
.biglietti__price-description-modal p .size-19 {
  font-size: 19px !important;
}
.biglietti__price-description-modal p .size-20 {
  font-size: 20px !important;
}
.biglietti__price-description-modal p .size-21 {
  font-size: 21px !important;
}
.biglietti__price-description-modal p .size-22 {
  font-size: 22px !important;
}
.biglietti__price-description-modal p .size-23 {
  font-size: 23px !important;
}
.biglietti__price-description-modal p .size-24 {
  font-size: 24px !important;
}
.biglietti__price-description-modal p .size-25 {
  font-size: 25px !important;
}
.biglietti__price-description-modal p .size-26 {
  font-size: 26px !important;
}
.biglietti__price-description-modal p .size-27 {
  font-size: 27px !important;
}
.biglietti__price-description-modal p .size-28 {
  font-size: 28px !important;
}
.biglietti__price-description-modal p .size-29 {
  font-size: 29px !important;
}
.biglietti__price-description-modal a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.biglietti__price-description-modal b {
  font-weight: bold;
}
.biglietti__button {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
}
.biglietti__button:hover {
  color: #000000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.biglietti__button:hover .biglietti__icon {
  background-image: url("clientlib-site/resources/images/icons/arrow-right-hover.svg") !important;
  -webkit-transition: 0.3s all ease !important;
  transition: 0.3s all ease !important;
}
.biglietti .visit-title-cta-container {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.biglietti__maxi-container {
  margin-bottom: 46px;
}
.biglietti__maxi-container .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.biglietti__acquista-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .biglietti__acquista-container {
    margin-top: 36px;
  }
}
.biglietti .modale-row {
  padding-top: 76px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .biglietti .modale-row {
    padding-top: 50px;
  }
}
.biglietti .modal__button-close {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
.biglietti .modal__button-close img {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .biglietti .modal__button-close {
    top: 24px;
    right: 24px;
  }
  .biglietti .modal__button-close img {
    width: 16px;
    height: 16px;
  }
}
.biglietti .modal__content-container {
  display: none;
}
.biglietti .modal__content-container.active {
  position: relative;
  position: fixed;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.biglietti .modal__iframe-container {
  width: 100%;
  margin: 0 auto;
  display: block;
  aspect-ratio: 16/9;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .biglietti .modal__iframe-container {
    width: 100%;
    max-width: 1148px;
  }
}
.biglietti .modal__iframe-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.component-date {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #6f6f6f;
  white-space: nowrap;
}

.component-date-description::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  display: block;
  margin: 0 12px;
  /* Medium grey */
  background: #6f6f6f;
}

.component-date-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .component-date-container {
    margin-bottom: 46px;
  }
}

.component-date-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  color: #6f6f6f;
}

.bonus__img-container {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.bonus__img-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bonus .component-title-container {
  padding-bottom: 17px;
}
.bonus .bonus-row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bonus .event-list-container {
  position: relative;
  padding: 0 !important;
  border-bottom: none;
}
.bonus-separator {
  position: absolute;
  width: 1px;
  height: 95%;
  top: 0;
  left: 50%;
  background: #e0e0e0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .bonus-separator {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .bonus .event-img {
    display: block !important;
  }
}
.bonus .event-list-container-main {
  padding: 0 !important;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .bonus .event-list-container-main {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 767px) {
  .bonus .component-title {
    margin-bottom: 0 !important;
  }
}
.bonus .image-component_wrapper {
  margin: 0 !important;
}
.bonus .elem-text-component-container-col {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .bonus .elem-text-component-container-col {
    margin-bottom: 110px !important;
  }
}

.breadcrumb {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0 20px;
    margin-bottom: 14px;
  }
}
.breadcrumb .breadcrumb-component {
  width: 100%;
}
.breadcrumb .breadcrumb-component .breadcrumb-component-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 160px;
}
@media screen and (max-width: 1024px) {
  .breadcrumb .breadcrumb-component .breadcrumb-component-container {
    margin-top: 92px;
  }
}
.breadcrumb .breadcrumb-component .breadcrumb-component-container a {
  text-decoration: none;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
  padding: 0 15px;
}
.breadcrumb .breadcrumb-component .breadcrumb-component-container a:first-child {
  padding-left: 0;
}
.breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page {
  text-decoration: none;
}
.breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page:hover {
  color: #000000;
  text-decoration: underline !important;
}
@media screen and (max-width: 767px) {
  .breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page {
    padding: 0;
  }
}
.breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page-link {
  text-decoration: none;
}
.breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page-link:hover {
  text-decoration: underline !important;
}
@media screen and (max-width: 767px) {
  .breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page-link {
    display: none !important;
    padding: 0;
  }
  .breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page-link:last-child {
    display: block !important;
  }
  .breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page-link .prev-page {
    padding-left: 10px;
  }
  .breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page-link .prev-page:after {
    display: none !important;
  }
  .breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page-link .prev-page:before {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
    left: -9px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(225deg);
            transform: translateY(-50%) rotate(225deg);
  }
}
.breadcrumb .breadcrumb-component .breadcrumb-component-container .current-page {
  margin-top: 3px;
  pointer-events: none;
  color: #6f6f6f;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .breadcrumb .breadcrumb-component .breadcrumb-component-container .current-page {
    display: none;
    color: #000000;
  }
  .breadcrumb .breadcrumb-component .breadcrumb-component-container .current-page:after {
    display: none;
  }
}
.breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page {
  display: inline-block;
  position: relative;
}
.breadcrumb .breadcrumb-component .breadcrumb-component-container .prev-page:after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  right: -17px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.breadcrumb-main {
  border-bottom: solid 1px #dadada;
}
@media screen and (max-width: 767px) {
  .breadcrumb-main {
    display: none;
  }
}

.breadcrumbs-container {
  padding: 12px 40px;
}
.breadcrumbs-container .breadcrumbs-wrapper-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs-container .breadcrumbs-wrapper-left .link-wrapper {
  padding-right: 37px;
  margin-right: 25px;
  background-color: transparent;
  background-size: 15px 15px;
  background-position: 100% center;
  background-repeat: no-repeat;
  background-image: url("clientlib-site/resources/images/icons/arrow-right-1.svg");
}
.breadcrumbs-container .breadcrumbs-wrapper-left .breadcrumb-item {
  display: block;
  margin-top: -2px;
}
.breadcrumbs-container .breadcrumbs-wrapper-left .breadcrumb-item a {
  font-family: "Canela", Arial, sans-serif;
  color: #004274;
  font-size: 12px;
}
.breadcrumbs-container .breadcrumbs-wrapper-left .breadcrumb-item.current-bread-page {
  font-family: "Canela", Arial, sans-serif;
  color: #323232;
  font-size: 12px;
  margin-top: 0;
}

.load-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.load-more-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .load-more-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.btn-container {
  padding: 14px 0;
  margin-top: 80px;
  cursor: pointer;
}
.btn-container .button {
  text-decoration: none;
  padding: 15px 55px;
  border: 1px solid #000000;
  color: #000000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
}
@media screen and (max-width: 767px) {
  .btn-container .button {
    max-width: 440px;
    width: 100%;
    margin: auto;
    display: inline-block;
    text-align: center;
  }
}
.btn-container .button span {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.btn-container:hover .button {
  border: 1px solid #000000;
}

.page-home .btn-container {
  margin-top: 0;
}

.two-btn-cta-border .btn-container:first-child {
  padding-right: 13px !important;
}
@media screen and (max-width: 1024px) {
  .two-btn-cta-border .btn-container:first-child {
    padding: 0 !important;
  }
}
.two-btn-cta-border .btn-container:last-child {
  padding-right: 0 !important;
}
@media screen and (min-width: 1400px) {
  .two-btn-cta-border .btn-container:last-child {
    padding-left: 1rem !important;
  }
}
@media screen and (max-width: 1244px) {
  .two-btn-cta-border .btn-container:last-child {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .two-btn-cta-border .btn-container:last-child {
    padding: 0 !important;
  }
}
.two-btn-cta-border .info-card-cta {
  padding-left: 2rem;
  padding-right: 0 !important;
  margin-top: 30px;
}
@media screen and (max-width: 1244px) {
  .two-btn-cta-border .info-card-cta {
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .two-btn-cta-border .info-card-cta {
    padding: 0 !important;
  }
}

.page-events .load-button {
  margin-top: 30px;
}

#load-button.btn-container .button {
  background: #ffffff;
}
#load-button.btn-container .button:hover {
  background: #000000;
  color: #ffffff;
}

.carta__title-component {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-top: 80px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .carta__title-component {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.carta__text-component {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 50px;
}

/*MIXIN MOBILE START*/
/*MIXIN MOBILE END*/
/*MIXIN DESKTOP START*/
/*MIXIN DESKTOP END*/
/*MOBILE STYLE START*/
.container_2_date,
.container_3_date,
.container_4_date,
.container_5_date,
.container_6_date {
  margin-top: 0;
  margin-bottom: 0;
}
.container_2_date .date_container_cards .date_container_card,
.container_3_date .date_container_cards .date_container_card,
.container_4_date .date_container_cards .date_container_card,
.container_5_date .date_container_cards .date_container_card,
.container_6_date .date_container_cards .date_container_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
.container_2_date .date_container_cards .date_container_card .date_container_data,
.container_3_date .date_container_cards .date_container_card .date_container_data,
.container_4_date .date_container_cards .date_container_card .date_container_data,
.container_5_date .date_container_cards .date_container_card .date_container_data,
.container_6_date .date_container_cards .date_container_card .date_container_data {
  /*padding negativo*/
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  /*#e0e0e0 <-- METTERE QUESTO COLORE AL POSTO DEL NERO*/
}
.container_2_date .date_container_cards .date_container_card .date_container_data h3,
.container_3_date .date_container_cards .date_container_card .date_container_data h3,
.container_4_date .date_container_cards .date_container_card .date_container_data h3,
.container_5_date .date_container_cards .date_container_card .date_container_data h3,
.container_6_date .date_container_cards .date_container_card .date_container_data h3 {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 60px;
  letter-spacing: 0.01em;
}
.container_2_date .date_container_cards .date_container_card .date_container_descr,
.container_3_date .date_container_cards .date_container_card .date_container_descr,
.container_4_date .date_container_cards .date_container_card .date_container_descr,
.container_5_date .date_container_cards .date_container_card .date_container_descr,
.container_6_date .date_container_cards .date_container_card .date_container_descr {
  margin-top: 24px;
  width: 100%;
}
.container_2_date .date_container_cards .date_container_card .date_container_descr p,
.container_3_date .date_container_cards .date_container_card .date_container_descr p,
.container_4_date .date_container_cards .date_container_card .date_container_descr p,
.container_5_date .date_container_cards .date_container_card .date_container_descr p,
.container_6_date .date_container_cards .date_container_card .date_container_descr p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}

.container_3_date .date_container_cards {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*MOBILE STYLE END*/
/*DESKTOP STYLE START*/
@media screen and (min-width: 991px) {
  .container_2_date,
  .container_3_date,
  .container_4_date,
  .container_5_date,
  .container_6_date {
    margin-top: 0;
    margin-bottom: 0;
  }
  .container_2_date .date_container_cards .date_container_card,
  .container_3_date .date_container_cards .date_container_card,
  .container_4_date .date_container_cards .date_container_card,
  .container_5_date .date_container_cards .date_container_card,
  .container_6_date .date_container_cards .date_container_card {
    margin-bottom: 20px;
  }
  .container_2_date .date_container_cards .date_container_card .date_container_data,
  .container_3_date .date_container_cards .date_container_card .date_container_data,
  .container_4_date .date_container_cards .date_container_card .date_container_data,
  .container_5_date .date_container_cards .date_container_card .date_container_data,
  .container_6_date .date_container_cards .date_container_card .date_container_data {
    /*padding negativo*/
    width: 100%;
  }
  .container_2_date .date_container_cards .date_container_card .date_container_data h3,
  .container_3_date .date_container_cards .date_container_card .date_container_data h3,
  .container_4_date .date_container_cards .date_container_card .date_container_data h3,
  .container_5_date .date_container_cards .date_container_card .date_container_data h3,
  .container_6_date .date_container_cards .date_container_card .date_container_data h3 {
    font-family: "Canela";
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0.01em;
  }
  .container_2_date .date_container_cards .date_container_card .date_container_descr,
  .container_3_date .date_container_cards .date_container_card .date_container_descr,
  .container_4_date .date_container_cards .date_container_card .date_container_descr,
  .container_5_date .date_container_cards .date_container_card .date_container_descr,
  .container_6_date .date_container_cards .date_container_card .date_container_descr {
    width: 100%;
  }
  .container_2_date .date_container_cards .date_container_card .date_container_descr p,
  .container_3_date .date_container_cards .date_container_card .date_container_descr p,
  .container_4_date .date_container_cards .date_container_card .date_container_descr p,
  .container_5_date .date_container_cards .date_container_card .date_container_descr p,
  .container_6_date .date_container_cards .date_container_card .date_container_descr p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
  }
}
@media screen and (max-width: 767px) {
  .date .container_big {
    margin-bottom: 70px !important;
  }
}

/*DESKTOP STYLE END*/
.coms-component {
  background-color: #f8f8f8;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .coms-component {
    padding: 0 20px;
  }
}
.coms-component .coms-container {
  padding-top: 90px;
  padding-bottom: 90px;
  margin: 0;
}
.coms-component .coms-container .separator-component {
  margin-bottom: 50px;
}
.coms-component .coms-container .separator-component:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .coms-component .coms-container {
    padding-top: 80px;
    padding-bottom: 90px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.coms-component .coms-container .small-title-component {
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px !important;
  line-height: 36px !important;
  letter-spacing: 0.02em;
  color: #000000;
}
.coms-component .coms-container .small-title-component a {
  text-decoration: none;
  color: #000000;
}
.coms-component .coms-container .small-title-component a:hover {
  color: #000000;
  background-size: 100% 2px;
}
.coms-component .coms-container .coms-date {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
}
.coms-component .coms-container .coms-date + a .small-title-component {
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  background-position: left bottom;
  padding-bottom: 3px;
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
}
.coms-component .coms-container .coms-date + a:hover .small-title-component {
  background-size: 100% 2px;
  color: #000000;
}
.coms-component .coms-container .coms-button-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .coms-component .coms-container .coms-button-container {
    display: block;
  }
}
.coms-component .coms-container .coms-button-container .btn-container {
  padding: 14px 0;
  margin-top: 50px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media screen and (max-width: 767px) {
  .coms-component .coms-container .coms-button-container .btn-container {
    padding: 0 !important;
    margin-top: 50px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.coms-component .coms-container .coms-button-container .btn-container .button {
  text-decoration: none;
  padding: 15px 55px;
  border: 1px solid #000000;
  color: #000000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .coms-component .coms-container .coms-button-container .btn-container .button {
    max-width: 440px;
    width: 100%;
    margin: auto;
    display: inline-block;
    text-align: center;
  }
}
.coms-component .coms-container .coms-button-container .btn-container .button span {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.coms-component .coms-container .coms-button-container .btn-container:hover .button {
  border: 1px solid #000000;
  background-color: #000000;
}
.coms-component .coms-container .coms-button-container .btn-container:hover .button span {
  color: #ffffff;
}
.coms-component .coms-container .component-text-segment {
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .coms-component .coms-container .component-text-segment {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .coms-component .coms-container .component-text-segment {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .coms-component .coms-container .component-text-segment .title-component {
    margin-bottom: 40px;
  }
  .coms-component .coms-container .component-text-segment .title-component p {
    margin-bottom: 0;
  }
}

.coms-left-segment {
  height: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .coms-left-segment {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .coms-left-segment {
    display: block;
    text-align: left;
  }
}

.coms-right-segment {
  padding: 0 11px;
}
@media screen and (min-width: 1025px) {
  .coms-right-segment {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .coms-right-segment {
    display: block;
    text-align: left;
  }
}

.coms-info-wrapper-top {
  padding-bottom: 40px;
  width: 100%;
}
.coms-info-wrapper-top a {
  display: inline-block;
  padding-bottom: 50px;
  text-decoration: none;
}
.coms-info-wrapper-top a:hover .small-title-component {
  color: #000000;
}
.coms-info-wrapper-top p {
  margin-bottom: 0;
}

.coms-info-wrapper-bot {
  width: 100%;
}
.coms-info-wrapper-bot a {
  display: inline-block;
  padding-bottom: 50px;
  text-decoration: none;
}
.coms-info-wrapper-bot a:hover .small-title-component {
  color: #000000;
}
.coms-info-wrapper-bot a p {
  margin-bottom: 0;
}

.longer-button {
  margin-top: 50px;
  text-align: center;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.comunicazioni {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .comunicazioni {
    margin-top: 30px;
  }
}
.comunicazioni__container {
  width: 100%;
  position: relative;
}
.comunicazioni__container:after {
  content: "";
  clear: both;
  display: table;
}
.comunicazioni__container:before {
  content: "";
  display: block;
  width: 1px;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 50px;
  background-color: #e0e0e0;
}
@media screen and (max-width: 767px) {
  .comunicazioni__container:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .comunicazioni__container {
    height: auto !important;
  }
}
.comunicazioni__image {
  position: relative;
  padding-top: 63.9913232104%;
  margin-bottom: 30px;
}
.comunicazioni__image picture img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.comunicazioni__date {
  display: block;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
  color: #a7a7a7;
}
@media screen and (max-width: 767px) {
  .comunicazioni__date {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 0.06em;
    text-align: left;
  }
}
.comunicazioni__title {
  font-family: "Canela", Arial, sans-serif;
  font-size: 24px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 36px !important;
  letter-spacing: 0.02em;
  text-align: left;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .comunicazioni__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: left;
  }
}
.comunicazioni__description {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  margin-top: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .comunicazioni__description {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    margin-top: 14px;
  }
}
.comunicazioni__description:after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .comunicazioni__description:after {
    bottom: -60px;
  }
}
.comunicazioni__item {
  width: 50%;
  position: relative;
  display: block;
  padding-bottom: 50px;
  margin-bottom: 50px;
  padding-right: 8.3333%;
}
@media screen and (max-width: 767px) {
  .comunicazioni__item {
    width: 100%;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
.comunicazioni__item p {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .comunicazioni__item {
    padding-right: 0;
  }
}
.comunicazioni__item.float-right {
  left: 50%;
  padding-left: 8.3333%;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .comunicazioni__item.float-right {
    padding-left: 0;
    left: 0;
    margin-top: 0 !important;
  }
}
.comunicazioni__item.float-right:last-of-type .comunicazioni__description:after {
  display: none;
}
.comunicazioni__item.float-left.no-border .comunicazioni__description:after {
  display: none;
}
.comunicazioni__item.float-right.no-border .comunicazioni__description:after {
  display: none;
}
.comunicazioni__more {
  width: 100%;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  padding: 15px 20px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  margin-top: 30px;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .comunicazioni__more {
    margin-top: 0px;
  }
}
.comunicazioni__more:hover {
  background-color: #000;
  color: #fff !important;
}

.page-gallerie-off .comunicazioni__more {
  margin-bottom: 110px;
}
@media screen and (min-width: 1025px) {
  .page-gallerie-off .comunicazioni__more {
    margin-top: 0;
  }
}

.comunicazioni__container .comunicazioni__item:hover .comunicazioni__title {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #000000 !important;
}
.comunicazioni__container .comunicazioni__item:hover .comunicazioni__image {
  overflow: hidden;
}
.comunicazioni__container .comunicazioni__item:hover .comunicazioni__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

/*COMUNICAZIONI MARGIN FIX*/
.page-comunicazioni .container-title-main {
  margin-top: 96px;
}
@media screen and (max-width: 767px) {
  .page-comunicazioni .container-title-main {
    margin-top: 66px;
  }
}

main.container {
  padding: 0.5em 1em;
  max-width: none !important;
}

.cta-container .arrow-cta {
  position: relative;
  text-decoration: none;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.cta-container .arrow-cta:hover {
  color: #000000;
}
.cta-container .arrow-cta:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.cta-container .arrow-cta .arrow-right {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  right: -57px;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.cta-container .arrow-cta .moving-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  right: -60px;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
  -webkit-animation: move 500ms ease-in-out both;
          animation: move 500ms ease-in-out both;
}
@-webkit-keyframes move {
  from {
    right: -60px;
  }
  to {
    right: -20px;
  }
}
@keyframes move {
  from {
    right: -60px;
  }
  to {
    right: -20px;
  }
}

.art-card-cta-container {
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .art-card-cta-container {
    border-bottom: 0;
  }
}
.art-card-cta-container .art-card-cta {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  padding: 20px 10px;
}
.art-card-cta-container .art-card-cta:hover {
  color: #000000;
}
.art-card-cta-container .art-card-cta:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/big-blue-arrow-right.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
  width: 20px;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.contatti__title-component {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contatti__title-component {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.contatti__text-component {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .contatti__text-component {
    margin-bottom: 100px;
  }
}
.contatti__text-component a {
  color: #000000;
  text-decoration: underline !important;
}
.contatti__text-component b {
  font-weight: bold;
}
.contatti__text-component p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.contatti__text-component p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.contatti__text-component p b {
  font-weight: bold;
}
.contatti__text-component p .size-8 {
  font-size: 8px !important;
}
.contatti__text-component p .size-9 {
  font-size: 9px !important;
}
.contatti__text-component p .size-10 {
  font-size: 10px !important;
}
.contatti__text-component p .size-11 {
  font-size: 11px !important;
}
.contatti__text-component p .size-12 {
  font-size: 12px !important;
}
.contatti__text-component p .size-13 {
  font-size: 13px !important;
}
.contatti__text-component p .size-14 {
  font-size: 14px !important;
}
.contatti__text-component p .size-15 {
  font-size: 15px !important;
}
.contatti__text-component p .size-16 {
  font-size: 16px !important;
}
.contatti__text-component p .size-17 {
  font-size: 17px !important;
}
.contatti__text-component p .size-18 {
  font-size: 18px !important;
}
.contatti__text-component p .size-19 {
  font-size: 19px !important;
}
.contatti__text-component p .size-20 {
  font-size: 20px !important;
}
.contatti__text-component p .size-21 {
  font-size: 21px !important;
}
.contatti__text-component p .size-22 {
  font-size: 22px !important;
}
.contatti__text-component p .size-23 {
  font-size: 23px !important;
}
.contatti__text-component p .size-24 {
  font-size: 24px !important;
}
.contatti__text-component p .size-25 {
  font-size: 25px !important;
}
.contatti__text-component p .size-26 {
  font-size: 26px !important;
}
.contatti__text-component p .size-27 {
  font-size: 27px !important;
}
.contatti__text-component p .size-28 {
  font-size: 28px !important;
}
.contatti__text-component p .size-29 {
  font-size: 29px !important;
}

.double-image-full-width__img-container {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.double-image-full-width__img-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .double-image-full-width__img-container .small-height {
    max-height: 72vw;
  }
}
@media screen and (max-width: 767px) {
  .double-image-full-width__img-container .tall-height {
    max-height: 126.4vw;
  }
}
.double-image-full-width__container {
  padding-top: 45.14%;
  width: 100%;
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .double-image-full-width__container {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .double-image-full-width__container {
    padding-top: 0;
  }
}
.double-image-full-width__container .info-card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .double-image-full-width__container .info-card-container {
    position: relative;
    gap: 0;
    margin: 0;
  }
}
.double-image-full-width__container .info-card-text-segment-first {
  display: block;
  width: 66%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .double-image-full-width__container .info-card-text-segment-first {
    width: 100%;
  }
}
.double-image-full-width__container .info-card-text-segment-second {
  display: block;
  width: 34%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .double-image-full-width__container .info-card-text-segment-second {
    width: 100%;
  }
}
.double-image-full-width__text-component {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #6f6f6f;
  margin-top: 20px;
  margin-bottom: 90px;
  width: 364px;
}
@media screen and (max-width: 767px) {
  .double-image-full-width__text-component {
    margin-top: 16px;
    margin-bottom: 70px;
    width: 100%;
  }
}
.double-image-full-width .info-card-container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .double-image-full-width .info-card-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.double-image-full-width .component-image-segment {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .double-image-full-width .component-image-segment {
    margin-top: 0;
  }
}
.double-image-full-width .info-card-container {
  padding: 0;
  margin: 0;
}

.double-image .container {
  max-width: 1920px !important;
}
.double-image__img-container {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.double-image__img-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 670px;
}
.double-image .text-component {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #6f6f6f;
  margin-top: 20px;
}
.double-image .info-card-container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .double-image .info-card-container {
    margin-top: 110px;
  }
}
@media screen and (max-width: 767px) {
  .double-image .component-image-segment {
    margin-bottom: 24px;
    margin-top: 0;
  }
}
.double-image .info-card-text-segment:first-child {
  padding-left: 0;
}
.double-image .info-card-text-segment:last-child {
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .double-image .info-card-text-segment {
    padding: 0;
  }
}

.dove-siamo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dove-siamo__title-component {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  /* or 125% */
  letter-spacing: 0.01em;
  color: #000000;
  padding: 0 0 42px 0;
}
@media screen and (max-width: 767px) {
  .dove-siamo__title-component {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    /* or 128% */
    letter-spacing: 0.01em;
    color: #000000;
    padding: 0 0 32px 0;
  }
}
.dove-siamo__title-component-no-map {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  /* or 125% */
  letter-spacing: 0.01em;
  color: #000000;
  padding: 0 0 24px 0;
}
@media screen and (max-width: 767px) {
  .dove-siamo__title-component-no-map {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    /* or 128% */
    letter-spacing: 0.01em;
    color: #000000;
    padding: 0 0 12px 0;
  }
}
.dove-siamo .cta-container {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-right: 40px;
}
.dove-siamo__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100% !important;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.dove-siamo__row {
  width: 100%;
}
.dove-siamo__accordion {
  cursor: pointer;
  padding-top: 30px;
  padding-bottom: 30px;
  border: none;
  text-align: left;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  width: 100%;
  /* or 150% */
  letter-spacing: 0.02em;
  color: #000000;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dove-siamo__accordion.active .sicurezza__icon {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.dove-siamo__accordion-row {
  padding: 0 11px;
}
.dove-siamo__picture {
  height: 450px;
}
@media screen and (max-width: 767px) {
  .dove-siamo__picture {
    height: 192px;
  }
}
.dove-siamo__accordion-title {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  /* identical to box height */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
.dove-siamo__accordion-description {
  padding-top: 13px;
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  /* or 162% */
  /* Medium grey */
  color: #6f6f6f;
  margin-bottom: 31px;
}
.dove-siamo__accordion-description p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.dove-siamo__accordion-description p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.dove-siamo__accordion-description p b {
  font-weight: bold;
}
.dove-siamo__accordion-description p .size-8 {
  font-size: 8px !important;
}
.dove-siamo__accordion-description p .size-9 {
  font-size: 9px !important;
}
.dove-siamo__accordion-description p .size-10 {
  font-size: 10px !important;
}
.dove-siamo__accordion-description p .size-11 {
  font-size: 11px !important;
}
.dove-siamo__accordion-description p .size-12 {
  font-size: 12px !important;
}
.dove-siamo__accordion-description p .size-13 {
  font-size: 13px !important;
}
.dove-siamo__accordion-description p .size-14 {
  font-size: 14px !important;
}
.dove-siamo__accordion-description p .size-15 {
  font-size: 15px !important;
}
.dove-siamo__accordion-description p .size-16 {
  font-size: 16px !important;
}
.dove-siamo__accordion-description p .size-17 {
  font-size: 17px !important;
}
.dove-siamo__accordion-description p .size-18 {
  font-size: 18px !important;
}
.dove-siamo__accordion-description p .size-19 {
  font-size: 19px !important;
}
.dove-siamo__accordion-description p .size-20 {
  font-size: 20px !important;
}
.dove-siamo__accordion-description p .size-21 {
  font-size: 21px !important;
}
.dove-siamo__accordion-description p .size-22 {
  font-size: 22px !important;
}
.dove-siamo__accordion-description p .size-23 {
  font-size: 23px !important;
}
.dove-siamo__accordion-description p .size-24 {
  font-size: 24px !important;
}
.dove-siamo__accordion-description p .size-25 {
  font-size: 25px !important;
}
.dove-siamo__accordion-description p .size-26 {
  font-size: 26px !important;
}
.dove-siamo__accordion-description p .size-27 {
  font-size: 27px !important;
}
.dove-siamo__accordion-description p .size-28 {
  font-size: 28px !important;
}
.dove-siamo__accordion-description p .size-29 {
  font-size: 29px !important;
}
.dove-siamo__accordion-description a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.dove-siamo__accordion-description b {
  font-weight: bold;
}
.dove-siamo__accordion-item-container {
  margin-top: 70px;
  border-bottom: 1px solid #e0e0e0;
}
.dove-siamo__accordion-item-container:first-child {
  border-top: 1px solid #e0e0e0;
}
.dove-siamo__panel {
  display: none;
  overflow: hidden;
}
.dove-siamo__map-description {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  /* or 162% */
  color: #000000;
}
.dove-siamo__map-description p {
  margin-bottom: 0 !important;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.dove-siamo__map-description p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.dove-siamo__map-description p b {
  font-weight: bold;
}
.dove-siamo__map-description p .size-8 {
  font-size: 8px !important;
}
.dove-siamo__map-description p .size-9 {
  font-size: 9px !important;
}
.dove-siamo__map-description p .size-10 {
  font-size: 10px !important;
}
.dove-siamo__map-description p .size-11 {
  font-size: 11px !important;
}
.dove-siamo__map-description p .size-12 {
  font-size: 12px !important;
}
.dove-siamo__map-description p .size-13 {
  font-size: 13px !important;
}
.dove-siamo__map-description p .size-14 {
  font-size: 14px !important;
}
.dove-siamo__map-description p .size-15 {
  font-size: 15px !important;
}
.dove-siamo__map-description p .size-16 {
  font-size: 16px !important;
}
.dove-siamo__map-description p .size-17 {
  font-size: 17px !important;
}
.dove-siamo__map-description p .size-18 {
  font-size: 18px !important;
}
.dove-siamo__map-description p .size-19 {
  font-size: 19px !important;
}
.dove-siamo__map-description p .size-20 {
  font-size: 20px !important;
}
.dove-siamo__map-description p .size-21 {
  font-size: 21px !important;
}
.dove-siamo__map-description p .size-22 {
  font-size: 22px !important;
}
.dove-siamo__map-description p .size-23 {
  font-size: 23px !important;
}
.dove-siamo__map-description p .size-24 {
  font-size: 24px !important;
}
.dove-siamo__map-description p .size-25 {
  font-size: 25px !important;
}
.dove-siamo__map-description p .size-26 {
  font-size: 26px !important;
}
.dove-siamo__map-description p .size-27 {
  font-size: 27px !important;
}
.dove-siamo__map-description p .size-28 {
  font-size: 28px !important;
}
.dove-siamo__map-description p .size-29 {
  font-size: 29px !important;
}
.dove-siamo__map-description a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.dove-siamo__map-description b {
  font-weight: bold;
}
.dove-siamo__map-description-container {
  margin-top: 80px;
}

/*MOBILE-VERSION*/
.container_card-e {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 90px;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}
.container_card-e .card_title h3 {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 36px !important;
  line-height: 46px !important;
  letter-spacing: 0.01em;
}
.container_card-e .card_description {
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px !important;
  line-height: 26px !important;
}

.img_1 {
  background: url("clientlib-site/resources/CUCCHI_LE_STIMMATE_.png"); /*REPLACE IMG*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /*OR CONTAIN*/
}

.img_2 {
  background: url("clientlib-site/resources/CUCCHI_LE_STIMMATE_.png"); /*REPLACE IMG*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /*OR CONTAIN*/
}

.img_3 {
  background: url("clientlib-site/resources/CUCCHI_LE_STIMMATE_.png"); /*REPLACE IMG*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /*OR CONTAIN*/
}

.img_4 {
  background: url("clientlib-site/resources/CUCCHI_LE_STIMMATE_.png"); /*REPLACE IMG*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /*OR CONTAIN*/
}

.card_title {
  margin-bottom: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .card_title {
    margin-top: 24px;
  }
}

.card_img {
  margin-bottom: 4px;
  padding-top: 68%;
  overflow: hidden;
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  .card_img {
    padding-top: 73.13%;
  }
}
.card_img img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.card_button {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card_button a {
  color: #000000;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
}
.card_button a:hover {
  color: #000000;
  background-size: calc(100% - 30px) 2px;
}
.card_button a:hover .button_text .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.button_text {
  margin-right: 12px;
}

/*CHANGE THE ARROW ICON*/
/*DESKTOP VERSION*/
@media screen and (min-width: 991px) {
  .container_cards {
    margin-bottom: 120px;
  }
  .container_card-e {
    margin-bottom: 0;
  }
  .card_img {
    margin-bottom: 10px;
  }
  .card_title h3 {
    font-family: "Canela";
    font-style: normal;
    font-weight: 300;
    font-size: 48px !important;
    line-height: 60px !important;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 767px) {
  .container_card-e .hero-component_description-container {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.container_card-e .hero-component_description-container .hero-component_description p {
  line-height: 16px;
  font-size: 9px;
  margin-left: 0;
  margin-right: 0;
}

.faq__row {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .faq__row {
    margin-top: 85px;
  }
}
.faq__accordion {
  width: 100%;
  cursor: pointer;
  padding-top: 30px;
  padding-bottom: 30px;
  border: none;
  text-align: left;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  /* or 150% */
  letter-spacing: 0.02em;
  color: #000000;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.faq__accordion.active .sicurezza__icon {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.faq__accordion-row {
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .faq__accordion-row {
    padding: 0 24px;
  }
}
.faq__accordion-title {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  /* identical to box height */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
.faq__accordion-description {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  /* or 162% */
  /* Medium grey */
  color: #6f6f6f;
  margin-bottom: 31px;
}
.faq__accordion-description p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.faq__accordion-description p a {
  color: #000000;
  text-decoration: underline !important;
  width: 300px;
  height: 400px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.faq__accordion-description p b {
  font-weight: bold;
}
.faq__accordion-description p .size-8 {
  font-size: 8px !important;
}
.faq__accordion-description p .size-9 {
  font-size: 9px !important;
}
.faq__accordion-description p .size-10 {
  font-size: 10px !important;
}
.faq__accordion-description p .size-11 {
  font-size: 11px !important;
}
.faq__accordion-description p .size-12 {
  font-size: 12px !important;
}
.faq__accordion-description p .size-13 {
  font-size: 13px !important;
}
.faq__accordion-description p .size-14 {
  font-size: 14px !important;
}
.faq__accordion-description p .size-15 {
  font-size: 15px !important;
}
.faq__accordion-description p .size-16 {
  font-size: 16px !important;
}
.faq__accordion-description p .size-17 {
  font-size: 17px !important;
}
.faq__accordion-description p .size-18 {
  font-size: 18px !important;
}
.faq__accordion-description p .size-19 {
  font-size: 19px !important;
}
.faq__accordion-description p .size-20 {
  font-size: 20px !important;
}
.faq__accordion-description p .size-21 {
  font-size: 21px !important;
}
.faq__accordion-description p .size-22 {
  font-size: 22px !important;
}
.faq__accordion-description p .size-23 {
  font-size: 23px !important;
}
.faq__accordion-description p .size-24 {
  font-size: 24px !important;
}
.faq__accordion-description p .size-25 {
  font-size: 25px !important;
}
.faq__accordion-description p .size-26 {
  font-size: 26px !important;
}
.faq__accordion-description p .size-27 {
  font-size: 27px !important;
}
.faq__accordion-description p .size-28 {
  font-size: 28px !important;
}
.faq__accordion-description p .size-29 {
  font-size: 29px !important;
}
.faq__accordion-description a {
  color: #000000;
  text-decoration: underline !important;
  width: 300px;
  height: 400px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.faq__accordion-description b {
  font-weight: bold;
}
.faq__title-component {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0.01em;
  color: #000000;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .faq__title-component {
    padding-bottom: 45px;
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    /* or 128% */
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.faq__accordion-item-container {
  border-bottom: 1px solid #e0e0e0;
}
.faq__accordion-item-container:first-child {
  border-top: 1px solid #e0e0e0;
}
.faq__panel {
  display: none;
  overflow: hidden;
}

.footer {
  background-color: #000000;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 80px 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
  }
  .footer .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .footer-info-wrapper {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-container {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer .city-info {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.footer .footer-item {
  padding: 0 15px;
  border-left: 1px solid #ffffff;
}
.footer .footer-item:first-child {
  border: 0;
  padding-left: 0 !important;
}
.footer .footer-item a {
  padding: 0 !important;
  position: relative;
}
.footer .footer-item a:hover {
  text-decoration: underline !important;
}
.footer .footer-item a:after {
  left: 0 !important;
}
.footer .footer-item a:hover:after {
  width: 100% !important;
}

.container-1140-footer {
  max-width: 1140px;
  width: 100%;
  display: block;
  margin: auto;
}
@media screen and (min-width: 1440px) {
  .container-1140-footer {
    max-width: 1400px !important;
  }
}

.footer-left {
  position: relative;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .footer-left {
    height: auto;
    margin-bottom: 70px;
    padding: 0px 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer-right {
    padding: 0px 0px;
  }
}

.mostra-main {
  /* .image-component_wrapper {
      position: relative;
      .image-component_description-container {
          bottom: -35px;
          position: absolute;
          margin-top: 0;
          @include breakpoint(mobile) {
              bottom: -30px;
              margin: 70px 0 !important;
          }
      }
  } */
}
@media screen and (max-width: 767px) {
  .mostra-main .overlay-text-visible {
    white-space: nowrap;
  }
}

.learn-container {
  margin: 130px 0;
}

/* .switch-position{
  display: flex;
  flex-direction: row-reverse;
  @include breakpoint(mobile){
    display: block;
  }
  .component-image-segment {
    display: inline-block;
    float: right;
    padding: 0 !important;

    height: 630px;
    padding: 0;
    @include breakpoint(mobile) {
      max-height: 530px;
      padding: 0 15px;
      #learn-img{
        margin-top: 80px;
      }
    }
    @include breakpoint(tablet) {
      padding-right: 15px;
    }
  }
  .info-card-text-segment{
    display: inline-block;
    float: left;

    h1{
      width: 100%;
      padding-left: 0px;
    }
    .btn-container{
      width: 100%;
      padding-left: 0px;
    }
    p{
      padding-left: 0px;
    }
    .info-card-cta-container{
      margin-top: 80px;
      padding-left: 0;
      display: flex;
      align-items: center;
      @include breakpoint(tablet){
        flex-direction: column;
      }
      @include breakpoint(mobile){
        width: 100%;
      }
      .info-card-cta{
        margin-left: 3rem;
        @include breakpoint(tablet){
          margin-left: 4px;
        }
        @include breakpoint(mobile){
          margin-top: 30px;
        }
        .arrow-cta{
          text-decoration: none;
          color: $black;
          font-family: $font-description;
          font-style: normal;
          font-weight: 600;
          font-size: 12px;
          line-height: 15px;
          letter-spacing: 0.04em;
          text-transform: uppercase;
          &:hover {
            color: $light-blue;
            .arrow-right {
              background-image: url("clientlib-site/resources/images/icons/arrow.png");
            }
          }
        }
      }
    }
  }
} */
.component-image-segment {
  padding: 0;
}

#learn-img-right {
  padding-left: 109px;
}
@media screen and (max-width: 767px) {
  #learn-img-right {
    padding-left: 15px;
  }
}

.component-text-segment {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .component-text-segment {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.info-card-text-segment p {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
}
.info-card-text-segment .title-component {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .info-card-text-segment .title-component {
    padding-left: 0;
  }
}
.info-card-text-segment .two-btn-cta-border {
  margin-top: 0 !important;
}
.info-card-text-segment .two-btn-cta-border .btn-container {
  margin-top: 0;
  padding: 0 !important;
  white-space: initial !important;
  border: 1px solid #000000;
  padding: 15px 20px !important;
  width: auto;
  text-align: center;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: inline-block;
  margin-top: 30px;
}
.info-card-text-segment .two-btn-cta-border .btn-container:hover {
  border: 1px solid #000000;
  background: #000000;
}
.info-card-text-segment .two-btn-cta-border .btn-container:hover span {
  color: #ffffff;
}
.info-card-text-segment .two-btn-cta-border .btn-container:first-child {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .info-card-text-segment .two-btn-cta-border .btn-container:first-child {
    margin-right: 0;
  }
}
.info-card-text-segment .two-btn-cta-border .btn-container .button {
  padding: 0 !important;
  border: 0 !important;
  text-align: center;
}
@media screen and (max-width: 1244px) {
  .info-card-text-segment .two-btn-cta-border .btn-container {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .info-card-text-segment .two-btn-cta-border .btn-container {
    width: 100%;
  }
}
.info-card-text-segment .btn-container {
  margin-top: 0;
  padding-right: 3rem;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media screen and (max-width: 767px) {
  .info-card-text-segment .btn-container {
    padding-right: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .info-card-text-segment .btn-container {
    padding-left: 0;
  }
}
.info-card-text-segment .btn-container .button {
  padding: 15px 55px !important;
}
.info-card-text-segment .btn-container .button:hover {
  background-color: #000;
  color: #fff;
}
.info-card-text-segment p {
  padding-left: 0px;
}
@media screen and (max-width: 767px) {
  .info-card-text-segment p {
    margin: 0;
  }
}
.info-card-text-segment .info-card-cta-container {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1244px) {
  .info-card-text-segment .info-card-cta-container {
    display: block;
  }
  .info-card-text-segment .info-card-cta-container .info-card-cta {
    padding-left: 0 !important;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .info-card-text-segment .info-card-cta-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
}
.info-card-text-segment .info-card-cta-container .info-card-cta {
  padding-right: 3rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (max-width: 1024px) {
  .info-card-text-segment .info-card-cta-container .info-card-cta {
    padding-left: 23px;
  }
}
@media screen and (max-width: 767px) {
  .info-card-text-segment .info-card-cta-container .info-card-cta {
    margin-top: 30px;
  }
}
.info-card-text-segment .info-card-cta-container .info-card-cta .arrow-cta {
  text-decoration: none;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
}
.info-card-text-segment .info-card-cta-container .info-card-cta .arrow-cta:hover {
  color: #000000;
  background-size: calc(100% - 28px) 2px;
  font-weight: bold;
}
.info-card-text-segment .info-card-cta-container .info-card-cta .arrow-cta:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.info-card-container {
  padding: 0;
  margin: 130px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .info-card-container {
    margin: 34px 0 100px;
  }
}
.info-card-container.text-right {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .info-card-container.text-right {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.info-card-container .title-component {
  margin-bottom: 15px !important;
  font-size: 60px !important;
  line-height: 72px !important;
}
@media screen and (max-width: 767px) {
  .info-card-container .title-component {
    margin-bottom: 20px !important;
    font-size: 40px !important;
    line-height: 60px !important;
  }
}
.info-card-container .title-component.h3 {
  font-size: 48px !important;
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .info-card-container .title-component.h3 {
    font-size: 36px !important;
    line-height: 46px !important;
  }
}
.info-card-container .title-component.h1 {
  font-size: 72px !important;
  line-height: 80px !important;
}
@media screen and (max-width: 767px) {
  .info-card-container .title-component.h1 {
    font-size: 48px !important;
    line-height: 54px !important;
  }
}
@media screen and (max-width: 767px) {
  .info-card-container .component-image-segment {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .info-card-container .component-image-segment .hero-component_description-container {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.info-card-container .component-image-segment .hero-component_description-container .hero-component_description p {
  line-height: 16px;
  font-size: 9px;
  margin-left: 0;
  margin-right: 0;
}
.info-card-container .img-component {
  padding-top: 137.3626373626%;
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .info-card-container .img-component {
    padding-top: 73.1%;
  }
}
.info-card-container .img-component .image__info-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .info-card-container .page-home .info-card-container {
    padding: 0 10px;
  }
}

/* ========================
Header
=========================== */
.header-main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1440px;
  margin: auto;
}

.focus-trap-submenu {
  display: none;
}

.focus-trap-menu {
  display: none;
  width: 0px;
}

.skip_block_popup {
  position: fixed;
  top: -50px;
  left: 50px;
  padding: 10px;
  border-radius: 20px;
  background: white;
}
.skip_block_popup:focus-visible {
  z-index: 1002;
  top: 50px;
}
.skip_block_popup:focus-visible ~ .skip_block_shadow {
  left: 0px;
}

.skip_block_shadow {
  position: fixed;
  top: 0px;
  left: -100%;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1001;
}

.main-menu {
  /* width: 1140px; */
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  z-index: 1000;
  top: 0;
  /* display: none !important; */
}
@media screen and (min-width: 1025px) {
  .main-menu {
    background: #ffffff;
    /* width: 1440px; */
  }
  .main-menu.scrolled .primary-menu {
    height: 90px !important;
    line-height: 90px !important;
  }
  .main-menu.scrolled .container-header-top {
    height: 90px !important;
  }
  .main-menu.scrolled .set-btn__close-search {
    top: 33px;
  }
  .main-menu.scrolled .logo-img {
    width: 48px !important;
    height: 60px !important;
    background-size: 48px 60px !important;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu.bg-active-white {
    height: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .main-menu.scrolled-down .container-header-top {
    top: 0 !important;
  }
  .main-menu.scrolled-down .set-btn__close-search {
    top: 35px !important;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu {
    height: 78px;
  }
  .main-menu.active {
    height: 100%;
  }
  .main-menu.active .logo-img {
    background-image: url(clientlib-site/resources/images/icons/new-logo.svg) !important;
  }
  .main-menu.active .icon-search {
    background-image: url(clientlib-site/resources/images/icons/search.svg) !important;
  }
  .main-menu.active .hamburger-container span {
    background-color: #000000 !important;
  }
  .main-menu.active .container-header-top {
    border-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .main-menu.active .container-header-top {
    background-color: white !important;
  }
  .main-menu.active .pre-header__right-block {
    background-color: white;
  }
  .main-menu.active .pre-header {
    margin-bottom: 50px;
  }
}
.main-menu .primary-menu {
  position: relative !important;
  width: 100%;
  height: 109px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 109px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .main-menu .primary-menu {
    display: block;
    height: 79px;
    line-height: 79px;
  }
  .main-menu .primary-menu.container {
    padding: 0 !important;
  }
}
.main-menu .primary-menu .logo {
  float: left;
  width: 90px;
}
@media screen and (max-width: 1024px) {
  .main-menu .primary-menu .logo {
    position: absolute;
  }
}
.main-menu .primary-menu .header_navigation {
  /* float: left; */
  display: inline-block;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .main-menu .primary-menu .header_navigation {
    display: block;
    margin-top: 78px;
    height: auto;
    background: #000000;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .primary-menu .header_navigation .header__menu-block {
    padding: 8px 0;
    margin-bottom: 0px;
  }
  .main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item {
    float: left;
    display: block;
    margin: 32px 20px !important;
  }
}
.main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  float: left;
  display: block;
  position: relative;
  margin: 0 15px;
  border-bottom: none;
}
.main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item.active:after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  height: 2px;
  background-color: #000000;
  margin-top: -2px;
}
.main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item.active p {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 1025px) {
  .main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item.active a {
    color: #000000;
  }
}
.main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item.active-page:after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  height: 2px;
  background-color: #000000;
  margin-top: -2px;
}
.main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item.active-page p {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 1025px) {
  .main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item.active-page a {
    color: #000000;
  }
}
.main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item.active-page.disabled:after {
  display: none;
}
.main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item.active-page.disabled p {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 1025px) {
  .main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item.active-page.disabled a {
    color: #000000;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .primary-menu .header_navigation .header__menu-block .header__menu-item {
    float: unset;
    height: 18px;
    line-height: 18px;
  }
}
.main-menu .primary-menu .header_navigation a {
  color: #000000;
  font-size: 14px;
  font-family: "Inter", Arial, sans-serif;
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  background-position: center bottom;
  text-decoration: none;
  background-repeat: no-repeat;
  padding-bottom: 3px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.main-menu .primary-menu .header_navigation a:hover {
  color: #000000;
  background-size: 100% 2px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .main-menu .primary-menu .header_navigation a {
    color: #ffffff;
    display: block;
    position: relative;
  }
  .main-menu .primary-menu .header_navigation a:hover {
    color: #ffffff;
  }
  .main-menu .primary-menu .header_navigation a:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 10px;
    background-image: url("clientlib-site/resources/images/icons/short-arrow-right-white.png");
    background-color: transparent;
    background-repeat: no-repeat;
    vertical-align: middle;
    -webkit-transition: none;
    transition: none;
    right: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -10px;
  }
}
.main-menu.transparent {
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
}
@media screen and (min-width: 1025px) {
  .main-menu.transparent .primary-menu {
    background-color: transparent;
  }
  .main-menu.transparent .primary-menu .submenu-item a {
    background-image: -webkit-gradient(linear, left top, right top, from(white), to(white));
    background-image: linear-gradient(90deg, white, white);
  }
  .main-menu.transparent .primary-menu .submenu-item a:hover {
    color: #ffffff;
    font-weight: bold;
  }
  .main-menu.transparent .header__menu-item a {
    background-image: -webkit-gradient(linear, left top, right top, from(white), to(white));
    background-image: linear-gradient(90deg, white, white);
    color: #ffffff;
  }
  .main-menu.transparent .header__menu-item a:hover {
    color: #ffffff;
    font-weight: bold;
  }
  .main-menu.transparent .icon-search {
    background-image: url("clientlib-site/resources/images/icons/search-white.svg") !important;
    color: #ffffff !important;
  }
  .main-menu.transparent .icon-search:hover {
    color: #ffffff !important;
    background-image: url("clientlib-site/resources/images/icons/search-white.svg") !important;
    -webkit-filter: brightness(100%) !important;
            filter: brightness(100%) !important;
  }
  .main-menu.transparent .icon-search:hover::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF !important;
    position: absolute;
    bottom: -4px;
  }
}
.main-menu.transparent .container-header-top {
  background-color: transparent;
}
.main-menu.transparent .logo-img {
  background-image: url("clientlib-site/resources/images/icons/new-logo-white.svg");
}
@media screen and (min-width: 1025px) {
  .main-menu.transparent .logo-img {
    /* display: none; */
  }
}
.main-menu.transparent .icon-search {
  background-image: url("clientlib-site/resources/images/icons/search-white.svg");
}
.main-menu.transparent div.hamburger-container span {
  background: #ffffff;
}
@media screen and (max-width: 1024px) {
  .main-menu .logo-img {
    margin-left: 20px !important;
    -webkit-transition: 0.3s all ease !important;
    transition: 0.3s all ease !important;
    background-size: 44px 57px !important;
    width: 44px !important;
    height: 57px !important;
  }
}
.main-menu .close-search-btn {
  float: right;
  display: none;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .main-menu .close-search-btn {
    position: absolute;
    right: 0;
    top: 50%;
    width: 15px;
    height: 15px;
  }
  .main-menu .close-search-btn span {
    background: #000000 !important;
    height: 2px;
    display: block;
    position: relative;
    margin-bottom: 7px;
    width: 22px !important;
    float: right;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    display: none;
  }
  .main-menu .close-search-btn span:first-child {
    width: 16px;
    display: block;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
    top: 8px;
    right: 0;
  }
  .main-menu .close-search-btn span:last-child {
    width: 16px;
    display: block;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    position: absolute;
    top: 8px;
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .close-search-btn {
    position: absolute;
    right: 62px;
    top: 50%;
    width: 18px;
    height: 18px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .main-menu .close-search-btn .hamburger-container span {
    background: #000000;
    height: 2px;
    position: relative;
    margin-bottom: 7px;
    width: 22px;
    float: right;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    display: none;
  }
  .main-menu .close-search-btn .hamburger-container span:first-child {
    width: 23px;
    display: block;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
    top: 8px;
    right: 0;
  }
  .main-menu .close-search-btn .hamburger-container span:last-child {
    width: 23px;
    display: block;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    position: absolute;
    top: 8px;
    right: 0;
  }
}
.main-menu .close-btn {
  float: right;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .main-menu .close-btn {
    position: absolute;
    right: 0;
    display: block;
    top: 50%;
    width: 25px;
    height: 22px;
    margin-top: 6px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .main-menu .close-btn .hamburger-container span {
    background: #000000;
    height: 2px;
    display: block;
    position: relative;
    margin-bottom: 7px;
    width: 22px;
    float: right;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .main-menu .close-btn .hamburger-container span:first-child {
    width: 16px;
  }
  .main-menu .close-btn .hamburger-container span:last-child {
    width: 16px;
  }
  .main-menu .close-btn.active {
    width: 25px;
    height: 20px;
  }
  .main-menu .close-btn.active span {
    display: none;
  }
  .main-menu .close-btn.active span:first-child {
    width: 23px;
    display: block;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
    top: 8px;
    right: 0;
  }
  .main-menu .close-btn.active span:last-child {
    width: 23px;
    display: block;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    position: absolute;
    top: 8px;
    right: 0;
  }
}
.main-menu .container-header-top {
  position: absolute;
  display: block;
  height: 109px;
  top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1002;
}
@media screen and (max-width: 1024px) {
  .main-menu .container-header-top.dsk {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .main-menu .container-header-top.tbl {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .container-header-top {
    -webkit-transition: 0.3s all ease !important;
    transition: 0.3s all ease !important;
    z-index: 1001;
    top: 0;
    height: 78px;
    background-color: #ffffff;
    width: 100%;
    border-bottom: 1px solid #e0e0e0 !important;
  }
}
.main-menu .search-btn {
  float: right;
}
@media screen and (max-width: 1024px) {
  .main-menu .search-btn {
    position: absolute;
    right: 65px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.main-menu .search-btn .icon-search {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .main-menu .search-btn .icon-search {
    width: 20px;
    height: 20px;
    background-size: 20px;
    top: 6px;
  }
}
.main-menu .search-btn .icon-search:hover {
  -webkit-filter: brightness(0%);
          filter: brightness(0%);
}
.main-menu .search-btn .icon-search:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: -4px;
}
@media screen and (max-width: 1024px) {
  .main-menu .toggle-menu {
    display: none;
    background: #ffffff !important;
    height: 100%;
    left: 100%;
    position: absolute;
    width: 100%;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  .main-menu .toggle-menu .pre-header__right-block {
    left: 100% !important;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
}
@media screen and (max-width: 767px) {
  .main-menu .toggle-menu {
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .toggle-menu.opened {
    left: 0;
    display: block;
  }
  .main-menu .toggle-menu.opened .pre-header__right-block {
    left: 0 !important;
    border-top: 1px solid #e0e0e0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 2 !important;
  }
  .main-menu .toggle-menu.opened .pre-header__right-block .first-level {
    margin: 0;
  }
}
.main-menu .turn-back {
  display: none;
  height: 50px;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  line-height: 50px;
  cursor: pointer;
  margin-left: -12px !important;
  padding: 0 !important;
  width: 100vw;
}
.main-menu .turn-back:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url("clientlib-site/resources/images/icons/short-arrow-left-black.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 20px;
  vertical-align: middle;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 1024px) {
  .main-menu .turn-back {
    display: block;
    color: #000000 !important;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .cta-container {
    margin-top: 27px;
    padding: 0 10px;
  }
}
.main-menu .cta-container .arrow-cta {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
  -webkit-transition: none;
  transition: none;
}
.main-menu .cta-container .arrow-cta:hover {
  background-size: 100% 2px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .main-menu .cta-container .arrow-cta {
    font-size: 14px;
  }
}
.main-menu .cta-container .arrow-cta .arrow-right {
  -webkit-animation: arrow-discover-header 0.6s ease-in-out both;
          animation: arrow-discover-header 0.6s ease-in-out both;
}
@-webkit-keyframes arrow-discover-header {
  from {
    -webkit-transform: translate(10px, -5px);
            transform: translate(10px, -5px);
  }
  to {
    -webkit-transform: translate(-30px, -5px);
            transform: translate(-30px, -5px);
  }
}
@keyframes arrow-discover-header {
  from {
    -webkit-transform: translate(10px, -5px);
            transform: translate(10px, -5px);
  }
  to {
    -webkit-transform: translate(-30px, -5px);
            transform: translate(-30px, -5px);
  }
}
.main-menu .set-btn__close-search {
  position: absolute;
  right: 10px;
  top: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1002;
}
@media screen and (min-width: 1025px) {
  .main-menu .set-btn__close-search {
    /* display: none; */
    /* right: 150px; */
    right: 390px;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .set-btn__close-search {
    top: 40px;
    right: 30px;
  }
}
.main-menu .set-btn__close-search .close-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main-menu .set-btn__close-search .close-btn {
    display: block;
  }
}
.main-menu .logo {
  cursor: pointer;
}

.header-separator {
  content: "";
  display: block;
  height: 15px;
  width: 1px;
  background: #fff;
  /* margin-left: 15px;
  margin-right: 15px; */
}

.submenu__navigation {
  position: absolute !important;
  width: 100% !important;
  top: 100% !important;
  left: 0px !important;
  height: auto !important;
  line-height: 20px;
  padding-top: 0px;
  opacity: 0;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  /* padding-top: 60px; */
  /* min-height: 378px; */
}
@media screen and (max-width: 1024px) {
  .submenu__navigation {
    opacity: 1;
    position: absolute;
    width: 100%;
    left: 100%;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    top: 60px;
  }
  .submenu__navigation.active {
    left: 0;
  }
}
.submenu__navigation.open {
  padding-bottom: 15px;
  border-top: 1px solid #e0e0e0;
  background-color: #ffffff;
  display: block;
  opacity: 1;
  -webkit-animation: open 0.2s ease-in-out both;
          animation: open 0.2s ease-in-out both;
}
@-webkit-keyframes open {
  from {
    height: 0px;
  }
  to {
    height: 378px;
  }
  from {
    padding-top: 0px;
  }
  to {
    padding-top: 57px;
  }
}
@keyframes open {
  from {
    height: 0px;
  }
  to {
    height: 378px;
  }
  from {
    padding-top: 0px;
  }
  to {
    padding-top: 57px;
  }
}
.submenu__navigation .dropdown__submenu {
  width: 100%;
  margin: auto;
  display: none;
  background-color: #ffffff;
}
.submenu__navigation .dropdown__submenu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .submenu__navigation .dropdown__submenu {
    display: none !important;
    overflow-x: scroll;
    position: absolute;
    background-color: #ffffff;
    height: 100%;
    min-height: 100vh;
    left: 100%;
  }
  .submenu__navigation .dropdown__submenu.active {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    left: 0 !important;
    top: -80px;
    z-index: 1;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .submenu__navigation .dropdown__submenu.active .col-lg-4.offset-lg-1 {
    max-width: 100%;
    margin-left: 0;
  }
  .submenu__navigation .dropdown__submenu.active .cta-container a {
    color: #000000;
    -webkit-transition: none;
    transition: none;
    display: inline-block;
  }
  .submenu__navigation .dropdown__submenu.active .submenu__section {
    padding-top: 32px;
  }
  .submenu__navigation .dropdown__submenu.active a:after {
    display: none;
  }
}
.submenu__navigation .dropdown__submenu .container-header {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .submenu__navigation .dropdown__submenu .container-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.submenu__navigation .dropdown__submenu .container-header .left-block {
  padding-left: 0;
}
.submenu__navigation .dropdown__submenu .container-header .image-column {
  padding-right: 0;
}
@media screen and (max-width: 1024px) {
  .submenu__navigation .dropdown__submenu .submenu__section {
    width: 100%;
    padding-top: 20px;
  }
}
.submenu__navigation .dropdown__submenu .submenu__section.block-image {
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .submenu__navigation .dropdown__submenu .submenu__section.block-image {
    display: none;
  }
}
.submenu__navigation .dropdown__submenu .submenu__section.block-image .description {
  font-family: "Canela", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-top: 16px;
  margin-bottom: 45px;
}
.submenu__navigation .dropdown__submenu .submenu__section .block__image-description {
  text-decoration: none;
}
.submenu__navigation .dropdown__submenu .submenu__section .block__image-description .image-container {
  overflow: hidden;
  width: 100%;
}
.submenu__navigation .dropdown__submenu .submenu__section .block__image-description .submenu-image {
  width: 100%;
  padding-top: 73.4082397004%;
  display: block;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.submenu__navigation .dropdown__submenu .submenu__section .block__image-description .description p {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 1px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: unset;
}
.submenu__navigation .dropdown__submenu .submenu__section .block__image-description:hover .description {
  color: #000000;
}
.submenu__navigation .dropdown__submenu .submenu__section .block__image-description:hover .description p {
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 100% 1px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
  display: unset;
}
.submenu__navigation .dropdown__submenu .submenu__section .block__image-description:hover .submenu-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.submenu__navigation .dropdown__submenu .submenu__section .navigation-menu {
  list-style: none;
  padding: 0;
}
.submenu__navigation .dropdown__submenu .submenu__section .navigation-menu .submenu-item {
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .submenu__navigation .dropdown__submenu .submenu__section .navigation-menu .submenu-item {
    margin-bottom: 23px;
  }
}
.submenu__navigation .dropdown__submenu .submenu__section .navigation-menu .submenu-item a {
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", Arial, sans-serif;
  color: #000000;
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: inline-block;
}
.submenu__navigation .dropdown__submenu .submenu__section .navigation-menu .submenu-item a:hover {
  color: #000000;
}
.submenu__navigation .dropdown__submenu .moving-up {
  -webkit-animation: move-up 0.4s ease-in-out both;
          animation: move-up 0.4s ease-in-out both;
}
@-webkit-keyframes move-up {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes move-up {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
            transform: translate(0, 50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.submenu__navigation .dropdown__submenu .moving-up.block-image {
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .submenu__navigation .dropdown__submenu .moving-up.block-image {
    display: none;
  }
}
.submenu__navigation .dropdown__submenu .moving-up.block-image .description {
  font-family: "Canela", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-top: 16px;
}
.submenu__navigation .dropdown__submenu .moving-up .block__image-description {
  overflow: hidden;
}
.submenu__navigation .dropdown__submenu .moving-up .block__image-description .submenu-image {
  overflow: hidden;
  width: 100%;
}
.submenu__navigation .dropdown__submenu .moving-up .navigation-menu {
  list-style: none;
  padding: 0;
}
.submenu__navigation .dropdown__submenu .moving-up .navigation-menu .submenu-item {
  margin-bottom: 32px;
  overflow: hidden;
}
.submenu__navigation .dropdown__submenu .moving-up .navigation-menu .submenu-item a {
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", Arial, sans-serif;
  color: #000000;
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.submenu__navigation .dropdown__submenu .moving-up .navigation-menu .submenu-item a:hover {
  color: #000000;
}
.submenu__navigation .dropdown__submenu .section-description {
  max-width: 267px;
  width: 100%;
  color: #6f6f6f;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
  margin-top: 35px;
}
@media screen and (max-width: 1024px) {
  .submenu__navigation .dropdown__submenu .section-description {
    display: none;
  }
}

.page-home .hero-big-picture {
  margin-top: 130px !important;
}
@media screen and (max-width: 1024px) {
  .page-home {
    margin-top: 80px !important;
  }
}

.hero-component_description-container {
  width: 100%;
  --bs-gutter-x: 0 rem !important;
}
@media screen and (max-width: 767px) {
  .hero-component_description-container {
    padding: 0 10px;
    margin-left: 0;
    margin-right: 0;
  }
}
.hero-component_description-container .hero-component_description {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 9px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-top: 8px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .hero-component_description-container .hero-component_description {
    margin-top: 10px;
  }
}
.hero-component_description-container .hero-component_description.mobile-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .hero-component_description-container .hero-component_description.mobile-only {
    display: block !important;
  }
}
.hero-component_description-container .hero-component_description.desktop-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .hero-component_description-container .hero-component_description.desktop-only {
    display: none !important;
  }
}
.hero-component_description-container .hero-component_description p {
  margin-left: 16px;
  margin-right: 16px;
  font-size: 9px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
@media screen and (max-width: 767px) {
  .hero-component_description-container .hero-component_description p {
    margin-left: 10px;
    margin-right: 10px;
    line-height: 16px;
    font-size: 9px;
  }
}
.hero-component_description-container .hero-component_description p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.hero-component_description-container .hero-component_description p b {
  font-weight: bold;
}
.hero-component_description-container .hero-component_description p .size-8 {
  font-size: 8px !important;
}
.hero-component_description-container .hero-component_description p .size-9 {
  font-size: 9px !important;
}
.hero-component_description-container .hero-component_description p .size-10 {
  font-size: 10px !important;
}
.hero-component_description-container .hero-component_description p .size-11 {
  font-size: 11px !important;
}
.hero-component_description-container .hero-component_description p .size-12 {
  font-size: 12px !important;
}
.hero-component_description-container .hero-component_description p .size-13 {
  font-size: 13px !important;
}
.hero-component_description-container .hero-component_description p .size-14 {
  font-size: 14px !important;
}
.hero-component_description-container .hero-component_description p .size-15 {
  font-size: 15px !important;
}
.hero-component_description-container .hero-component_description p .size-16 {
  font-size: 16px !important;
}
.hero-component_description-container .hero-component_description p .size-17 {
  font-size: 17px !important;
}
.hero-component_description-container .hero-component_description p .size-18 {
  font-size: 18px !important;
}
.hero-component_description-container .hero-component_description p .size-19 {
  font-size: 19px !important;
}
.hero-component_description-container .hero-component_description p .size-20 {
  font-size: 20px !important;
}
.hero-component_description-container .hero-component_description p .size-21 {
  font-size: 21px !important;
}
.hero-component_description-container .hero-component_description p .size-22 {
  font-size: 22px !important;
}
.hero-component_description-container .hero-component_description p .size-23 {
  font-size: 23px !important;
}
.hero-component_description-container .hero-component_description p .size-24 {
  font-size: 24px !important;
}
.hero-component_description-container .hero-component_description p .size-25 {
  font-size: 25px !important;
}
.hero-component_description-container .hero-component_description p .size-26 {
  font-size: 26px !important;
}
.hero-component_description-container .hero-component_description p .size-27 {
  font-size: 27px !important;
}
.hero-component_description-container .hero-component_description p .size-28 {
  font-size: 28px !important;
}
.hero-component_description-container .hero-component_description p .size-29 {
  font-size: 29px !important;
}
.hero-component_description-container .hero-component_description p .size-30 {
  font-size: 30px !important;
}
.hero-component_description-container .hero-component_description p .size-31 {
  font-size: 31px !important;
}
.hero-component_description-container .hero-component_description p .size-32 {
  font-size: 32px !important;
}
.hero-component_description-container .hero-component_description p .size-33 {
  font-size: 33px !important;
}
.hero-component_description-container .hero-component_description p .size-34 {
  font-size: 34px !important;
}
.hero-component_description-container .hero-component_description p .size-35 {
  font-size: 35px !important;
}
.hero-component_description-container .hero-component_description p .size-36 {
  font-size: 36px !important;
}
.hero-component_description-container .hero-component_description p .size-37 {
  font-size: 37px !important;
}
.hero-component_description-container .hero-component_description p .size-38 {
  font-size: 38px !important;
}
.hero-component_description-container .hero-component_description p .size-39 {
  font-size: 39px !important;
}
.hero-component_description-container .hero-component_description p .size-40 {
  font-size: 40px !important;
}
.hero-component_description-container .hero-component_description p .size-41 {
  font-size: 41px !important;
}
.hero-component_description-container .hero-component_description p .size-42 {
  font-size: 42px !important;
}
.hero-component_description-container .hero-component_description p .size-43 {
  font-size: 43px !important;
}
.hero-component_description-container .hero-component_description p .size-44 {
  font-size: 44px !important;
}
.hero-component_description-container .hero-component_description p .size-45 {
  font-size: 45px !important;
}
.hero-component_description-container .hero-component_description p .size-46 {
  font-size: 46px !important;
}
.hero-component_description-container .hero-component_description p .size-47 {
  font-size: 47px !important;
}
.hero-component_description-container .hero-component_description p .size-48 {
  font-size: 48px !important;
}
.hero-component_description-container .hero-component_description p .size-49 {
  font-size: 49px !important;
}
.hero-component_description-container .hero-component_description p .size-50 {
  font-size: 50px !important;
}
.hero-component_description-container .hero-component_description p .size-51 {
  font-size: 51px !important;
}
.hero-component_description-container .hero-component_description p .size-52 {
  font-size: 52px !important;
}
.hero-component_description-container .hero-component_description p .size-53 {
  font-size: 53px !important;
}
.hero-component_description-container .hero-component_description p .size-54 {
  font-size: 54px !important;
}
.hero-component_description-container .hero-component_description p .size-55 {
  font-size: 55px !important;
}
.hero-component_description-container .hero-component_description p .size-56 {
  font-size: 56px !important;
}
.hero-component_description-container .hero-component_description p .size-57 {
  font-size: 57px !important;
}
.hero-component_description-container .hero-component_description p .size-58 {
  font-size: 58px !important;
}
.hero-component_description-container .hero-component_description p .size-59 {
  font-size: 59px !important;
}
.hero-component_description-container .hero-component_description p .size-60 {
  font-size: 60px !important;
}
.hero-component_description-container .hero-component_description a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.hero-component_description-container .hero-component_description b {
  font-weight: bold;
}
.hero-component_description-container .description-right {
  text-align: right;
}

.hero-big-picture-container {
  background-color: #c4c4c4;
  height: 100vh;
  width: 100%;
  margin-bottom: 0px;
  padding-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #c4c4c4;
  background-size: cover !important;
}
html[class*=aem-AuthorLayer-] .hero-big-picture-container {
  height: 700px !important;
}
.hero-big-picture-container .hero-big-picture {
  margin: 0;
  width: 100%;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title {
    padding: 0 15px;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title {
  padding-bottom: 42px;
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 72px;
  line-height: 80px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title {
    width: 100%;
    font-family: "Canela", Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #ffffff;
  }
}
@media screen and (max-width: 1024px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title {
    line-height: 60px;
    font-size: 52px;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * {
  padding-bottom: 42px;
  font-family: "Canela", Arial, sans-serif;
  font-size: 72px;
  line-height: 80px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * {
    width: 100%;
    font-family: "Canela", Arial, sans-serif;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #ffffff;
  }
}
@media screen and (max-width: 1024px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * {
    line-height: 60px;
    font-size: 52px;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-8 {
  font-size: 8px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-8 i {
  font-size: 8px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-8 b {
  font-size: 8px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-8 {
    font-size: 8px !important;
    font-size: clamp(1px, 8px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-8 i {
    font-size: 8px !important;
    font-size: clamp(1px, 8px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-8 b {
    font-size: 8px !important;
    font-size: clamp(1px, 8px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-9 {
  font-size: 9px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-9 i {
  font-size: 9px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-9 b {
  font-size: 9px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-9 {
    font-size: 9px !important;
    font-size: clamp(1px, 9px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-9 i {
    font-size: 9px !important;
    font-size: clamp(1px, 9px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-9 b {
    font-size: 9px !important;
    font-size: clamp(1px, 9px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-10 {
  font-size: 10px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-10 i {
  font-size: 10px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-10 b {
  font-size: 10px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-10 {
    font-size: 10px !important;
    font-size: clamp(1px, 10px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-10 i {
    font-size: 10px !important;
    font-size: clamp(1px, 10px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-10 b {
    font-size: 10px !important;
    font-size: clamp(1px, 10px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-11 {
  font-size: 11px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-11 i {
  font-size: 11px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-11 b {
  font-size: 11px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-11 {
    font-size: 11px !important;
    font-size: clamp(1px, 11px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-11 i {
    font-size: 11px !important;
    font-size: clamp(1px, 11px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-11 b {
    font-size: 11px !important;
    font-size: clamp(1px, 11px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-12 {
  font-size: 12px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-12 i {
  font-size: 12px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-12 b {
  font-size: 12px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-12 {
    font-size: 12px !important;
    font-size: clamp(1px, 12px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-12 i {
    font-size: 12px !important;
    font-size: clamp(1px, 12px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-12 b {
    font-size: 12px !important;
    font-size: clamp(1px, 12px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-13 {
  font-size: 13px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-13 i {
  font-size: 13px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-13 b {
  font-size: 13px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-13 {
    font-size: 13px !important;
    font-size: clamp(1px, 13px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-13 i {
    font-size: 13px !important;
    font-size: clamp(1px, 13px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-13 b {
    font-size: 13px !important;
    font-size: clamp(1px, 13px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-14 {
  font-size: 14px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-14 i {
  font-size: 14px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-14 b {
  font-size: 14px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-14 {
    font-size: 14px !important;
    font-size: clamp(1px, 14px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-14 i {
    font-size: 14px !important;
    font-size: clamp(1px, 14px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-14 b {
    font-size: 14px !important;
    font-size: clamp(1px, 14px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-15 {
  font-size: 15px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-15 i {
  font-size: 15px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-15 b {
  font-size: 15px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-15 {
    font-size: 15px !important;
    font-size: clamp(1px, 15px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-15 i {
    font-size: 15px !important;
    font-size: clamp(1px, 15px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-15 b {
    font-size: 15px !important;
    font-size: clamp(1px, 15px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-16 {
  font-size: 16px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-16 i {
  font-size: 16px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-16 b {
  font-size: 16px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-16 {
    font-size: 16px !important;
    font-size: clamp(1px, 16px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-16 i {
    font-size: 16px !important;
    font-size: clamp(1px, 16px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-16 b {
    font-size: 16px !important;
    font-size: clamp(1px, 16px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-17 {
  font-size: 17px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-17 i {
  font-size: 17px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-17 b {
  font-size: 17px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-17 {
    font-size: 17px !important;
    font-size: clamp(1px, 17px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-17 i {
    font-size: 17px !important;
    font-size: clamp(1px, 17px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-17 b {
    font-size: 17px !important;
    font-size: clamp(1px, 17px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-18 {
  font-size: 18px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-18 i {
  font-size: 18px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-18 b {
  font-size: 18px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-18 {
    font-size: 18px !important;
    font-size: clamp(1px, 18px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-18 i {
    font-size: 18px !important;
    font-size: clamp(1px, 18px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-18 b {
    font-size: 18px !important;
    font-size: clamp(1px, 18px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-19 {
  font-size: 19px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-19 i {
  font-size: 19px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-19 b {
  font-size: 19px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-19 {
    font-size: 19px !important;
    font-size: clamp(1px, 19px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-19 i {
    font-size: 19px !important;
    font-size: clamp(1px, 19px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-19 b {
    font-size: 19px !important;
    font-size: clamp(1px, 19px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-20 {
  font-size: 20px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-20 i {
  font-size: 20px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-20 b {
  font-size: 20px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-20 {
    font-size: 20px !important;
    font-size: clamp(1px, 20px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-20 i {
    font-size: 20px !important;
    font-size: clamp(1px, 20px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-20 b {
    font-size: 20px !important;
    font-size: clamp(1px, 20px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-21 {
  font-size: 21px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-21 i {
  font-size: 21px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-21 b {
  font-size: 21px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-21 {
    font-size: 21px !important;
    font-size: clamp(1px, 21px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-21 i {
    font-size: 21px !important;
    font-size: clamp(1px, 21px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-21 b {
    font-size: 21px !important;
    font-size: clamp(1px, 21px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-22 {
  font-size: 22px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-22 i {
  font-size: 22px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-22 b {
  font-size: 22px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-22 {
    font-size: 22px !important;
    font-size: clamp(1px, 22px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-22 i {
    font-size: 22px !important;
    font-size: clamp(1px, 22px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-22 b {
    font-size: 22px !important;
    font-size: clamp(1px, 22px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-23 {
  font-size: 23px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-23 i {
  font-size: 23px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-23 b {
  font-size: 23px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-23 {
    font-size: 23px !important;
    font-size: clamp(1px, 23px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-23 i {
    font-size: 23px !important;
    font-size: clamp(1px, 23px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-23 b {
    font-size: 23px !important;
    font-size: clamp(1px, 23px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-24 {
  font-size: 24px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-24 i {
  font-size: 24px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-24 b {
  font-size: 24px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-24 {
    font-size: 24px !important;
    font-size: clamp(1px, 24px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-24 i {
    font-size: 24px !important;
    font-size: clamp(1px, 24px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-24 b {
    font-size: 24px !important;
    font-size: clamp(1px, 24px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-25 {
  font-size: 25px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-25 i {
  font-size: 25px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-25 b {
  font-size: 25px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-25 {
    font-size: 25px !important;
    font-size: clamp(1px, 25px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-25 i {
    font-size: 25px !important;
    font-size: clamp(1px, 25px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-25 b {
    font-size: 25px !important;
    font-size: clamp(1px, 25px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-26 {
  font-size: 26px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-26 i {
  font-size: 26px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-26 b {
  font-size: 26px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-26 {
    font-size: 26px !important;
    font-size: clamp(1px, 26px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-26 i {
    font-size: 26px !important;
    font-size: clamp(1px, 26px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-26 b {
    font-size: 26px !important;
    font-size: clamp(1px, 26px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-27 {
  font-size: 27px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-27 i {
  font-size: 27px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-27 b {
  font-size: 27px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-27 {
    font-size: 27px !important;
    font-size: clamp(1px, 27px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-27 i {
    font-size: 27px !important;
    font-size: clamp(1px, 27px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-27 b {
    font-size: 27px !important;
    font-size: clamp(1px, 27px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-28 {
  font-size: 28px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-28 i {
  font-size: 28px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-28 b {
  font-size: 28px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-28 {
    font-size: 28px !important;
    font-size: clamp(1px, 28px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-28 i {
    font-size: 28px !important;
    font-size: clamp(1px, 28px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-28 b {
    font-size: 28px !important;
    font-size: clamp(1px, 28px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-29 {
  font-size: 29px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-29 i {
  font-size: 29px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-29 b {
  font-size: 29px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-29 {
    font-size: 29px !important;
    font-size: clamp(1px, 29px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-29 i {
    font-size: 29px !important;
    font-size: clamp(1px, 29px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-29 b {
    font-size: 29px !important;
    font-size: clamp(1px, 29px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-30 {
  font-size: 30px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-30 i {
  font-size: 30px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-30 b {
  font-size: 30px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-30 {
    font-size: 30px !important;
    font-size: clamp(1px, 30px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-30 i {
    font-size: 30px !important;
    font-size: clamp(1px, 30px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-30 b {
    font-size: 30px !important;
    font-size: clamp(1px, 30px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-31 {
  font-size: 31px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-31 i {
  font-size: 31px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-31 b {
  font-size: 31px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-31 {
    font-size: 31px !important;
    font-size: clamp(1px, 31px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-31 i {
    font-size: 31px !important;
    font-size: clamp(1px, 31px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-31 b {
    font-size: 31px !important;
    font-size: clamp(1px, 31px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-32 {
  font-size: 32px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-32 i {
  font-size: 32px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-32 b {
  font-size: 32px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-32 {
    font-size: 32px !important;
    font-size: clamp(1px, 32px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-32 i {
    font-size: 32px !important;
    font-size: clamp(1px, 32px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-32 b {
    font-size: 32px !important;
    font-size: clamp(1px, 32px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-33 {
  font-size: 33px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-33 i {
  font-size: 33px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-33 b {
  font-size: 33px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-33 {
    font-size: 33px !important;
    font-size: clamp(1px, 33px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-33 i {
    font-size: 33px !important;
    font-size: clamp(1px, 33px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-33 b {
    font-size: 33px !important;
    font-size: clamp(1px, 33px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-34 {
  font-size: 34px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-34 i {
  font-size: 34px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-34 b {
  font-size: 34px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-34 {
    font-size: 34px !important;
    font-size: clamp(1px, 34px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-34 i {
    font-size: 34px !important;
    font-size: clamp(1px, 34px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-34 b {
    font-size: 34px !important;
    font-size: clamp(1px, 34px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-35 {
  font-size: 35px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-35 i {
  font-size: 35px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-35 b {
  font-size: 35px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-35 {
    font-size: 35px !important;
    font-size: clamp(1px, 35px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-35 i {
    font-size: 35px !important;
    font-size: clamp(1px, 35px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-35 b {
    font-size: 35px !important;
    font-size: clamp(1px, 35px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-36 {
  font-size: 36px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-36 i {
  font-size: 36px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-36 b {
  font-size: 36px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-36 {
    font-size: 36px !important;
    font-size: clamp(1px, 36px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-36 i {
    font-size: 36px !important;
    font-size: clamp(1px, 36px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-36 b {
    font-size: 36px !important;
    font-size: clamp(1px, 36px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-37 {
  font-size: 37px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-37 i {
  font-size: 37px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-37 b {
  font-size: 37px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-37 {
    font-size: 37px !important;
    font-size: clamp(1px, 37px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-37 i {
    font-size: 37px !important;
    font-size: clamp(1px, 37px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-37 b {
    font-size: 37px !important;
    font-size: clamp(1px, 37px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-38 {
  font-size: 38px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-38 i {
  font-size: 38px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-38 b {
  font-size: 38px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-38 {
    font-size: 38px !important;
    font-size: clamp(1px, 38px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-38 i {
    font-size: 38px !important;
    font-size: clamp(1px, 38px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-38 b {
    font-size: 38px !important;
    font-size: clamp(1px, 38px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-39 {
  font-size: 39px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-39 i {
  font-size: 39px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-39 b {
  font-size: 39px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-39 {
    font-size: 39px !important;
    font-size: clamp(1px, 39px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-39 i {
    font-size: 39px !important;
    font-size: clamp(1px, 39px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-39 b {
    font-size: 39px !important;
    font-size: clamp(1px, 39px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-40 {
  font-size: 40px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-40 i {
  font-size: 40px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-40 b {
  font-size: 40px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-40 {
    font-size: 40px !important;
    font-size: clamp(1px, 40px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-40 i {
    font-size: 40px !important;
    font-size: clamp(1px, 40px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-40 b {
    font-size: 40px !important;
    font-size: clamp(1px, 40px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-41 {
  font-size: 41px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-41 i {
  font-size: 41px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-41 b {
  font-size: 41px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-41 {
    font-size: 41px !important;
    font-size: clamp(1px, 41px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-41 i {
    font-size: 41px !important;
    font-size: clamp(1px, 41px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-41 b {
    font-size: 41px !important;
    font-size: clamp(1px, 41px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-42 {
  font-size: 42px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-42 i {
  font-size: 42px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-42 b {
  font-size: 42px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-42 {
    font-size: 42px !important;
    font-size: clamp(1px, 42px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-42 i {
    font-size: 42px !important;
    font-size: clamp(1px, 42px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-42 b {
    font-size: 42px !important;
    font-size: clamp(1px, 42px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-43 {
  font-size: 43px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-43 i {
  font-size: 43px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-43 b {
  font-size: 43px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-43 {
    font-size: 43px !important;
    font-size: clamp(1px, 43px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-43 i {
    font-size: 43px !important;
    font-size: clamp(1px, 43px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-43 b {
    font-size: 43px !important;
    font-size: clamp(1px, 43px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-44 {
  font-size: 44px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-44 i {
  font-size: 44px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-44 b {
  font-size: 44px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-44 {
    font-size: 44px !important;
    font-size: clamp(1px, 44px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-44 i {
    font-size: 44px !important;
    font-size: clamp(1px, 44px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-44 b {
    font-size: 44px !important;
    font-size: clamp(1px, 44px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-45 {
  font-size: 45px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-45 i {
  font-size: 45px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-45 b {
  font-size: 45px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-45 {
    font-size: 45px !important;
    font-size: clamp(1px, 45px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-45 i {
    font-size: 45px !important;
    font-size: clamp(1px, 45px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-45 b {
    font-size: 45px !important;
    font-size: clamp(1px, 45px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-46 {
  font-size: 46px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-46 i {
  font-size: 46px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-46 b {
  font-size: 46px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-46 {
    font-size: 46px !important;
    font-size: clamp(1px, 46px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-46 i {
    font-size: 46px !important;
    font-size: clamp(1px, 46px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-46 b {
    font-size: 46px !important;
    font-size: clamp(1px, 46px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-47 {
  font-size: 47px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-47 i {
  font-size: 47px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-47 b {
  font-size: 47px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-47 {
    font-size: 47px !important;
    font-size: clamp(1px, 47px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-47 i {
    font-size: 47px !important;
    font-size: clamp(1px, 47px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-47 b {
    font-size: 47px !important;
    font-size: clamp(1px, 47px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-48 {
  font-size: 48px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-48 i {
  font-size: 48px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-48 b {
  font-size: 48px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-48 {
    font-size: 48px !important;
    font-size: clamp(1px, 48px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-48 i {
    font-size: 48px !important;
    font-size: clamp(1px, 48px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-48 b {
    font-size: 48px !important;
    font-size: clamp(1px, 48px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-49 {
  font-size: 49px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-49 i {
  font-size: 49px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-49 b {
  font-size: 49px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-49 {
    font-size: 49px !important;
    font-size: clamp(1px, 49px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-49 i {
    font-size: 49px !important;
    font-size: clamp(1px, 49px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-49 b {
    font-size: 49px !important;
    font-size: clamp(1px, 49px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-50 {
  font-size: 50px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-50 i {
  font-size: 50px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-50 b {
  font-size: 50px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-50 {
    font-size: 50px !important;
    font-size: clamp(1px, 50px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-50 i {
    font-size: 50px !important;
    font-size: clamp(1px, 50px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-50 b {
    font-size: 50px !important;
    font-size: clamp(1px, 50px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-51 {
  font-size: 51px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-51 i {
  font-size: 51px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-51 b {
  font-size: 51px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-51 {
    font-size: 51px !important;
    font-size: clamp(1px, 51px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-51 i {
    font-size: 51px !important;
    font-size: clamp(1px, 51px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-51 b {
    font-size: 51px !important;
    font-size: clamp(1px, 51px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-52 {
  font-size: 52px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-52 i {
  font-size: 52px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-52 b {
  font-size: 52px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-52 {
    font-size: 52px !important;
    font-size: clamp(1px, 52px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-52 i {
    font-size: 52px !important;
    font-size: clamp(1px, 52px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-52 b {
    font-size: 52px !important;
    font-size: clamp(1px, 52px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-53 {
  font-size: 53px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-53 i {
  font-size: 53px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-53 b {
  font-size: 53px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-53 {
    font-size: 53px !important;
    font-size: clamp(1px, 53px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-53 i {
    font-size: 53px !important;
    font-size: clamp(1px, 53px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-53 b {
    font-size: 53px !important;
    font-size: clamp(1px, 53px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-54 {
  font-size: 54px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-54 i {
  font-size: 54px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-54 b {
  font-size: 54px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-54 {
    font-size: 54px !important;
    font-size: clamp(1px, 54px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-54 i {
    font-size: 54px !important;
    font-size: clamp(1px, 54px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-54 b {
    font-size: 54px !important;
    font-size: clamp(1px, 54px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-55 {
  font-size: 55px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-55 i {
  font-size: 55px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-55 b {
  font-size: 55px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-55 {
    font-size: 55px !important;
    font-size: clamp(1px, 55px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-55 i {
    font-size: 55px !important;
    font-size: clamp(1px, 55px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-55 b {
    font-size: 55px !important;
    font-size: clamp(1px, 55px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-56 {
  font-size: 56px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-56 i {
  font-size: 56px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-56 b {
  font-size: 56px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-56 {
    font-size: 56px !important;
    font-size: clamp(1px, 56px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-56 i {
    font-size: 56px !important;
    font-size: clamp(1px, 56px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-56 b {
    font-size: 56px !important;
    font-size: clamp(1px, 56px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-57 {
  font-size: 57px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-57 i {
  font-size: 57px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-57 b {
  font-size: 57px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-57 {
    font-size: 57px !important;
    font-size: clamp(1px, 57px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-57 i {
    font-size: 57px !important;
    font-size: clamp(1px, 57px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-57 b {
    font-size: 57px !important;
    font-size: clamp(1px, 57px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-58 {
  font-size: 58px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-58 i {
  font-size: 58px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-58 b {
  font-size: 58px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-58 {
    font-size: 58px !important;
    font-size: clamp(1px, 58px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-58 i {
    font-size: 58px !important;
    font-size: clamp(1px, 58px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-58 b {
    font-size: 58px !important;
    font-size: clamp(1px, 58px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-59 {
  font-size: 59px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-59 i {
  font-size: 59px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-59 b {
  font-size: 59px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-59 {
    font-size: 59px !important;
    font-size: clamp(1px, 59px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-59 i {
    font-size: 59px !important;
    font-size: clamp(1px, 59px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-59 b {
    font-size: 59px !important;
    font-size: clamp(1px, 59px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-60 {
  font-size: 60px !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-60 i {
  font-size: 60px !important;
  font-style: italic !important;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-60 b {
  font-size: 60px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-60 {
    font-size: 60px !important;
    font-size: clamp(1px, 60px, 14vw) !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-60 i {
    font-size: 60px !important;
    font-size: clamp(1px, 60px, 14vw) !important;
    font-style: italic !important;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * .size-60 b {
    font-size: 60px !important;
    font-size: clamp(1px, 60px, 14vw) !important;
    font-weight: bold !important;
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * b {
  font-weight: bold;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title * i {
  font-style: italic;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-title .hero__title b {
  font-weight: bold;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-cta #hero-big-picture-cta {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 0;
  background-color: #000000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border: 1px solid #000000;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-cta #hero-big-picture-cta a span {
  color: #ffffff;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-cta #hero-big-picture-cta:hover {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-cta #hero-big-picture-cta:hover a span {
  color: #000000;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-cta #hero-big-picture-cta {
    background-color: #000000;
    padding: 0;
  }
  .hero-big-picture-container .hero-big-picture .hero-big-picture-cta #hero-big-picture-cta:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.hero-big-picture-container .hero-big-picture .hero-big-picture-cta #hero-big-picture-cta .button {
  border: 0;
  color: #ffffff;
  padding: 13px 61px 12px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-cta #hero-big-picture-cta .button {
    padding: 10px 75px 11px;
  }
}
@media screen and (max-width: 767px) {
  .hero-big-picture-container .hero-big-picture .hero-big-picture-cta #hero-big-picture-cta .button span {
    color: #ffffff;
  }
}

.elem-events-list .text-right {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .elem-events-list .text-right {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
.elem-events-list .title-left .title-component {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px !important;
  line-height: 60px !important;
  letter-spacing: 0.01em;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .elem-events-list .title-left .title-component.no-cta {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .elem-events-list .title-left .title-component {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px !important;
    line-height: 46px !important;
    letter-spacing: 0.01em;
    color: #000000;
    margin: 0 !important;
  }
  .elem-events-list .title-left .title-component.no-cta {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px !important;
    line-height: 46px !important;
    letter-spacing: 0.01em;
    color: #000000;
  }
  .elem-events-list .title-left .title-component p {
    margin: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .elem-events-list .title-left {
    padding: 0 !important;
    margin-bottom: 28px;
  }
}
.elem-events-list .text-component p {
  font-family: Inter;
}
@media screen and (max-width: 767px) {
  .elem-events-list .text-component {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
  }
}
.elem-events-list .info-card-container {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}
@media screen and (max-width: 1024px) {
  .elem-events-list .info-card-container {
    margin-top: 83px;
    margin-bottom: 38px;
  }
}

:root {
  --header-height: 144px;
  --iframe-offset: 0px;
}

.iframe-widget {
  margin-top: 100px;
  width: 100%;
  height: 100%;
}
.iframe-widget div {
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
}
.iframe-widget div iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #111;
}
.iframe-widget.keep-ratio {
  width: 100%;
  height: 100%;
  max-height: 100%;
}
.iframe-widget.keep-ratio div {
  aspect-ratio: 16/9;
  margin: 0 auto;
  width: auto;
  height: 100%;
  max-height: 100%;
}
.iframe-widget.keep-ratio div iframe {
  width: 100%;
  height: 100%;
}
.iframe-widget.margin-offset {
  margin-top: calc(var(--header-height) - var(--iframe-offset));
  height: calc(100vh - var(--header-height) - var(--header-height));
  max-height: calc(100vh - var(--header-height) - var(--header-height));
}

html:not(.aem-AuthorLayer-Edit) .iframe-widget,
html:not(.aem-AuthorLayer-Developer) .iframe-widget {
  margin-top: 0;
  min-width: 100%;
  width: 100vw;
  max-width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  max-height: calc(100vh - var(--header-height));
  display: block;
  -webkit-transition: 150ms ease-in-out;
  transition: 150ms ease-in-out;
}
html:not(.aem-AuthorLayer-Edit) .iframe-widget div,
html:not(.aem-AuthorLayer-Developer) .iframe-widget div {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  -webkit-transition: 150ms ease-in-out;
  transition: 150ms ease-in-out;
}
html:not(.aem-AuthorLayer-Edit) .iframe-widget.keep-ratio,
html:not(.aem-AuthorLayer-Developer) .iframe-widget.keep-ratio {
  width: 100vw;
  height: 100vh;
  max-height: calc(100vh - var(--header-height));
  background-color: #111;
}
html:not(.aem-AuthorLayer-Edit) .iframe-widget.keep-ratio div,
html:not(.aem-AuthorLayer-Developer) .iframe-widget.keep-ratio div {
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  width: auto;
  height: 100%;
  max-height: calc(100vh - var(--header-height));
}
html:not(.aem-AuthorLayer-Edit) .iframe-widget.margin-offset,
html:not(.aem-AuthorLayer-Developer) .iframe-widget.margin-offset {
  margin-top: calc(var(--header-height) - var(--iframe-offset));
  height: calc(100vh - var(--header-height) - var(--header-height));
  max-height: calc(100vh - var(--header-height) - var(--header-height));
}

.iframe-container {
  padding: 0;
  display: block;
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .iframe-container {
    margin-bottom: 110px;
  }
}
.iframe-container iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.img-component {
  padding-top: 137.9609544469%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center;
}

.info-card-container--short {
  margin-top: 130px;
  margin-bottom: 130px;
  display: block;
  position: relative;
}
.info-card-container--short.container_big_grey {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .info-card-container--short {
    margin-top: 45px;
    margin-bottom: 45px;
    padding-top: 45px;
  }
}
.info-card-container--short .img-component--short {
  padding-top: 68.1%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center;
  position: relative;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .info-card-container--short .img-component--short {
    padding-top: 73.1%;
  }
}
.info-card-container--short .img-component--short .image__info-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.info-card-container--short .title-component {
  margin-bottom: 20px;
  font-size: 48px !important;
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .info-card-container--short .title-component {
    font-size: 36px !important;
    line-height: 48px !important;
  }
}
.info-card-container--short .title-component.h2 {
  font-size: 60px !important;
  line-height: 72px !important;
}
@media screen and (max-width: 767px) {
  .info-card-container--short .title-component.h2 {
    font-size: 40px !important;
    line-height: 60px !important;
  }
}
.info-card-container--short .title-component.h1 {
  font-size: 72px;
  line-height: 80px;
}
@media screen and (max-width: 767px) {
  .info-card-container--short .title-component.h1 {
    font-size: 48px;
    line-height: 54px;
  }
}
.info-card-container--short .text-component {
  margin-bottom: 1rem;
}
.info-card-container--short .cta-container {
  width: 100%;
}
.info-card-container--short .cta-container .arrow-cta {
  padding-right: 7px;
}
.info-card-container--short .row {
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .info-card-container--short .row {
    padding-left: 12px; /**/
    padding-right: 12px; /**/
  }
}
.info-card-container--short .container__info-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .info-card-container--short .container__info-card {
    padding: 0 12px;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
@media screen and (max-width: 767px) {
  .info-card-container--short .container__info-card.text-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
.info-card-container--short .component-image-segment {
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .info-card-container--short .component-image-segment {
    margin-top: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .info-card-container--short .component-image-segment .hero-component_description-container {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.info-card-container--short .component-image-segment .hero-component_description-container .hero-component_description p {
  line-height: 16px;
  font-size: 9px;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .info-card-container--short .btn-container {
    padding: 0;
  }
}
.info-card-container--short .overlay-container {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  z-index: 200;
}
.info-card-container--short .overlay-container .overlay-icon {
  display: block;
  margin: auto;
  margin-bottom: 7px;
  width: auto;
  height: 65px;
}
@media screen and (max-width: 767px) {
  .info-card-container--short .overlay-container .overlay-icon {
    height: 50px;
    width: auto;
  }
}
.info-card-container--short .overlay-container .overlay-text {
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 18px;
}
.info-card-container--short .image-overlay:after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 110;
}
.info-card-container--short .container_details {
  margin-top: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .info-card-container--short .container_details {
    margin-top: 13px;
  }
}

.page-museum .info-card-container--short {
  margin-top: 140px;
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .page-museum .info-card-container--short {
    margin-top: 100px;
    padding-top: 0;
    margin-bottom: 100px;
  }
}
.page-museum .infoCard {
  margin-top: 115px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .page-museum .infoCard {
    margin-top: 75px;
    margin-bottom: 60px;
  }
}
.page-museum .event .component-title {
  font-size: 48px !important;
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .page-museum .event .component-title {
    font-size: 36px !important;
  }
}

.info-card-text-segment p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
}
.info-card-text-segment p b {
  font-weight: 600;
}
.info-card-text-segment p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.info-card-text-segment p .size-8 {
  font-size: 8px !important;
}
.info-card-text-segment p .size-9 {
  font-size: 9px !important;
}
.info-card-text-segment p .size-10 {
  font-size: 10px !important;
}
.info-card-text-segment p .size-11 {
  font-size: 11px !important;
}
.info-card-text-segment p .size-12 {
  font-size: 12px !important;
}
.info-card-text-segment p .size-13 {
  font-size: 13px !important;
}
.info-card-text-segment p .size-14 {
  font-size: 14px !important;
}
.info-card-text-segment p .size-15 {
  font-size: 15px !important;
}
.info-card-text-segment p .size-16 {
  font-size: 16px !important;
}
.info-card-text-segment p .size-17 {
  font-size: 17px !important;
}
.info-card-text-segment p .size-18 {
  font-size: 18px !important;
}
.info-card-text-segment p .size-19 {
  font-size: 19px !important;
}
.info-card-text-segment p .size-20 {
  font-size: 20px !important;
}
.info-card-text-segment p .size-21 {
  font-size: 21px !important;
}
.info-card-text-segment p .size-22 {
  font-size: 22px !important;
}
.info-card-text-segment p .size-23 {
  font-size: 23px !important;
}
.info-card-text-segment p .size-24 {
  font-size: 24px !important;
}
.info-card-text-segment p .size-25 {
  font-size: 25px !important;
}
.info-card-text-segment p .size-26 {
  font-size: 26px !important;
}
.info-card-text-segment p .size-27 {
  font-size: 27px !important;
}
.info-card-text-segment p .size-28 {
  font-size: 28px !important;
}
.info-card-text-segment p .size-29 {
  font-size: 29px !important;
}
.info-card-text-segment a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.info-card-text-segment b {
  font-weight: bold;
}
.info-card-text-segment .details_place {
  margin-right: 5px;
  font-size: 12px;
  color: #a7a7a7;
  font-weight: 600;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  line-height: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.info-card-text-segment .details_dot {
  margin-right: 5px;
  font-size: 12px;
  color: #a7a7a7;
  font-weight: 600;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  line-height: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.info-card-text-segment .details_date {
  font-size: 12px;
  color: #a7a7a7;
  font-weight: 600;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  line-height: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-grey .info-card-container--short {
  padding: 140px 0;
}
@media screen and (max-width: 767px) {
  .panel-grey .info-card-container--short {
    padding: 100px 0 !important;
  }
}

.page-gallerie-off .info-card-container--short {
  margin-top: 0;
}

.info-iniziativa {
  margin-top: 40px;
  padding: 0 !important;
}
.info-iniziativa__ticket {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  /* or 162% */
  /* Medium grey */
  color: #6f6f6f;
}
.info-iniziativa__description {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  /* or 162% */
  color: #000000;
}
.info-iniziativa__title {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: #000000;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .info-iniziativa__title {
    margin-bottom: 20px;
  }
}
.info-iniziativa__ticket-img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .info-iniziativa__ticket-img-container {
    margin-bottom: 20px;
  }
}
.info-iniziativa__ticket-img-container .info-iniziativa__ticket-price {
  color: #6F6F6F;
}
.info-iniziativa__ticket-img {
  margin-right: 10px;
}
.info-iniziativa__ticket-img img {
  width: 20px;
}
.info-iniziativa__title-alternative {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}
.info-iniziativa__row-title {
  margin-top: 40px;
}
.info-informativi {
  padding: 0 20px;
  margin-top: 40px;
  padding: 0 !important;
}
.info-informativi__title-alternative {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 9px;
}
.info-informativi__subtitle {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.info-informativi__list-container {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.info-informativi__description {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.info-informativi__row-title {
  margin-top: 40px;
}

/*CSS VARIANTE SFONDO GRIGIO START*/
/*MIXIN MOBILE START*/
/*MIXIN MOBILE END*/
/*MIXIN DESKTOP START*/
/*MIXIN DESKTOP END*/
/*MOBILE STYLE START*/
.container_big_grey_infocard {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f8f8f8;
}

.half_img_infocard {
  padding-top: 73.1343283582%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.img_grey {
  background: #c4c4c4;
}

.container_spaziatura_infocard {
  visibility: hidden;
  /*background-color: #f00; TESTING*/
}

.container_card_infocard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*REPLACE CTA START*/
  /*REPLACE CTA END*/
}
.container_card_infocard .container_title_infocard {
  margin-top: 20px;
  margin-bottom: 10px;
}
.container_card_infocard .container_title_infocard h3 {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.container_card_infocard .container_description_infocard {
  margin-bottom: 34px;
}
.container_card_infocard .container_description_infocard p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}
.container_card_infocard .container_button_infocard {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.container_card_infocard .container_button_infocard a {
  text-decoration: none;
  color: #000000;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
}
.container_card_infocard .container_button_infocard a .button_img_infocard img {
  scale: 1;
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.container_card_infocard .container_button_infocard a:hover {
  background-size: calc(100% - 28px) 2px;
  font-weight: bold;
}
.container_card_infocard .container_button_infocard a:hover .button_img_infocard img {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.container_card_infocard .container_button_infocard a .button_text_infocard {
  margin-right: 12px;
}
.container_card_infocard .container_button_infocard a .button_img_infocard {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/*MOBILE STYLE END*/
/*DESKTOP STYLE START*/
@media screen and (min-width: 991px) {
  .container_big_grey_infocard {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .left-img_infocard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .right-img_infocard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .half_img_infocard {
    padding-top: 68.1003584229%;
  }
  .container_spaziatura_infocard {
    margin-bottom: 0;
  }
  .container_card_infocard .container_title_infocard {
    margin-top: 0; /*-20px;*/
  }
  .container_card_infocard .container_title_infocard h3 {
    font-family: "Canela";
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0.01em;
  }
}
/*DESKTOP STYLE END*/
/*CSS VARIANTE SFONDO GRIGIO END*/
/*-----------------------------*/
/*CSS AGGIUNTIVI VARIANTE LUOGO E DATA START*/
/*MOBILE STYLE START*/
.container_big_infocard {
  margin-top: 0;
  margin-bottom: 80px;
}
.container_big_infocard .left-img_infocard,
.container_big_infocard .right-img_infocard {
  margin-top: 90px;
}

.img_1,
.img_2,
.img_3,
.img_4 {
  background: #c4c4c4; /*METTERE L' URL QUI*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container_details_infocard {
  margin-top: 28px;
}
.container_details_infocard span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a7a7a7;
}

/*MOBILE STYLE END*/
/*DESKTOP STYLE START*/
@media screen and (min-width: 991px) {
  .container_big_infocard {
    margin-top: 10px;
  }
  .container_big_infocard .left-img_infocard,
  .container_big_infocard .right-img_infocard {
    margin-top: 130px;
  }
  .container_details_infocard {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
/*DESKTOP STYLE END*/
/*CSS AGGIUNTIVI VARIANTE LUOGO E DATA END*/
.accessibilita__img-container,
.double-image-full-width__img-container,
.double-image__img-container,
.voce__img-container,
.equal-height-img .img-container {
  background-color: #c4c4c4;
}
.accessibilita__img-container picture img,
.double-image-full-width__img-container picture img,
.double-image__img-container picture img,
.voce__img-container picture img,
.equal-height-img .img-container picture img {
  position: absolute;
  top: 0;
  z-index: 1;
}

.container_grey_background_operasingola .container_img_operasingola .image {
  background: transparent !important;
}

iframe {
  background-color: #c4c4c4;
}

.container_big .card_img {
  background-color: #c4c4c4;
}

.mostre-container .card_img {
  background-color: #c4c4c4;
}

.event-img-container__content img, .event-img-container-top img, .comunicazioni__image img, .bonus__img-container img {
  background-color: #c4c4c4;
}

.double-image-full-width__img, .double-image__img {
  position: relative !important;
}

/*.bonus__img-container {
  picture {
    position: unset;
  }
} bonus ho qualche dubbio*/
.comunicazioni__image picture,
.event-img-container-top picture,
.event-img-container__content picture,
.voce__img-container picture {
  position: unset;
}

/*.container_img_operasingola {
  background-color: #c4c4c4;
  img {
    position: absolute;
    top: 0;
    z-index: 1;
  }
} l'immagine nell' opera singola varia continuamente di dimensioni*/
.visit-small-img-container,
.two-images-picture,
.img-component,
.img-component--short {
  background-color: #c4c4c4;
  /*position: relative;
  .visit-small-img-picture {
    position: absolute;
    top: 0;
    z-index: 1;
    padding-top: 0 !important;
    .container_img_infocard,
    .event-img
  }*/
}

.half_img_infocard,
.event-img .event-img-container-top,
.event-info .event-img-container-top {
  position: relative;
}

.half_img_infocard::before,
.event-img .event-img-container-top::before,
.event-info .event-img-container-top::before {
  content: "";
  background-color: #c4c4c4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*.container_img_infocard,
.event-img {
  padding-left: 0 !important;
  padding-right: 0 !important;
}*/
.accessibilita__img-container {
  padding-top: 73.1%;
  /*preso da 3.1.2 accessibilità*/
}

.voce__img-container {
  padding-top: 73.1%;
}

.equal-height-img .img-container {
  padding-top: 73.1%;
}

.comunicazioni__image {
  padding-top: 63.5820895522%; /*preso da 12 comunicazioni*/
}

/*iniziative non ha immagini mobile preso da 3.2 iniziative*/
/*iniziative non ha immagini mobile preso da 3.2 iniziative*/
/*.container_img_operasingola {
  padding-top: 152.83582089552%;
} l' immagine in operasingola varia di dimensioni continuamente preso da 4.2.1 opera singola*/
/*.visit-small-img-container {
  padding-top: 65.671641791045%; /*preso da 4 musei online
}*/
.video-list__iframe,
.dove-siamo__img {
  background-color: #c4c4c4;
}

/*------------------------*/
@media screen and (min-width: 991px) {
  .accessibilita__img-container {
    padding-top: 68.1%;
  }
  .voce__img-container {
    padding-top: 68.1%;
  }
  .equal-height-img .img-container {
    padding-top: 138.1868131868%;
  }
  .event-img-container-top {
    padding-top: 73.0337078652%;
  }
  .event-img-container__content {
    padding-top: 73.0337078652%;
  }
  /*.container_img_operasingola {
    padding-top: 152.67175572519%;
  } l' immagine in opera singola varia continuamente di dimensioni*/
  /*.visit-small-img-container {
    padding-top: 51.075268817204%;
  }*/
}
/*pagine controllate su static
404 già ok- check giusto
accessibilità fixato- check giusto
area-stampa no img-
audioguide no img-
biglietti no img-
bonus fixato- problema!!!
carousel-overlay fixato- check giusto
carta no img-
composizionidate no img-
comunicazioni fixato- check giusto
contatti no img-
double-image-full-width fixato- check giusto
double-image fixato- check giusto
dove-siamo no img-
educazione (mio componente) NON PENSO DA RISOLVERE-
esperienza-immersiva-start ??? <-----
esperienza-immersiva ??? <-----
faq no img-
highlights no img-
homepage BEL CHUNK DA RISOLVERE <----- sto risolvendo homepage si quelli che ho risolto check giusto
iframe no img-
image già ok- check giusto
index ignora-
info no img-
infocardgrigioluogoedata (mio componente) NON PENSO DA RISOLVERE-
lista-eventi fixato- check giusto
mappa no img-
mostraonlineimg ignora-
mostre già ok- check giusto
mostreeiniziative fixato- check giusto
operasingola ??? <-----
orari no img -
paginamusei fixato- check giusto
privacy no img-
progetti-timeline già ok- check giusto
programmi-formativi-famiglie no img-
quote no img-
raccoglitoreopere ??? <-----
scopri-capolavori già ok- check giusto
search fixato- check giusto
separatore no img-
sicurezza no img-
sidebar no img-
submenu-ancore DA RISOLVERE check giusto
templatecapolavori ??? <-----
testoparagrafo no img-
testpage NON PENSO DA RISOLVERE-
video-list risolto lo stesso anche se non so se dovesse essere implementato- check giusto
voce fixato- check giusto

MANCA DI COMPLETARE LE PARTI DOVE LE IMG CAMBIANO DI DIMENSIONI*/
/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  font-size: 100%;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px 0.4em;
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-button {
  padding: 0.4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

.ui-controlgroup-vertical .ui-controlgroup-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ui-controlgroup .ui-controlgroup-label {
  padding: 0.4em 1em;
}

.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
  -webkit-box-shadow: inset 1px 1px 1px #ccc;
          box-shadow: inset 1px 1px 1px #ccc;
  border-radius: 0.12em;
  border: none;
}

.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

.ui-checkboxradio-disabled {
  pointer-events: none;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25); /* support: IE8 */
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
          filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0.222em 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 2em;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-tabs {
  position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: 0.2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  -webkit-box-shadow: 0 0 3px 1px rgb(94, 158, 214);
          box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70); /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35); /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("clientlib-site/css/images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("clientlib-site/css/images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("clientlib-site/css/images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("clientlib-site/css/images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("clientlib-site/css/images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("clientlib-site/css/images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("clientlib-site/css/images/ui-icons_777777_256x240.png");
}

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
  filter: Alpha(Opacity=30); /* support: IE8 */
}

.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}

/* .logos-container{
    padding: 50px 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    @include breakpoint(tablet){
        padding: 84px 15px;
    }
    .box{
        height: 100%;
        padding: 0;
        margin: 10px 19px;
        @include breakpoint(mobile){
            margin: 0;
        }
        .logo-wrapper{
            height: 71px;
            width: 181px;
            background-repeat: no-repeat;
            background-size: contain;
            @include breakpoint(mobile){
                height: 71px;
                width: 120px;
            }
        }
    }
}
 */
/* #logo-1{
    background-image: url("clientlib-site/resources/images/logo-repubblica_italiana.png");
    background-position: center;
    @include breakpoint(mobile){
        margin-bottom: 45px;
    }
    @include breakpoint(tablet){

        border: 0;
    }
}

#logo-2{
    background-image: url("clientlib-site/resources/images/logo-progetto_cultura.png");
    background-position: center;
    @include breakpoint(mobile){
        margin-bottom: 45px;
    }
    @include breakpoint(tablet){

        border: 0;

    }
}

#logo-3{
    background-image: url("clientlib-site/resources/images/logo-ministero_beni_attivita_culturali.png");
    background-position: center;
    @include breakpoint(mobile){
        background-image: url("clientlib-site/resources/images/logo-centenario_prima_guerra_mondiale.png");

        border: 0;
        margin-bottom: 45px;
    }
    @include breakpoint(tablet){
        background-image: url("clientlib-site/resources/images/logo-centenario_prima_guerra_mondiale.png");

        border: 0;
    }
}

#logo-4{
    background-image: url("clientlib-site/resources/images/logo-centenario_prima_guerra_mondiale.png");
    background-position: center;
    @include breakpoint(mobile){
        background-image: url("clientlib-site/resources/images/logo-ministero_beni_attivita_culturali.png");

        border: 0;

    }
    @include breakpoint(tablet){
        background-image: url("clientlib-site/resources/images/logo-ministero_beni_attivita_culturali.png");

        border: 0;
    }
}

#logo-5{
    background-image: url("clientlib-site/resources/images/logo-fondazione_cariplo-new.png");
    background-position: center;
    @include breakpoint(tablet){
        border: 0;
        margin-left: 57px;
    }
} */
.logo-main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 150px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin: auto;
  text-align: center;
  /* padding-top: 50px; */
  /* max-width: 1024px;
  width: 100%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap; */
}
@media screen and (max-width: 767px) {
  .logo-main-container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
}
@media screen and (max-width: 767px) {
  .logo-main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.logo-main-container .logo-container {
  max-width: 180px;
  display: inline-block;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .logo-main-container .logo-container {
    width: auto;
    height: auto;
    margin-bottom: 50px;
  }
}
.logo-main-container .logo-container .logo-img {
  width: auto;
  height: 100%;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .logo-main-container .logo-container .logo-img {
    width: auto;
    height: auto;
    max-width: 170px;
  }
}

.align-logo-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-logo-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.mappa__title-component {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-top: 80px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .mappa__title-component {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.mappa__text-component {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  margin-bottom: 50px;
}

.download {
  margin-bottom: 140px;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .download {
    margin-top: 90px;
  }
}
.download__header {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .download__header {
    margin-bottom: 0;
  }
}
.download__title {
  font-family: "Canela", Arial, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 60px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .download__title {
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    line-height: 48px;
    letter-spacing: 0.01em;
    text-align: left;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .download__filters {
    margin-bottom: 32px;
  }
}
.download__item {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 24px;
  padding-right: 150px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .download__item {
    padding-right: 143px;
  }
}
.download__label {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .download__label {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-align: left;
  }
}
.download__namefile {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #6f6f6f;
}
@media screen and (max-width: 767px) {
  .download__namefile {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: left;
  }
}
.download__button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 102px;
  border: none;
  border-left: 2px solid #ffffff;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  text-decoration: none;
}
.download__button img {
  width: 38px;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .download__button {
    width: 82px;
  }
}
.download__more {
  width: 100%;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  padding: 15px 20px;
  margin-top: 80px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.download__more:hover {
  background-color: #000;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .download__more {
    margin-top: 70px;
  }
}
.download__filters {
  width: 100%;
}
.download .filters {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .download .filters__item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
  }
}
.download .filters__item.open .filters__toggle:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.download .filters__close {
  display: none;
}
@media screen and (max-width: 767px) {
  .download .filters__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
  }
  .download .filters__close span {
    margin: 0;
  }
}
.download .filters__toggle {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: right;
  color: #000000;
  text-transform: uppercase;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.download .filters__toggle:after {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  background-image: url("clientlib-site/resources/images/icons/vectordown.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
@media screen and (max-width: 767px) {
  .download .filters__toggle:after {
    width: 10px;
    height: 5px;
    margin-right: 10px;
  }
}
.download .filters__list {
  display: none;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
  padding: 20px;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  margin-top: 20px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .download .filters__list {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    margin-top: 40px;
  }
}
.download .filters__option {
  background-color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
}
.download .filters__option label {
  position: relative;
  width: 100%;
  padding-left: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.download .filters__option label:last-of-type {
  margin-bottom: 0;
}
.download .filters__option label input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100;
  opacity: 0;
  z-index: 3;
  cursor: pointer;
}
.download .filters__option label input:checked + span:after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 6px;
  background-image: url("clientlib-site/resources/images/icons/tick-blue.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.download .filters__option label span {
  display: block;
  position: absolute;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #e0e0e0;
}
.download .filters__actions {
  display: none;
}
@media screen and (max-width: 767px) {
  .download .filters__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}
.download .filters__actions .action {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  text-transform: uppercase;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  cursor: pointer;
}
.download .filters__actions .action--reset {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.download .filters__actions .action--reset:hover {
  border: 1px solid #000000;
  color: #000000;
}
.download .filters__actions .action--submit {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.download .filters__actions .action--submit:hover {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .download .filters {
    display: none;
  }
  .download .filters.open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding: 20px;
    padding-top: 110px;
    background-color: #ffffff;
  }
  .download .filters.open .filters__toggle {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.download .hidden {
  display: none;
}
.download__openFilters {
  display: none;
}
@media screen and (max-width: 767px) {
  .download__openFilters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    cursor: pointer;
  }
  .download__openFilters span {
    margin-left: 10px;
    margin-bottom: 0;
  }
}

/*margin DESKTOP TOP*/
/* 150px */
.margin-t-150-130 {
  margin-top: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-150-130 {
    margin-top: 130px !important;
  }
}

.margin-t-150-120 {
  margin-top: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-150-120 {
    margin-top: 120px !important;
  }
}

.margin-t-150-110 {
  margin-top: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-150-110 {
    margin-top: 110px !important;
  }
}

.margin-t-150-100 {
  margin-top: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-150-100 {
    margin-top: 100px !important;
  }
}

/* 140px */
.margin-t-140-120 {
  margin-top: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-140-120 {
    margin-top: 120px !important;
  }
}

.margin-t-140-110 {
  margin-top: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-140-110 {
    margin-top: 110px !important;
  }
}

.margin-t-140-100 {
  margin-top: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-140-100 {
    margin-top: 100px !important;
  }
}

.margin-t-140-90 {
  margin-top: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-140-90 {
    margin-top: 90px !important;
  }
}

/* 130px */
.margin-t-130-110 {
  margin-top: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-130-110 {
    margin-top: 110px !important;
  }
}

.margin-t-130-100 {
  margin-top: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-130-100 {
    margin-top: 100px !important;
  }
}

.margin-t-130-90 {
  margin-top: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-130-90 {
    margin-top: 90px !important;
  }
}

.margin-t-130-80 {
  margin-top: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-130-80 {
    margin-top: 80px !important;
  }
}

/* 120px */
.margin-t-120-100 {
  margin-top: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-120-100 {
    margin-top: 100px !important;
  }
}

.margin-t-120-90 {
  margin-top: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-120-90 {
    margin-top: 90px !important;
  }
}

.margin-t-120-80 {
  margin-top: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-120-80 {
    margin-top: 80px !important;
  }
}

.margin-t-120-70 {
  margin-top: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-120-70 {
    margin-top: 70px !important;
  }
}

/* 110px */
.margin-t-110-90 {
  margin-top: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-110-90 {
    margin-top: 90px !important;
  }
}

.margin-t-110-80 {
  margin-top: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-110-80 {
    margin-top: 80px !important;
  }
}

.margin-t-110-70 {
  margin-top: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-110-70 {
    margin-top: 70px !important;
  }
}

.margin-t-110-60 {
  margin-top: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-110-60 {
    margin-top: 60px !important;
  }
}

/* 100px */
.margin-t-100-80 {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-100-80 {
    margin-top: 80px !important;
  }
}

.margin-t-100-70 {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-100-70 {
    margin-top: 70px !important;
  }
}

.margin-t-100-60 {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-100-60 {
    margin-top: 60px !important;
  }
}

.margin-t-100-50 {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-100-50 {
    margin-top: 50px !important;
  }
}

/* 90px */
.margin-t-90-70 {
  margin-top: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-90-70 {
    margin-top: 70px !important;
  }
}

.margin-t-90-60 {
  margin-top: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-90-60 {
    margin-top: 60px !important;
  }
}

.margin-t-90-50 {
  margin-top: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-90-50 {
    margin-top: 50px !important;
  }
}

.margin-t-90-40 {
  margin-top: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-90-40 {
    margin-top: 40px !important;
  }
}

/* 80px */
.margin-t-80-60 {
  margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-80-60 {
    margin-top: 60px !important;
  }
}

.margin-t-80-50 {
  margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-80-50 {
    margin-top: 50px !important;
  }
}

.margin-t-80-40 {
  margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-80-40 {
    margin-top: 40px !important;
  }
}

.margin-t-80-30 {
  margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-80-30 {
    margin-top: 30px !important;
  }
}

/* 70px */
.margin-t-70-50 {
  margin-top: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-70-50 {
    margin-top: 50px !important;
  }
}

.margin-t-70-40 {
  margin-top: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-70-40 {
    margin-top: 40px !important;
  }
}

.margin-t-70-30 {
  margin-top: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-70-30 {
    margin-top: 30px !important;
  }
}

.margin-t-70-20 {
  margin-top: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-t-70-20 {
    margin-top: 20px !important;
  }
}

/*margin DESKTOP BOTTOM*/
/* 150px */
.margin-b-150-130 {
  margin-bottom: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-150-130 {
    margin-bottom: 130px !important;
  }
}

.margin-b-150-120 {
  margin-bottom: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-150-120 {
    margin-bottom: 120px !important;
  }
}

.margin-b-150-110 {
  margin-bottom: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-150-110 {
    margin-bottom: 110px !important;
  }
}

.margin-b-150-100 {
  margin-bottom: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-150-100 {
    margin-bottom: 100px !important;
  }
}

/* 140px */
.margin-b-140-120 {
  margin-bottom: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-140-120 {
    margin-bottom: 120px !important;
  }
}

.margin-b-140-110 {
  margin-bottom: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-140-110 {
    margin-bottom: 110px !important;
  }
}

.margin-b-140-100 {
  margin-bottom: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-140-100 {
    margin-bottom: 100px !important;
  }
}

.margin-b-140-90 {
  margin-bottom: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-140-90 {
    margin-bottom: 90px !important;
  }
}

/* 130px */
.margin-b-130-110 {
  margin-bottom: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-130-110 {
    margin-bottom: 110px !important;
  }
}

.margin-b-130-100 {
  margin-bottom: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-130-100 {
    margin-bottom: 100px !important;
  }
}

.margin-b-130-90 {
  margin-bottom: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-130-90 {
    margin-bottom: 90px !important;
  }
}

.margin-b-130-80 {
  margin-bottom: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-130-80 {
    margin-bottom: 80px !important;
  }
}

/* 120px */
.margin-b-120-100 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-120-100 {
    margin-bottom: 100px !important;
  }
}

.margin-b-120-90 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-120-90 {
    margin-bottom: 90px !important;
  }
}

.margin-b-120-80 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-120-80 {
    margin-bottom: 80px !important;
  }
}

.margin-b-120-70 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-120-70 {
    margin-bottom: 70px !important;
  }
}

/* 110px */
.margin-b-110-90 {
  margin-bottom: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-110-90 {
    margin-bottom: 90px !important;
  }
}

.margin-b-110-80 {
  margin-bottom: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-110-80 {
    margin-bottom: 80px !important;
  }
}

.margin-b-110-70 {
  margin-bottom: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-110-70 {
    margin-bottom: 70px !important;
  }
}

.margin-b-110-60 {
  margin-bottom: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-110-60 {
    margin-bottom: 60px !important;
  }
}

/* 100px */
.margin-b-100-80 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-100-80 {
    margin-bottom: 80px !important;
  }
}

.margin-b-100-70 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-100-70 {
    margin-bottom: 70px !important;
  }
}

.margin-b-100-60 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-100-60 {
    margin-bottom: 60px !important;
  }
}

.margin-b-100-50 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-100-50 {
    margin-bottom: 50px !important;
  }
}

/* 90px */
.margin-b-90-70 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-90-70 {
    margin-bottom: 70px !important;
  }
}

.margin-b-90-60 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-90-60 {
    margin-bottom: 60px !important;
  }
}

.margin-b-90-50 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-90-50 {
    margin-bottom: 50px !important;
  }
}

.margin-b-90-40 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-90-40 {
    margin-bottom: 40px !important;
  }
}

/* 80px */
.margin-b-80-60 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-80-60 {
    margin-bottom: 60px !important;
  }
}

.margin-b-80-50 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-80-50 {
    margin-bottom: 50px !important;
  }
}

.margin-b-80-40 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-80-40 {
    margin-bottom: 40px !important;
  }
}

.margin-b-80-30 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-80-30 {
    margin-bottom: 30px !important;
  }
}

/* 70px */
.margin-b-70-50 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-70-50 {
    margin-bottom: 50px !important;
  }
}

.margin-b-70-40 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-70-40 {
    margin-bottom: 40px !important;
  }
}

.margin-b-70-30 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-70-30 {
    margin-bottom: 30px !important;
  }
}

.margin-b-70-20 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-b-70-20 {
    margin-bottom: 20px !important;
  }
}

/*margin DESKTOP LEFT*/
/* 150px */
.margin-l-150-130 {
  margin-left: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-150-130 {
    margin-left: 130px !important;
  }
}

.margin-l-150-120 {
  margin-left: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-150-120 {
    margin-left: 120px !important;
  }
}

.margin-l-150-110 {
  margin-left: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-150-110 {
    margin-left: 110px !important;
  }
}

.margin-l-150-100 {
  margin-left: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-150-100 {
    margin-left: 100px !important;
  }
}

/* 140px */
.margin-l-140-120 {
  margin-left: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-140-120 {
    margin-left: 120px !important;
  }
}

.margin-l-140-110 {
  margin-left: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-140-110 {
    margin-left: 110px !important;
  }
}

.margin-l-140-100 {
  margin-left: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-140-100 {
    margin-left: 100px !important;
  }
}

.margin-l-140-90 {
  margin-left: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-140-90 {
    margin-left: 90px !important;
  }
}

/* 130px */
.margin-l-130-110 {
  margin-left: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-130-110 {
    margin-left: 110px !important;
  }
}

.margin-l-130-100 {
  margin-left: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-130-100 {
    margin-left: 100px !important;
  }
}

.margin-l-130-90 {
  margin-left: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-130-90 {
    margin-left: 90px !important;
  }
}

.margin-l-130-80 {
  margin-left: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-130-80 {
    margin-left: 80px !important;
  }
}

/* 120px */
.margin-l-120-100 {
  margin-left: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-120-100 {
    margin-left: 100px !important;
  }
}

.margin-l-120-90 {
  margin-left: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-120-90 {
    margin-left: 90px !important;
  }
}

.margin-l-120-80 {
  margin-left: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-120-80 {
    margin-left: 80px !important;
  }
}

.margin-l-120-70 {
  margin-left: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-120-70 {
    margin-left: 70px !important;
  }
}

/* 110px */
.margin-l-110-90 {
  margin-left: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-110-90 {
    margin-left: 90px !important;
  }
}

.margin-l-110-80 {
  margin-left: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-110-80 {
    margin-left: 80px !important;
  }
}

.margin-l-110-70 {
  margin-left: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-110-70 {
    margin-left: 70px !important;
  }
}

.margin-l-110-60 {
  margin-left: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-110-60 {
    margin-left: 60px !important;
  }
}

/* 100px */
.margin-l-100-80 {
  margin-left: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-100-80 {
    margin-left: 80px !important;
  }
}

.margin-l-100-70 {
  margin-left: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-100-70 {
    margin-left: 70px !important;
  }
}

.margin-l-100-60 {
  margin-left: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-100-60 {
    margin-left: 60px !important;
  }
}

.margin-l-100-50 {
  margin-left: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-100-50 {
    margin-left: 50px !important;
  }
}

/* 90px */
.margin-l-90-70 {
  margin-left: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-90-70 {
    margin-left: 70px !important;
  }
}

.margin-l-90-60 {
  margin-left: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-90-60 {
    margin-left: 60px !important;
  }
}

.margin-l-90-50 {
  margin-left: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-90-50 {
    margin-left: 50px !important;
  }
}

.margin-l-90-40 {
  margin-left: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-90-40 {
    margin-left: 40px !important;
  }
}

/* 80px */
.margin-l-80-60 {
  margin-left: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-80-60 {
    margin-left: 60px !important;
  }
}

.margin-l-80-50 {
  margin-left: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-80-50 {
    margin-left: 50px !important;
  }
}

.margin-l-80-40 {
  margin-left: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-80-40 {
    margin-left: 40px !important;
  }
}

.margin-l-80-30 {
  margin-left: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-80-30 {
    margin-left: 30px !important;
  }
}

/* 70px */
.margin-l-70-50 {
  margin-left: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-70-50 {
    margin-left: 50px !important;
  }
}

.margin-l-70-40 {
  margin-left: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-70-40 {
    margin-left: 40px !important;
  }
}

.margin-l-70-30 {
  margin-left: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-70-30 {
    margin-left: 30px !important;
  }
}

.margin-l-70-20 {
  margin-left: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-l-70-20 {
    margin-left: 20px !important;
  }
}

/*margin DESKTOP RIGHT*/
/* 150px */
.margin-r-150-130 {
  margin-right: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-150-130 {
    margin-right: 130px !important;
  }
}

.margin-r-150-120 {
  margin-right: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-150-120 {
    margin-right: 120px !important;
  }
}

.margin-r-150-110 {
  margin-right: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-150-110 {
    margin-right: 110px !important;
  }
}

.margin-r-150-100 {
  margin-right: 150px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-150-100 {
    margin-right: 100px !important;
  }
}

/* 140px */
.margin-r-140-120 {
  margin-right: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-140-120 {
    margin-right: 120px !important;
  }
}

.margin-r-140-110 {
  margin-right: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-140-110 {
    margin-right: 110px !important;
  }
}

.margin-r-140-100 {
  margin-right: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-140-100 {
    margin-right: 100px !important;
  }
}

.margin-r-140-90 {
  margin-right: 140px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-140-90 {
    margin-right: 90px !important;
  }
}

/* 130px */
.margin-r-130-110 {
  margin-right: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-130-110 {
    margin-right: 110px !important;
  }
}

.margin-r-130-100 {
  margin-right: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-130-100 {
    margin-right: 100px !important;
  }
}

.margin-r-130-90 {
  margin-right: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-130-90 {
    margin-right: 90px !important;
  }
}

.margin-r-130-80 {
  margin-right: 130px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-130-80 {
    margin-right: 80px !important;
  }
}

/* 120px */
.margin-r-120-100 {
  margin-right: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-120-100 {
    margin-right: 100px !important;
  }
}

.margin-r-120-90 {
  margin-right: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-120-90 {
    margin-right: 90px !important;
  }
}

.margin-r-120-80 {
  margin-right: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-120-80 {
    margin-right: 80px !important;
  }
}

.margin-r-120-70 {
  margin-right: 120px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-120-70 {
    margin-right: 70px !important;
  }
}

/* 110px */
.margin-r-110-90 {
  margin-right: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-110-90 {
    margin-right: 90px !important;
  }
}

.margin-r-110-80 {
  margin-right: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-110-80 {
    margin-right: 80px !important;
  }
}

.margin-r-110-70 {
  margin-right: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-110-70 {
    margin-right: 70px !important;
  }
}

.margin-r-110-60 {
  margin-right: 110px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-110-60 {
    margin-right: 60px !important;
  }
}

/* 100px */
.margin-r-100-80 {
  margin-right: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-100-80 {
    margin-right: 80px !important;
  }
}

.margin-r-100-70 {
  margin-right: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-100-70 {
    margin-right: 70px !important;
  }
}

.margin-r-100-60 {
  margin-right: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-100-60 {
    margin-right: 60px !important;
  }
}

.margin-r-100-50 {
  margin-right: 100px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-100-50 {
    margin-right: 50px !important;
  }
}

/* 90px */
.margin-r-90-70 {
  margin-right: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-90-70 {
    margin-right: 70px !important;
  }
}

.margin-r-90-60 {
  margin-right: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-90-60 {
    margin-right: 60px !important;
  }
}

.margin-r-90-50 {
  margin-right: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-90-50 {
    margin-right: 50px !important;
  }
}

.margin-r-90-40 {
  margin-right: 90px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-90-40 {
    margin-right: 40px !important;
  }
}

/* 80px */
.margin-r-80-60 {
  margin-right: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-80-60 {
    margin-right: 60px !important;
  }
}

.margin-r-80-50 {
  margin-right: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-80-50 {
    margin-right: 50px !important;
  }
}

.margin-r-80-40 {
  margin-right: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-80-40 {
    margin-right: 40px !important;
  }
}

.margin-r-80-30 {
  margin-right: 80px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-80-30 {
    margin-right: 30px !important;
  }
}

/* 70px */
.margin-r-70-50 {
  margin-right: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-70-50 {
    margin-right: 50px !important;
  }
}

.margin-r-70-40 {
  margin-right: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-70-40 {
    margin-right: 40px !important;
  }
}

.margin-r-70-30 {
  margin-right: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-70-30 {
    margin-right: 30px !important;
  }
}

.margin-r-70-20 {
  margin-right: 70px !important;
}
@media screen and (max-width: 767px) {
  .margin-r-70-20 {
    margin-right: 20px !important;
  }
}

/*GENERAL STYLING START*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/*GENERAL STYLING END*/
/*------------COMPONENTE MOSTRE DEFAULT INIZIO------------*/
/*MOBILE-VERSION*/
.container_big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.container_big .mostra {
  margin-top: 30px;
  margin-bottom: 40px;
  /*CASO MOSTRA SINGOLA*/
}
.container_big .prossime_mostre {
  margin-top: 40px;
  margin-bottom: 50px;
  /*CASO PROSSIME MOSTRE*/
}
.container_big .collezioni {
  margin-top: 90px;
  margin-bottom: 50px;
  /*CASO COLLEZIONI*/
}

/*TITLE AND CTA



*/
/*CARDS (ACTUAL COMPONENT)*/
.container_details {
  margin-top: 15px;
}

.mostre-container .container_card {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .mostre-container .container_card .ratio-container {
    padding-top: 73.13% !important;
  }
}
.mostre-container .container_3_cards {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .mostre-container .container_3_cards {
    margin-top: 40px !important;
  }
}
@media screen and (max-width: 767px) {
  .mostre-container .title-component {
    margin-bottom: 0;
  }
}
.mostre-container .details_location p {
  margin-bottom: 0 !important;
}
.mostre-container .details_date p {
  margin-bottom: 0 !important;
}
.mostre-container .container_card_title {
  margin-top: 20px;
}
.mostre-container .container_card .ratio-container {
  overflow: hidden;
}
.mostre-container .container_card img {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.mostre-container .container_card h5 {
  text-decoration: none;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  background-position: left bottom;
  padding-bottom: 5px;
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
}
.mostre-container .container_card:hover h5 {
  color: #000000;
  background-size: 100% 2px;
}
.mostre-container .container_card:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.container_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 50px;
}
.container_card .ratio-container {
  width: 100%;
  padding-top: 73.1343283582%;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .container_card .ratio-container {
    padding-top: 137.3626373626%;
  }
}
.container_card .ratio-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .container_card .hero-component_description-container {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.container_card .hero-component_description-container .hero-component_description p {
  line-height: 16px;
  font-size: 9px;
  margin-left: 0;
  margin-right: 0;
}

.container_card .container_card_title p {
  word-wrap: break-word;
  background-image: -webkit-gradient(linear, left top, right top, from(#000), to(#000));
  background-image: linear-gradient(90deg, #000, #000);
  background-size: 0 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  background-position: 0 100%;
  padding-bottom: 6px;
  display: inline;
  color: #000000;
}

.container_card:hover .container_card_title p {
  background-size: 100% 2px;
  color: #000000;
}

.container_card:hover .card_img img {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.container_card:hover .card_img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.container_card_title h5:hover,
.container_card a:hover {
  color: #000 !important;
}

@media (min-width: 768px) {
  .container_card a:first-of-type + .container_details {
    margin-top: 55px;
  }
}
.card_img {
  margin-bottom: 0;
  padding-top: 68%;
  overflow: hidden;
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  .card_img {
    padding-top: 73.13%;
  }
}
.card_img img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.container_details {
  margin-bottom: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.details_location p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-right: 16px;
  margin-right: 16px;
}

.details_separator p {
  border-right: 1px solid #000000;
}

.details_date p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px !important;
  line-height: 22px !important;
}

.container_card_title {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.container_card_title p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.container_card_title p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.container_card_title p b {
  font-weight: bold;
}
.container_card_title p .size-8 {
  font-size: 8px !important;
}
.container_card_title p .size-9 {
  font-size: 9px !important;
}
.container_card_title p .size-10 {
  font-size: 10px !important;
}
.container_card_title p .size-11 {
  font-size: 11px !important;
}
.container_card_title p .size-12 {
  font-size: 12px !important;
}
.container_card_title p .size-13 {
  font-size: 13px !important;
}
.container_card_title p .size-14 {
  font-size: 14px !important;
}
.container_card_title p .size-15 {
  font-size: 15px !important;
}
.container_card_title p .size-16 {
  font-size: 16px !important;
}
.container_card_title p .size-17 {
  font-size: 17px !important;
}
.container_card_title p .size-18 {
  font-size: 18px !important;
}
.container_card_title p .size-19 {
  font-size: 19px !important;
}
.container_card_title p .size-20 {
  font-size: 20px !important;
}
.container_card_title p .size-21 {
  font-size: 21px !important;
}
.container_card_title p .size-22 {
  font-size: 22px !important;
}
.container_card_title p .size-23 {
  font-size: 23px !important;
}
.container_card_title p .size-24 {
  font-size: 24px !important;
}
.container_card_title p .size-25 {
  font-size: 25px !important;
}
.container_card_title p .size-26 {
  font-size: 26px !important;
}
.container_card_title p .size-27 {
  font-size: 27px !important;
}
.container_card_title p .size-28 {
  font-size: 28px !important;
}
.container_card_title p .size-29 {
  font-size: 29px !important;
}
.container_card_title a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.container_card_title b {
  font-weight: bold;
}

.container_card_title a {
  color: #000000;
  text-decoration: none;
}

.container_card_title h5,
.container_card_title p {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 24px !important;
  line-height: 36px !important;
  letter-spacing: 0.02em;
}

.container_card_title h5:hover {
  color: #5a87b2;
}

/*DESKTOP-VERSION*/
@media screen and (min-width: 991px) {
  .container_big .mostra {
    margin-top: 60px;
    margin-bottom: 64px;
    /*CASO MOSTRA SINGOLA*/
  }
  .container_big .prossime_mostre {
    margin-top: 60px;
    margin-bottom: 70px;
    /*CASO PROSSIME MOSTRE*/
  }
  .container_big .collezioni {
    margin-top: 100px;
    margin-bottom: 50px;
    /*CASO COLLEZIONI*/
  }
  /*TITLE AND CTA



  */
  /*CARDS (ACTUAL COMPONENT)*/
  .container_card {
    margin-bottom: 70px;
  }
}
/*------------COMPONENTE MOSTRE DEFAULT FINE------------*/
/*------------------------------------------------------*/
/*------------COMPONENTE MOSTRE VARIANTE CSS (3 CARDS/ARCHIVIO MOSTRE) INIZIO DEGLI CSS AGGIUNTIVI------------*/
/*MOBILE VERSION*/
.container_3_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 80px;
  margin-bottom: 35px;
  border-bottom: 1px solid #e0e0e0;
}

/*TITLE AND CTA


.container_3_cards .container_header {
  margin-bottom: 22px;
}

.container_3_cards .container_header h2 {
  font-family: "Canela";
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.01em;
}

*/
.container_year {
  margin-bottom: 15px; /*20px*/
}

.container_year p {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 28px !important;
  line-height: 45px !important;
  letter-spacing: 0.01em;
}

.container_year p sup {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: #6f6f6f;
}

/*CARDS (ACTUAL COMPONENT)*/
.container_3_cards .container_card {
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*DESKTOP-VERSION*/
@media screen and (min-width: 991px) {
  .container_3_cards {
    margin-top: 80px;
    margin-bottom: 0;
  }
  .container_3_cards .container_cards {
    margin-bottom: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  /*TITLE AND CTA

  .container_3_cards .container_header {
    margin-bottom: 32px;
  }

  .container_3_cards .container_header h2 {
    font-family: "Canela";
    font-style: normal;
    font-weight: 300;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: 0.02em;
  }

  */
  .container_year {
    margin-bottom: 25px; /*30px*/
  }
  .container_year p {
    font-family: "Canela";
    font-style: normal;
    font-weight: 300;
    font-size: 32px;
    line-height: 45px;
    letter-spacing: 0.01em;
  }
  .container_year p sup {
    font-family: "Canela";
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: #6f6f6f;
  }
  /*CARDS (ACTUAL COMPONENT)*/
  .container_3_cards .container_card {
    margin-bottom: 80px;
  }
  .container_3_cards .card_img {
    padding-top: 73.3%;
    overflow: hidden;
    position: relative;
    display: block;
  }
}
@media screen and (min-width: 991px) and (max-width: 767px) {
  .container_3_cards .card_img {
    padding-top: 73.13%;
  }
}
@media screen and (min-width: 991px) {
  .container_3_cards .card_img img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
/*------------COMPONENTE MOSTRE VARIANTE CSS (3 CARDS/ARCHIVIO MOSTRE) FINE CSS AGGIUNTIVI------------*/
/*------------COMPONENTE TITLE E MOSTRE START------------*/
.container_top {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container_header {
  margin-bottom: 35px;
}

.container_header h3 {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 36px !important;
  line-height: 48px !important;
  letter-spacing: 0.01em;
}

.container_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}

.container_button:hover .button_text {
  color: #000000;
}
.container_button:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.container_button a span {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.container_button a {
  text-decoration: none;
  color: #000;
  background-image: -webkit-gradient(linear, left top, right top, from(#000), to(#000));
  background-image: linear-gradient(90deg, #000, #000);
  background-size: 0 2px;
  background-position: 0 100%;
  text-decoration: none;
  background-repeat: no-repeat;
  padding-bottom: 3px;
}

.container_button a:hover {
  background-size: calc(100% - 37px) 2px;
}

.button_text {
  margin-right: 8px;
}

.button_img img {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media screen and (min-width: 991px) {
  .container_top {
    margin-bottom: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .container_header {
    margin-bottom: 0;
  }
  .container_header h3 {
    font-family: "Canela";
    font-style: normal;
    font-weight: 300;
    font-size: 48px !important;
    line-height: 60px !important;
    letter-spacing: 0.01em;
  }
  .container_buttons {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .exhibitions-archive-container .responsivegrid .cmp-container {
    margin-top: 100px;
  }
}
@media screen and (max-width: 990px) {
  .exhibitions-archive-container .responsivegrid .cmp-container {
    margin-top: 80px;
  }
}
/*------------COMPONENTE TITLE E MOSTRE END------------*/
.container_card .ratio-container {
  position: relative;
  width: 100%;
  padding-top: 137.3626373626%;
  background-color: #c4c4c4;
}
.container_card .ratio-container img {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mostre-container__load-more button {
  width: 100%;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  padding: 15px 20px;
  margin-top: 80px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.mostre-container__load-more button:hover {
  border: 1px solid #000000;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .mostre-container__load-more button {
    margin-top: 70px;
  }
}

.exhibition-archive-component .button-div {
  margin-bottom: 140px;
}

.sidebar-archive-component .button-div {
  margin-bottom: 140px;
}

.exhibitions-initiatives .mostre__openFilters {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  display: none;
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .mostre__openFilters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    cursor: pointer;
  }
  .exhibitions-initiatives .mostre__openFilters span {
    margin-left: 10px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .mostre-mobile-wrapper-hide {
    display: none;
  }
  .exhibitions-initiatives .mostre-mobile-wrapper-hide.open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding: 20px;
    padding-top: 110px;
    background-color: #ffffff;
    overflow: hidden;
    padding-bottom: 100px;
  }
  .exhibitions-initiatives .mostre-mobile-wrapper-hide.open .filters__toggle {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.exhibitions-initiatives .filters__close {
  display: none;
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .filters__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
  }
  .exhibitions-initiatives .filters__close span {
    margin: 0;
  }
}
.exhibitions-initiatives .filters__actions {
  display: none;
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .filters__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}
.exhibitions-initiatives .filters__actions .action {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  text-transform: uppercase;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  cursor: pointer;
}
.exhibitions-initiatives .filters__actions .action--reset {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.exhibitions-initiatives .filters__actions .action--reset:hover {
  border: 1px solid #000000;
  color: #000000;
}
.exhibitions-initiatives .filters__actions .action--submit {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.exhibitions-initiatives .filters__actions .action--submit:hover {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .filters {
    display: none;
  }
  .exhibitions-initiatives .filters.open {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding: 20px;
    padding-top: 110px;
    background-color: #ffffff;
    overflow: hidden;
    padding-bottom: 100px;
  }
  .exhibitions-initiatives .filters.open .filters__toggle {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.exhibitions-initiatives .event-list-header {
  position: relative;
}
.exhibitions-initiatives .event-list-header .component-title-container {
  padding-bottom: 10px;
}
.exhibitions-initiatives .event-list-header .event-list-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .event-list-header .event-list-filters__list {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .event-list-header .event-list-filters__btns {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .event-list-header .event-list-filters {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 80px;
    overflow: auto;
  }
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1025px) {
  .exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu {
    position: absolute;
    right: 0;
    top: 92px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu {
    width: 100%;
    padding: 0 20px;
  }
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item {
  margin-left: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item {
    display: none;
  }
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item.open .arrow-down {
  background-image: url("clientlib-site/resources/images/icons/vectorup.png");
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item.open .event-list-menu__dropdown {
  overflow: auto;
  max-height: 500px;
  opacity: 1;
  z-index: 2;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .event-list-menu__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 20px;
  right: 0;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  min-width: 250px;
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .event-list-menu__dropdown {
    position: relative;
    margin-top: 0;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    width: 100%;
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0px;
  }
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .event-list-menu__dropdown__option {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  padding: 6px 0;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .event-list-menu__dropdown__option label {
  position: relative;
  width: 100%;
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .event-list-menu__dropdown__option label span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .event-list-menu__dropdown__option label span:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #e0e0e0;
  margin-right: 10px;
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .event-list-menu__dropdown__option label input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .event-list-menu__dropdown__option label input:checked + span:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .event-list-menu__dropdown__option label input:focus-visible + span {
  content: "";
  outline: 1px solid #000;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .filter-type-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    text-align: left !important;
  }
  .exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item > span {
    position: absolute;
    top: 26px;
    right: 0;
  }
  .exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .hasDatepicker {
    position: relative;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    -webkit-transition: 300ms ease-in-out;
    transition: 300ms ease-in-out;
    margin-top: 0;
  }
  .exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .hasDatepicker.visible {
    opacity: 1;
    max-height: 500px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .hasDatepicker .ui-datepicker {
    display: block;
    max-width: 100%;
  }
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .filter-type-title {
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px !important;
  font-weight: 600;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 0 !important;
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .arrow-down {
  visibility: visible;
  display: inline-block;
  width: 8px;
  height: 4px;
  background-image: url("clientlib-site/resources/images/icons/vectordown.png");
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 10px;
  -webkit-transition: none;
  transition: none;
}
.exhibitions-initiatives .event-list-header .event-list-filters .event-list-menu__item .arrow-up {
  visibility: visible;
  display: inline-block;
  width: 8px;
  height: 4px;
  background-image: url("clientlib-site/resources/images/icons/vectorup.png");
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 10px;
  -webkit-transition: none;
  transition: none;
}
.exhibitions-initiatives .event-list-header .event-list-filters__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.exhibitions-initiatives .event-list-header .event-list-filters__list .filters-label {
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #000000;
  border-radius: 20px;
  padding: 5px 10px;
  margin-right: 20px;
}
.exhibitions-initiatives .event-list-header .event-list-filters__list .filters-label span {
  margin-left: 10px;
  cursor: pointer;
}
.exhibitions-initiatives .event-list-header .event-list-filters__list:empty + .event-list-filters__btns {
  display: none;
}
.exhibitions-initiatives .event-list-header .event-list-filters__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.exhibitions-initiatives .event-list-header .event-list-filters__btns button {
  padding: 5px 0;
}
.exhibitions-initiatives .event-list-header .event-list-filters__btns button[type=reset] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}
.exhibitions-initiatives .event-list-header .event-list-filters__btns button[type=reset]:hover {
  text-decoration: underline;
}
.exhibitions-initiatives .event-list-empty {
  margin-top: 70px;
}
.exhibitions-initiatives .event-list-empty .event-list-message {
  font-family: "Canela", Arial, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #000000;
}

.news-error__maxi-col {
  position: relative;
}
.news-error__maxi-container {
  display: none;
}
.news-error__maxi-container.submit-error {
  display: block;
}
.news-error__title {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 0.02em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .news-error__title {
    font-family: "Canela";
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.news-error__description {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.news-error__description-row {
  margin-bottom: 333px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .news-error__description-row {
    margin-bottom: 250px;
    margin-top: 28px;
  }
}
.news-error__submit-col {
  position: absolute;
  bottom: 205px;
  left: 12px;
}
@media screen and (max-width: 767px) {
  .news-error__submit-col {
    bottom: 145px;
    left: 0;
  }
}
.news-error__submit-btn {
  background-color: white;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #000000;
  padding: 14px 60px;
  width: auto;
  max-height: 45px;
  white-space: nowrap !important;
}
@media screen and (max-width: 767px) {
  .news-error__submit-btn {
    width: 100%;
  }
}

.cancellation__maxi-container {
  display: block;
  margin-bottom: 230px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .cancellation__maxi-container {
    margin-top: 28px;
    margin-bottom: 110px;
  }
}
.cancellation__maxi-container.submit-confirmed {
  display: none;
}
.cancellation__maxi-container.submit-error {
  display: none;
}
.cancellation__maxi-col {
  position: relative;
}
.cancellation__title {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 0.02em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .cancellation__title {
    font-family: "Canela";
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.cancellation__description {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.cancellation__description-row {
  margin-top: 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .cancellation__description-row {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .cancellation__submit-row {
    bottom: 40px;
  }
}
.cancellation__submit-row #grecaptcha > div {
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .cancellation__submit-row #grecaptcha {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 1025px) {
  .cancellation__submit-row #grecaptcha {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.cancellation__submit-submit-col {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .cancellation__submit-submit-col {
    margin-top: 30px;
  }
}
.cancellation__submit-btn {
  background-color: white;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #000000;
  width: 100%;
  white-space: nowrap !important;
  min-height: 48px;
}
@media screen and (max-width: 767px) {
  .cancellation__submit-btn {
    padding: 14px 0;
  }
}
@media screen and (max-width: 1024px) {
  .cancellation__submit-btn {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .cancellation__submit-btn {
    margin-top: 30px;
  }
}
.cancellation__inputField {
  padding-left: 20px;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-right: 18px;
  width: 100%;
  border: 1px solid #e0e0e0;
}
.cancellation__inputField::-webkit-input-placeholder {
  font-size: 14px;
}
.cancellation__inputField::-moz-placeholder {
  font-size: 14px;
}
.cancellation__inputField:-ms-input-placeholder {
  font-size: 14px;
}
.cancellation__inputField::-ms-input-placeholder {
  font-size: 14px;
}
.cancellation__inputField::placeholder {
  font-size: 14px;
}

.newsLetter {
  /*style of label when input is focused*/
}
.newsLetter__maxi-container {
  font-family: "Inter", Arial, sans-serif;
  margin-top: 94px;
  display: block;
}
.newsLetter__maxi-container.submit-confirmed {
  display: none;
}
.newsLetter__maxi-container.submit-error {
  display: none;
}
.newsLetter__maxi-container .hasDatepicker {
  position: relative;
  opacity: 1;
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-transform: none !important;
          transform: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  pointer-events: all !important;
  max-width: unset !important;
  margin-top: unset !important;
  z-index: 1 !important;
}
.newsLetter__maxi-container .ui-datepicker-trigger {
  position: absolute;
  right: 18px;
  top: 15px;
  z-index: 2;
}
.newsLetter__maxi-container input {
  font-weight: 300;
  font-size: 14px;
}
.newsLetter__maxi-container input:focus {
  color: #000000;
}
.newsLetter__maxi-container .newsLetter__dropdown-btn {
  font-weight: 300;
}
.newsLetter__maxi-container .newsLetter__dropdown-row {
  padding: 0;
}
@media screen and (min-width: 1025px) {
  .newsLetter__maxi-container #grecaptcha {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (min-width: 1025px) {
  .newsLetter__maxi-container .newsLetter__mandatory-fields-line + .newsLetter__submit-col {
    margin-top: 30px;
  }
}
.newsLetter__group {
  position: relative;
}
.newsLetter__group .requiredLabel {
  display: none;
}
.newsLetter__group .mailCheck {
  display: none;
}
.newsLetter__group .requiredLabelTop {
  display: none;
}
.newsLetter__group .requiredLabelTop.filled {
  display: block;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.01em;
  position: absolute;
  top: -9px;
  left: 12px;
  background-color: white;
  padding-left: 4px;
  padding-right: 4px;
  color: #6f6f6f;
}
.newsLetter__group.verifyEmail input {
  border: 1px solid #cc0000;
}
.newsLetter__group.verifyEmail .mailCheck {
  display: block;
  position: absolute;
  bottom: -21px;
  right: 0;
  color: #cc0000;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.newsLetter__group.required input {
  border: 1px solid #cc0000;
}
.newsLetter__group.required .requiredLabel {
  display: block;
  position: absolute;
  bottom: -21px;
  right: 0;
  color: #cc0000;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.newsLetter__group.required .requiredLabelTop {
  display: block;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.01em;
  position: absolute;
  top: -9px;
  left: 12px;
  background-color: white;
  padding-left: 4px;
  padding-right: 4px;
  color: #cc0000;
}
.newsLetter__inputField:focus::-webkit-input-placeholder {
  visibility: hidden; /*hide placeholder on focus*/
}
.newsLetter__inputField {
  padding-left: 20px;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-right: 18px;
  width: 100%;
  border: 1px solid #e0e0e0;
}
.newsLetter__inputField::-webkit-input-placeholder {
  font-size: 14px;
}
.newsLetter__inputField::-moz-placeholder {
  font-size: 14px;
}
.newsLetter__inputField:-ms-input-placeholder {
  font-size: 14px;
}
.newsLetter__inputField::-ms-input-placeholder {
  font-size: 14px;
}
.newsLetter__inputField::placeholder {
  font-size: 14px;
}
.newsLetter__inputField:focus {
  border: 1px solid #e0e0e0;
}
.newsLetter__inputField:focus-visible {
  outline: none !important;
}
.newsLetter__inputLabel {
  display: none;
  font-size: 10px;
  color: #6f6f6f;
  font-family: sans-serif;
  background-color: #fff;
  padding: 0 4px;
}
.newsLetter__inputField:focus + .newsLetter__inputLabel {
  display: inline-block;
  position: absolute;
  left: 12px;
  top: -7px;
}
.newsLetter__inputField:not(:-moz-placeholder-shown) + .newsLetter__inputLabel {
  display: inline-block;
  position: absolute;
  left: 12px;
  top: -7px;
}
.newsLetter__inputField:not(:-ms-input-placeholder) + .newsLetter__inputLabel {
  display: inline-block;
  position: absolute;
  left: 12px;
  top: -7px;
}
.newsLetter__inputField:not(:placeholder-shown) + .newsLetter__inputLabel {
  display: inline-block;
  position: absolute;
  left: 12px;
  top: -7px;
}
.newsLetter__mandatory-fields {
  font-size: 12px;
  color: #6f6f6f;
}
.newsLetter__mandatory-fields-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.newsLetter__mandatory-fields-line {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin-top: 12px;
}
.newsLetter__dropdown-search {
  width: 100%;
}
.newsLetter__dropdown-row {
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .newsLetter__dropdown-row {
    margin-top: 0;
  }
}
.newsLetter__dropdown-container {
  font-size: 14px;
  position: relative;
}
.newsLetter__dropdown-container .requiredLabel {
  display: none;
}
.newsLetter__dropdown-container.required .button-focus {
  color: #cc0000;
}
.newsLetter__dropdown-container.required .newsLetter__dropdown-btn {
  border: 1px solid #cc0000;
}
.newsLetter__dropdown-container.required .requiredLabel {
  display: block;
  position: absolute;
  bottom: -21px;
  right: 0;
  color: #cc0000;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.newsLetter__dropdown-container .button-focus {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #6f6f6f;
  display: none;
}
.newsLetter__dropdown-container .button-focus.focused {
  display: block;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0.01em;
  position: absolute;
  top: -9px;
  left: 12px;
  background-color: white;
  padding-left: 4px;
  padding-right: 4px;
}
.newsLetter__dropdown-container.open .newsLetter__dropdown-btn::after {
  content: "";
  background-image: url("clientlib-site/resources/images/icons/arrow-down-black.svg ");
  background-repeat: no-repeat;
  background-size: cover;
  height: 5px;
  width: 9px;
  right: 25px;
  position: absolute;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 45%;
}
.newsLetter__dropdown-container.open .newsLetter__dropdown-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  left: 0;
  background-color: white;
  z-index: 100;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  width: 100%;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .newsLetter__dropdown-container.open .newsLetter__dropdown-content {
    position: relative;
  }
}
.newsLetter__dropdown-container.open .newsLetter__dropdown-content label {
  margin-bottom: 12px;
  position: relative;
  width: 100%;
}
.newsLetter__dropdown-container.open .newsLetter__dropdown-content label:last-child {
  margin-bottom: 0 !important;
}
.newsLetter__dropdown-container.open .newsLetter__dropdown-content label span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsLetter__dropdown-container.open .newsLetter__dropdown-content label span:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #e0e0e0;
  margin-right: 10px;
}
.newsLetter__dropdown-container.open .newsLetter__dropdown-content label input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.newsLetter__dropdown-container.open .newsLetter__dropdown-content label input:checked + span:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.newsLetter__dropdown-content {
  display: none;
}
.newsLetter__dropdown-btn {
  color: #6f6f6f;
  height: 48px;
  background-color: transparent;
  border: 1px solid #e0e0e0;
  padding-left: 20px;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-right: 48px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  text-align: left;
  white-space: nowrap;
}
.newsLetter__dropdown-btn.coloredWords {
  color: black;
}
.newsLetter__dropdown-btn::after {
  content: "";
  background-image: url("clientlib-site/resources/images/icons/arrow-down-black.svg ");
  background-repeat: no-repeat;
  background-size: cover;
  height: 5px;
  width: 9px;
  right: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.newsLetter__phone-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.newsLetter__phone-col .prefix-col {
  width: 30% !important;
}
.newsLetter__phone-col .phone-number-col {
  width: 65% !important;
}
@media screen and (max-width: 767px) {
  .newsLetter__phone-col {
    margin-top: 25px;
  }
}
.newsLetter__phone-col .newsLetter__search-container .newsLetter__search-btn {
  color: #6f6f6f;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .newsLetter__surname-col {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .newsLetter__email-col {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .newsLetter__date-col {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .newsLetter__interessi-col {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .newsLetter__sedi-col {
    margin-top: 25px;
  }
}
.newsLetter__mandatory-fields-col {
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .newsLetter__mandatory-fields-col {
    margin-top: 75px;
  }
}
.newsLetter__submit-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .newsLetter__submit-col {
    margin-top: 60px;
  }
}
.newsLetter__informativa-big-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.newsLetter__informativa-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.newsLetter__informativa-container input {
  margin-top: 5px;
  margin-right: 16px;
}
.newsLetter__informativa-descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
}
.newsLetter__informativa-descr.redInformativa {
  color: #cc0000;
}
.newsLetter__informativa-descr p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.newsLetter__informativa-descr p a {
  color: #000000;
  text-decoration: underline !important;
  width: 300px;
  height: 400px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.newsLetter__informativa-descr p b {
  font-weight: bold;
}
.newsLetter__informativa-descr p .size-8 {
  font-size: 8px !important;
}
.newsLetter__informativa-descr p .size-9 {
  font-size: 9px !important;
}
.newsLetter__informativa-descr p .size-10 {
  font-size: 10px !important;
}
.newsLetter__informativa-descr p .size-11 {
  font-size: 11px !important;
}
.newsLetter__informativa-descr p .size-12 {
  font-size: 12px !important;
}
.newsLetter__informativa-descr p .size-13 {
  font-size: 13px !important;
}
.newsLetter__informativa-descr p .size-14 {
  font-size: 14px !important;
}
.newsLetter__informativa-descr p .size-15 {
  font-size: 15px !important;
}
.newsLetter__informativa-descr p .size-16 {
  font-size: 16px !important;
}
.newsLetter__informativa-descr p .size-17 {
  font-size: 17px !important;
}
.newsLetter__informativa-descr p .size-18 {
  font-size: 18px !important;
}
.newsLetter__informativa-descr p .size-19 {
  font-size: 19px !important;
}
.newsLetter__informativa-descr p .size-20 {
  font-size: 20px !important;
}
.newsLetter__informativa-descr p .size-21 {
  font-size: 21px !important;
}
.newsLetter__informativa-descr p .size-22 {
  font-size: 22px !important;
}
.newsLetter__informativa-descr p .size-23 {
  font-size: 23px !important;
}
.newsLetter__informativa-descr p .size-24 {
  font-size: 24px !important;
}
.newsLetter__informativa-descr p .size-25 {
  font-size: 25px !important;
}
.newsLetter__informativa-descr p .size-26 {
  font-size: 26px !important;
}
.newsLetter__informativa-descr p .size-27 {
  font-size: 27px !important;
}
.newsLetter__informativa-descr p .size-28 {
  font-size: 28px !important;
}
.newsLetter__informativa-descr p .size-29 {
  font-size: 29px !important;
}
.newsLetter__informativa-descr a {
  color: #000000;
  text-decoration: underline !important;
  width: 300px;
  height: 400px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.newsLetter__informativa-descr b {
  font-weight: bold;
}
.newsLetter__date-row {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .newsLetter__date-row {
    margin-top: 0 !important;
  }
}
.newsLetter__informativa-submit-row {
  padding: 0;
  margin-top: 70px;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .newsLetter__informativa-submit-row {
    margin-bottom: 110px;
  }
}
.newsLetter__informativa-submit-row label {
  margin-bottom: 12px;
  position: relative;
  width: 100%;
}
.newsLetter__informativa-submit-row label:last-child {
  margin-bottom: 0 !important;
}
.newsLetter__informativa-submit-row label span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.newsLetter__informativa-submit-row label span:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  border: 1px solid #e0e0e0;
  margin-right: 16px;
  margin-top: 5px;
}
.newsLetter__informativa-submit-row label input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.newsLetter__informativa-submit-row label input:checked + span:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 2px;
  top: 6px;
}
.newsLetter__submit-btn {
  background-color: white;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #000000;
  padding: 14px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-height: 45px;
}
.newsLetter__submit-btn:hover {
  border: 1px solid #000000;
  color: #000000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.newsLetter__mandatory-fields-row {
  padding-right: 0;
  margin-right: 0;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .newsLetter__mandatory-fields-row {
    margin-top: 0 !important;
  }
}
.newsLetter__email-phone-row {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .newsLetter__email-phone-row {
    margin-top: 0 !important;
  }
}
.newsLetter__search-container {
  cursor: pointer;
  position: relative;
}
.newsLetter__search-container .inputSearch {
  padding-left: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 18px;
  border: 1px solid #e0e0e0;
  margin-bottom: 24px;
  width: unset !important;
}
.newsLetter__search-container .inputSearch:focus-visible {
  outline: none !important;
}
.newsLetter__search-container .newsLetter__search-content {
  display: none;
  max-height: 200px;
  overflow-y: auto;
  width: auto;
  position: absolute;
  top: 47px;
  background: white;
  z-index: 100;
  z-index: 504;
}
.newsLetter__search-container .newsLetter__search-btn::after {
  content: "";
  background-image: url("clientlib-site/resources/images/icons/arrow-down-black.svg ");
  background-repeat: no-repeat;
  background-size: cover;
  height: 5px;
  width: 9px;
  right: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.newsLetter__search-container .newsLetter__search-btn.selected {
  color: black;
}
.newsLetter__search-container.visiblePrefix .newsLetter__search-content {
  border: 1px solid #e0e0e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 24px;
  padding-top: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .newsLetter__search-container.visiblePrefix .newsLetter__search-content {
    width: 280px;
    margin-bottom: 47px;
  }
}
.newsLetter__search-container.visiblePrefix .newsLetter__search-btn::after {
  content: "";
  background-image: url("clientlib-site/resources/images/icons/arrow-down-black.svg ");
  background-repeat: no-repeat;
  background-size: cover;
  height: 5px;
  width: 9px;
  right: 20px;
  position: absolute;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 45%;
}
.newsLetter__search-btn {
  padding-left: 20px;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-right: 38px;
  border: 1px solid #e0e0e0;
  background-color: white;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.newsLetter__search-element {
  cursor: pointer !important;
  margin-right: 24px;
  margin-bottom: 12px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}

.datepicker-newsletter-custom {
  width: auto !important;
}
.datepicker-newsletter-custom a {
  font-size: 14px;
}
.datepicker-newsletter-custom td {
  padding-top: 2px;
  padding-bottom: 2px;
}
.datepicker-newsletter-custom table {
  max-width: 247px;
  margin: auto;
}
.datepicker-newsletter-custom .ui-state-default {
  height: 31px;
  width: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.datepicker-newsletter-custom .ui-state-disabled {
  font-size: 14px;
}
.datepicker-newsletter-custom .ui-widget-header {
  background-color: #ffffff;
  border: 0;
}
.datepicker-newsletter-custom .ui-widget-header .ui-datepicker-next .ui-icon {
  background-image: url("clientlib-site/resources/images/icons/right-arrow-filter.png");
}
.datepicker-newsletter-custom .ui-widget-header .ui-datepicker-next .ui-icon-circle-triangle-e {
  background-position: center;
}
.datepicker-newsletter-custom .ui-widget-header .ui-datepicker-prev .ui-icon {
  background-image: url("clientlib-site/resources/images/icons/left-arrow-filter.png");
}
.datepicker-newsletter-custom .ui-widget-header .ui-datepicker-prev .ui-icon-circle-triangle-w {
  background-position: center;
}
.datepicker-newsletter-custom .ui-datepicker-calendar {
  padding-left: 42px;
  padding-right: 42px;
  margin-bottom: 29px;
}
.datepicker-newsletter-custom .ui-datepicker-calendar .ui-state-default {
  text-align: center;
  width: 32px;
  border: 0;
  height: 32px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 7px;
  margin-top: 7px;
}
.datepicker-newsletter-custom .ui-datepicker-calendar .ui-state-highlight {
  border-radius: 50%;
  width: 32px;
  color: #000000;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff !important;
}
.datepicker-newsletter-custom .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default {
  border: 1px solid #000000;
  border-radius: 50%;
  width: 32px;
  color: white;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* background-color: $light-blue; */
}
.datepicker-newsletter-custom .ui-datepicker-calendar .ui-state-active {
  border-radius: 50%;
  width: 31px;
  color: white;
  height: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000000;
}

.newsLetter__date-row td {
  outline: none !important;
}
.newsLetter__date-row .newsLetter__group {
  /**************************** 
  * bootstrap theme colors
  ***************************/
}
.newsLetter__date-row .newsLetter__group a.datepicker-button {
  cursor: pointer;
}
.newsLetter__date-row .newsLetter__group .inputCheck {
  display: none;
  position: absolute;
  bottom: -21px;
  right: 0;
  color: #cc0000;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.newsLetter__date-row .newsLetter__group.error .inputCheck {
  display: block;
}
.newsLetter__date-row .newsLetter__group.error #datepicker_date-of-birth {
  border: 1px solid #cc0000;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar {
  font-size: 0.9em;
  padding: 2px;
  position: absolute;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-top: 0 !important;
  z-index: 50;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month-wrap {
  margin: 0;
  padding-top: 1px;
  text-align: center;
  height: 30px;
  position: relative;
  display: block;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap4 div.datepicker-month-wrap > div {
  padding-top: 0;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap4 div.datepicker-month-wrap div.datepicker-month-prev,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap4 div.datepicker-month-wrap div.datepicker-month-next {
  padding-top: 2px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap4 div.datepicker-month-wrap i.fa-caret-left,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap4 div.datepicker-month-wrap i.fa-caret-right {
  font-size: 1.3em;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month-fast-prev.disabled,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month-fast-next.disabled,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month-prev.disabled,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month-next.disabled {
  border: none;
  cursor: default;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month-fast-prev,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month-fast-next,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month-prev,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month-next {
  cursor: pointer;
  margin: 3px;
  width: 24px;
  height: 24px;
  padding-top: 3px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month-fast-prev {
  padding-right: 2px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month-fast-next {
  padding-left: 2px;
}
.newsLetter__date-row .newsLetter__group .selectable {
  position: relative;
}
.newsLetter__date-row .newsLetter__group .selectable.month:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  display: block;
  width: 50px;
  height: 50px;
  z-index: -1;
  top: 51%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.newsLetter__date-row .newsLetter__group .selectable.month:hover:after {
  background-color: #B4B4B4;
}
.newsLetter__date-row .newsLetter__group .selectable.year:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  display: block;
  width: 45px;
  height: 43px;
  z-index: -1;
  top: 51%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.newsLetter__date-row .newsLetter__group .selectable.year:hover:after {
  background-color: #B4B4B4;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month {
  font-size: 14px;
  color: #6f6f6f;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: absolute;
  top: 0;
  height: 24px;
  margin-top: 10px;
  text-align: center;
  cursor: pointer;
  padding-top: 1px;
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  top: 50%;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar:not(.bootstrap4) div.datepicker-month:after {
  content: "";
  background-image: url("clientlib-site/resources/images/icons/arrow-down-black.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 5px;
  width: 9px;
  right: -20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap4 div.datepicker-month:after {
  font-family: "Font Awesome 5 Free";
  font-size: 0.7em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  padding-left: 0.4em;
  content: "\f078";
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month:hover,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar div.datepicker-month:focus {
  color: #000000;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid {
  width: 85%;
  text-align: center;
  margin: 20px auto 21px;
  position: relative;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid.rtl {
  direction: rtl;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid:focus {
  outline: none;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid th,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid td {
  text-align: center;
  padding: 0;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid th abbr {
  border: none;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid td {
  border: 1px solid #999;
  cursor: pointer;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid td.unselectable {
  cursor: default;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid th,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid td.day {
  height: 35px;
  position: relative;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid th:after,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid td.day:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 32px;
  height: 32px;
  z-index: -1;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid td.month {
  height: 60px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid td.year {
  height: 45px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid td.curDay,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid td.curMonth,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid td.curYear {
  border: 1px solid #999;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar table.datepicker-grid td.empty {
  border: 1px solid #999;
  cursor: default;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar .offscreen {
  position: absolute;
  left: -200em;
  top: -100em;
}
.newsLetter__date-row .newsLetter__group .datepicker-overlay {
  background: #777;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  height: 100%;
  min-height: 100%;
  z-index: 40;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar button.datepicker-close {
  height: 30px;
  width: 100%;
  font-weight: bold;
  margin-top: 1px;
  border: 1px solid #eee;
  border-radius: 2px;
}
.newsLetter__date-row .newsLetter__group a.datepicker-button.default {
  position: absolute;
  right: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  top: 0;
  z-index: 502;
  border: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.newsLetter__date-row .newsLetter__group .input-group {
  display: block;
  position: relative;
  z-index: 500;
}
.newsLetter__date-row .newsLetter__group .input-group:after {
  content: "";
  background-image: url("clientlib-site/resources/images/icons/calendar-datepicker.svg");
  height: 14px;
  width: 14px;
  display: block;
  background-position: center;
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 500;
}
.newsLetter__date-row .newsLetter__group .input-group input {
  width: 100%;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td {
  border: none;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  border-radius: 50%;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td:hover {
  color: #ffffff;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td:hover:after {
  background-color: #B4B4B4;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td.unselectable {
  color: #e0e0e0;
  background-color: #ffffff !important;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td.curDay,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td.curMonth,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td.curYear {
  color: #ffffff !important;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td.curDay:after,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td.curMonth:after,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td.curYear:after {
  background-color: #000000;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td.empty {
  border: none;
  color: #ffffff;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  min-width: 200px;
  font-size: 0.8em;
  background-clip: padding-box;
  background-color: #FFF;
  border-radius: 4px;
  line-height: 20px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap.below {
  margin-top: 2px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap.above {
  margin-top: -2px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap:before {
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 7px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap:after {
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-top: 0;
  position: absolute;
  left: 6px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap.below:before {
  top: -7px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap.below:after {
  top: -6px;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap.above:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap.above:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}
.newsLetter__date-row .newsLetter__group .datepicker-month-fast-next,
.newsLetter__date-row .newsLetter__group .datepicker-month-fast-prev {
  display: none;
}
.newsLetter__date-row .newsLetter__group .datepicker-month-prev {
  top: 0;
}
.newsLetter__date-row .newsLetter__group .datepicker-month-prev:after {
  content: "";
  background-image: url("clientlib-site/resources/images/icons/arrow-down-black.svg");
  height: 14px;
  width: 14px;
  display: block;
  background-position: center;
  position: absolute;
  right: 70px;
  background-repeat: no-repeat;
  top: 78.3%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%) rotate(90deg);
  z-index: 500;
}
.newsLetter__date-row .newsLetter__group #datepicker-month-datepicker_date-of-birth.disabled {
  pointer-events: none;
}
.newsLetter__date-row .newsLetter__group #datepicker-month-datepicker_date-of-birth.disabled:after {
  display: none;
}
.newsLetter__date-row .newsLetter__group .datepicker-month-next {
  top: 0;
}
.newsLetter__date-row .newsLetter__group .datepicker-month-next:after {
  content: "";
  background-image: url("clientlib-site/resources/images/icons/arrow-down-black.svg");
  height: 14px;
  background-repeat: no-repeat;
  width: 14px;
  display: block;
  background-position: center;
  position: absolute;
  right: 20px;
  top: 81%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%) rotate(270deg);
  z-index: 500;
}
.newsLetter__date-row .newsLetter__group .datepicker-month-next.disabled {
  opacity: 0.2;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap table.datepicker-grid:focus {
  outline: none;
}
.newsLetter__date-row .newsLetter__group .datepicker-weekdays {
  border-bottom: 1px solid #e0e0e0;
}
.newsLetter__date-row .newsLetter__group .datepicker-weekdays abbr {
  color: #6f6f6f;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
}
.newsLetter__date-row .newsLetter__group .datepicker-weekdays abbr:hover {
  cursor: default;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap table.datepicker-grid th abbr {
  text-decoration: none;
  cursor: default;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap table.datepicker-grid td {
  border: none;
  color: #000;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap table.datepicker-grid td.unselectable {
  color: #999;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap table.datepicker-grid td.curDay,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap table.datepicker-grid td.curMonth,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap table.datepicker-grid td.curYear {
  background-color: #FFF0C4;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap table.datepicker-grid td.empty {
  border: none;
  color: #CCC;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap table.datepicker-grid td.selectable:hover,
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap table.datepicker-grid td.selectable.focus {
  background-color: #DDD;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td.focus:not(.curDay)::after {
  background-color: #B4B4B4;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.default table.datepicker-grid td.focus:not(.curDay) {
  color: #ffffff !important;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap table.datepicker-grid td.empty:hover {
  background-color: #F9F9F9;
}
.newsLetter__date-row .newsLetter__group div.datepicker-calendar.bootstrap button.datepicker-close {
  background-color: #DDD;
  border-color: #999;
  color: #000;
}
.newsLetter__date-row .newsLetter__group .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: none;
}
.newsLetter__date-row .newsLetter__group #datepicker_date-of-birth {
  height: 48px;
  border-radius: 0;
}
.newsLetter__date-row .newsLetter__group #datepicker_date-of-birth,
.newsLetter__date-row .newsLetter__group #datepicker-calendar-datepicker_date-of-birth {
  font-size: 14px;
  color: black;
  font-weight: 300;
  font-family: "Inter", Arial, sans-serif;
  background-color: #ffffff;
}
.newsLetter__date-row .newsLetter__group input[type=date]::-webkit-inner-spin-button,
.newsLetter__date-row .newsLetter__group input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
.newsLetter__date-row .newsLetter__group .newsLetter__inputLabel.active {
  display: block;
  position: absolute;
  top: -7px;
  z-index: 501;
  left: 12px;
}
.newsLetter__date-row .newsLetter__group .btn-check:focus + .btn,
.newsLetter__date-row .newsLetter__group .btn:focus {
  -webkit-box-shadow: 0;
          box-shadow: 0;
  border: 0;
}

/*GENERAL STYLING START*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/*GENERAL STYLING START*/
/*MIXIN START*/
/*MIXIN END*/
/*BACKGROUND AND IMG STYLING START*/
.container_big_operasingola {
  margin-top: 90px !important;
  margin-bottom: 90px;
}

.container_grey_background_operasingola {
  width: 100%;
  padding: 70px 20px;
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.container_grey_background_operasingola .container_img_operasingola {
  position: relative;
  display: block;
  padding-top: 50%;
  z-index: 100;
  width: inherit;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .container_grey_background_operasingola .container_img_operasingola {
    padding-top: 152%;
  }
}
.container_grey_background_operasingola .container_img_operasingola .image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: #c4c4c4;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 991px) {
  .container_big_operasingola {
    margin-top: 90px !important;
    margin-bottom: 114px;
  }
  .container_grey_background_operasingola {
    padding: 80px 120px;
  }
  .container_grey_background_operasingola .container_img_operasingola picture .image {
    --aspect-ratio: calc(600 / 393 * 100%);
  }
}
/*BACKGROUND AND IMG STYLING END*/
/*LABELS AND DESCRIPTIONS START*/
.container_details_operasingola {
  display: block !important;
}
.container_details_operasingola .opera-detail:first-child .row_details_operasingola {
  border-top: 1px solid #e0e0e0;
}
.container_details_operasingola .opera-detail .row_details_operasingola {
  border-bottom: 1px solid #e0e0e0;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_label_operasingola {
  padding-top: 30px;
  padding-left: 0;
  padding-right: 15px;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_label_operasingola p {
  margin-bottom: 10px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola {
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  margin: 0;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p a {
  color: #000000;
  text-decoration: underline !important;
  width: 300px;
  height: 400px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p b {
  font-weight: bold;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-8 {
  font-size: 8px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-9 {
  font-size: 9px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-10 {
  font-size: 10px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-11 {
  font-size: 11px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-12 {
  font-size: 12px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-13 {
  font-size: 13px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-14 {
  font-size: 14px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-15 {
  font-size: 15px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-16 {
  font-size: 16px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-17 {
  font-size: 17px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-18 {
  font-size: 18px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-19 {
  font-size: 19px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-20 {
  font-size: 20px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-21 {
  font-size: 21px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-22 {
  font-size: 22px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-23 {
  font-size: 23px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-24 {
  font-size: 24px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-25 {
  font-size: 25px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-26 {
  font-size: 26px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-27 {
  font-size: 27px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-28 {
  font-size: 28px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola p .size-29 {
  font-size: 29px !important;
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola b {
  font-weight: bold;
}

@media screen and (min-width: 991px) {
  .container_details_operasingola .row_details_operasingola .col_details_operasingola {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding: 20px 0;
  }
  .container_details_operasingola .row_details_operasingola .col_details_operasingola .details_label_operasingola {
    padding-top: 0;
  }
  .container_details_operasingola .row_details_operasingola .col_details_operasingola .details_label_operasingola p {
    margin: 0;
  }
  .container_details_operasingola .row_details_operasingola .col_details_operasingola .details_description_operasingola {
    padding-bottom: 0;
    border: none;
  }
}
/*LABELS AND DESCRIPTIONS END*/
/*PARAGRAPH START*/
.container_paragraph_operasingola {
  margin-top: 90px;
}

@media screen and (min-width: 991px) {
  .container_paragraph_operasingola {
    margin-top: 80px;
  }
  .container_paragraph_operasingola .row .paragraph_operasingola {
    padding-left: 0;
    padding-right: 0;
  }
}
/*PARAGRAPH END*/
/*TITLE START*/
.container_title_operasingola {
  margin-top: 80px;
  margin-bottom: 40px;
}

@media screen and (min-width: 991px) {
  .container_title_operasingola {
    margin-top: 110px;
    margin-bottom: 0;
  }
}
/*TITLE END*/
.orari__title-component {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .orari__title-component {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.orari__text-component {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.orari__text-component p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.orari__text-component p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.orari__text-component p b {
  font-weight: bold;
}
.orari__text-component p .size-8 {
  font-size: 8px !important;
}
.orari__text-component p .size-9 {
  font-size: 9px !important;
}
.orari__text-component p .size-10 {
  font-size: 10px !important;
}
.orari__text-component p .size-11 {
  font-size: 11px !important;
}
.orari__text-component p .size-12 {
  font-size: 12px !important;
}
.orari__text-component p .size-13 {
  font-size: 13px !important;
}
.orari__text-component p .size-14 {
  font-size: 14px !important;
}
.orari__text-component p .size-15 {
  font-size: 15px !important;
}
.orari__text-component p .size-16 {
  font-size: 16px !important;
}
.orari__text-component p .size-17 {
  font-size: 17px !important;
}
.orari__text-component p .size-18 {
  font-size: 18px !important;
}
.orari__text-component p .size-19 {
  font-size: 19px !important;
}
.orari__text-component p .size-20 {
  font-size: 20px !important;
}
.orari__text-component p .size-21 {
  font-size: 21px !important;
}
.orari__text-component p .size-22 {
  font-size: 22px !important;
}
.orari__text-component p .size-23 {
  font-size: 23px !important;
}
.orari__text-component p .size-24 {
  font-size: 24px !important;
}
.orari__text-component p .size-25 {
  font-size: 25px !important;
}
.orari__text-component p .size-26 {
  font-size: 26px !important;
}
.orari__text-component p .size-27 {
  font-size: 27px !important;
}
.orari__text-component p .size-28 {
  font-size: 28px !important;
}
.orari__text-component p .size-29 {
  font-size: 29px !important;
}
.orari__text-component a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.orari__text-component b {
  font-weight: bold;
}
.orari__tabella-img-container-maxi {
  margin-top: 50px;
  position: relative;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.orari__tabella-img-legenda {
  position: absolute;
  right: 0;
  bottom: -30px;
}
.orari__tabella-img {
  width: 100% !important;
}
.orari picture {
  background-color: transparent !important;
}

/*PADDING DESKTOP TOP*/
/* 150px */
.padding-t-150-130 {
  padding-top: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-150-130 {
    padding-top: 130px !important;
  }
}

.padding-t-150-120 {
  padding-top: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-150-120 {
    padding-top: 120px !important;
  }
}

.padding-t-150-110 {
  padding-top: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-150-110 {
    padding-top: 110px !important;
  }
}

.padding-t-150-100 {
  padding-top: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-150-100 {
    padding-top: 100px !important;
  }
}

/* 140px */
.padding-t-140-120 {
  padding-top: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-140-120 {
    padding-top: 120px !important;
  }
}

.padding-t-140-110 {
  padding-top: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-140-110 {
    padding-top: 110px !important;
  }
}

.padding-t-140-100 {
  padding-top: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-140-100 {
    padding-top: 100px !important;
  }
}

.padding-t-140-90 {
  padding-top: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-140-90 {
    padding-top: 90px !important;
  }
}

/* 130px */
.padding-t-130-110 {
  padding-top: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-130-110 {
    padding-top: 110px !important;
  }
}

.padding-t-130-100 {
  padding-top: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-130-100 {
    padding-top: 100px !important;
  }
}

.padding-t-130-90 {
  padding-top: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-130-90 {
    padding-top: 90px !important;
  }
}

.padding-t-130-80 {
  padding-top: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-130-80 {
    padding-top: 80px !important;
  }
}

/* 120px */
.padding-t-120-100 {
  padding-top: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-120-100 {
    padding-top: 100px !important;
  }
}

.padding-t-120-90 {
  padding-top: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-120-90 {
    padding-top: 90px !important;
  }
}

.padding-t-120-80 {
  padding-top: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-120-80 {
    padding-top: 80px !important;
  }
}

.padding-t-120-70 {
  padding-top: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-120-70 {
    padding-top: 70px !important;
  }
}

/* 110px */
.padding-t-110-90 {
  padding-top: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-110-90 {
    padding-top: 90px !important;
  }
}

.padding-t-110-80 {
  padding-top: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-110-80 {
    padding-top: 80px !important;
  }
}

.padding-t-110-70 {
  padding-top: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-110-70 {
    padding-top: 70px !important;
  }
}

.padding-t-110-60 {
  padding-top: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-110-60 {
    padding-top: 60px !important;
  }
}

/* 100px */
.padding-t-100-80 {
  padding-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-100-80 {
    padding-top: 80px !important;
  }
}

.padding-t-100-70 {
  padding-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-100-70 {
    padding-top: 70px !important;
  }
}

.padding-t-100-60 {
  padding-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-100-60 {
    padding-top: 60px !important;
  }
}

.padding-t-100-50 {
  padding-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-100-50 {
    padding-top: 50px !important;
  }
}

/* 90px */
.padding-t-90-70 {
  padding-top: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-90-70 {
    padding-top: 70px !important;
  }
}

.padding-t-90-60 {
  padding-top: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-90-60 {
    padding-top: 60px !important;
  }
}

.padding-t-90-50 {
  padding-top: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-90-50 {
    padding-top: 50px !important;
  }
}

.padding-t-90-40 {
  padding-top: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-90-40 {
    padding-top: 40px !important;
  }
}

/* 80px */
.padding-t-80-60 {
  padding-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-80-60 {
    padding-top: 60px !important;
  }
}

.padding-t-80-50 {
  padding-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-80-50 {
    padding-top: 50px !important;
  }
}

.padding-t-80-40 {
  padding-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-80-40 {
    padding-top: 40px !important;
  }
}

.padding-t-80-30 {
  padding-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-80-30 {
    padding-top: 30px !important;
  }
}

/* 70px */
.padding-t-70-50 {
  padding-top: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-70-50 {
    padding-top: 50px !important;
  }
}

.padding-t-70-40 {
  padding-top: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-70-40 {
    padding-top: 40px !important;
  }
}

.padding-t-70-30 {
  padding-top: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-70-30 {
    padding-top: 30px !important;
  }
}

.padding-t-70-20 {
  padding-top: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-t-70-20 {
    padding-top: 20px !important;
  }
}

/*PADDING DESKTOP BOTTOM*/
/* 150px */
.padding-b-150-130 {
  padding-bottom: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-150-130 {
    padding-bottom: 130px !important;
  }
}

.padding-b-150-120 {
  padding-bottom: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-150-120 {
    padding-bottom: 120px !important;
  }
}

.padding-b-150-110 {
  padding-bottom: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-150-110 {
    padding-bottom: 110px !important;
  }
}

.padding-b-150-100 {
  padding-bottom: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-150-100 {
    padding-bottom: 100px !important;
  }
}

/* 140px */
.padding-b-140-120 {
  padding-bottom: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-140-120 {
    padding-bottom: 120px !important;
  }
}

.padding-b-140-110 {
  padding-bottom: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-140-110 {
    padding-bottom: 110px !important;
  }
}

.padding-b-140-100 {
  padding-bottom: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-140-100 {
    padding-bottom: 100px !important;
  }
}

.padding-b-140-90 {
  padding-bottom: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-140-90 {
    padding-bottom: 90px !important;
  }
}

/* 130px */
.padding-b-130-110 {
  padding-bottom: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-130-110 {
    padding-bottom: 110px !important;
  }
}

.padding-b-130-100 {
  padding-bottom: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-130-100 {
    padding-bottom: 100px !important;
  }
}

.padding-b-130-90 {
  padding-bottom: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-130-90 {
    padding-bottom: 90px !important;
  }
}

.padding-b-130-80 {
  padding-bottom: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-130-80 {
    padding-bottom: 80px !important;
  }
}

/* 120px */
.padding-b-120-100 {
  padding-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-120-100 {
    padding-bottom: 100px !important;
  }
}

.padding-b-120-90 {
  padding-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-120-90 {
    padding-bottom: 90px !important;
  }
}

.padding-b-120-80 {
  padding-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-120-80 {
    padding-bottom: 80px !important;
  }
}

.padding-b-120-70 {
  padding-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-120-70 {
    padding-bottom: 70px !important;
  }
}

/* 110px */
.padding-b-110-90 {
  padding-bottom: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-110-90 {
    padding-bottom: 90px !important;
  }
}

.padding-b-110-80 {
  padding-bottom: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-110-80 {
    padding-bottom: 80px !important;
  }
}

.padding-b-110-70 {
  padding-bottom: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-110-70 {
    padding-bottom: 70px !important;
  }
}

.padding-b-110-60 {
  padding-bottom: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-110-60 {
    padding-bottom: 60px !important;
  }
}

/* 100px */
.padding-b-100-80 {
  padding-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-100-80 {
    padding-bottom: 80px !important;
  }
}

.padding-b-100-70 {
  padding-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-100-70 {
    padding-bottom: 70px !important;
  }
}

.padding-b-100-60 {
  padding-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-100-60 {
    padding-bottom: 60px !important;
  }
}

.padding-b-100-50 {
  padding-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-100-50 {
    padding-bottom: 50px !important;
  }
}

/* 90px */
.padding-b-90-70 {
  padding-bottom: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-90-70 {
    padding-bottom: 70px !important;
  }
}

.padding-b-90-60 {
  padding-bottom: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-90-60 {
    padding-bottom: 60px !important;
  }
}

.padding-b-90-50 {
  padding-bottom: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-90-50 {
    padding-bottom: 50px !important;
  }
}

.padding-b-90-40 {
  padding-bottom: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-90-40 {
    padding-bottom: 40px !important;
  }
}

/* 80px */
.padding-b-80-60 {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-80-60 {
    padding-bottom: 60px !important;
  }
}

.padding-b-80-50 {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-80-50 {
    padding-bottom: 50px !important;
  }
}

.padding-b-80-40 {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-80-40 {
    padding-bottom: 40px !important;
  }
}

.padding-b-80-30 {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-80-30 {
    padding-bottom: 30px !important;
  }
}

/* 70px */
.padding-b-70-50 {
  padding-bottom: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-70-50 {
    padding-bottom: 50px !important;
  }
}

.padding-b-70-40 {
  padding-bottom: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-70-40 {
    padding-bottom: 40px !important;
  }
}

.padding-b-70-30 {
  padding-bottom: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-70-30 {
    padding-bottom: 30px !important;
  }
}

.padding-b-70-20 {
  padding-bottom: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-b-70-20 {
    padding-bottom: 20px !important;
  }
}

/*PADDING DESKTOP LEFT*/
/* 150px */
.padding-l-150-130 {
  padding-left: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-150-130 {
    padding-left: 130px !important;
  }
}

.padding-l-150-120 {
  padding-left: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-150-120 {
    padding-left: 120px !important;
  }
}

.padding-l-150-110 {
  padding-left: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-150-110 {
    padding-left: 110px !important;
  }
}

.padding-l-150-100 {
  padding-left: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-150-100 {
    padding-left: 100px !important;
  }
}

/* 140px */
.padding-l-140-120 {
  padding-left: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-140-120 {
    padding-left: 120px !important;
  }
}

.padding-l-140-110 {
  padding-left: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-140-110 {
    padding-left: 110px !important;
  }
}

.padding-l-140-100 {
  padding-left: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-140-100 {
    padding-left: 100px !important;
  }
}

.padding-l-140-90 {
  padding-left: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-140-90 {
    padding-left: 90px !important;
  }
}

/* 130px */
.padding-l-130-110 {
  padding-left: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-130-110 {
    padding-left: 110px !important;
  }
}

.padding-l-130-100 {
  padding-left: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-130-100 {
    padding-left: 100px !important;
  }
}

.padding-l-130-90 {
  padding-left: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-130-90 {
    padding-left: 90px !important;
  }
}

.padding-l-130-80 {
  padding-left: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-130-80 {
    padding-left: 80px !important;
  }
}

/* 120px */
.padding-l-120-100 {
  padding-left: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-120-100 {
    padding-left: 100px !important;
  }
}

.padding-l-120-90 {
  padding-left: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-120-90 {
    padding-left: 90px !important;
  }
}

.padding-l-120-80 {
  padding-left: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-120-80 {
    padding-left: 80px !important;
  }
}

.padding-l-120-70 {
  padding-left: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-120-70 {
    padding-left: 70px !important;
  }
}

/* 110px */
.padding-l-110-90 {
  padding-left: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-110-90 {
    padding-left: 90px !important;
  }
}

.padding-l-110-80 {
  padding-left: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-110-80 {
    padding-left: 80px !important;
  }
}

.padding-l-110-70 {
  padding-left: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-110-70 {
    padding-left: 70px !important;
  }
}

.padding-l-110-60 {
  padding-left: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-110-60 {
    padding-left: 60px !important;
  }
}

/* 100px */
.padding-l-100-80 {
  padding-left: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-100-80 {
    padding-left: 80px !important;
  }
}

.padding-l-100-70 {
  padding-left: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-100-70 {
    padding-left: 70px !important;
  }
}

.padding-l-100-60 {
  padding-left: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-100-60 {
    padding-left: 60px !important;
  }
}

.padding-l-100-50 {
  padding-left: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-100-50 {
    padding-left: 50px !important;
  }
}

/* 90px */
.padding-l-90-70 {
  padding-left: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-90-70 {
    padding-left: 70px !important;
  }
}

.padding-l-90-60 {
  padding-left: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-90-60 {
    padding-left: 60px !important;
  }
}

.padding-l-90-50 {
  padding-left: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-90-50 {
    padding-left: 50px !important;
  }
}

.padding-l-90-40 {
  padding-left: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-90-40 {
    padding-left: 40px !important;
  }
}

/* 80px */
.padding-l-80-60 {
  padding-left: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-80-60 {
    padding-left: 60px !important;
  }
}

.padding-l-80-50 {
  padding-left: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-80-50 {
    padding-left: 50px !important;
  }
}

.padding-l-80-40 {
  padding-left: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-80-40 {
    padding-left: 40px !important;
  }
}

.padding-l-80-30 {
  padding-left: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-80-30 {
    padding-left: 30px !important;
  }
}

/* 70px */
.padding-l-70-50 {
  padding-left: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-70-50 {
    padding-left: 50px !important;
  }
}

.padding-l-70-40 {
  padding-left: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-70-40 {
    padding-left: 40px !important;
  }
}

.padding-l-70-30 {
  padding-left: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-70-30 {
    padding-left: 30px !important;
  }
}

.padding-l-70-20 {
  padding-left: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-l-70-20 {
    padding-left: 20px !important;
  }
}

/*PADDING DESKTOP RIGHT*/
/* 150px */
.padding-r-150-130 {
  padding-right: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-150-130 {
    padding-right: 130px !important;
  }
}

.padding-r-150-120 {
  padding-right: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-150-120 {
    padding-right: 120px !important;
  }
}

.padding-r-150-110 {
  padding-right: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-150-110 {
    padding-right: 110px !important;
  }
}

.padding-r-150-100 {
  padding-right: 150px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-150-100 {
    padding-right: 100px !important;
  }
}

/* 140px */
.padding-r-140-120 {
  padding-right: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-140-120 {
    padding-right: 120px !important;
  }
}

.padding-r-140-110 {
  padding-right: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-140-110 {
    padding-right: 110px !important;
  }
}

.padding-r-140-100 {
  padding-right: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-140-100 {
    padding-right: 100px !important;
  }
}

.padding-r-140-90 {
  padding-right: 140px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-140-90 {
    padding-right: 90px !important;
  }
}

/* 130px */
.padding-r-130-110 {
  padding-right: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-130-110 {
    padding-right: 110px !important;
  }
}

.padding-r-130-100 {
  padding-right: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-130-100 {
    padding-right: 100px !important;
  }
}

.padding-r-130-90 {
  padding-right: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-130-90 {
    padding-right: 90px !important;
  }
}

.padding-r-130-80 {
  padding-right: 130px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-130-80 {
    padding-right: 80px !important;
  }
}

/* 120px */
.padding-r-120-100 {
  padding-right: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-120-100 {
    padding-right: 100px !important;
  }
}

.padding-r-120-90 {
  padding-right: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-120-90 {
    padding-right: 90px !important;
  }
}

.padding-r-120-80 {
  padding-right: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-120-80 {
    padding-right: 80px !important;
  }
}

.padding-r-120-70 {
  padding-right: 120px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-120-70 {
    padding-right: 70px !important;
  }
}

/* 110px */
.padding-r-110-90 {
  padding-right: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-110-90 {
    padding-right: 90px !important;
  }
}

.padding-r-110-80 {
  padding-right: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-110-80 {
    padding-right: 80px !important;
  }
}

.padding-r-110-70 {
  padding-right: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-110-70 {
    padding-right: 70px !important;
  }
}

.padding-r-110-60 {
  padding-right: 110px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-110-60 {
    padding-right: 60px !important;
  }
}

/* 100px */
.padding-r-100-80 {
  padding-right: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-100-80 {
    padding-right: 80px !important;
  }
}

.padding-r-100-70 {
  padding-right: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-100-70 {
    padding-right: 70px !important;
  }
}

.padding-r-100-60 {
  padding-right: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-100-60 {
    padding-right: 60px !important;
  }
}

.padding-r-100-50 {
  padding-right: 100px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-100-50 {
    padding-right: 50px !important;
  }
}

/* 90px */
.padding-r-90-70 {
  padding-right: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-90-70 {
    padding-right: 70px !important;
  }
}

.padding-r-90-60 {
  padding-right: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-90-60 {
    padding-right: 60px !important;
  }
}

.padding-r-90-50 {
  padding-right: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-90-50 {
    padding-right: 50px !important;
  }
}

.padding-r-90-40 {
  padding-right: 90px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-90-40 {
    padding-right: 40px !important;
  }
}

/* 80px */
.padding-r-80-60 {
  padding-right: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-80-60 {
    padding-right: 60px !important;
  }
}

.padding-r-80-50 {
  padding-right: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-80-50 {
    padding-right: 50px !important;
  }
}

.padding-r-80-40 {
  padding-right: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-80-40 {
    padding-right: 40px !important;
  }
}

.padding-r-80-30 {
  padding-right: 80px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-80-30 {
    padding-right: 30px !important;
  }
}

/* 70px */
.padding-r-70-50 {
  padding-right: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-70-50 {
    padding-right: 50px !important;
  }
}

.padding-r-70-40 {
  padding-right: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-70-40 {
    padding-right: 40px !important;
  }
}

.padding-r-70-30 {
  padding-right: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-70-30 {
    padding-right: 30px !important;
  }
}

.padding-r-70-20 {
  padding-right: 70px !important;
}
@media screen and (max-width: 767px) {
  .padding-r-70-20 {
    padding-right: 20px !important;
  }
}

.pianifica-maxi-container .rich-text {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
}
.pianifica-maxi-container .rich-text p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.pianifica-maxi-container .rich-text p a {
  color: #000000;
  text-decoration: underline !important;
  width: 300px;
  height: 400px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.pianifica-maxi-container .rich-text p b {
  font-weight: bold;
}
.pianifica-maxi-container .rich-text p .size-8 {
  font-size: 8px !important;
}
.pianifica-maxi-container .rich-text p .size-9 {
  font-size: 9px !important;
}
.pianifica-maxi-container .rich-text p .size-10 {
  font-size: 10px !important;
}
.pianifica-maxi-container .rich-text p .size-11 {
  font-size: 11px !important;
}
.pianifica-maxi-container .rich-text p .size-12 {
  font-size: 12px !important;
}
.pianifica-maxi-container .rich-text p .size-13 {
  font-size: 13px !important;
}
.pianifica-maxi-container .rich-text p .size-14 {
  font-size: 14px !important;
}
.pianifica-maxi-container .rich-text p .size-15 {
  font-size: 15px !important;
}
.pianifica-maxi-container .rich-text p .size-16 {
  font-size: 16px !important;
}
.pianifica-maxi-container .rich-text p .size-17 {
  font-size: 17px !important;
}
.pianifica-maxi-container .rich-text p .size-18 {
  font-size: 18px !important;
}
.pianifica-maxi-container .rich-text p .size-19 {
  font-size: 19px !important;
}
.pianifica-maxi-container .rich-text p .size-20 {
  font-size: 20px !important;
}
.pianifica-maxi-container .rich-text p .size-21 {
  font-size: 21px !important;
}
.pianifica-maxi-container .rich-text p .size-22 {
  font-size: 22px !important;
}
.pianifica-maxi-container .rich-text p .size-23 {
  font-size: 23px !important;
}
.pianifica-maxi-container .rich-text p .size-24 {
  font-size: 24px !important;
}
.pianifica-maxi-container .rich-text p .size-25 {
  font-size: 25px !important;
}
.pianifica-maxi-container .rich-text p .size-26 {
  font-size: 26px !important;
}
.pianifica-maxi-container .rich-text p .size-27 {
  font-size: 27px !important;
}
.pianifica-maxi-container .rich-text p .size-28 {
  font-size: 28px !important;
}
.pianifica-maxi-container .rich-text p .size-29 {
  font-size: 29px !important;
}
.pianifica-maxi-container .rich-text a {
  color: #000000;
  text-decoration: underline !important;
  width: 300px;
  height: 400px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.pianifica-maxi-container .rich-text b {
  font-weight: bold;
}
.pianifica-maxi-container .mt-3 {
  margin-top: 0 !important;
}
.pianifica-maxi-container .container_cards {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .pianifica-maxi-container .container_cards .pianifica-anchor-tag {
    margin-top: -90px !important;
  }
}
@media screen and (min-width: 1025px) {
  .pianifica-maxi-container .container_cards .pianifica-anchor-tag {
    margin-top: -120px !important;
  }
}
@media screen and (max-width: 1024px) {
  .pianifica-maxi-container .container_cards .pianifica-anchor-tag {
    margin-top: -120px !important;
  }
}
.pianifica-maxi-container .container_cards .card_img {
  margin-bottom: 24px;
}
.pianifica-maxi-container .container_cards .card_title {
  margin-top: 0;
}
.pianifica-maxi-container .download__item {
  margin-bottom: 0 !important;
}
@media screen and (min-width: 1025px) {
  .pianifica-maxi-container .container_card-e {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .pianifica-maxi-container .container_card-e:last-child {
    margin-bottom: 0 !important;
  }
}
.pianifica-maxi-container .anchor-orari {
  margin-top: -10px !important;
  z-index: -100;
}
@media screen and (min-width: 768px) {
  .pianifica-maxi-container .padding-col-10-pianifica {
    margin-left: 8.33%;
    width: 83.33%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.playlist .podcast-card-icon {
  border-right: 0 !important;
}
.playlist.hidden {
  display: none !important;
}

.podcast-card-icon {
  margin: 20px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  height: auto;
  min-height: 122px;
  border: 1px solid #bbb;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.podcast-card-icon.list {
  min-height: auto;
  max-height: auto;
  border-radius: 0;
  margin: 0 !important;
  border-bottom: 0;
  height: 122px;
}
.podcast-card-icon.list .card-icon__content {
  padding-right: 27px;
  margin-top: 0px;
  padding-top: 41px;
  padding-bottom: 41px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.podcast-card-icon.list .card-icon__action {
  height: 40px;
  width: 40px;
  margin-right: 32px;
}
.podcast-card-icon.list .card-icon__action svg {
  height: 27px;
  width: 28px;
}
.podcast-card-icon.list .card-icon__text {
  margin-top: 0;
  margin-right: 0;
}
.podcast-card-icon.list .card-icon__text-title h2 {
  font-size: 18px;
  margin: 0;
  letter-spacing: 0.18px;
  line-height: 1.47;
}
.podcast-card-icon.list:first-child {
  border-top: 0;
}
.podcast-card-icon.list:last-child {
  border-bottom: 0px;
}
.podcast-card-icon.position {
  position: absolute;
  z-index: 10;
  right: 80px;
  bottom: 20px;
}
.podcast-card-icon--link {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.podcast-card-icon--link:hover {
  cursor: pointer;
  background: #7a7a7a;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
@media (max-width: 1023px) {
  .podcast-card-icon {
    /*border-radius:5px;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-height: 122px;
    padding-bottom: 0;
  }
  .podcast-card-icon.list {
    min-height: 100px;
    max-height: 100px;
    border-radius: 0;
    margin: 0 !important;
  }
  .podcast-card-icon.list .card-icon__content {
    padding-left: 43px;
    padding-right: 31px;
    margin-top: 0;
  }
  .podcast-card-icon.list .card-icon__content .card-icon__text h2 {
    font-size: 18px;
    letter-spacing: 0.41px;
    line-height: 1.39;
  }
  .podcast-card-icon.list .card-icon__action {
    height: 40px;
    width: 40px;
    background: #2b8804;
    margin-right: 20px;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .podcast-card-icon.list .card-icon__action svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    height: 30px;
    width: 30px;
    fill: white;
  }
  .podcast-card-icon.position {
    right: 23px;
    bottom: 26px;
  }
}
.podcast-card-icon ~ .playlist {
  margin: 0;
  max-height: 700px;
  overflow: auto;
  border-bottom: 1px solid #bbb;
  border-right: 1px solid #bbb;
}
.podcast-card-icon.small {
  width: 500px;
  height: 130px;
  min-height: 130px;
  border: 0;
  margin-bottom: 0;
}
.podcast-card-icon.small .card-icon__content {
  margin-left: 50px;
  padding: 25px 29px 0 28px;
}
.podcast-card-icon.small .card-icon__content .card-icon__text-gradient p {
  height: 16px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.37;
  letter-spacing: 0.19px;
  color: #868686;
  font-size: 12px;
}
.podcast-card-icon.small .card-icon__content .card-icon__text-gradient p:first-child {
  font-weight: bold;
}
.podcast-card-icon.small .card-icon__content .card-icon__text-gradient p:last-child {
  height: 24px;
  font-weight: normal;
  line-height: 2;
  margin-top: -4px;
}
.podcast-card-icon.small .card-icon__content .card-icon__text {
  height: auto;
  /*padding-top: 24px;*/
  /*padding-right: 29px;*/
}
.podcast-card-icon.small .card-icon__content .card-icon__text._player {
  padding-top: 9px;
  margin: 0;
}
.podcast-card-icon.small .card-icon__content .card-icon__text._player .card-icon__text-title h2 {
  padding-top: 0;
  line-height: 1.13;
}
.podcast-card-icon.small .card-icon__content .card-icon__text._player span {
  -ms-flex-item-align: end;
      align-self: end;
}
.podcast-card-icon.small .card-icon__text-title {
  display: block;
}
.podcast-card-icon.small .card-icon__text-title p:first-child {
  font-size: 12px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.37;
  letter-spacing: 0.19px;
  color: #7a7a7a;
}
.podcast-card-icon.small .card-icon__text-title a,
.podcast-card-icon.small .card-icon__text-title h2 {
  font-size: 26px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: 0.31px;
}
.podcast-card-icon.small .card-icon__svg {
  width: 50px;
  padding: 0;
}
.podcast-card-icon.small .card-icon__svg svg {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 768px) {
  .podcast-card-icon.small {
    width: 271px;
    height: 93px;
    min-height: 93px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .podcast-card-icon.small .card-icon__green_editorial {
    width: 5px;
    padding: 0;
  }
  .podcast-card-icon.small .card-icon__content_editorial {
    padding: 14px 10px 20px 14px;
  }
  .podcast-card-icon.small .card-icon__content_editorial .card-icon__text_editorial {
    width: 226px;
    padding-top: 2px;
  }
  .podcast-card-icon.small .card-icon__content {
    padding: 14px 10px 20px 19px;
    margin-left: 0;
  }
  .podcast-card-icon.small .card-icon__content .card-icon__text {
    width: 203px;
    padding-top: 2px;
  }
  .podcast-card-icon.small .card-icon__content .card-icon__text._player {
    padding-top: 4px;
  }
  .podcast-card-icon.small .card-icon__content .card-icon__text._player .card-icon__text-title h2 {
    line-height: 1.31;
  }
  .podcast-card-icon.small .card-icon__content .card-icon__text span {
    display: none;
  }
  .podcast-card-icon.small .card-icon__content .card-icon__text-gradient p:last-child {
    display: none;
  }
  .podcast-card-icon.small .card-icon__content .card-icon__action {
    width: 36px;
    height: 36px;
    margin-top: 0;
  }
  .podcast-card-icon.small .card-icon__content .card-icon__action svg {
    height: 23px;
    width: 29px;
  }
  .podcast-card-icon.small .card-icon__content .card-icon__text-gradient p:first-child {
    font-size: 10px;
    line-height: 1.64;
    letter-spacing: 0.16px;
  }
  .podcast-card-icon.small .card-icon__text-gradient_editorial p,
  .podcast-card-icon.small .card-icon__text-gradient p {
    font-size: 10px;
    letter-spacing: 0.16px;
    font-weight: bold;
    line-height: 1.64;
  }
  .podcast-card-icon.small .card-icon__text-title h2,
  .podcast-card-icon.small .card-icon__text-title a,
  .podcast-card-icon.small .card-icon__text-title_editorial h2,
  .podcast-card-icon.small .card-icon__text-title_editorial a {
    font-size: 17px;
    letter-spacing: 0.2px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
  }
  .podcast-card-icon.small .card-icon__svg {
    width: 30px;
    padding: 0 7px 0 6px;
  }
  .podcast-card-icon.small .card-icon__svg svg {
    height: 17px;
    width: 17px;
  }
}
.podcast-card-icon .orario {
  font-weight: bold;
}

div.playlist .card-icon__text-title h2 {
  padding-top: 0;
  font-weight: 600;
}

.card-icon__text-gradient ~ .card-icon__text {
  padding-top: 0;
  padding-bottom: 0;
}

.card-icon__svg {
  background: black;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .card-icon__svg {
    display: none !important;
  }
}
.card-icon__svg svg {
  fill: white;
  height: 19px;
  width: 19px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1023px) {
  .card-icon__svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 5px;
    width: 64px;
    /*border-radius: 5px 0 0 5px;*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
}

.card-icon__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  height: 100%;
  padding: 30px 25px 25px 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: white;
}
.card-icon__content span {
  color: #808488;
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.8;
  /*align-self: flex-end;*/
}
.card-icon__content.center {
  -ms-flex-item-align: center;
      align-self: center;
}
@media (max-width: 1023px) {
  .card-icon__content {
    padding: 0;
    margin-left: 64px;
  }
  .card-icon__content.center {
    padding: 0;
    -ms-flex-item-align: center;
        align-self: center;
  }
  .card-icon__content.component {
    padding-right: 40px;
    padding-left: 35px;
  }
  .card-icon__content.component .text-container {
    height: 56px;
    width: auto;
  }
}

.component.card-icon__text-pretitle {
  padding-bottom: 0;
  margin-top: -23px;
}

.card-icon__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0;
  /*width:287px;*/
  height: 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-icon__text p {
  font-size: 0.8rem;
  color: #808488;
  margin: 0;
  line-height: 1.5;
}
.card-icon__text svg {
  height: 15px;
  width: 15px;
  fill: #808488;
  vertical-align: text-bottom;
  margin-right: 10px;
}
.card-icon__text span {
  color: #808488;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.8;
  /*align-self: flex-end;*/
}
@media (max-width: 1023px) {
  .card-icon__text {
    margin: 0;
  }
  .card-icon__text span {
    /*align-self: flex-end;*/
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.card-icon__text-pretitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.card-icon__text-pretitle p:last-child {
  font-weight: bold;
  color: grey;
}
.card-icon__text-pretitle p {
  padding-right: 15px;
  font-size: 12px;
  color: #40a0e8;
  margin: 0;
  padding-bottom: 5px;
}
@media (max-width: 1023px) {
  .card-icon__text-pretitle {
    margin-left: 70px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 0px;
    white-space: nowrap;
    /*MA */
  }
  .card-icon__text-pretitle p {
    padding-bottom: 0;
  }
  .card-icon__text-pretitle p:first-child {
    font-weight: bold;
    color: grey;
  }
  .card-icon__text-pretitle p:last-child {
    font-weight: 300;
    color: #808488;
  }
}

.card-icon__text-pretitle ~ .card-icon__text {
  width: 100%;
}

.card-icon__text-pretitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-icon__text-pretitle.component {
  padding-left: 0;
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .card-icon__text-pretitle.component {
    padding-left: 0;
    margin-bottom: -3px;
    margin-left: 0;
  }
}
.card-icon__text-pretitle p {
  padding-right: 15px;
  font-weight: bold;
  font-size: 12px;
  color: grey;
  margin: 0;
  padding-bottom: 0px;
  letter-spacing: 0.17px;
}
.card-icon__text-pretitle p:first-child {
  font-weight: bold;
  /*color:#323232;*/
}
.card-icon__text-pretitle p:last-child {
  font-weight: 300;
  display: none;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1023px) {
  .card-icon__text-pretitle {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .card-icon__text-pretitle p {
    padding-bottom: 0;
  }
  .card-icon__text-pretitle p:first-child {
    height: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.17px;
    color: #808488;
    line-height: 2.18;
  }
  .card-icon__text-pretitle p:last-child {
    height: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.16px;
    color: #808488;
    padding-top: 3px;
    /* MA */
    overflow: inherit;
    width: auto;
    display: block;
  }
}

.card-icon__action {
  height: 50px;
  width: 50px;
  background: #2b8804;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 16px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  cursor: pointer;
}
.card-icon__action svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 31px;
  width: 31px;
  fill: white;
}
@media (max-width: 1023px) {
  .card-icon__action {
    height: 56px;
    width: 56px;
    margin-right: 12px;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .card-icon__action svg {
    height: 36px;
    width: 36px;
  }
}

.card-icon__text-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.card-icon__text-title h2 {
  color: #323232;
  font-size: 22px !important;
  line-height: unset !important;
  margin: 0;
  font-weight: bold;
  line-height: 1.14;
  letter-spacing: 0.5px;
  padding: 0;
}
@media (max-width: 767px) {
  .card-icon__text-title h2 {
    font-size: 21px;
  }
}
.card-icon__text-title.disable h2 {
  color: #323232;
}
@media (max-width: 1023px) {
  .card-icon__text-title h2 {
    padding-top: 20px;
  }
}
.card-icon__text-title.green h2 {
  color: #40a0e8;
  margin-top: 0px;
}

.component h2 {
  padding-top: 8px;
}

.podcast-player {
  width: 100%;
  height: 100px;
  position: fixed;
  bottom: 66px;
  z-index: 1081;
}
@media screen and (min-width: 1217px) {
  .podcast-player {
    bottom: 36px;
  }
}
.podcast-player.full-width-player {
  width: 100% !important;
  height: 155px;
  position: fixed;
  bottom: 0;
  display: block;
}
.podcast-player.full-width-player.hide {
  display: none;
}
.podcast-player.full-width-player iframe {
  height: 155px;
  width: 100%;
}
@media screen and (max-width: 1217px) {
  .podcast-player.full-width-player {
    height: 178px;
  }
  .podcast-player.full-width-player iframe {
    height: 178px;
  }
}
.podcast-player.full-width-player .close-svg-img {
  position: relative;
  background-size: 13px;
  height: 13px;
  width: 13px;
  right: 43px;
  top: 83px !important;
  background-repeat: no-repeat;
  background-image: url("clientlib-site/resources/images/icons/close-btn-podcast.svg");
}
.podcast-player.full-width-player .close-svg-img:hover {
  background-image: url("clientlib-site/resources/images/icons/close-btn-podcast-light-blue.svg");
}
@media screen and (max-width: 1217px) {
  .podcast-player.full-width-player .close-svg-img {
    background-size: 10px;
    height: 10px;
    width: 10px;
    right: 13px;
    top: 50px !important;
  }
  .podcast-player.full-width-player .close-svg-img:hover {
    background-image: url("clientlib-site/resources/images/icons/close-btn-podcast.svg");
  }
}
.podcast-player.video {
  height: 270px !important;
}
.podcast-player.video iframe {
  height: 270px !important;
}
@media only screen and (max-width: 768px) {
  .podcast-player {
    right: 0;
    width: -webkit-fill-available;
  }
}
.podcast-player .podcast-player-close {
  position: absolute;
  right: 0;
  height: 16px;
  width: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  display: none !important;
}
.podcast-player .podcast-player-close .close-svg-img {
  position: relative;
  background-size: 13px;
  height: 13px;
  width: 13px;
  right: 43px;
  top: 78px;
  background-repeat: no-repeat;
  background-image: url("clientlib-site/resources/images/icons/close-btn-podcast.png");
}
.podcast-player .podcast-player-close .close-svg-img:hover {
  background-image: url("clientlib-site/resources/images/icons/close-btn-podcast-light-blue.png");
}
@media screen and (max-width: 1217px) {
  .podcast-player .podcast-player-close .close-svg-img {
    background-size: 10px;
    height: 10px;
    width: 10px;
    right: 13px;
    top: 45px;
  }
  .podcast-player .podcast-player-close .close-svg-img:hover {
    background-image: url("clientlib-site/resources/images/icons/close-btn-podcast.png");
  }
}

/* sfondo */
.playlist::-webkit-scrollbar-track {
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 4.5px;
  margin-right: 10px;
  border-right: 0 !important;
  margin-top: 2px;
  margin-bottom: 2px;
}

.playlist::-webkit-scrollbar-track-piece {
  height: 50%;
}

/* scrollbar */
.playlist::-webkit-scrollbar {
  width: 5px;
  background: transparent;
  height: 80%;
}
@media (max-width: 1023px) {
  .playlist::-webkit-scrollbar {
    width: 9px;
  }
}

/* barra */
.playlist::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  width: 9px;
  height: 40px;
  border-radius: 4px;
}

.podcast::-webkit-resizer,
.podcast::-webkit-scrollbar-button,
.podcast::-webkit-scrollbar-corner {
  display: none;
}

.page-podcast .g003-abstract {
  padding: 0 !important;
  max-width: 668px;
  text-align: center;
  margin: 0px auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-podcast {
    padding: 0px !important;
  }
  .page-podcast .filter-chips-main {
    padding: 0px 15px !important;
  }
  .page-podcast .g003 {
    padding-top: 80px !important;
  }
  .page-podcast .G038-podcast-3-blocks .g003 {
    padding-top: 0px !important;
  }
}
.page-podcast .btn-podcast a {
  color: blue;
  background-color: transparent;
  font-size: 12px;
  font-weight: 700;
  margin: 80px auto;
  display: block;
  font-family: "Open Sans Regular";
  padding: 12px 22px 12px;
  border: 2px solid blue;
  min-width: 280px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  text-transform: uppercase;
}
.page-podcast .btn-podcast a:hover {
  background-color: blue;
  color: white;
}
.page-podcast .spacingType.grey-component {
  padding-top: 67px;
}
.page-podcast .spacingType {
  padding-bottom: 35px;
}
.page-podcast .spacingType.gray-next.g003 {
  padding-bottom: 80px;
}
.page-podcast .card-column-bottom {
  position: unset !important;
}
.page-podcast .card-column-bottom:before {
  display: none !important;
}
.page-podcast .card-column-bottom .podcast-card-icon {
  position: absolute;
  border: 0px;
  bottom: 6px;
  min-height: unset !important;
}
@media (max-width: 1199px) {
  .page-podcast .g007-main .column-card {
    margin-bottom: 32px;
    overflow: hidden;
  }
  .page-podcast .g007-main .column-card:last-child {
    margin-bottom: 0;
  }
}
.page-podcast .g007-main .card-column-body {
  min-height: 281px;
  height: auto;
}
@media screen and (max-width: 480px) {
  .page-podcast .filter-chips {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .page-podcast .chip-content-button {
    width: 47% !important;
  }
}
@media screen and (max-width: 767px) {
  .page-podcast .chip-box-button {
    width: unset !important;
  }
}
.page-podcast .podcast-card-icon {
  -webkit-box-orient: unset !important;
  -webkit-box-direction: unset !important;
      -ms-flex-direction: unset !important;
          flex-direction: unset !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
.page-podcast .podcast-card-icon p {
  color: blue;
  font-weight: 700;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.page-podcast .podcast-card-icon:hover {
  cursor: pointer;
}
.page-podcast .podcast-card-icon:hover--link {
  background: #0a0a0a !important;
}
.page-podcast .podcast-card-icon:hover p {
  color: #0a0a0a;
}
.page-podcast .podcast-card-icon:hover .card-icon__action {
  background-color: #0a0a0a;
}
.page-podcast .show-limited-chips {
  display: block !important;
}
.page-podcast .cta-outline-transparent {
  display: block !important;
}

.full-width-player {
  width: 100% !important;
}

.full-width-player iframe {
  width: 100% !important;
}

.plyr.video-detail-style .video-detail {
  width: 100% !important;
}
.plyr.video-detail-style .video-detail .video-streaming-podcast {
  max-width: 100% !important;
}

.icon-podcast-episode-svg {
  background-color: black;
  height: 100%;
  display: block;
  position: absolute;
  width: 86px;
}
.icon-podcast-episode-svg:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px;
  width: 24px;
  height: 24px;
  background-image: url(clientlib-site/resources/images/icons/audio.svg);
  display: block;
}

.podcast-first-level .title-podcast {
  display: none;
}
.podcast-first-level .title-podcast.visible-title {
  display: block;
}
.podcast-first-level .card-icon__action {
  background-color: transparent !important;
  background-size: 56px !important;
  width: 56px !important;
  height: 56px !important;
  background-image: url(clientlib-site/resources/images/icons/podcast_play_black.svg);
  background-repeat: no-repeat;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border: none;
}
@media screen and (min-width: 1024px) {
  .podcast-first-level .card-icon__action:hover {
    background-image: url(clientlib-site/resources/images/icons/podcast_play_grey.svg);
  }
}
.podcast-first-level .card-icon__action.active {
  background-image: url(clientlib-site/resources/images/icons/podcast_play_black.svg) !important;
}
@media screen and (max-width: 1024px) {
  .podcast-first-level .card-icon__action {
    background-size: 56px !important;
    width: 56px !important;
    height: 56px !important;
  }
}

.playlist .card-icon__action {
  background-color: transparent !important;
  background-size: 40px !important;
  width: 40px !important;
  height: 40px !important;
  background-image: url(clientlib-site/resources/images/icons/podcast_play_black.svg) !important;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media screen and (min-width: 1024px) {
  .playlist .card-icon__action:hover {
    background-image: url(clientlib-site/resources/images/icons/podcast_play_grey.svg) !important;
  }
}
@media screen and (max-width: 1024px) {
  .playlist .card-icon__action {
    background-size: 40px !important;
    width: 40px !important;
    height: 40px !important;
  }
}

.playlist .disable .card-icon__action,
.podcast-first-level .disable .card-icon__action {
  background-image: url(clientlib-site/resources/images/icons/podcast_play_grey.svg) !important;
}

.container-podcast {
  max-width: 1130px;
  margin: 0 auto;
}
.container-podcast .playlist div.card-icon__action.active,
.container-podcast .podcast-first-level div.card-icon__action.active {
  background-image: url(clientlib-site/resources/images/icons/podcast_play_black.svg) !important;
}
.container-podcast .playlist div.card-icon__action.paused,
.container-podcast .podcast-first-level div.card-icon__action.paused {
  background-image: url(clientlib-site/resources/images/icons/podcast_play_black.svg) !important;
}
@media screen and (min-width: 1024px) {
  .container-podcast .playlist div.card-icon__action:hover,
  .container-podcast .podcast-first-level div.card-icon__action:hover {
    background-image: url(clientlib-site/resources/images/icons/podcast_play_grey.svg) !important;
    cursor: pointer;
  }
}

@media screen and (min-width: 1024px) {
  .card-icon__content.center {
    margin-left: 108px;
  }
}

.container-podcast {
  margin-top: 20px !important;
  margin-bottom: 50px !important;
}
@media screen and (min-width: 1024px) {
  .container-podcast {
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 0;
  }
}

@media (max-width: 1023px) {
  .container-podcast {
    width: calc(100% - 32px);
    margin: auto 0;
    margin-top: 40px !important;
    margin-bottom: 40px;
  }
  .container-podcast .podcast-card-icon.list {
    max-height: unset !important;
  }
  .container-podcast .card-icon__content {
    margin-left: 0;
    padding-right: 21px !important;
    padding-left: 21px !important;
  }
  .container-podcast .card-icon__content.component {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }
  .container-podcast .card-icon__content .card-icon__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .container-podcast .card-icon__content .card-icon__text h2 {
    font-size: rem(16px) !important;
    color: black;
  }
  .container-podcast .card-icon__content .card-icon__text .card-icon__text-pretitle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container-podcast .card-icon__content .card-icon__text .card-icon__text-pretitle p:first-child {
    color: grey !important;
    font-size: rem(10px) !important;
  }
  .container-podcast .card-icon__content .card-icon__text .card-icon__text-pretitle p:last-child {
    font-weight: 300;
    display: none;
    width: 80% !important;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
  }
  .container-podcast .card-icon__content .card-icon__text .card-icon__text-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .container-podcast .card-icon__content .card-icon__text span {
    font-size: rem(11px);
    color: grey;
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-left: 68px;
  }
  .container-podcast .card-icon__content .card-icon__text span.orario {
    margin-left: 60px;
  }
  .container-podcast .podcast-first-level h2.title-podcast {
    font-size: rem(18px) !important;
    font-family: "Open Sans Semibold", sans-serif;
    color: black;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .card-icon__text-pretitle p:first-child {
    margin-left: 32px;
  }
  .container-podcast .podcast-first-level h2.title-podcast {
    margin-left: 32px;
  }
  .container-podcast .card-icon__content .card-icon__text span {
    margin-left: 100px;
  }
  .card-icon__text-pretitle p:last-child {
    font-weight: 300;
    display: none;
    width: 100% !important;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 767px) {
  .container-podcast .card-icon__content .card-icon__text,
  .container-podcast .card-icon__content .card-icon__text .card-icon__text-title,
  .container-podcast .podcast-card-icon.list,
  .podcast-card-icon.list .card-icon__content,
  .card-icon__content.component .text-container {
    height: auto;
  }
}
/* ========================
Super Header
=========================== */
.main-menu .pre-header {
  height: 35px;
  line-height: 35px;
  margin: 0 auto;
  background: #000000;
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header {
    position: absolute;
    background-color: unset;
    height: auto;
    padding: 0 20px;
    width: 100%;
  }
  .main-menu .pre-header.container {
    padding: 0 !important;
  }
}
.main-menu .pre-header .pre-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  height: 35px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .main-menu .pre-header .pre-header__container {
    display: block;
    padding: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container {
    display: block;
    padding: 0 !important;
  }
}
.main-menu .pre-header .pre-header__container .pre-header__menu-item a {
  font-weight: 600;
  color: #ffffff;
  font-size: 12px;
  font-family: "Inter", Arial, sans-serif;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .pre-header__menu-item a {
    color: #000000;
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .main-menu .pre-header .pre-header__container .pre-header_navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .pre-header_navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .pre-header_navigation .pre-header__menu-item {
    margin-bottom: 8px !important;
  }
}
.main-menu .pre-header .pre-header__container .pre-header_navigation .pre-header__menu-item a {
  font-weight: 400 !important;
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .pre-header__right-block {
    position: fixed;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    height: 52px;
    width: 100%;
    left: 0;
  }
  .main-menu .pre-header .pre-header__container .pre-header__right-block .lang .selected-lang {
    display: none;
  }
  .main-menu .pre-header .pre-header__container .pre-header__right-block .lang .list {
    float: right;
    position: relative;
    margin-right: 18px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.main-menu .pre-header .pre-header__container .first-level {
  float: left;
  list-style: none;
  padding-left: 0;
  /* padding: 0 15px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  /*  &:after {
              content: "";
              display: block;
              position: absolute;
              height: 15px;
              width: 1px;
              background: $white;
              top: 50%;
              transform: translateY(-50%);
              right: 0;

              @include breakpoint(tablet) {
                  display: none;
              }
          } */
}
@media screen and (max-width: 767px) {
  .main-menu .pre-header .pre-header__container .first-level {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main-menu .pre-header .pre-header__container .first-level .pre-header__menu-block-label {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000000;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .main-menu .pre-header .pre-header__container .first-level .pre-header__menu-block-label {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .first-level {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main-menu .pre-header .pre-header__container .first-level .pre-header__menu-block-label {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000000;
    margin-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .first-level {
    padding: 0 !important;
    width: 100%;
  }
}
.main-menu .pre-header .pre-header__container .first-level:first-child {
  /* padding-left: 30px; */
  /* padding-right: 30px; */
}
.main-menu .pre-header .pre-header__container .first-level:last-child {
  padding-right: 0;
  padding-left: 15px;
}
.main-menu .pre-header .pre-header__container .first-level:last-child:after {
  width: 0;
  padding-right: 0;
}
.main-menu .pre-header .pre-header__container .first-level .pre-header__menu-block {
  display: contents;
  white-space: nowrap;
  height: 100%;
}
.main-menu .pre-header .pre-header__container .first-level .pre-header__menu-block.last-ul {
  padding-left: 0 !important;
  display: contents;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .first-level .pre-header__menu-block {
    padding-left: 0 !important;
  }
}
.main-menu .pre-header .pre-header__container .first-level .pre-header__menu-block .pre-header__menu-item {
  float: left;
  list-style: none;
  padding-left: 0;
  /* margin: 0 15px; */
  /* margin-right: 30px; */
  height: 100%;
  margin-top: -2px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* &::after {
                  content: "";
                  display: block;
                  position: absolute;
                  height: 15px;
                  width: 1px;
                  background: #fff;
                  top: 12px;
                  right: 0;
              }  */
  /*   &:last-child {
                  margin-right: 30px !important;
              } */
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .first-level .pre-header__menu-block .pre-header__menu-item {
    float: none;
    padding: 0;
    margin: 0;
  }
}
.main-menu .pre-header .pre-header__container .first-level .pre-header__menu-block:last-child {
  padding-left: 30px;
  margin-right: 0;
}
.main-menu .pre-header .pre-header__container .first-level .change-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.main-menu .pre-header .pre-header__container .first-level .change-lang .curr-lang {
  display: none;
}
@media screen and (max-width: 767px) {
  .main-menu .pre-header .pre-header__container .first-level .change-lang .curr-lang {
    display: block;
  }
}
.main-menu .pre-header .pre-header__container .first-level .change-lang.open .list {
  display: block;
  padding-left: 25px;
  padding-right: 55px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  top: 40px;
  right: 0px;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}
.main-menu .pre-header .pre-header__container .first-level .change-lang.open .selected-lang:after {
  background-image: url("clientlib-site/resources/images/icons/short-arrow-up.png");
}
.main-menu .pre-header .pre-header__container .first-level .change-lang .selected-lang {
  display: block;
  position: relative;
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  font-family: Inter;
}
.main-menu .pre-header .pre-header__container .first-level .change-lang .selected-lang:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url("clientlib-site/resources/images/icons/short-arrow-down.svg");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  vertical-align: middle;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .first-level .change-lang .selected-lang {
    display: none;
  }
}
.main-menu .pre-header .pre-header__container .first-level .change-lang .list {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .first-level .change-lang .list {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .first-level .change-lang .list .item-lang a {
    font-weight: 600 !important;
    color: #000000 !important;
  }
}
@media screen and (min-width: 1025px) {
  .main-menu .pre-header .pre-header__container .first-level .change-lang .list .item-lang.active-lang {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .first-level .change-lang .list .item-lang.active-lang a {
    color: #000000 !important;
  }
}
.main-menu .pre-header .pre-header__container .first-level .change-lang .list .item-lang a {
  font-size: 12px;
  text-decoration: none;
  color: #000000;
  font-weight: 300;
  font-family: "Inter", Arial, sans-serif;
}
.main-menu .pre-header .pre-header__container .first-level .change-lang .list .item-lang a:hover {
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header .pre-header__container .first-level .change-lang .list .item-lang {
    position: relative;
    margin-left: 16px;
  }
}
.main-menu .pre-header__separator-container {
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .main-menu .pre-header__separator-container {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header__separator-container {
    display: none;
  }
}
.main-menu .pre-header__separator-container span {
  margin-top: 4px;
}
.main-menu .pre-header__label-container {
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .main-menu .pre-header__label-container {
    margin: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header__label-container {
    margin: 0 !important;
  }
}
.main-menu .pre-header__label-container .pre-header__buy-ticket-label {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .main-menu .pre-header__label-container .pre-header__buy-ticket-label {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .main-menu .pre-header__label-container .pre-header__buy-ticket-label {
    display: none;
  }
}
.main-menu.transparent .pre-header {
  background-color: transparent;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 1024px) {
  .main-menu .buy_ticket {
    margin-left: 20px !important;
  }
}
.main-menu .buy_ticket,
.main-menu .item-lang {
  margin-top: -2px;
}
@media screen and (max-width: 1024px) {
  .main-menu .buy_ticket a,
  .main-menu .item-lang a {
    font-size: 14px !important;
  }
}

.privacy-main-container {
  padding-top: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1025px) {
  .privacy-main-container .title-component {
    width: 750px;
  }
}
.privacy-main-container .privacy-text-component {
  max-width: 750px;
}
.privacy-main-container h4 {
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 45px;
  letter-spacing: 0.01em;
  color: #000000;
}
@media screen and (min-width: 1025px) {
  .privacy-main-container h4 {
    width: 750px;
  }
}
.privacy-main-container input[type=checkbox]:checked, .privacy-main-container input[type=radio]:checked {
  accent-color: black;
}

.privacy-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 34px 32px 27px 32px;
  margin: 32px 0;
  background-color: #f8f8f8;
}
@media screen and (max-width: 1024px) {
  .privacy-component {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 32px 15px;
  }
}
.privacy-component .test1 {
  background-color: red;
}
.privacy-component .test2 {
  background-color: aqua;
}
.privacy-component .privacy-component-list {
  list-style-type: none;
  padding: 0;
}
.privacy-component .privacy-component-list li {
  text-indent: -26px;
  padding-left: 26px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.privacy-component .privacy-component-list li span {
  padding: 0 17px;
}
.privacy-component .privacy-component-list li:nth-child(1) {
  padding-bottom: 10px;
}
.privacy-component .privacy-btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.privacy-component .privacy-btn-container .privacy-btn {
  padding: 12px 48px;
  border: 1px solid #000000;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .privacy-component .privacy-btn-container .privacy-btn {
    padding: 10px 20px;
    margin: 0;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .privacy-component .privacy-btn-container .privacy-btn {
    margin: 0;
    border: 1px solid #000000;
  }
}
.privacy-component .privacy-btn-container .privacy-btn span {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
.privacy-component .privacy-btn-container .privacy-btn:not(.disabled) {
  background-color: #ffffff;
}
.privacy-component .privacy-btn-container .privacy-btn:not(.disabled):hover {
  border: 1px solid #000000;
  background-color: #000000;
  color: #ffffff;
}
.privacy-component .privacy-btn-container .privacy-btn:not(.disabled):hover span {
  color: #ffffff;
}
.privacy-component .privacy-btn-container .privacy-btn.disabled {
  opacity: 0.5 !important;
  cursor: not-allowed;
  background-color: transparent;
}

@media screen and (min-width: 1025px) {
  .progetti-timeline .col-xs-12:last-of-type .progetti-timeline__year:before {
    bottom: auto;
    height: 40px;
    border-right: 1px dashed #B4B4B4;
  }
}
.progetti-timeline__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 70px;
}
@media screen and (min-width: 1025px) {
  .progetti-timeline__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 90px;
  }
}
.progetti-timeline__year {
  margin-bottom: 20px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 1025px) {
  .progetti-timeline__year {
    margin-bottom: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
    width: 16.666667%;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
  .progetti-timeline__year:before {
    content: "";
    display: block;
    position: absolute;
    top: 40px;
    bottom: -130px;
    left: 63px;
    width: 1px;
    border-right: 1px solid #B4B4B4;
    opacity: 0.2;
  }
}
.progetti-timeline__year span {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 17px !important;
  letter-spacing: 0.04em;
  text-align: left;
  color: #000000;
}
@media screen and (min-width: 1025px) {
  .progetti-timeline__year span {
    position: relative;
    font-size: 48px;
    line-height: 60px;
    margin-top: 35px;
    display: block;
    width: 33px;
  }
  .progetti-timeline__year span:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -40px;
    width: 19px;
    height: 19px;
    background-color: #ffffff;
    border: 1px solid #B4B4B4;
    border-radius: 50%;
  }
  .progetti-timeline__year span:after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    right: -35px;
    width: 9px;
    height: 9px;
    background-color: #B4B4B4;
    border-radius: 50%;
  }
}
.progetti-timeline__content {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 1025px) {
  .progetti-timeline__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 41.66666667%;
  }
}
.progetti-timeline__title {
  font-family: "Canela", Arial, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 46px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #000000;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .progetti-timeline__title {
    font-size: 48px;
    line-height: 60px;
  }
}
.progetti-timeline__description {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  margin: 0;
}
.progetti-timeline__description strong {
  font-weight: 600;
}
.progetti-timeline__description a {
  color: #000000;
  text-decoration: underline !important;
  font-weight: bold;
}
.progetti-timeline__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .progetti-timeline__image {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 0;
    width: 33.333333334%;
    margin-left: 8.3333333%;
  }
}
@media screen and (max-width: 767px) {
  .progetti-timeline__image .hero-component_description-container {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.progetti-timeline__image .hero-component_description-container .hero-component_description p {
  line-height: 16px;
  font-size: 9px;
  margin-left: 0;
  margin-right: 0;
}
.progetti-timeline__image .ratio-container {
  background-color: #c4c4c4;
  position: relative;
  width: 100%;
  padding-top: 73.1343283582%;
}
@media screen and (min-width: 1025px) {
  .progetti-timeline__image .ratio-container {
    padding-top: 67.3469387755%;
  }
}
.progetti-timeline__image .ratio-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}

/*GENERAL STYLING START*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/*GENERAL STYLING END*/
/*FILTRI STYLING START*/
/*SEARCHBAR STYLING START*/
/*SEARCHBAR STYLING END*/
.container_navbar_raccoglitoreopere {
  /*CREARE UN PREVENT SCROLL*/
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere {
  padding: 0;
  background: #ffffff;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .filter_btn_raccoglitoreopere {
  padding: 0;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .filter_btn_raccoglitoreopere .filter_closed_raccoglitoreopere {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .filter_btn_raccoglitoreopere .filter_closed_raccoglitoreopere img {
  margin-right: 12px;
}
@media screen and (min-width: 1025px) {
  .container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .filter_btn_raccoglitoreopere .filter-mobile {
    display: none;
  }
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .filter_btn_raccoglitoreopere .filter-mobile .filter-icon {
  height: 12px;
  width: 15px;
  margin-right: 15px;
  display: inline-block;
  background-image: url("clientlib-site/resources/images/icons/filter.png");
  background-size: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere {
  /*NAV LINKS MOB START*/
  /*NAV LINKS MOB END*/
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .container_searchbar_raccoglitoreopere {
  margin-top: 60px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .container_searchbar_raccoglitoreopere .searchbar_raccoglitoreopere {
  width: 100%;
  border: 1px solid #000000;
  padding: 12px 18px;
  background: #ffffff;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .container_searchbar_raccoglitoreopere .searchbar_raccoglitoreopere .search_raccoglitoreopere {
  padding: 0;
  border: none;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #6f6f6f;
  opacity: 0.7;
  background: #ffffff;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .container_searchbar_raccoglitoreopere .searchbar_raccoglitoreopere button {
  display: none;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere {
  margin-top: 21px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-header button {
  padding: 24px 16px 24px 0;
  background: none;
  color: #000000;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-header button:focus {
  background: none;
  color: #000000;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion-body {
  padding: 0;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_artista_raccoglitoreopere .form_artista_raccoglitoreopere {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 26px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_artista_raccoglitoreopere .form_artista_raccoglitoreopere .search_artista_raccoglitoreopere {
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 12px 18px;
  margin-top: 16px;
  margin-bottom: 35px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_artista_raccoglitoreopere .form_artista_raccoglitoreopere .search_artista_raccoglitoreopere input {
  padding: 0;
  border: none;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #6f6f6f;
  opacity: 0.7;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_artista_raccoglitoreopere .form_artista_raccoglitoreopere .search_artista_raccoglitoreopere button {
  display: none;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_artista_raccoglitoreopere .form_artista_raccoglitoreopere .select_artista_raccoglitoreopere {
  margin-bottom: 14px;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_artista_raccoglitoreopere .form_artista_raccoglitoreopere .select_artista_raccoglitoreopere input {
  opacity: 0;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_artista_raccoglitoreopere .form_artista_raccoglitoreopere .select_artista_raccoglitoreopere input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_artista_raccoglitoreopere .form_artista_raccoglitoreopere .select_artista_raccoglitoreopere input + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  outline: 1px solid black;
  background-color: #ffffff;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_artista_raccoglitoreopere .form_artista_raccoglitoreopere .select_artista_raccoglitoreopere input:checked + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  background-color: unset;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_artista_raccoglitoreopere .form_artista_raccoglitoreopere .select_artista_raccoglitoreopere label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere label {
  margin-bottom: 5px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input {
  height: 25px;
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input:focus {
  outline: none;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  -webkit-box-shadow: 0px 0px 0px #000000;
          box-shadow: 0px 0px 0px #000000;
  background: #e0e0e0;
  border-radius: 1px;
  border: 0px solid #000000;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input::-webkit-slider-thumb {
  -webkit-box-shadow: 0px 0px 0px #000000;
          box-shadow: 0px 0px 0px #000000;
  border: 1px solid #6f6f6f;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -9px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input:focus::-webkit-slider-runnable-track {
  background: #e0e0e0;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: #e0e0e0;
  border-radius: 1px;
  border: 0px solid #000000;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 1px solid #6f6f6f;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #ffffff;
  cursor: pointer;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input::-ms-fill-lower {
  background: #e0e0e0;
  border: 0px solid #000000;
  border-radius: 2px;
  box-shadow: 0px 0px 0px #000000;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input::-ms-fill-upper {
  background: #e0e0e0;
  border: 0px solid #000000;
  border-radius: 2px;
  box-shadow: 0px 0px 0px #000000;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 0px 0px #000000;
  border: 1px solid #6f6f6f;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #ffffff;
  cursor: pointer;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input:focus::-ms-fill-lower {
  background: #e0e0e0;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_data_raccoglitoreopere input:focus::-ms-fill-upper {
  background: #e0e0e0;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_tecnica_raccoglitoreopere .form_tecnica_raccoglitoreopere {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 26px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_tecnica_raccoglitoreopere .form_tecnica_raccoglitoreopere .search_tecnica_raccoglitoreopere {
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 12px 18px;
  margin-top: 16px;
  margin-bottom: 35px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_tecnica_raccoglitoreopere .form_tecnica_raccoglitoreopere .search_tecnica_raccoglitoreopere input {
  padding: 0;
  border: none;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #6f6f6f;
  opacity: 0.7;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_tecnica_raccoglitoreopere .form_tecnica_raccoglitoreopere .search_tecnica_raccoglitoreopere button {
  display: none;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_tecnica_raccoglitoreopere .form_tecnica_raccoglitoreopere .select_tecnica_raccoglitoreopere {
  margin-bottom: 14px;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_tecnica_raccoglitoreopere .form_tecnica_raccoglitoreopere .select_tecnica_raccoglitoreopere input {
  opacity: 0;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_tecnica_raccoglitoreopere .form_tecnica_raccoglitoreopere .select_tecnica_raccoglitoreopere input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_tecnica_raccoglitoreopere .form_tecnica_raccoglitoreopere .select_tecnica_raccoglitoreopere input + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  outline: 1px solid black;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  background-color: unset;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_tecnica_raccoglitoreopere .form_tecnica_raccoglitoreopere .select_tecnica_raccoglitoreopere input:checked + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  background-color: unset;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_tecnica_raccoglitoreopere .form_tecnica_raccoglitoreopere .select_tecnica_raccoglitoreopere label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_luogo_raccoglitoreopere .form_luogo_raccoglitoreopere {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 26px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_luogo_raccoglitoreopere .form_luogo_raccoglitoreopere .select_luogo_raccoglitoreopere {
  margin-bottom: 14px;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_luogo_raccoglitoreopere .form_luogo_raccoglitoreopere .select_luogo_raccoglitoreopere input {
  opacity: 0;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_luogo_raccoglitoreopere .form_luogo_raccoglitoreopere .select_luogo_raccoglitoreopere input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_luogo_raccoglitoreopere .form_luogo_raccoglitoreopere .select_luogo_raccoglitoreopere input + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  outline: 1px solid black;
  background-color: #ffffff;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_luogo_raccoglitoreopere .form_luogo_raccoglitoreopere .select_luogo_raccoglitoreopere input:checked + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  background-color: unset;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .accordion-item .accordion-collapse .accordion_luogo_raccoglitoreopere .form_luogo_raccoglitoreopere .select_luogo_raccoglitoreopere label {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .container_opere_esposte_raccoglitoreopere {
  border: none;
  margin-top: 26px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .container_opere_esposte_raccoglitoreopere .form_opere_esposte_raccoglitoreopere .select_opere_esposte_raccoglitoreopere {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .container_opere_esposte_raccoglitoreopere .form_opere_esposte_raccoglitoreopere .select_opere_esposte_raccoglitoreopere label {
  position: relative;
  width: 100%;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .container_opere_esposte_raccoglitoreopere .form_opere_esposte_raccoglitoreopere .select_opere_esposte_raccoglitoreopere label span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .container_opere_esposte_raccoglitoreopere .form_opere_esposte_raccoglitoreopere .select_opere_esposte_raccoglitoreopere label span:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid black;
  margin-right: 10px;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .container_opere_esposte_raccoglitoreopere .form_opere_esposte_raccoglitoreopere .select_opere_esposte_raccoglitoreopere label input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .container_opere_esposte_raccoglitoreopere .form_opere_esposte_raccoglitoreopere .select_opere_esposte_raccoglitoreopere label input:checked + span:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.container_navbar_raccoglitoreopere .navbar_raccoglitoreopere .container-fluid .container_two_rows_raccoglitoreopere .accordion_raccoglitoreopere .container_opere_esposte_raccoglitoreopere .form_opere_esposte_raccoglitoreopere .select_opere_esposte_raccoglitoreopere label input:focus-visible + span {
  content: "";
  outline: 1px solid #000;
  width: 100%;
  height: 100%;
}

/*SHOW HIDE BOTTOM FILTERS START*/
.container_bottom_raccoglitoreopere {
  width: 100%;
  position: fixed;
  bottom: 0%;
  z-index: 100;
}
.container_bottom_raccoglitoreopere .container_linear_gradient_raccoglitoreopere {
  display: none;
  width: 100%;
  height: 25px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(196, 196, 196, 0.2)), to(rgba(196, 196, 196, 0)));
  background: linear-gradient(360deg, rgba(196, 196, 196, 0.2) 0%, rgba(196, 196, 196, 0) 100%);
  opacity: 0.8;
}

.container_applica_cancella_filtri_raccoglitoreopere {
  display: none;
  width: 100%;
  background-color: #ffffff;
  padding: 20px;
}
.container_applica_cancella_filtri_raccoglitoreopere .container_btn_raccoglitoreopere .btn_cancella_raccoglitoreopere {
  padding-top: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ffffff;
  border: 1px solid #000000;
}
.container_applica_cancella_filtri_raccoglitoreopere .container_btn_raccoglitoreopere .btn_cancella_raccoglitoreopere button {
  border: none;
  background-color: transparent;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
.container_applica_cancella_filtri_raccoglitoreopere .container_btn_raccoglitoreopere .btn_applica_raccoglitoreopere {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.container_applica_cancella_filtri_raccoglitoreopere .container_btn_raccoglitoreopere .btn_applica_raccoglitoreopere button {
  border: none;
  background-color: transparent;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

.mostra_sotto_btn_raccoglitoreopere {
  display: none;
}

/*SHOW HIDE CLASS*/
/*SHOW HIDE BOTTOM FILTERS END*/
/*.container_two_rows_raccoglitoreopere {
  display: flex;
  flex-direction: column;
}*/
.searchbar_raccoglitoreopere {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

@media screen and (min-width: 1025px) {
  .container_dropdowns_raccoglitoreopere {
    display: block;
  }
  .accordion_raccoglitoreopere {
    display: none;
  }
  .container_bottom_raccoglitoreopere {
    display: none !important;
  }
  .container_navbar_raccoglitoreopere .navbar_raccoglitoreopere {
    background: #f8f8f8;
  }
  .container_bottom_filtri_raccoglitoreopere {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid #e0e0e0;
    padding: 0;
  }
  .container_bottom_filtri_raccoglitoreopere.search_disabled {
    border-top: 0;
  }
  .container_bottom_filtri_raccoglitoreopere .form_opere_esposte_raccoglitoreopere_desk {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .container_bottom_filtri_raccoglitoreopere .form_opere_esposte_raccoglitoreopere_desk .select_opere_esposte_raccoglitoreopere {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000000;
  }
  .container_bottom_filtri_raccoglitoreopere .form_opere_esposte_raccoglitoreopere_desk .select_opere_esposte_raccoglitoreopere label {
    position: relative;
    width: 100%;
  }
  .container_bottom_filtri_raccoglitoreopere .form_opere_esposte_raccoglitoreopere_desk .select_opere_esposte_raccoglitoreopere label span {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container_bottom_filtri_raccoglitoreopere .form_opere_esposte_raccoglitoreopere_desk .select_opere_esposte_raccoglitoreopere label span:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid black;
    margin-right: 10px;
  }
  .container_bottom_filtri_raccoglitoreopere .form_opere_esposte_raccoglitoreopere_desk .select_opere_esposte_raccoglitoreopere label input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }
  .container_bottom_filtri_raccoglitoreopere .form_opere_esposte_raccoglitoreopere_desk .select_opere_esposte_raccoglitoreopere label input:checked + span:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-filter: brightness(0);
            filter: brightness(0);
  }
  .container_bottom_filtri_raccoglitoreopere .form_opere_esposte_raccoglitoreopere_desk .select_opere_esposte_raccoglitoreopere label input:focus-visible + span {
    content: "";
    outline: 1px solid #000;
    width: 100%;
    height: 100%;
  }
  .container_two_rows_raccoglitoreopere {
    padding: 0 50px 55px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    /*NAV LINKS DESK START*/
    /*NAV LINKS DESK END*/
  }
  .container_two_rows_raccoglitoreopere .container_searchbar_raccoglitoreopere {
    padding: 0 0 60px;
  }
  .container_two_rows_raccoglitoreopere .container_searchbar_raccoglitoreopere .searchbar_raccoglitoreopere {
    border: 1px solid #323232;
    padding: 13px 24px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    background: #ffffff;
  }
  .container_two_rows_raccoglitoreopere .container_searchbar_raccoglitoreopere .searchbar_raccoglitoreopere .search_raccoglitoreopere {
    background: #ffffff;
  }
  .container_two_rows_raccoglitoreopere .container_searchbar_raccoglitoreopere .searchbar_raccoglitoreopere button {
    display: block !important;
    margin-right: 2px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere {
    padding-top: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 65px;
       -moz-column-gap: 65px;
            column-gap: 65px;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li a {
    padding: 0 !important;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere {
    margin-top: 16px;
    max-height: 400px;
    width: 240px;
    overflow-y: scroll;
    padding: 24px 24px 8px;
    border: none;
    border-radius: 0;
    background: #ffffff;
    -webkit-box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
            box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere::-webkit-scrollbar {
    width: 5px;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere::-webkit-scrollbar-track {
    background: #ffffff;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 5px;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .search_desk_raccoglitoreopere {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    margin-top: 0;
    margin-bottom: 18px;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .search_desk_raccoglitoreopere button {
    display: block;
    margin-right: 2px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_desk_raccoglitoreopere {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_desk_raccoglitoreopere .search_desk_raccoglitoreopere {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    margin-top: 0;
    margin-bottom: 18px;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_desk_raccoglitoreopere .search_desk_raccoglitoreopere input {
    padding: 0;
    border: none;
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #6f6f6f;
    opacity: 0.7;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_desk_raccoglitoreopere .search_desk_raccoglitoreopere button {
    display: block;
    margin-right: 2px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_desk_raccoglitoreopere .select_desk_raccoglitoreopere {
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: #000000;
    padding: 6px 0;
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_desk_raccoglitoreopere .select_desk_raccoglitoreopere label {
    position: relative;
    width: 100%;
    padding-left: 14px;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_desk_raccoglitoreopere .select_desk_raccoglitoreopere label span {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_desk_raccoglitoreopere .select_desk_raccoglitoreopere label span:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid black;
    margin-right: 10px;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_desk_raccoglitoreopere .select_desk_raccoglitoreopere label input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_desk_raccoglitoreopere .select_desk_raccoglitoreopere label input:checked + span:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-filter: brightness(0);
            filter: brightness(0);
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_desk_raccoglitoreopere .select_desk_raccoglitoreopere label input:focus-visible + span {
    content: "";
    outline: 1px solid #000;
    width: 100%;
    height: 100%;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere .label_data_desk_raccoglitoreopere {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input {
    height: 25px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input:focus {
    outline: none;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input::-webkit-slider-runnable-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    animate: 0.2s;
    -webkit-box-shadow: 0px 0px 0px #000000;
            box-shadow: 0px 0px 0px #000000;
    background: #e0e0e0;
    border-radius: 1px;
    border: 0px solid #000000;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input::-webkit-slider-thumb {
    -webkit-box-shadow: 0px 0px 0px #000000;
            box-shadow: 0px 0px 0px #000000;
    border: 1px solid #6f6f6f;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -9px;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input:focus::-webkit-slider-runnable-track {
    background: #e0e0e0;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input::-moz-range-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000;
    background: #e0e0e0;
    border-radius: 1px;
    border: 0px solid #000000;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input::-moz-range-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 1px solid #6f6f6f;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #ffffff;
    cursor: pointer;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input::-ms-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input::-ms-fill-lower {
    background: #e0e0e0;
    border: 0px solid #000000;
    border-radius: 2px;
    box-shadow: 0px 0px 0px #000000;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input::-ms-fill-upper {
    background: #e0e0e0;
    border: 0px solid #000000;
    border-radius: 2px;
    box-shadow: 0px 0px 0px #000000;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 0px #000000;
    border: 1px solid #6f6f6f;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #ffffff;
    cursor: pointer;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input:focus::-ms-fill-lower {
    background: #e0e0e0;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere input:focus::-ms-fill-upper {
    background: #e0e0e0;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere .button_applica_raccoglitoreopere {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere .button_applica_raccoglitoreopere button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 14px;
    cursor: pointer;
    outline: none;
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
  }
  .container_two_rows_raccoglitoreopere .container_dropdowns_raccoglitoreopere li .dropdown_desk_raccoglitoreopere .form_data_desk_raccoglitoreopere .button_applica_raccoglitoreopere button img {
    margin-left: 8px;
  }
}
/*FILTRI STYLING END*/
/*MOBILE FIRST*/
/*TITLE AND APPLIED FILTERS START*/
.container_title_filters_raccoglitoreopere {
  margin-top: 30px;
  margin-bottom: 30px;
}
.container_title_filters_raccoglitoreopere .container_title_raccoglitoreopere {
  margin-bottom: 18px;
}
.container_title_filters_raccoglitoreopere .container_title_raccoglitoreopere p {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: #000000;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin-right: 32px;
  margin-bottom: 0;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li {
  margin-right: 12px;
  margin-bottom: 12px;
  padding: 0 14px 5px;
  /*7px 14px*/
  border: 1px solid #000000;
  border-radius: 14px;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li:last-child {
  margin-right: 32px;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li a .text_filter_list_raccoglitoreopere {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  text-align: right;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li a .close_filter_list_raccoglitoreopere {
  margin-left: 10px;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li a .close_filter_list_raccoglitoreopere .close_filter_raccoglitoreopere {
  width: 7px;
  height: 7px;
  display: inline-block;
  background-image: url("clientlib-site/resources/images/icons/close-btn.png");
  background-size: contain;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .cancel_filters_raccoglitoreopere {
  display: none;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .cancel_filters_raccoglitoreopere.active {
  display: block;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .cancel_filters_raccoglitoreopere button {
  background: none;
  border: none;
  padding: 0;
  outline: none;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .cancel_filters_raccoglitoreopere button:hover {
  text-decoration: underline;
}

@media screen and (min-width: 1025px) {
  .container_title_filters_raccoglitoreopere {
    margin-top: 90px;
    margin-bottom: 50px;
  }
}
/*TITLE AND APPLIED FILTERS END*/
/*OPERE CARDS START*/
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 {
  width: 100%;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3[style*="opacity: 0"] {
  display: none !important;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 .container_img_raccoglitoreopere3 {
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 .container_img_raccoglitoreopere3 picture {
  width: 100%;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 .container_img_raccoglitoreopere3 picture img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 .container_details_raccoglitoreopere3 {
  margin-bottom: 8px;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 .container_details_raccoglitoreopere3 span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 .container_details_raccoglitoreopere3 .date_raccoglitoreopere3 {
  padding-right: 14px;
  margin-right: 14px;
  border-right: 1px solid #000000;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 .container_title_raccoglitoreopere3 {
  margin-bottom: 47px;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 .container_title_raccoglitoreopere3 h5 {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: #000000;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 .container_title_raccoglitoreopere3 h5:hover {
  color: #5a87b2;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3.active {
  display: block;
}
.container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3.hide {
  display: none !important;
}

@media screen and (min-width: 1025px) {
  .container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 {
    width: 31.275%;
    /*31.625%;*/
    margin-right: 20px;
    /*24px*/
  }
  .container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3:nth-child(3n) {
    margin-right: 0;
  }
  .container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3 .container_title_raccoglitoreopere3 {
    margin-bottom: 52px;
  }
  .container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .card_raccoglitoreopere3[style*="opacity: 0"] {
    display: none !important;
  }
  .container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .grid-sizer,
  .container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .grid-item {
    width: 31.275%;
    /*31.625%;*/
    margin-right: 20px;
    /*24px*/
  }
  .container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .grid-sizer:nth-child(3n),
  .container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .grid-item:nth-child(3n) {
    margin-right: 0;
  }
  .container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .grid-sizer .container_title_raccoglitoreopere3,
  .container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .grid-item .container_title_raccoglitoreopere3 {
    margin-bottom: 52px;
  }
  .container_opere_cards_raccoglitoreopere3 .container_grid_raccoglitoreopere3 .grid-item img {
    display: block;
    width: 100%;
  }
}
/*CLASS 2 COLUMNS CARD START (ADDITIONAL COMPONENT)*/
/*@media screen and (min-width: 1025px) {
  .card_2_columns {
    width: 49%;
    margin-right: 24px;
    &:nth-child(2n) {
      margin-right: 0;
    }
  }
}*/
/*CLASS 2 COLUMNS CARD END (ADDITIONAL COMPONENT)*/
/*OPERE CARDS END*/
.container_button_closeBtn {
  display: none;
}

@media screen and (max-width: 767px) {
  .container_two_rows_raccoglitoreopere {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background-color: #ffffff;
    z-index: 2;
  }
  .container_two_rows_raccoglitoreopere.show {
    display: block !important;
    padding-bottom: 120px;
  }
  .container_two_rows_raccoglitoreopere.show .accordion_raccoglitoreopere {
    overflow: auto;
    height: 100%;
    padding-bottom: 120px;
  }
  .container_two_rows_raccoglitoreopere.show .container_button_closeBtn {
    display: block !important;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    z-index: 1001 !important;
  }
  .container_two_rows_raccoglitoreopere.show .container_button_closeBtn .close_raccoglitoreopere {
    margin: 0;
    background-size: contain;
    z-index: 1002 !important;
  }
}

/*CTA LOAD MORE START*/
.download_more_raccoglitoreopere3 {
  margin-top: 25px;
  margin-bottom: 110px;
}

@media screen and (min-width: 1025px) {
  .download_more_raccoglitoreopere3 {
    margin-top: 30px;
    margin-bottom: 150px;
  }
}
/*CTA LOAD MORE END*/
/*DROPDOWN ICON FIX START*/
.dropdown-toggle:after {
  border: none !important;
  position: absolute;
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url("clientlib-site/resources/images/icons/arrow-down-black.svg");
  /*url(clientlib-site/css/clientlib-site/resources/images/icons/arrow-down-black.svg); the desired FontAwesome icon */
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  margin-left: 8px;
}

li a.show.dropdown-toggle:after {
  content: "" !important;
  /* the different icon*/
  background: url("clientlib-site/resources/images/icons/arrow-down-black.svg");
  /*url(clientlib-site/css/clientlib-site/resources/images/icons/arrow-down-black.svg); the desired FontAwesome icon */
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.card_raccoglitoreopere3 a,
.card_raccoglitoreopere3 h5,
.card_raccoglitoreopere a,
.card_raccoglitoreopere h5 {
  text-decoration: none;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  background-position: left bottom;
  padding-bottom: 5px;
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
}
.card_raccoglitoreopere3:hover a,
.card_raccoglitoreopere3:hover h5,
.card_raccoglitoreopere:hover a,
.card_raccoglitoreopere:hover h5 {
  color: #000000 !important;
  background-size: 100% 2px;
}
.card_raccoglitoreopere3:hover img,
.card_raccoglitoreopere:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  cursor: pointer;
}
.card_raccoglitoreopere3 a,
.card_raccoglitoreopere3 h5,
.card_raccoglitoreopere a,
.card_raccoglitoreopere h5 {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  cursor: pointer;
}

/*DROPDOWN ICON FIX END*/
/*CLOSE MOBILE FIX START*/
.close_raccoglitoreopere {
  display: inline-block;
  width: 7px;
  height: 7px;
  background-image: url("clientlib-site/resources/images/icons/close-btn.png");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  -webkit-transition: none;
  transition: none;
}

/*CLOSE MOBILE FIX END*/
.opera__range-bar {
  border: none !important;
  background: #e0e0e0;
  height: 2px;
  width: 96%;
  margin-left: 8px;
}
@media screen and (max-width: 1024px) {
  .opera__range-bar {
    margin-bottom: 18px !important;
  }
}
.opera__range-bar .ui-slider-range {
  background: #e0e0e0;
}
.opera__range-bar .ui-slider-handle {
  border: none;
  border-radius: 25px;
  background: #ffffff;
  border: 1px solid #000000;
  height: 17px;
  width: 17px;
  outline: none;
  top: -0.52em;
  cursor: pointer;
}
.opera__range-bar .ui-slider-handle + span {
  background: #ffffff;
  border: 1px solid #000000;
  outline: none;
}

@media screen and (max-width: 1024px) {
  .navbar-collapse {
    overflow-y: scroll;
    display: block;
  }
  .navbar-collapse::-webkit-scrollbar {
    width: 5px;
  }
  .navbar-collapse::-webkit-scrollbar-track {
    background: #ffffff;
  }
  .navbar-collapse::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 5px;
  }
}

.button_capolavori {
  font-family: "Canela" !important;
  font-style: normal !important;
  font-weight: 300 !important;
  font-size: 24px !important;
  line-height: 36px !important;
  letter-spacing: 0.02em !important;
  color: #000000 !important;
  text-wrap: nowrap !important;
}

@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .container_bottom_raccoglitoreopere {
    z-index: 1001;
  }
}
.raccoglitoreopere-container .button_applica_raccoglitoreopere img,
.raccoglitoreopere-container .filter_closed_raccoglitoreopere img {
  background-color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .container_filters_raccoglitoreopere {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .container_applica_cancella_filtri_raccoglitoreopere {
    display: none;
  }
  .raccoglitoreopere-container .container_applica_cancella_filtri_raccoglitoreopere.active {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .container_linear_gradient_raccoglitoreopere {
    background: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .container_applica_cancella_filtri_raccoglitoreopere {
    padding: 20px 7px !important;
    z-index: 1001;
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .label_data_desk_raccoglitoreopere {
    margin-top: 20px;
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .form_desk_raccoglitoreopere:last-child {
    margin-bottom: 25px;
  }
}
.raccoglitoreopere-container .nav-item.active .dropdown-toggle:after {
  background: url("clientlib-site/resources/images/icons/arrow-up-black.svg");
  background-size: 10px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .nav-item {
    border-bottom: 1px solid #e0e0e0;
  }
  .raccoglitoreopere-container .nav-item .nav-link {
    padding: 24px 0;
    display: block;
    position: relative;
  }
  .raccoglitoreopere-container .nav-item .nav-link.dropdown-toggle:after {
    top: 50%;
    -webkit-transform: translateY(-50%) !important;
            transform: translateY(-50%) !important;
    right: 15px;
  }
}
.raccoglitoreopere-container .nav-item .number-active-item {
  display: none;
}
@media screen and (min-width: 1025px) {
  .raccoglitoreopere-container .nav-item .number-active-item.active {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .raccoglitoreopere-container .nav-item .nav-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .raccoglitoreopere-container .nav-item .nav-link:after {
    right: -23px !important;
  }
}
.raccoglitoreopere-container .searchbar_raccoglitoreopere {
  display: block;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .searchbar_raccoglitoreopere {
    margin-bottom: 15px;
  }
}
.raccoglitoreopere-container .searchbar_raccoglitoreopere .btn .icon-search {
  background-image: url("clientlib-site/resources/images/icons/search.svg") !important;
  background-size: 15px !important;
  width: 15px;
  height: 15px;
  position: relative;
}
.raccoglitoreopere-container .searchbar_raccoglitoreopere .btn .icon-search:hover {
  background-image: url("clientlib-site/resources/images/icons/search-blue.svg") !important;
  -webkit-filter: brightness(0%);
          filter: brightness(0%);
}
.raccoglitoreopere-container .searchbar_raccoglitoreopere .btn .icon-search:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: -4px;
}
.raccoglitoreopere-container .search_desk_raccoglitoreopere {
  display: block;
  position: relative;
  margin: auto;
  width: calc(100% - 48px) !important;
  padding: 0 0 0 15px !important;
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .search_desk_raccoglitoreopere {
    border: 1px solid #e0e0e0;
    width: 100% !important;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere input {
    color: #6f6f6f !important;
    font-family: "Inter", Arial, sans-serif;
    font-weight: 300;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere input::-webkit-input-placeholder {
    color: #6f6f6f !important;
    opacity: 1;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere input::-moz-placeholder {
    color: #6f6f6f !important;
    opacity: 1;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere input:-ms-input-placeholder {
    color: #6f6f6f !important;
    opacity: 1;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere input::-ms-input-placeholder {
    color: #6f6f6f !important;
    opacity: 1;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere input::placeholder {
    color: #6f6f6f !important;
    opacity: 1;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere input:-ms-input-placeholder {
    color: #6f6f6f !important;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere input::-ms-input-placeholder {
    color: #6f6f6f !important;
  }
}
.raccoglitoreopere-container .search_desk_raccoglitoreopere .btn .icon-search {
  background-image: url("clientlib-site/resources/images/icons/search.svg") !important;
  background-size: 15px !important;
  width: 15px;
  height: 15px;
  position: relative;
}
.raccoglitoreopere-container .search_desk_raccoglitoreopere .btn .icon-search:hover {
  background-image: url("clientlib-site/resources/images/icons/search-blue.svg") !important;
  -webkit-filter: brightness(0%);
          filter: brightness(0%);
}
.raccoglitoreopere-container .search_desk_raccoglitoreopere .btn .icon-search:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: -4px;
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .search_desk_raccoglitoreopere .btn {
    display: none;
  }
}
.raccoglitoreopere-container .search_desk_raccoglitoreopere .shadow-none {
  width: 130px;
  border: 0;
  padding: 12px 10px 12px 0 !important;
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .search_desk_raccoglitoreopere .shadow-none {
    width: 97%;
    color: #6f6f6f !important;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere .shadow-none::-webkit-input-placeholder {
    color: #6f6f6f !important;
    opacity: 1;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere .shadow-none::-moz-placeholder {
    color: #6f6f6f !important;
    opacity: 1;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere .shadow-none:-ms-input-placeholder {
    color: #6f6f6f !important;
    opacity: 1;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere .shadow-none::-ms-input-placeholder {
    color: #6f6f6f !important;
    opacity: 1;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere .shadow-none::placeholder {
    color: #6f6f6f !important;
    opacity: 1;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere .shadow-none:-ms-input-placeholder {
    color: #6f6f6f !important;
  }
  .raccoglitoreopere-container .search_desk_raccoglitoreopere .shadow-none::-ms-input-placeholder {
    color: #6f6f6f !important;
  }
}
.raccoglitoreopere-container .search_desk_raccoglitoreopere .shadow-none.form-control {
  padding-right: 0 !important;
}
.raccoglitoreopere-container .dropdown_desk_raccoglitoreopere {
  overflow: hidden !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.raccoglitoreopere-container .form_desk_raccoglitoreopere {
  overflow-y: scroll;
  overflow-x: inherit;
  height: auto;
  max-height: 245px;
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .form_desk_raccoglitoreopere {
    max-height: 195px;
  }
}
@media screen and (min-width: 1025px) {
  .raccoglitoreopere-container .form_desk_raccoglitoreopere .select_desk_raccoglitoreopere {
    padding: 0 24px;
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .form_desk_raccoglitoreopere .select_desk_raccoglitoreopere {
    display: block;
    position: relative;
  }
}
.raccoglitoreopere-container .form_desk_raccoglitoreopere::-webkit-scrollbar {
  width: 5px;
}
.raccoglitoreopere-container .form_desk_raccoglitoreopere::-webkit-scrollbar-track {
  background: #ffffff;
}
.raccoglitoreopere-container .form_desk_raccoglitoreopere::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 5px;
}
.raccoglitoreopere-container .dropdown.active .dropdown-menu__opere {
  display: block;
}
.raccoglitoreopere-container .dropdown .dropdown-menu__opere {
  position: absolute;
  display: none;
  z-index: 10;
}
.raccoglitoreopere-container .btn {
  outline: none !important;
  border: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.raccoglitoreopere-container .btn:focus {
  outline: none !important;
}
.raccoglitoreopere-container .opera__range-bar {
  width: 180px;
  margin: auto;
  margin-top: 18px;
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .opera__range-bar {
    width: calc(100% - 20px);
  }
}
.raccoglitoreopere-container .button_applica_raccoglitoreopere {
  padding-right: 24px;
  margin-top: 34px;
  margin-bottom: 17px;
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .button_applica_raccoglitoreopere {
    display: none !important;
  }
}
.raccoglitoreopere-container .label_data_desk_raccoglitoreopere {
  padding-left: 24px;
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .form_opere_esposte_raccoglitoreopere_desk {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .container_dropdowns_raccoglitoreopere {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .close_raccoglitoreopere {
    width: 16px;
    height: 16px !important;
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .select_opere_esposte_raccoglitoreopere {
    margin-top: 26px;
    display: block;
    position: relative;
  }
  .raccoglitoreopere-container .select_opere_esposte_raccoglitoreopere input {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    z-index: 50;
    position: absolute;
    top: -1px;
    left: -14px;
    width: 100%;
    height: 30px;
    opacity: 0;
  }
  .raccoglitoreopere-container .select_opere_esposte_raccoglitoreopere label {
    left: 28px;
  }
  .raccoglitoreopere-container .select_opere_esposte_raccoglitoreopere label:before {
    left: -26px;
  }
  .raccoglitoreopere-container .select_opere_esposte_raccoglitoreopere label:after {
    left: -26px !important;
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .nav-link,
  .raccoglitoreopere-container .select_opere_esposte_raccoglitoreopere label {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    font-family: "Inter", Arial, sans-serif;
  }
  .raccoglitoreopere-container .nav-link:before,
  .raccoglitoreopere-container .select_opere_esposte_raccoglitoreopere label:before {
    outline-color: black;
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .form_desk_raccoglitoreopere input {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    z-index: 50;
    position: absolute;
    top: -1px;
    left: -14px;
    width: 100%;
    height: 30px;
  }
  .raccoglitoreopere-container input + label {
    position: relative;
    display: inline-block;
    line-height: 20px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 15px;
    left: 31px;
  }
  .raccoglitoreopere-container input + label::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 6px;
    width: 14px;
    height: 14px;
    outline: 1px solid black;
    background-color: #ffffff;
  }
}
.raccoglitoreopere-container input:checked + label::after {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: brightness(0);
          filter: brightness(0);
  background-color: unset;
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .dropdown-menu__opere {
    position: relative !important;
  }
}
@media screen and (max-width: 1024px) {
  .raccoglitoreopere-container .container_two_rows_raccoglitoreopere {
    width: 100%;
    background: white;
    height: 100%;
    z-index: 10;
    position: fixed;
    top: 0;
    z-index: 1000;
  }
  .raccoglitoreopere-container .container_two_rows_raccoglitoreopere .container_button_closeBtn {
    display: block !important;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    z-index: 1001 !important;
  }
  .raccoglitoreopere-container .container_two_rows_raccoglitoreopere .container_button_closeBtn .close_raccoglitoreopere {
    margin: 0;
    background-size: contain;
    z-index: 1002 !important;
  }
}
@media screen and (max-width: 767px) {
  .raccoglitoreopere-container .container_two_rows_raccoglitoreopere {
    width: 107.5%;
  }
}

.scopri-capolavori {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 80px 0;
  width: 100%;
  overflow: hidden;
}
.scopri-capolavori .transition-slide {
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}
@media screen and (min-width: 1025px) {
  .scopri-capolavori {
    padding: 120px 0;
  }
}
.scopri-capolavori__label {
  font-family: "Canela", Arial, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 46px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #000000;
  margin-bottom: 35px;
  padding: 0 15px;
}
@media screen and (min-width: 1025px) {
  .scopri-capolavori__label {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 80px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.scopri-capolavori__arrow {
  display: none;
}
.scopri-capolavori__arrow button {
  background: transparent;
  border: none;
}
@media screen and (min-width: 1025px) {
  .scopri-capolavori__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.scopri-capolavori__arrow .big-arrow-right:hover {
  -webkit-filter: invert(25%) sepia(0%) saturate(0%) hue-rotate(205deg) brightness(83%) contrast(79%);
          filter: invert(25%) sepia(0%) saturate(0%) hue-rotate(205deg) brightness(83%) contrast(79%);
}
.scopri-capolavori__arrow .big-arrow-left:hover {
  -webkit-filter: invert(25%) sepia(0%) saturate(0%) hue-rotate(205deg) brightness(83%) contrast(79%);
          filter: invert(25%) sepia(0%) saturate(0%) hue-rotate(205deg) brightness(83%) contrast(79%);
}
.scopri-capolavori__image .ratio-container {
  position: relative;
  width: 100%;
  padding-top: 68.3297180043%;
  overflow: hidden;
  background-color: #c4c4c4;
}
.scopri-capolavori__image .ratio-container img {
  display: block;
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.scopri-capolavori__image.top img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.scopri-capolavori__image.middle img {
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}
.scopri-capolavori__image.bottom img {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.scopri-capolavori__item {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1025px) {
  .scopri-capolavori__item {
    position: relative;
  }
}
.scopri-capolavori__item:hover img {
  scale: 1.1;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.scopri-capolavori__item:hover .scopri-capolavori__title {
  background-size: 100% 2px;
}
.scopri-capolavori__info {
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .scopri-capolavori__info {
    position: absolute;
    top: 100%;
  }
}
.scopri-capolavori__separator {
  height: 14px;
  width: 1px;
  margin: -2px 14px;
  background-color: #000000;
  display: inline-block;
}
.scopri-capolavori__year {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  position: relative;
}
.scopri-capolavori__author {
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
}
.scopri-capolavori__title {
  font-family: "Canela", Arial, sans-serif;
  font-size: 24px;
  line-height: 36px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-align: left;
  color: #000000;
  margin-top: 8px;
  text-decoration: none;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  transition: background-size 0.4s cubic-bezier(0.4, 0, 1, 1);
  background-position: left bottom;
  padding-bottom: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
}
@media screen and (min-width: 1025px) {
  .scopri-capolavori__title {
    font-size: 32px;
    line-height: 45px;
  }
}
.scopri-capolavori__slider {
  margin-left: -2.5vw;
}
.scopri-capolavori__slider .slick-list {
  margin: 0 -2.5vw;
  overflow: visible;
  margin-left: -10vw;
}
.scopri-capolavori__slider .slick-slide {
  margin: 0 3vw;
}
.scopri-capolavori__slider .slick-slide .scopri-capolavori__info {
  display: none;
}
.scopri-capolavori__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.scopri-capolavori__slider .slick-active {
  width: 80vw !important;
}
.scopri-capolavori__slider .central-slide {
  width: 80vw !important;
}
.scopri-capolavori__slider .central-slide .scopri-capolavori__info {
  display: block;
}
@media screen and (min-width: 1025px) {
  .scopri-capolavori__slider {
    margin: 0 0 60px;
  }
  .scopri-capolavori__slider .slick-list {
    margin: 0 -8vw;
    overflow: visible;
  }
  .scopri-capolavori__slider .slick-slide {
    margin: 0 7.2vw;
  }
  .scopri-capolavori__slider .slick-slide .scopri-capolavori__info {
    display: none;
  }
  .scopri-capolavori__slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .scopri-capolavori__slider .slick-active {
    width: 31vw !important;
  }
  .scopri-capolavori__slider .central-slide {
    width: 52.5vw !important;
  }
  .scopri-capolavori__slider .central-slide .scopri-capolavori__info {
    display: block;
  }
}

.separator-component {
  height: 1px;
}

.grey {
  background-color: #e0e0e0;
}

.blue {
  background-color: #000000;
}

.separatore__pianifica-col {
  height: 1px;
  width: 100%;
  background-color: #e0e0e0;
}
.separatore__pianifica-row {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .separatore__pianifica-row {
    padding-top: 85px;
    padding-bottom: 90px;
  }
}

.sicurezza__title-component {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .sicurezza__title-component {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.sicurezza__text-component {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.sicurezza__text-component p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.sicurezza__text-component p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.sicurezza__text-component p b {
  font-weight: bold;
}
.sicurezza__text-component p .size-8 {
  font-size: 8px !important;
}
.sicurezza__text-component p .size-9 {
  font-size: 9px !important;
}
.sicurezza__text-component p .size-10 {
  font-size: 10px !important;
}
.sicurezza__text-component p .size-11 {
  font-size: 11px !important;
}
.sicurezza__text-component p .size-12 {
  font-size: 12px !important;
}
.sicurezza__text-component p .size-13 {
  font-size: 13px !important;
}
.sicurezza__text-component p .size-14 {
  font-size: 14px !important;
}
.sicurezza__text-component p .size-15 {
  font-size: 15px !important;
}
.sicurezza__text-component p .size-16 {
  font-size: 16px !important;
}
.sicurezza__text-component p .size-17 {
  font-size: 17px !important;
}
.sicurezza__text-component p .size-18 {
  font-size: 18px !important;
}
.sicurezza__text-component p .size-19 {
  font-size: 19px !important;
}
.sicurezza__text-component p .size-20 {
  font-size: 20px !important;
}
.sicurezza__text-component p .size-21 {
  font-size: 21px !important;
}
.sicurezza__text-component p .size-22 {
  font-size: 22px !important;
}
.sicurezza__text-component p .size-23 {
  font-size: 23px !important;
}
.sicurezza__text-component p .size-24 {
  font-size: 24px !important;
}
.sicurezza__text-component p .size-25 {
  font-size: 25px !important;
}
.sicurezza__text-component p .size-26 {
  font-size: 26px !important;
}
.sicurezza__text-component p .size-27 {
  font-size: 27px !important;
}
.sicurezza__text-component p .size-28 {
  font-size: 28px !important;
}
.sicurezza__text-component p .size-29 {
  font-size: 29px !important;
}
.sicurezza__text-component a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.sicurezza__text-component b {
  font-weight: bold;
}
.sicurezza__cards-maxi-container {
  gap: 60px 74px;
  margin-top: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sicurezza__icon-container {
  width: 80px;
  height: 80px;
  background-color: rgba(90, 135, 178, 0.1);
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -1;
}
.sicurezza__icon-container img {
  max-width: 80px;
  max-height: 80px;
}
.sicurezza__card-title {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
  padding: 30px 0 12px 0;
}
.sicurezza__card-description {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.sicurezza__card-description p {
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.sicurezza__card-description p a {
  color: #000000;
  text-decoration: underline !important;
  width: 300px;
  height: 400px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.sicurezza__card-description p b {
  font-weight: bold;
}
.sicurezza__card-description p .size-8 {
  font-size: 8px !important;
}
.sicurezza__card-description p .size-9 {
  font-size: 9px !important;
}
.sicurezza__card-description p .size-10 {
  font-size: 10px !important;
}
.sicurezza__card-description p .size-11 {
  font-size: 11px !important;
}
.sicurezza__card-description p .size-12 {
  font-size: 12px !important;
}
.sicurezza__card-description p .size-13 {
  font-size: 13px !important;
}
.sicurezza__card-description p .size-14 {
  font-size: 14px !important;
}
.sicurezza__card-description p .size-15 {
  font-size: 15px !important;
}
.sicurezza__card-description p .size-16 {
  font-size: 16px !important;
}
.sicurezza__card-description p .size-17 {
  font-size: 17px !important;
}
.sicurezza__card-description p .size-18 {
  font-size: 18px !important;
}
.sicurezza__card-description p .size-19 {
  font-size: 19px !important;
}
.sicurezza__card-description p .size-20 {
  font-size: 20px !important;
}
.sicurezza__card-description p .size-21 {
  font-size: 21px !important;
}
.sicurezza__card-description p .size-22 {
  font-size: 22px !important;
}
.sicurezza__card-description p .size-23 {
  font-size: 23px !important;
}
.sicurezza__card-description p .size-24 {
  font-size: 24px !important;
}
.sicurezza__card-description p .size-25 {
  font-size: 25px !important;
}
.sicurezza__card-description p .size-26 {
  font-size: 26px !important;
}
.sicurezza__card-description p .size-27 {
  font-size: 27px !important;
}
.sicurezza__card-description p .size-28 {
  font-size: 28px !important;
}
.sicurezza__card-description p .size-29 {
  font-size: 29px !important;
}
.sicurezza__card-description a {
  color: #000000;
  text-decoration: underline !important;
  width: 300px;
  height: 400px;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.sicurezza__card-description b {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .sicurezza__single-card-container {
    width: 27% !important;
    padding-right: 0 !important;
  }
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after, .slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  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.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;
}


.submenu-ancore__maxi-container {
  height: 0 !important;
  padding-top: 38.86%;
  display: block;
  position: relative !important;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .submenu-ancore__maxi-container {
    margin-bottom: 50px;
    padding-top: 85.34%;
  }
}
.submenu-ancore__ancore-container-maxi {
  background-color: #f8f8f8;
  position: absolute;
  bottom: -70px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .submenu-ancore__ancore-container-maxi {
    bottom: -50px;
  }
}
.submenu-ancore__ancore-container-maxi .hero-component_description-container {
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .submenu-ancore__ancore-container-maxi .hero-component_description-container {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.submenu-ancore__ancore-container-maxi .hero-component_description-container .hero-component_description {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 9px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-top: 0;
  padding: 0;
}
.submenu-ancore__ancore-container-maxi .hero-component_description-container .hero-component_description p {
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 0;
  font-size: 9px;
  word-wrap: break-word;
}
@media screen and (max-width: 1024px) {
  .submenu-ancore__ancore-container-maxi .hero-component_description-container .hero-component_description p {
    margin-left: 12px;
    margin-right: 12px;
    line-height: 16px;
    font-size: 9px;
  }
}
.submenu-ancore__ancore-row {
  height: 70px;
  overflow: auto;
}
.submenu-ancore__ancore-row::-webkit-scrollbar {
  height: 4px;
}
.submenu-ancore__ancore-row::-webkit-scrollbar-thumb:horizontal {
  background: #bcbcbc;
}
.submenu-ancore__ancore-row::-webkit-scrollbar-track {
  background: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .submenu-ancore__ancore-row {
    height: 50px;
  }
}
.submenu-ancore__elemento {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
}
.submenu-ancore__ancore-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 22px;
  white-space: nowrap;
}
.submenu-ancore__ancore-col a:hover {
  color: #000000;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
}
.submenu-ancore__ancore-col a:hover::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: -2px;
  display: block;
}
@media screen and (max-width: 767px) {
  .submenu-ancore__ancore-col {
    gap: 40px;
  }
}

.template-capolavori__filter-container {
  padding-bottom: 45px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.template-capolavori__filter-container .filterTags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-capolavori__filter-container .filterTags .hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  .template-capolavori__filter-container .filterTags {
    display: none;
  }
}
.template-capolavori__filter-container .filterTags__wrapper {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.template-capolavori__filter-container .filterTags__item {
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0.08em;
  text-align: right;
  color: #000000;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-right: 12px;
  border: 1px solid #000000;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-capolavori__filter-container .filterTags__item span {
  width: 9px;
  height: 9px;
  cursor: pointer;
}
.template-capolavori__filter-container .filterTags .action {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  text-transform: uppercase;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  cursor: pointer;
  white-space: nowrap;
}
.template-capolavori__filter-container .filterTags .action--reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  background-color: #ffffff;
  color: #000000;
}
.template-capolavori__filter-container .filterTags .action--reset:hover {
  color: #000000;
  text-decoration: underline;
}
.template-capolavori__filter-container .filterTags .action--submit {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.template-capolavori__filter-container .filterTags .action--submit:hover {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.template-capolavori__filter-container .hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  .template-capolavori__filter-container {
    margin: 0 !important;
    padding: 0 !important;
  }
}
.template-capolavori__filter-container .event-list-filter {
  padding: 0;
  text-decoration: none;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
.template-capolavori__filter-container .event-list-filter .filter-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .template-capolavori__filter-container .event-list-filter .filter-desktop {
    margin-bottom: 40px;
  }
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop {
  cursor: pointer;
  position: relative;
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-type .filter-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-type .filter-div .filters-desktop {
  display: block;
}
@media screen and (max-width: 1024px) {
  .template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-type .filter-div .filters-desktop {
    display: none !important;
  }
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-type .filter-div .filters-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-type .filter-div .filters-mobile {
    display: block !important;
  }
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-type .filter-title {
  margin-left: 35px;
  margin-right: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: right;
  color: #000;
  text-transform: uppercase;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-type .filter-title:hover {
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-type .filter-title {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-type .filter-title {
    right: 0 !important;
  }
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .arrow-down {
  visibility: visible;
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url("clientlib-site/resources/images/icons/vectordown.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  -webkit-transition: none;
  transition: none;
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .arrow-up {
  visibility: visible;
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url("clientlib-site/resources/images/icons/vectorup.png");
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 10px;
  -webkit-transition: none;
  transition: none;
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-options-desktop {
  min-width: 22em;
  padding: 25px;
  position: absolute;
  right: 12px;
  list-style-type: none;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 1px 6px 2px rgba(0, 0, 0, 0.08);
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-options-desktop input[type=checkbox] {
  cursor: pointer !important;
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .filter-options-desktop label {
  padding-left: 12px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}
.template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .type-dropdown {
  display: none;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .template-capolavori__filter-container .event-list-filter .filter-desktop .filter-container-desktop .type-dropdown {
    padding: 0 !important;
    margin-top: 35px !important;
  }
}

.template-capolavori__card {
  display: block;
  margin-bottom: 40px;
}
.template-capolavori__card:hover .template-capolavori__card-title {
  color: #000000;
}
.template-capolavori__card .template-capolavori__image-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.template-capolavori__card .template-capolavori__card-info {
  margin-top: 20px;
}
.template-capolavori__card .template-capolavori__card-info .template-capolavori__card-info-date {
  border-right: 1px solid #000000;
  padding-right: 15px;
  margin-right: 15px;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 26px;
  color: #000000;
}
.template-capolavori__card .template-capolavori__card-info .template-capolavori__card-info-name {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}
.template-capolavori__card .template-capolavori__card-info .template-capolavori__card-title {
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: #000000;
}

.navbar_raccoglitoreopere {
  background: #f8f8f8;
}

.container_two_rows_raccoglitoreopere {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.searchbar_raccoglitoreopere {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.accordion_raccoglitoreopere {
  display: none;
}

@media screen and (max-width: 991px) {
  .container_dropdowns_raccoglitoreopere {
    display: none;
  }
  .accordion_raccoglitoreopere {
    display: block;
  }
}
.container_title_filters_raccoglitoreopere {
  margin-top: 30px;
  margin-bottom: 30px;
}
.container_title_filters_raccoglitoreopere .container_title_raccoglitoreopere {
  margin-bottom: 18px;
}
.container_title_filters_raccoglitoreopere .container_title_raccoglitoreopere p {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: #000000;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin-right: 32px;
  margin-bottom: 0;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li {
  margin-right: 12px;
  margin-bottom: 12px;
  padding: 0 14px 5px; /*7px 14px*/
  border: 1px solid #000000;
  border-radius: 14px;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li:last-child {
  margin-right: 32px;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li a .text_filter_list_raccoglitoreopere {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  text-align: right;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li a .close_filter_list_raccoglitoreopere {
  margin-left: 10px;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .filter_list_raccoglitoreopere li a .close_filter_list_raccoglitoreopere img {
  width: 7px;
  height: 7px;
  background-color: white !important;
}
.container_title_filters_raccoglitoreopere .container_filters_raccoglitoreopere .cancel_filters_raccoglitoreopere button {
  background: none;
  border: none;
  padding: 0;
  outline: none;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

@media screen and (min-width: 991px) {
  .container_title_filters_raccoglitoreopere {
    margin-top: 90px;
    margin-bottom: 50px;
  }
}
.container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere {
  width: 100%;
}
.container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere.hide {
  display: none;
}
.container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere.active {
  display: block !important;
}
.container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere .container_img_raccoglitoreopere {
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
}
.container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere .container_img_raccoglitoreopere picture {
  width: 100%;
}
.container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere .container_img_raccoglitoreopere picture img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere .container_details_raccoglitoreopere {
  margin-bottom: 8px;
}
.container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere .container_details_raccoglitoreopere span {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}
.container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere .container_details_raccoglitoreopere .date_raccoglitoreopere {
  padding-right: 14px;
  margin-right: 12px;
  border-right: 1px solid #000000;
}
.container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere .container_title_raccoglitoreopere {
  margin-bottom: 47px;
}
.container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere .container_title_raccoglitoreopere h5 {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: #000000;
}
.container_opere_cards_raccoglitoreopere .filter-title {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media screen and (max-width: 1024px) {
  .container_opere_cards_raccoglitoreopere .filter-title {
    margin-right: 0 !important;
    display: block;
    position: relative;
  }
  .container_opere_cards_raccoglitoreopere .filter-title:before {
    content: "";
    display: block;
    position: absolute;
    background-image: url("clientlib-site/resources/images/icons/filter.png");
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-size: 15px;
    background-repeat: no-repeat;
    left: -27px;
  }
}
@media screen and (max-width: 1024px) {
  .container_opere_cards_raccoglitoreopere .arrow-down {
    display: none !important;
  }
}
.container_opere_cards_raccoglitoreopere .type-dropdown {
  padding: 20px 24px !important;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .container_opere_cards_raccoglitoreopere .type-dropdown {
    display: block !important;
    position: relative !important;
  }
}
.container_opere_cards_raccoglitoreopere .type-dropdown li {
  display: block;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}
.container_opere_cards_raccoglitoreopere .type-dropdown li:last-child {
  margin-bottom: 0;
}
.container_opere_cards_raccoglitoreopere .type-dropdown input[type=checkbox] {
  display: block;
  opacity: 0;
  z-index: 50;
  position: absolute;
  width: 100%;
  height: 30px;
}
.container_opere_cards_raccoglitoreopere .type-dropdown input[type=checkbox] + label {
  margin-left: 10px;
  margin-top: -2px;
  text-transform: none;
  font-size: 14px;
}
.container_opere_cards_raccoglitoreopere .type-dropdown input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  outline: 1px solid #e0e0e0;
  background-color: #ffffff;
}
.container_opere_cards_raccoglitoreopere .type-dropdown input[type=checkbox].selected + label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  background-image: url("clientlib-site/resources/images/icons/Vector_21_svg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.container_opere_cards_raccoglitoreopere .event-list-filter .container-mobile__actions {
  display: none;
}
@media screen and (max-width: 767px) {
  .container_opere_cards_raccoglitoreopere .event-list-filter .container-mobile__actions {
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}
.container_opere_cards_raccoglitoreopere .event-list-filter .container-mobile__actions .action {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 20px;
  text-transform: uppercase;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-align: center;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  cursor: pointer;
}
.container_opere_cards_raccoglitoreopere .event-list-filter .container-mobile__actions .action--reset {
  white-space: nowrap;
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
.container_opere_cards_raccoglitoreopere .event-list-filter .container-mobile__actions .action--reset:hover {
  border: 1px solid #000000;
  color: #000000;
}
.container_opere_cards_raccoglitoreopere .event-list-filter .container-mobile__actions .action--submit {
  border: 1px solid #000000;
  background-color: #ffffff;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .container_opere_cards_raccoglitoreopere .event-list-filter .container-mobile {
    height: 100vh;
    width: 100%;
    display: none;
    right: 0 !important;
    position: fixed;
    z-index: 2000;
    background: #ffffff;
    top: 0;
  }
  .container_opere_cards_raccoglitoreopere .event-list-filter .container-mobile.active {
    display: block;
  }
  .container_opere_cards_raccoglitoreopere .event-list-filter .container-mobile .container_button_closeBtn {
    display: block;
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-image: url(clientlib-site/resources/images/icons/close-btn.png);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    position: fixed;
    top: 24px;
    right: 20px;
  }
}
.container_opere_cards_raccoglitoreopere .filter-desktop {
  display: unset !important;
}
.container_opere_cards_raccoglitoreopere .filter-desktop .filter-type {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 1025px) {
  .container_opere_cards_raccoglitoreopere .filter-desktop .filter-type {
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .container_opere_cards_raccoglitoreopere .filter-desktop .filter-type {
    position: absolute;
    right: 0;
  }
}
.container_opere_cards_raccoglitoreopere .container_bottom_raccoglitoreopere {
  display: none;
}
@media screen and (max-width: 1024px) {
  .container_opere_cards_raccoglitoreopere .container_bottom_raccoglitoreopere {
    z-index: 2001;
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .container_opere_cards_raccoglitoreopere .filter-options-desktop {
    right: 0 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
    height: auto;
  }
  .container_opere_cards_raccoglitoreopere .filter-options-desktop.hide {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .container_opere_cards_raccoglitoreopere .accordion-masterpiece {
    border-bottom: 1px solid #e0e0e0;
    margin-top: 110px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .container_opere_cards_raccoglitoreopere .accordion-masterpiece label {
    font-size: 16px;
    margin-left: 15px !important;
  }
}
.container_opere_cards_raccoglitoreopere .accordion-masterpiece .accordion-button {
  display: none;
}
@media screen and (max-width: 1024px) {
  .container_opere_cards_raccoglitoreopere .accordion-masterpiece .accordion-button {
    display: block;
    padding-left: 0 !important;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    font-size: 14px;
  }
  .container_opere_cards_raccoglitoreopere .accordion-masterpiece .accordion-button:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
    width: 10px;
    height: 10px;
    background-size: 10px;
    background-image: url("clientlib-site/resources/images/icons/arrow-short-down-black.svg") !important;
  }
  .container_opere_cards_raccoglitoreopere .accordion-masterpiece .accordion-button.hide:after {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
}
.container_opere_cards_raccoglitoreopere .accordion-button:not(.collapsed) {
  color: black !important;
  background-color: white;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.container_opere_cards_raccoglitoreopere .arrow-down,
.container_opere_cards_raccoglitoreopere .arrow-up {
  width: 10px !important;
  height: 10px !important;
  background-size: 10px !important;
  margin-left: 0 !important;
}
@media screen and (max-width: 1024px) {
  .container_opere_cards_raccoglitoreopere .container_applica_cancella_filtri_raccoglitoreopere {
    padding-right: 0 !important;
  }
}
.container_opere_cards_raccoglitoreopere .raccoglitoreopere-mb {
  margin-bottom: 63px;
}

@media screen and (min-width: 991px) {
  .container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere {
    margin-right: 24px;
  }
  .container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere:nth-child(2n) {
    margin-right: 0;
  }
  .container_opere_cards_raccoglitoreopere .container_grid_raccoglitoreopere .card_raccoglitoreopere .container_title_raccoglitoreopere {
    margin-bottom: 52px;
  }
  .container_opere_cards_raccoglitoreopere .raccoglitoreopere-mb {
    margin-bottom: 100px;
  }
}
.container_grid_raccoglitoreopere .masterpiece {
  width: 50%;
  height: auto;
  padding: 0 12px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.container_grid_raccoglitoreopere .masterpiece a:hover {
  cursor: pointer;
}
.container_grid_raccoglitoreopere .masterpiece a:hover h5 {
  color: #000000 !important;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.container_grid_raccoglitoreopere .masterpiece:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.container_grid_raccoglitoreopere .masterpiece img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .container_grid_raccoglitoreopere .masterpiece {
    width: 100%;
    padding: 0;
  }
}
.container_grid_raccoglitoreopere .masterpiece img {
  width: 100%;
}
.container_grid_raccoglitoreopere .cmp-container {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .container_grid_raccoglitoreopere .cmp-container {
    margin-top: 30px;
  }
}

@media screen and (min-width: 1025px) {
  .page-capolavori .container_big_universal {
    padding: 0 12px !important;
  }
}

/*GENERAL STYLING START*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/*GENERAL STYLING END*/
/*MIXIN START*/
/* @mixin PText {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
} */
/*MIXIN END*/
/*STYLE DI COMPONENTE PARAGRAFO UNIVERSALE INIZIO*/
.container_big_universal {
  margin-top: 60px;
  margin-bottom: 80px;
}
.container_big_universal .row {
  /*TITLE START*/
  /*TITLE END*/
  /*PARAGRAPH START*/
  /*PARAGRAPH END*/
}
.container_big_universal .row .container_title_h2 {
  margin-bottom: 18px;
}
.container_big_universal .row .container_title_h2 h2 {
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.01em;
  color: #000000;
}
.container_big_universal .row .container_paragraph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*CTA START*/
  /*CTA END*/
  /*TOGGLE VISIBILITY OF CTAS START*/
  /*TOGGLE VISIBILITY OF PARAGRAPHS OR CTAS END*/
}
.container_big_universal .row .container_paragraph a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
  text-decoration: underline;
}
.container_big_universal .row .container_paragraph b {
  font-weight: bold;
}
.container_big_universal .row .container_paragraph p {
  margin-bottom: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  /* @include PText(); */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.container_big_universal .row .container_paragraph p a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.container_big_universal .row .container_paragraph p b {
  font-weight: bold;
}
.container_big_universal .row .container_paragraph p .size-8 {
  font-size: 8px !important;
}
.container_big_universal .row .container_paragraph p .size-9 {
  font-size: 9px !important;
}
.container_big_universal .row .container_paragraph p .size-10 {
  font-size: 10px !important;
}
.container_big_universal .row .container_paragraph p .size-11 {
  font-size: 11px !important;
}
.container_big_universal .row .container_paragraph p .size-12 {
  font-size: 12px !important;
}
.container_big_universal .row .container_paragraph p .size-13 {
  font-size: 13px !important;
}
.container_big_universal .row .container_paragraph p .size-14 {
  font-size: 14px !important;
}
.container_big_universal .row .container_paragraph p .size-15 {
  font-size: 15px !important;
}
.container_big_universal .row .container_paragraph p .size-16 {
  font-size: 16px !important;
}
.container_big_universal .row .container_paragraph p .size-17 {
  font-size: 17px !important;
}
.container_big_universal .row .container_paragraph p .size-18 {
  font-size: 18px !important;
}
.container_big_universal .row .container_paragraph p .size-19 {
  font-size: 19px !important;
}
.container_big_universal .row .container_paragraph p .size-20 {
  font-size: 20px !important;
}
.container_big_universal .row .container_paragraph p .size-21 {
  font-size: 21px !important;
}
.container_big_universal .row .container_paragraph p .size-22 {
  font-size: 22px !important;
}
.container_big_universal .row .container_paragraph p .size-23 {
  font-size: 23px !important;
}
.container_big_universal .row .container_paragraph p .size-24 {
  font-size: 24px !important;
}
.container_big_universal .row .container_paragraph p .size-25 {
  font-size: 25px !important;
}
.container_big_universal .row .container_paragraph p .size-26 {
  font-size: 26px !important;
}
.container_big_universal .row .container_paragraph p .size-27 {
  font-size: 27px !important;
}
.container_big_universal .row .container_paragraph p .size-28 {
  font-size: 28px !important;
}
.container_big_universal .row .container_paragraph p .size-29 {
  font-size: 29px !important;
}
.container_big_universal .row .container_paragraph .text-two-columns_cta {
  margin-top: 90px;
}
@media screen and (max-width: 1024px) {
  .container_big_universal .row .container_paragraph .text-two-columns_cta {
    text-align: center;
  }
}
.container_big_universal .row .container_paragraph .text-two-columns_cta a {
  padding: 14px 0;
  width: 300px;
  height: 400px;
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px !important;
  line-height: 15px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-size: 0% 2px;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 3px;
}
.container_big_universal .row .container_paragraph .text-two-columns_cta a:hover {
  background-size: calc(100% - 28px) 2px;
}
.container_big_universal .row .container_paragraph .text-two-columns_cta a:hover .arrow-right {
  background-image: url("clientlib-site/resources/images/icons/arrow.png");
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.container_big_universal .row .container_paragraph .container_cta {
  margin-top: 50px;
  padding: 15px 0;
  border: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.container_big_universal .row .container_paragraph .container_cta a {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
.container_big_universal .row .container_paragraph .cta_hidden {
  display: none !important;
}

@media screen and (min-width: 991px) {
  .container_big_universal {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .container_big_universal .row {
    /*TITLE START*/
    /*TITLE END*/
  }
  .container_big_universal .row .container_title_h2 {
    margin-bottom: 40px;
  }
  .container_big_universal .row .container_title_h2 h2 {
    font-family: "Canela", Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: 0.02em;
    color: #000000;
  }
}
/*STYLE DI COMPONENTE PARAGRAFO UNIVERSALE FINE*/
/**/
/*STYLE DI COMPONENTE PARAGRAFO VARIANTE TITOLO E DUE TESTI SOTTO INIZIO

.container_big {
  margin-top: 28px;
}

.container_paragraph {
  display: flex;
  flex-direction: column;
  p {
    margin-bottom: 0;
    @include PText();
  }
  .container_cta {
    margin-top: 50px;
    padding: 15px 0;
    border: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    a {
      font-family: "Inter";
      font-style: normal;
      font-weight: 600;
      font-size: 12px;
      line-height: 15px;
      text-align: center;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #000000;
    }
  }
}

@media screen and (min-width: 991px) {
  .container_big {
    margin-top: 50px;
  }
}

STYLE DI COMPONENTE PARAGRAFO VARIANTE TITOLO E DUE TESTI SOTTO FINE*/
/**/
/*STYLE DI COMPONENTE PARAGRAFO VARIANTE TITOLO E UN TESTO SOTTO INIZIO

.container_spacing {
  display: none;
}

@media screen and (min-width: 991px) {
  .left_txt {
    display: flex;
    flex-direction: row;
  }

  .right_txt {
    display: flex;
    flex-direction: row-reverse;
  }

  .container_spacing {
    display: unset;
  }
}

STYLE DI COMPONENTE PARAGRAFO VARIANTE TITOLO E UN TESTO SOTTO FINE*/
/**/
/*STYLE DI COMPONENTE PARAGRAFO VARIANTE TITOLO E UN TESTO NELLA STESSA RIGA INIZIO*/
.container_big_title_text {
  margin-top: 80px;
  margin-bottom: 100px;
}
.container_big_title_text .row .container_title {
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.container_big_title_text .row .container_title h3 {
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0.01em;
  color: #000000;
}
.container_big_title_text .row .container_description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*CTA START*/
  /*CTA END*/
}
.container_big_title_text .row .container_description .container_text {
  margin-bottom: 40px;
  /* p {
    @include PText();
  } */
}
.container_big_title_text .row .container_description .container_cta {
  padding: 15px 0;
  border: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.container_big_title_text .row .container_description .container_cta a {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

@media screen and (min-width: 991px) {
  .container_big_title_text {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .container_big_title_text .row .container_title {
    margin-bottom: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .container_big_title_text .row .container_title h3 {
    margin-top: 0;
    font-family: "Canela", Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0.01em;
    color: #000000;
  }
}
/*STYLE DI COMPONENTE PARAGRAFO VARIANTE TITOLO E UN TESTO NELLA STESSA RIGA FINE*/
.text-component-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .text-component-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.text-component {
  text-decoration: none;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .text-component {
    max-width: 100%;
  }
}

.larger {
  max-width: 545px;
}

.text {
  font-family: "Inter", Arial, sans-serif !important;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}

.title-component {
  font-family: "Canela", Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 0.02em;
  margin-bottom: 60px;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .title-component {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.01em;
  }
}

.title__m-bot {
  margin-bottom: 15px;
}

.title-controls .title-component {
  font-size: 60px;
  margin-bottom: 0;
}

/*GENERAL STYLING START*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/*GENERAL STYLING END*/
/*-------*/
/*TOAST STICKY STYLING START*/
/*MOBILE STYLING START*/
.ctoast_sticky {
  padding-left: 8px;
  padding-right: 8px;
  /*put stickyness*/
}
.ctoast_sticky .ctoast_info {
  background-color: #183b5b;
}
.ctoast_sticky .ctoast_info .ctoast_background {
  background-color: #183b5b;
}
.ctoast_sticky .ctoast_info .ctoast_icon {
  background: url("clientlib-site/resources/images/icons/toast_info.svg");
}
.ctoast_sticky .ctoast_error {
  background-color: #e06857;
}
.ctoast_sticky .ctoast_error .ctoast_background {
  background-color: #e06857;
}
.ctoast_sticky .ctoast_error .ctoast_icon {
  background: url("clientlib-site/resources/images/icons/toast_warning.svg");
  min-width: 22px !important; /*o 22px a tutti*/
  min-height: 22px !important;
  width: 22px !important;
  height: 22px !important;
  margin-right: 12.5px !important;
  margin-left: -3px !important;
}
.ctoast_sticky .ctoast_warning {
  background-color: #edb76d;
}
.ctoast_sticky .ctoast_warning .ctoast_background {
  background-color: #edb76d;
}
.ctoast_sticky .ctoast_warning .ctoast_icon {
  background: url("clientlib-site/resources/images/icons/toast_error.svg");
}
.ctoast_sticky .ctoast_success {
  background-color: #a3c584;
}
.ctoast_sticky .ctoast_success .ctoast_background {
  background-color: #a3c584;
}
.ctoast_sticky .ctoast_success .ctoast_icon {
  background: url("clientlib-site/resources/images/icons/toast_success.svg");
}
.ctoast_sticky .ctoast_container {
  position: relative;
}
.ctoast_sticky .ctoast_container .ctoast_background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  z-index: -1;
}
.ctoast_sticky .ctoast_container .ctoast {
  padding: 14px 0;
}
.ctoast_sticky .ctoast_container .ctoast .ctoast_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ctoast_sticky .ctoast_container .ctoast .ctoast_content .ctoast_content_left {
  padding: 2px 14px 2px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.ctoast_sticky .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_icon {
  display: inline-block;
  min-width: 16px;
  min-height: 16px;
  width: 16px;
  height: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 4px;
  margin-right: 16px;
}
.ctoast_sticky .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_text_container {
  color: #ffffff;
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
}
.ctoast_sticky .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_text_container .ctoast_text {
  margin: 0;
}
.ctoast_sticky .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_text_container .ctoast_text p {
  margin-bottom: 0 !important;
}
.ctoast_sticky .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_text_container .ctoast_text a {
  cursor: pointer;
  color: #ffffff !important;
  text-decoration: underline !important;
  -webkit-text-decoration-color: #ffffff !important;
          text-decoration-color: #ffffff !important;
  text-decoration-thickness: 1px !important;
}
.ctoast_sticky .ctoast_container .ctoast .ctoast_content .ctoast_close {
  display: inline-block;
  min-width: 12px;
  min-height: 12px;
  width: 12px;
  height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background: url("clientlib-site/resources/images/icons/toast_close.svg");
  cursor: pointer;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

/*MOBILE STYLING END*/
/*DESKTOP STYLE START*/
@media screen and (min-width: 991px) {
  .ctoast_sticky {
    padding-left: 0;
    padding-right: 0;
  }
  .ctoast_sticky .ctoast_container .ctoast {
    padding: 2px 0;
  }
  .ctoast_sticky .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_icon {
    margin-top: 2px !important;
    margin-bottom: 2px;
  }
  .ctoast_sticky .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_text_container .ctoast_text p {
    margin-bottom: 16px !important;
  }
}
/*DESKTOP STYLE END*/
/*TOAST STICKY STYLING END*/
/*-------*/
/*TOAST IN PAGE STYLING START*/
/*MOBILE STYLE START*/
.ctoast_inpage .ctoast_info {
  background-color: rgba(90, 135, 178, 0.1019607843);
  border-bottom: 4px solid #183b5b;
}
.ctoast_inpage .ctoast_info .ctoast_icon {
  background: url("clientlib-site/resources/images/icons/toast_info_circle.svg");
}
.ctoast_inpage .ctoast_info .ctoast_title {
  color: #183b5b;
}
.ctoast_inpage .ctoast_info .ctoast_close {
  -webkit-filter: invert(17%) sepia(64%) saturate(801%) hue-rotate(168deg) brightness(86%) contrast(91%);
          filter: invert(17%) sepia(64%) saturate(801%) hue-rotate(168deg) brightness(86%) contrast(91%);
}
.ctoast_inpage .ctoast_error {
  background-color: rgba(224, 104, 87, 0.1019607843);
  border-bottom: 4px solid #e06857;
}
.ctoast_inpage .ctoast_error .ctoast_icon {
  background: url("clientlib-site/resources/images/icons/toast_warning_circle.svg");
  min-width: 22px !important; /*o 22px a tutti*/
  min-height: 22px !important;
  width: 22px !important;
  height: 22px !important;
  margin-right: 12.5px !important;
  margin-left: -3px !important;
}
.ctoast_inpage .ctoast_error .ctoast_title {
  color: #e06857;
}
.ctoast_inpage .ctoast_error .ctoast_close {
  -webkit-filter: invert(54%) sepia(58%) saturate(1325%) hue-rotate(323deg) brightness(91%) contrast(91%);
          filter: invert(54%) sepia(58%) saturate(1325%) hue-rotate(323deg) brightness(91%) contrast(91%);
}
.ctoast_inpage .ctoast_warning {
  background-color: rgba(237, 183, 109, 0.1019607843);
  border-bottom: 4px solid #edb76d;
}
.ctoast_inpage .ctoast_warning .ctoast_icon {
  background: url("clientlib-site/resources/images/icons/toast_error_circle.svg");
}
.ctoast_inpage .ctoast_warning .ctoast_title {
  color: #edb76d;
}
.ctoast_inpage .ctoast_warning .ctoast_close {
  -webkit-filter: invert(65%) sepia(66%) saturate(278%) hue-rotate(355deg) brightness(101%) contrast(99%);
          filter: invert(65%) sepia(66%) saturate(278%) hue-rotate(355deg) brightness(101%) contrast(99%);
}
.ctoast_inpage .ctoast_success {
  background-color: rgba(163, 196, 132, 0.1019607843);
  border-bottom: 4px solid #a3c484;
}
.ctoast_inpage .ctoast_success .ctoast_icon {
  background: url("clientlib-site/resources/images/icons/toast_success_circle.svg");
}
.ctoast_inpage .ctoast_success .ctoast_title {
  color: #a3c484;
}
.ctoast_inpage .ctoast_success .ctoast_close {
  -webkit-filter: invert(80%) sepia(17%) saturate(668%) hue-rotate(48deg) brightness(91%) contrast(90%);
          filter: invert(80%) sepia(17%) saturate(668%) hue-rotate(48deg) brightness(91%) contrast(90%);
}
.ctoast_inpage .ctoast_container .ctoast {
  padding: 14px;
}
.ctoast_inpage .ctoast_container .ctoast .ctoast_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ctoast_inpage .ctoast_container .ctoast .ctoast_content .ctoast_content_left {
  padding: 22px 2px 18px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.ctoast_inpage .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_icon {
  display: inline-block;
  min-width: 16px;
  min-height: 16px;
  width: 16px;
  height: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 4px;
  margin-right: 16px;
}
.ctoast_inpage .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_text_container .ctoast_title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ctoast_inpage .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_text_container .ctoast_text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  margin: 0;
}
.ctoast_inpage .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_text_container .ctoast_text p {
  margin-bottom: 0 !important;
}
.ctoast_inpage .ctoast_container .ctoast .ctoast_content .ctoast_content_left .ctoast_text_container .ctoast_text a {
  cursor: pointer;
  color: #000000 !important;
  text-decoration: underline !important;
  -webkit-text-decoration-color: #000000 !important;
          text-decoration-color: #000000 !important;
  text-decoration-thickness: 1px !important;
}
.ctoast_inpage .ctoast_container .ctoast .ctoast_content .ctoast_close {
  display: inline-block;
  min-width: 10px;
  min-height: 10px;
  width: 10px;
  height: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background: url("clientlib-site/resources/images/icons/toast_close_circle.svg");
  cursor: pointer;
}

/*MOBILE STYLE END*/
/*DESKTOP STYLE START*/
@media screen and (min-width: 991px) {
  .ctoast_inpage .ctoast_container .ctoast {
    padding: 16px;
  }
  .ctoast_inpage .ctoast_container .ctoast .ctoast_content .ctoast_content_left {
    padding: 20px 2px 18px 14px;
  }
}
/*DESKTOP STYLE END*/
/*TOAST IN PAGE STYLING END*/
/*STYCKYNESS*/
.ctoast_stickyness-fixed {
  position: fixed;
  z-index: 999;
  top: 78px;
  left: 0;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.ctoast_stickyness-fixed-breadcrumb {
  top: 124px;
}

@media screen and (min-width: 1025px) {
  .ctoast_stickyness-fixed {
    top: 144px;
  }
  .ctoast_stickyness-fixed-breadcrumb {
    top: 206px;
  }
}
.breadcrumb-component-ctoast-sticky {
  margin-bottom: 0;
}

@media screen and (min-width: 1025px) {
  .breadcrumb-component-ctoast-sticky {
    margin-bottom: 52px;
  }
}
@media screen and (min-width: 1025px) {
  .ctoast_sticky .ctoast_content {
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
  }
}
.toast-container-id {
  display: none;
}
.toast-container-id.active {
  display: block;
}

.typ__maxi-col {
  position: relative;
}
.typ__maxi-container {
  display: none;
}
.typ__maxi-container.submit-confirmed {
  display: block;
}
.typ__title {
  font-family: "Canela";
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 0.02em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .typ__title {
    font-family: "Canela";
    font-style: normal;
    font-weight: 300;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.01em;
    color: #000000;
  }
}
.typ__description {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.typ__description-row {
  margin-bottom: 333px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .typ__description-row {
    margin-bottom: 250px;
    margin-top: 28px;
  }
}
.typ__submit-col {
  position: absolute;
  bottom: 205px;
  left: 12px;
}
@media screen and (max-width: 767px) {
  .typ__submit-col {
    bottom: 145px;
    left: 0;
  }
}
.typ__submit-btn {
  background-color: white;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #000000;
  padding: 14px 60px;
  width: auto;
  max-height: 45px;
  white-space: nowrap !important;
}
@media screen and (max-width: 767px) {
  .typ__submit-btn {
    width: 100%;
  }
}

:root {
  --safari-padding: 0px;
}

.vertical-carousel {
  display: block;
  position: relative;
  overflow: hidden;
}
.vertical-carousel picture,
.vertical-carousel picture img {
  background: transparent !important;
}

.vertical-carousel-box,
.vertical-carousel-box .item {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0;
}

.vertical-carousel-box .item {
  overflow: hidden;
}

.vertical-carousel-indicators {
  z-index: 1000;
  position: fixed;
  top: 50%;
  right: 30px;
  text-align: center;
  padding: 0;
  margin: -40px 0 0 0;
}

.vertical-carousel-indicators li {
  display: block;
  position: relative;
  z-index: 1001;
  list-style: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  padding: 5px;
}

.vertical-carousel-indicators li:before {
  content: "";
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  border: 1px solid #fff;
}

.vertical-carousel-indicators li:hover:before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin: -4px 0 0 -4px;
}

.vertical-carousel-indicators li.active:before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: -2px 0 0 -3px;
  background-color: #fff;
}

.vertical-carousel-box {
  -webkit-transition: transform 600ms;
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
}

.carousel-height {
  height: 100%;
}

#myVerticalCarousel {
  height: 100%;
  margin: 0;
}

.vertical-carousel {
  height: 100vh !important;
  /* span {
        height: 100%;
    } */
  /* CLASSE PER L'OPACITY DELLE IMMAGINI */
}
@media screen and (min-width: 1920px) {
  .vertical-carousel .container {
    width: 100% !important;
    max-width: unset !important;
  }
}
.vertical-carousel .item {
  text-align: center;
}
.vertical-carousel .carousel-slide-container {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  text-align: left;
}
.vertical-carousel .carousel-slide-container.mobile-only {
  display: block !important;
}
@media screen and (min-width: 1025px) {
  .vertical-carousel .carousel-slide-container.mobile-only {
    display: none !important;
  }
}
.vertical-carousel .carousel-slide-container.desktop-only {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .vertical-carousel .carousel-slide-container.desktop-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.vertical-carousel-img-bg-blur {
  position: absolute;
  z-index: -1;
  top: 0;
  height: 100vh;
  width: 100%;
}
.vertical-carousel-vertical-opacity picture::before {
  content: "";
  display: block;
  position: absolute;
  height: 70%;
  width: 100%;
  bottom: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-vertical-opacity picture::before {
    height: 60%;
  }
}
.vertical-carousel-horizontal-opacity::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 30%;
  bottom: 0;
  right: 0;
  z-index: 1001;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-horizontal-opacity::after {
    width: 25%;
  }
}
.vertical-carousel-img-bg-container {
  position: relative;
}
.vertical-carousel-img-bg-container .podcast-immersive-navigation {
  max-width: 461px;
  width: 100%;
  height: 70px;
}
.vertical-carousel-img-bg-container .podcast-immersive-navigation iframe {
  width: 100%;
  background-color: transparent !important;
}
.vertical-carousel .background-blur {
  position: relative;
}
.vertical-carousel-img-bg-cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100% !important;
  height: 100vh;
}
.vertical-carousel-img-bg-contain {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100% !important;
  height: 100vh;
}
.vertical-carousel .center-center {
  position: absolute;
  color: white;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .center-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
    padding: 0 20px 0 38px !important;
  }
  .vertical-carousel .center-center .carousel-description-text {
    margin-bottom: 0;
  }
}
.vertical-carousel .top-left {
  position: absolute;
  color: white;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 70px;
  padding-left: 150px;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .top-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 20px 0 38px !important;
  }
  .vertical-carousel .top-left .carousel-description-text {
    margin-bottom: 0;
    margin-top: 50px;
  }
}
.vertical-carousel .top-right {
  position: absolute;
  color: white;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 70px;
  padding-right: 150px;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .top-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 20px 0 38px !important;
  }
}
.vertical-carousel .bottom-left {
  position: absolute;
  color: white;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 70px;
  padding-left: 150px;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .bottom-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 20px 0 38px !important;
  }
}
.vertical-carousel .bottom-right {
  position: absolute;
  color: white;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 70px;
  padding-right: 150px;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .bottom-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 20px 0 38px !important;
  }
}
.vertical-carousel .background-black {
  background-color: black;
}
.vertical-carousel .background-blurred {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: blur(30px);
  -webkit-filter: blur(30px);
}
.vertical-carousel .carousel-description-text {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 461px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .carousel-description-text {
    margin-bottom: calc(50px + var(--safari-padding));
  }
}
.vertical-carousel .carousel-center-author {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
}
.vertical-carousel .vertical-carousel-centered-img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.vertical-carousel .vertical-carousel-center-img-descr-container {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
  margin-top: 50px;
}
.vertical-carousel .vertical-carousel-center-img-descr-container > b,
.vertical-carousel .vertical-carousel-center-img-descr-container > i {
  padding-left: 0.4ch;
  padding-right: 0.4ch;
}
.vertical-carousel .vertical-carousel-center-img-descr-container > b:last-child,
.vertical-carousel .vertical-carousel-center-img-descr-container > i:last-child {
  padding-right: none;
}
.vertical-carousel .vertical-carousel-center-img-descr-container > b:first-child,
.vertical-carousel .vertical-carousel-center-img-descr-container > i:first-child {
  padding-left: none;
}
.vertical-carousel .vertical-carousel-center-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 56vw;
  max-height: 59vh;
}
.vertical-carousel .vertical-carousel-centered-img-left-line {
  position: absolute;
  height: 100%;
  max-width: 177px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  border-right: 1px solid #fff;
  top: 0;
  left: -237px;
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  text-align: right;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-centered-img-left-line {
    left: -197px;
    font-size: 14px;
    line-height: 22px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .vertical-carousel .vertical-carousel-centered-img-left-line span {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin-right: -37px;
  }
}
@media screen and (max-width: 1024px) {
  .vertical-carousel .vertical-carousel-centered-img-left-line span {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin-right: -37px;
  }
}
.vertical-carousel .vertical-carousel-centered-img-left-line::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 1px;
  background-color: white;
  bottom: -1px;
  right: -5px;
}
.vertical-carousel .vertical-carousel-centered-img-left-line::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  background-color: white;
  top: -1px;
  right: -5px;
}
.vertical-carousel .vertical-carousel-centered-img-row {
  position: relative;
}
.vertical-carousel .vertical-carousel-centered-img-row picture:before {
  background: transparent !important;
}
.vertical-carousel .opera-title {
  font-family: Canela;
  font-style: normal;
  font-weight: normal;
  font-size: 72px;
  line-height: 80px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .opera-title {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #ffffff;
  }
}
.vertical-carousel .opera-title .size-8 {
  font-size: 8px !important;
}
.vertical-carousel .opera-title .size-8 i {
  font-size: 8px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-8 b {
  font-size: 8px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-9 {
  font-size: 9px !important;
}
.vertical-carousel .opera-title .size-9 i {
  font-size: 9px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-9 b {
  font-size: 9px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-10 {
  font-size: 10px !important;
}
.vertical-carousel .opera-title .size-10 i {
  font-size: 10px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-10 b {
  font-size: 10px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-11 {
  font-size: 11px !important;
}
.vertical-carousel .opera-title .size-11 i {
  font-size: 11px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-11 b {
  font-size: 11px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-12 {
  font-size: 12px !important;
}
.vertical-carousel .opera-title .size-12 i {
  font-size: 12px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-12 b {
  font-size: 12px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-13 {
  font-size: 13px !important;
}
.vertical-carousel .opera-title .size-13 i {
  font-size: 13px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-13 b {
  font-size: 13px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-14 {
  font-size: 14px !important;
}
.vertical-carousel .opera-title .size-14 i {
  font-size: 14px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-14 b {
  font-size: 14px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-15 {
  font-size: 15px !important;
}
.vertical-carousel .opera-title .size-15 i {
  font-size: 15px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-15 b {
  font-size: 15px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-16 {
  font-size: 16px !important;
}
.vertical-carousel .opera-title .size-16 i {
  font-size: 16px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-16 b {
  font-size: 16px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-17 {
  font-size: 17px !important;
}
.vertical-carousel .opera-title .size-17 i {
  font-size: 17px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-17 b {
  font-size: 17px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-18 {
  font-size: 18px !important;
}
.vertical-carousel .opera-title .size-18 i {
  font-size: 18px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-18 b {
  font-size: 18px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-19 {
  font-size: 19px !important;
}
.vertical-carousel .opera-title .size-19 i {
  font-size: 19px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-19 b {
  font-size: 19px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-20 {
  font-size: 20px !important;
}
.vertical-carousel .opera-title .size-20 i {
  font-size: 20px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-20 b {
  font-size: 20px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-21 {
  font-size: 21px !important;
}
.vertical-carousel .opera-title .size-21 i {
  font-size: 21px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-21 b {
  font-size: 21px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-22 {
  font-size: 22px !important;
}
.vertical-carousel .opera-title .size-22 i {
  font-size: 22px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-22 b {
  font-size: 22px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-23 {
  font-size: 23px !important;
}
.vertical-carousel .opera-title .size-23 i {
  font-size: 23px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-23 b {
  font-size: 23px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-24 {
  font-size: 24px !important;
}
.vertical-carousel .opera-title .size-24 i {
  font-size: 24px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-24 b {
  font-size: 24px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-25 {
  font-size: 25px !important;
}
.vertical-carousel .opera-title .size-25 i {
  font-size: 25px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-25 b {
  font-size: 25px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-26 {
  font-size: 26px !important;
}
.vertical-carousel .opera-title .size-26 i {
  font-size: 26px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-26 b {
  font-size: 26px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-27 {
  font-size: 27px !important;
}
.vertical-carousel .opera-title .size-27 i {
  font-size: 27px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-27 b {
  font-size: 27px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-28 {
  font-size: 28px !important;
}
.vertical-carousel .opera-title .size-28 i {
  font-size: 28px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-28 b {
  font-size: 28px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-29 {
  font-size: 29px !important;
}
.vertical-carousel .opera-title .size-29 i {
  font-size: 29px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-29 b {
  font-size: 29px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-30 {
  font-size: 30px !important;
}
.vertical-carousel .opera-title .size-30 i {
  font-size: 30px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-30 b {
  font-size: 30px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-31 {
  font-size: 31px !important;
}
.vertical-carousel .opera-title .size-31 i {
  font-size: 31px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-31 b {
  font-size: 31px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-32 {
  font-size: 32px !important;
}
.vertical-carousel .opera-title .size-32 i {
  font-size: 32px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-32 b {
  font-size: 32px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-33 {
  font-size: 33px !important;
}
.vertical-carousel .opera-title .size-33 i {
  font-size: 33px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-33 b {
  font-size: 33px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-34 {
  font-size: 34px !important;
}
.vertical-carousel .opera-title .size-34 i {
  font-size: 34px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-34 b {
  font-size: 34px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-35 {
  font-size: 35px !important;
}
.vertical-carousel .opera-title .size-35 i {
  font-size: 35px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-35 b {
  font-size: 35px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-36 {
  font-size: 36px !important;
}
.vertical-carousel .opera-title .size-36 i {
  font-size: 36px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-36 b {
  font-size: 36px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-37 {
  font-size: 37px !important;
}
.vertical-carousel .opera-title .size-37 i {
  font-size: 37px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-37 b {
  font-size: 37px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-38 {
  font-size: 38px !important;
}
.vertical-carousel .opera-title .size-38 i {
  font-size: 38px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-38 b {
  font-size: 38px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-39 {
  font-size: 39px !important;
}
.vertical-carousel .opera-title .size-39 i {
  font-size: 39px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-39 b {
  font-size: 39px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-40 {
  font-size: 40px !important;
}
.vertical-carousel .opera-title .size-40 i {
  font-size: 40px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-40 b {
  font-size: 40px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-41 {
  font-size: 41px !important;
}
.vertical-carousel .opera-title .size-41 i {
  font-size: 41px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-41 b {
  font-size: 41px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-42 {
  font-size: 42px !important;
}
.vertical-carousel .opera-title .size-42 i {
  font-size: 42px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-42 b {
  font-size: 42px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-43 {
  font-size: 43px !important;
}
.vertical-carousel .opera-title .size-43 i {
  font-size: 43px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-43 b {
  font-size: 43px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-44 {
  font-size: 44px !important;
}
.vertical-carousel .opera-title .size-44 i {
  font-size: 44px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-44 b {
  font-size: 44px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-45 {
  font-size: 45px !important;
}
.vertical-carousel .opera-title .size-45 i {
  font-size: 45px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-45 b {
  font-size: 45px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-46 {
  font-size: 46px !important;
}
.vertical-carousel .opera-title .size-46 i {
  font-size: 46px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-46 b {
  font-size: 46px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-47 {
  font-size: 47px !important;
}
.vertical-carousel .opera-title .size-47 i {
  font-size: 47px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-47 b {
  font-size: 47px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-48 {
  font-size: 48px !important;
}
.vertical-carousel .opera-title .size-48 i {
  font-size: 48px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-48 b {
  font-size: 48px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-49 {
  font-size: 49px !important;
}
.vertical-carousel .opera-title .size-49 i {
  font-size: 49px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-49 b {
  font-size: 49px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-50 {
  font-size: 50px !important;
}
.vertical-carousel .opera-title .size-50 i {
  font-size: 50px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-50 b {
  font-size: 50px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-51 {
  font-size: 51px !important;
}
.vertical-carousel .opera-title .size-51 i {
  font-size: 51px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-51 b {
  font-size: 51px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-52 {
  font-size: 52px !important;
}
.vertical-carousel .opera-title .size-52 i {
  font-size: 52px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-52 b {
  font-size: 52px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-53 {
  font-size: 53px !important;
}
.vertical-carousel .opera-title .size-53 i {
  font-size: 53px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-53 b {
  font-size: 53px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-54 {
  font-size: 54px !important;
}
.vertical-carousel .opera-title .size-54 i {
  font-size: 54px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-54 b {
  font-size: 54px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-55 {
  font-size: 55px !important;
}
.vertical-carousel .opera-title .size-55 i {
  font-size: 55px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-55 b {
  font-size: 55px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-56 {
  font-size: 56px !important;
}
.vertical-carousel .opera-title .size-56 i {
  font-size: 56px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-56 b {
  font-size: 56px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-57 {
  font-size: 57px !important;
}
.vertical-carousel .opera-title .size-57 i {
  font-size: 57px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-57 b {
  font-size: 57px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-58 {
  font-size: 58px !important;
}
.vertical-carousel .opera-title .size-58 i {
  font-size: 58px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-58 b {
  font-size: 58px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-59 {
  font-size: 59px !important;
}
.vertical-carousel .opera-title .size-59 i {
  font-size: 59px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-59 b {
  font-size: 59px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title .size-60 {
  font-size: 60px !important;
}
.vertical-carousel .opera-title .size-60 i {
  font-size: 60px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title .size-60 b {
  font-size: 60px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * {
  font-family: Canela;
  font-style: normal;
  font-weight: normal;
  font-size: 72px;
  line-height: 80px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .opera-title * {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #ffffff;
  }
}
.vertical-carousel .opera-title * a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.vertical-carousel .opera-title * b {
  font-weight: bold;
}
.vertical-carousel .opera-title * .size-8 {
  font-size: 8px !important;
}
.vertical-carousel .opera-title * .size-8 i {
  font-size: 8px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-8 b {
  font-size: 8px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-9 {
  font-size: 9px !important;
}
.vertical-carousel .opera-title * .size-9 i {
  font-size: 9px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-9 b {
  font-size: 9px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-10 {
  font-size: 10px !important;
}
.vertical-carousel .opera-title * .size-10 i {
  font-size: 10px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-10 b {
  font-size: 10px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-11 {
  font-size: 11px !important;
}
.vertical-carousel .opera-title * .size-11 i {
  font-size: 11px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-11 b {
  font-size: 11px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-12 {
  font-size: 12px !important;
}
.vertical-carousel .opera-title * .size-12 i {
  font-size: 12px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-12 b {
  font-size: 12px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-13 {
  font-size: 13px !important;
}
.vertical-carousel .opera-title * .size-13 i {
  font-size: 13px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-13 b {
  font-size: 13px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-14 {
  font-size: 14px !important;
}
.vertical-carousel .opera-title * .size-14 i {
  font-size: 14px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-14 b {
  font-size: 14px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-15 {
  font-size: 15px !important;
}
.vertical-carousel .opera-title * .size-15 i {
  font-size: 15px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-15 b {
  font-size: 15px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-16 {
  font-size: 16px !important;
}
.vertical-carousel .opera-title * .size-16 i {
  font-size: 16px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-16 b {
  font-size: 16px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-17 {
  font-size: 17px !important;
}
.vertical-carousel .opera-title * .size-17 i {
  font-size: 17px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-17 b {
  font-size: 17px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-18 {
  font-size: 18px !important;
}
.vertical-carousel .opera-title * .size-18 i {
  font-size: 18px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-18 b {
  font-size: 18px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-19 {
  font-size: 19px !important;
}
.vertical-carousel .opera-title * .size-19 i {
  font-size: 19px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-19 b {
  font-size: 19px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-20 {
  font-size: 20px !important;
}
.vertical-carousel .opera-title * .size-20 i {
  font-size: 20px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-20 b {
  font-size: 20px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-21 {
  font-size: 21px !important;
}
.vertical-carousel .opera-title * .size-21 i {
  font-size: 21px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-21 b {
  font-size: 21px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-22 {
  font-size: 22px !important;
}
.vertical-carousel .opera-title * .size-22 i {
  font-size: 22px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-22 b {
  font-size: 22px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-23 {
  font-size: 23px !important;
}
.vertical-carousel .opera-title * .size-23 i {
  font-size: 23px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-23 b {
  font-size: 23px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-24 {
  font-size: 24px !important;
}
.vertical-carousel .opera-title * .size-24 i {
  font-size: 24px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-24 b {
  font-size: 24px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-25 {
  font-size: 25px !important;
}
.vertical-carousel .opera-title * .size-25 i {
  font-size: 25px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-25 b {
  font-size: 25px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-26 {
  font-size: 26px !important;
}
.vertical-carousel .opera-title * .size-26 i {
  font-size: 26px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-26 b {
  font-size: 26px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-27 {
  font-size: 27px !important;
}
.vertical-carousel .opera-title * .size-27 i {
  font-size: 27px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-27 b {
  font-size: 27px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-28 {
  font-size: 28px !important;
}
.vertical-carousel .opera-title * .size-28 i {
  font-size: 28px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-28 b {
  font-size: 28px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-29 {
  font-size: 29px !important;
}
.vertical-carousel .opera-title * .size-29 i {
  font-size: 29px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-29 b {
  font-size: 29px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-30 {
  font-size: 30px !important;
}
.vertical-carousel .opera-title * .size-30 i {
  font-size: 30px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-30 b {
  font-size: 30px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-31 {
  font-size: 31px !important;
}
.vertical-carousel .opera-title * .size-31 i {
  font-size: 31px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-31 b {
  font-size: 31px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-32 {
  font-size: 32px !important;
}
.vertical-carousel .opera-title * .size-32 i {
  font-size: 32px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-32 b {
  font-size: 32px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-33 {
  font-size: 33px !important;
}
.vertical-carousel .opera-title * .size-33 i {
  font-size: 33px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-33 b {
  font-size: 33px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-34 {
  font-size: 34px !important;
}
.vertical-carousel .opera-title * .size-34 i {
  font-size: 34px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-34 b {
  font-size: 34px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-35 {
  font-size: 35px !important;
}
.vertical-carousel .opera-title * .size-35 i {
  font-size: 35px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-35 b {
  font-size: 35px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-36 {
  font-size: 36px !important;
}
.vertical-carousel .opera-title * .size-36 i {
  font-size: 36px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-36 b {
  font-size: 36px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-37 {
  font-size: 37px !important;
}
.vertical-carousel .opera-title * .size-37 i {
  font-size: 37px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-37 b {
  font-size: 37px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-38 {
  font-size: 38px !important;
}
.vertical-carousel .opera-title * .size-38 i {
  font-size: 38px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-38 b {
  font-size: 38px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-39 {
  font-size: 39px !important;
}
.vertical-carousel .opera-title * .size-39 i {
  font-size: 39px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-39 b {
  font-size: 39px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-40 {
  font-size: 40px !important;
}
.vertical-carousel .opera-title * .size-40 i {
  font-size: 40px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-40 b {
  font-size: 40px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-41 {
  font-size: 41px !important;
}
.vertical-carousel .opera-title * .size-41 i {
  font-size: 41px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-41 b {
  font-size: 41px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-42 {
  font-size: 42px !important;
}
.vertical-carousel .opera-title * .size-42 i {
  font-size: 42px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-42 b {
  font-size: 42px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-43 {
  font-size: 43px !important;
}
.vertical-carousel .opera-title * .size-43 i {
  font-size: 43px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-43 b {
  font-size: 43px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-44 {
  font-size: 44px !important;
}
.vertical-carousel .opera-title * .size-44 i {
  font-size: 44px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-44 b {
  font-size: 44px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-45 {
  font-size: 45px !important;
}
.vertical-carousel .opera-title * .size-45 i {
  font-size: 45px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-45 b {
  font-size: 45px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-46 {
  font-size: 46px !important;
}
.vertical-carousel .opera-title * .size-46 i {
  font-size: 46px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-46 b {
  font-size: 46px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-47 {
  font-size: 47px !important;
}
.vertical-carousel .opera-title * .size-47 i {
  font-size: 47px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-47 b {
  font-size: 47px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-48 {
  font-size: 48px !important;
}
.vertical-carousel .opera-title * .size-48 i {
  font-size: 48px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-48 b {
  font-size: 48px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-49 {
  font-size: 49px !important;
}
.vertical-carousel .opera-title * .size-49 i {
  font-size: 49px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-49 b {
  font-size: 49px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-50 {
  font-size: 50px !important;
}
.vertical-carousel .opera-title * .size-50 i {
  font-size: 50px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-50 b {
  font-size: 50px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-51 {
  font-size: 51px !important;
}
.vertical-carousel .opera-title * .size-51 i {
  font-size: 51px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-51 b {
  font-size: 51px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-52 {
  font-size: 52px !important;
}
.vertical-carousel .opera-title * .size-52 i {
  font-size: 52px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-52 b {
  font-size: 52px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-53 {
  font-size: 53px !important;
}
.vertical-carousel .opera-title * .size-53 i {
  font-size: 53px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-53 b {
  font-size: 53px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-54 {
  font-size: 54px !important;
}
.vertical-carousel .opera-title * .size-54 i {
  font-size: 54px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-54 b {
  font-size: 54px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-55 {
  font-size: 55px !important;
}
.vertical-carousel .opera-title * .size-55 i {
  font-size: 55px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-55 b {
  font-size: 55px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-56 {
  font-size: 56px !important;
}
.vertical-carousel .opera-title * .size-56 i {
  font-size: 56px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-56 b {
  font-size: 56px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-57 {
  font-size: 57px !important;
}
.vertical-carousel .opera-title * .size-57 i {
  font-size: 57px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-57 b {
  font-size: 57px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-58 {
  font-size: 58px !important;
}
.vertical-carousel .opera-title * .size-58 i {
  font-size: 58px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-58 b {
  font-size: 58px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-59 {
  font-size: 59px !important;
}
.vertical-carousel .opera-title * .size-59 i {
  font-size: 59px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-59 b {
  font-size: 59px !important;
  font-style: bold !important;
}
.vertical-carousel .opera-title * .size-60 {
  font-size: 60px !important;
}
.vertical-carousel .opera-title * .size-60 i {
  font-size: 60px !important;
  font-style: italic !important;
}
.vertical-carousel .opera-title * .size-60 b {
  font-size: 60px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #ffffff;
}
.vertical-carousel .solo-title .size-8 {
  font-size: 8px !important;
}
.vertical-carousel .solo-title .size-8 i {
  font-size: 8px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-8 b {
  font-size: 8px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-9 {
  font-size: 9px !important;
}
.vertical-carousel .solo-title .size-9 i {
  font-size: 9px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-9 b {
  font-size: 9px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-10 {
  font-size: 10px !important;
}
.vertical-carousel .solo-title .size-10 i {
  font-size: 10px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-10 b {
  font-size: 10px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-11 {
  font-size: 11px !important;
}
.vertical-carousel .solo-title .size-11 i {
  font-size: 11px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-11 b {
  font-size: 11px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-12 {
  font-size: 12px !important;
}
.vertical-carousel .solo-title .size-12 i {
  font-size: 12px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-12 b {
  font-size: 12px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-13 {
  font-size: 13px !important;
}
.vertical-carousel .solo-title .size-13 i {
  font-size: 13px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-13 b {
  font-size: 13px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-14 {
  font-size: 14px !important;
}
.vertical-carousel .solo-title .size-14 i {
  font-size: 14px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-14 b {
  font-size: 14px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-15 {
  font-size: 15px !important;
}
.vertical-carousel .solo-title .size-15 i {
  font-size: 15px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-15 b {
  font-size: 15px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-16 {
  font-size: 16px !important;
}
.vertical-carousel .solo-title .size-16 i {
  font-size: 16px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-16 b {
  font-size: 16px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-17 {
  font-size: 17px !important;
}
.vertical-carousel .solo-title .size-17 i {
  font-size: 17px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-17 b {
  font-size: 17px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-18 {
  font-size: 18px !important;
}
.vertical-carousel .solo-title .size-18 i {
  font-size: 18px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-18 b {
  font-size: 18px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-19 {
  font-size: 19px !important;
}
.vertical-carousel .solo-title .size-19 i {
  font-size: 19px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-19 b {
  font-size: 19px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-20 {
  font-size: 20px !important;
}
.vertical-carousel .solo-title .size-20 i {
  font-size: 20px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-20 b {
  font-size: 20px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-21 {
  font-size: 21px !important;
}
.vertical-carousel .solo-title .size-21 i {
  font-size: 21px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-21 b {
  font-size: 21px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-22 {
  font-size: 22px !important;
}
.vertical-carousel .solo-title .size-22 i {
  font-size: 22px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-22 b {
  font-size: 22px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-23 {
  font-size: 23px !important;
}
.vertical-carousel .solo-title .size-23 i {
  font-size: 23px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-23 b {
  font-size: 23px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-24 {
  font-size: 24px !important;
}
.vertical-carousel .solo-title .size-24 i {
  font-size: 24px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-24 b {
  font-size: 24px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-25 {
  font-size: 25px !important;
}
.vertical-carousel .solo-title .size-25 i {
  font-size: 25px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-25 b {
  font-size: 25px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-26 {
  font-size: 26px !important;
}
.vertical-carousel .solo-title .size-26 i {
  font-size: 26px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-26 b {
  font-size: 26px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-27 {
  font-size: 27px !important;
}
.vertical-carousel .solo-title .size-27 i {
  font-size: 27px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-27 b {
  font-size: 27px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-28 {
  font-size: 28px !important;
}
.vertical-carousel .solo-title .size-28 i {
  font-size: 28px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-28 b {
  font-size: 28px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-29 {
  font-size: 29px !important;
}
.vertical-carousel .solo-title .size-29 i {
  font-size: 29px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-29 b {
  font-size: 29px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-30 {
  font-size: 30px !important;
}
.vertical-carousel .solo-title .size-30 i {
  font-size: 30px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-30 b {
  font-size: 30px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-31 {
  font-size: 31px !important;
}
.vertical-carousel .solo-title .size-31 i {
  font-size: 31px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-31 b {
  font-size: 31px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-32 {
  font-size: 32px !important;
}
.vertical-carousel .solo-title .size-32 i {
  font-size: 32px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-32 b {
  font-size: 32px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-33 {
  font-size: 33px !important;
}
.vertical-carousel .solo-title .size-33 i {
  font-size: 33px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-33 b {
  font-size: 33px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-34 {
  font-size: 34px !important;
}
.vertical-carousel .solo-title .size-34 i {
  font-size: 34px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-34 b {
  font-size: 34px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-35 {
  font-size: 35px !important;
}
.vertical-carousel .solo-title .size-35 i {
  font-size: 35px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-35 b {
  font-size: 35px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-36 {
  font-size: 36px !important;
}
.vertical-carousel .solo-title .size-36 i {
  font-size: 36px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-36 b {
  font-size: 36px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-37 {
  font-size: 37px !important;
}
.vertical-carousel .solo-title .size-37 i {
  font-size: 37px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-37 b {
  font-size: 37px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-38 {
  font-size: 38px !important;
}
.vertical-carousel .solo-title .size-38 i {
  font-size: 38px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-38 b {
  font-size: 38px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-39 {
  font-size: 39px !important;
}
.vertical-carousel .solo-title .size-39 i {
  font-size: 39px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-39 b {
  font-size: 39px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-40 {
  font-size: 40px !important;
}
.vertical-carousel .solo-title .size-40 i {
  font-size: 40px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-40 b {
  font-size: 40px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-41 {
  font-size: 41px !important;
}
.vertical-carousel .solo-title .size-41 i {
  font-size: 41px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-41 b {
  font-size: 41px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-42 {
  font-size: 42px !important;
}
.vertical-carousel .solo-title .size-42 i {
  font-size: 42px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-42 b {
  font-size: 42px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-43 {
  font-size: 43px !important;
}
.vertical-carousel .solo-title .size-43 i {
  font-size: 43px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-43 b {
  font-size: 43px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-44 {
  font-size: 44px !important;
}
.vertical-carousel .solo-title .size-44 i {
  font-size: 44px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-44 b {
  font-size: 44px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-45 {
  font-size: 45px !important;
}
.vertical-carousel .solo-title .size-45 i {
  font-size: 45px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-45 b {
  font-size: 45px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-46 {
  font-size: 46px !important;
}
.vertical-carousel .solo-title .size-46 i {
  font-size: 46px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-46 b {
  font-size: 46px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-47 {
  font-size: 47px !important;
}
.vertical-carousel .solo-title .size-47 i {
  font-size: 47px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-47 b {
  font-size: 47px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-48 {
  font-size: 48px !important;
}
.vertical-carousel .solo-title .size-48 i {
  font-size: 48px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-48 b {
  font-size: 48px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-49 {
  font-size: 49px !important;
}
.vertical-carousel .solo-title .size-49 i {
  font-size: 49px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-49 b {
  font-size: 49px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-50 {
  font-size: 50px !important;
}
.vertical-carousel .solo-title .size-50 i {
  font-size: 50px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-50 b {
  font-size: 50px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-51 {
  font-size: 51px !important;
}
.vertical-carousel .solo-title .size-51 i {
  font-size: 51px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-51 b {
  font-size: 51px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-52 {
  font-size: 52px !important;
}
.vertical-carousel .solo-title .size-52 i {
  font-size: 52px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-52 b {
  font-size: 52px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-53 {
  font-size: 53px !important;
}
.vertical-carousel .solo-title .size-53 i {
  font-size: 53px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-53 b {
  font-size: 53px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-54 {
  font-size: 54px !important;
}
.vertical-carousel .solo-title .size-54 i {
  font-size: 54px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-54 b {
  font-size: 54px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-55 {
  font-size: 55px !important;
}
.vertical-carousel .solo-title .size-55 i {
  font-size: 55px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-55 b {
  font-size: 55px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-56 {
  font-size: 56px !important;
}
.vertical-carousel .solo-title .size-56 i {
  font-size: 56px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-56 b {
  font-size: 56px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-57 {
  font-size: 57px !important;
}
.vertical-carousel .solo-title .size-57 i {
  font-size: 57px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-57 b {
  font-size: 57px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-58 {
  font-size: 58px !important;
}
.vertical-carousel .solo-title .size-58 i {
  font-size: 58px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-58 b {
  font-size: 58px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-59 {
  font-size: 59px !important;
}
.vertical-carousel .solo-title .size-59 i {
  font-size: 59px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-59 b {
  font-size: 59px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title .size-60 {
  font-size: 60px !important;
}
.vertical-carousel .solo-title .size-60 i {
  font-size: 60px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title .size-60 b {
  font-size: 60px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * {
  font-family: Canela;
  font-style: normal;
  font-weight: normal;
  font-size: 72px;
  line-height: 80px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .solo-title * {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #ffffff;
  }
}
.vertical-carousel .solo-title * a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.vertical-carousel .solo-title * b {
  font-weight: bold;
}
.vertical-carousel .solo-title * .size-8 {
  font-size: 8px !important;
}
.vertical-carousel .solo-title * .size-8 i {
  font-size: 8px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-8 b {
  font-size: 8px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-9 {
  font-size: 9px !important;
}
.vertical-carousel .solo-title * .size-9 i {
  font-size: 9px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-9 b {
  font-size: 9px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-10 {
  font-size: 10px !important;
}
.vertical-carousel .solo-title * .size-10 i {
  font-size: 10px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-10 b {
  font-size: 10px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-11 {
  font-size: 11px !important;
}
.vertical-carousel .solo-title * .size-11 i {
  font-size: 11px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-11 b {
  font-size: 11px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-12 {
  font-size: 12px !important;
}
.vertical-carousel .solo-title * .size-12 i {
  font-size: 12px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-12 b {
  font-size: 12px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-13 {
  font-size: 13px !important;
}
.vertical-carousel .solo-title * .size-13 i {
  font-size: 13px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-13 b {
  font-size: 13px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-14 {
  font-size: 14px !important;
}
.vertical-carousel .solo-title * .size-14 i {
  font-size: 14px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-14 b {
  font-size: 14px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-15 {
  font-size: 15px !important;
}
.vertical-carousel .solo-title * .size-15 i {
  font-size: 15px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-15 b {
  font-size: 15px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-16 {
  font-size: 16px !important;
}
.vertical-carousel .solo-title * .size-16 i {
  font-size: 16px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-16 b {
  font-size: 16px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-17 {
  font-size: 17px !important;
}
.vertical-carousel .solo-title * .size-17 i {
  font-size: 17px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-17 b {
  font-size: 17px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-18 {
  font-size: 18px !important;
}
.vertical-carousel .solo-title * .size-18 i {
  font-size: 18px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-18 b {
  font-size: 18px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-19 {
  font-size: 19px !important;
}
.vertical-carousel .solo-title * .size-19 i {
  font-size: 19px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-19 b {
  font-size: 19px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-20 {
  font-size: 20px !important;
}
.vertical-carousel .solo-title * .size-20 i {
  font-size: 20px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-20 b {
  font-size: 20px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-21 {
  font-size: 21px !important;
}
.vertical-carousel .solo-title * .size-21 i {
  font-size: 21px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-21 b {
  font-size: 21px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-22 {
  font-size: 22px !important;
}
.vertical-carousel .solo-title * .size-22 i {
  font-size: 22px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-22 b {
  font-size: 22px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-23 {
  font-size: 23px !important;
}
.vertical-carousel .solo-title * .size-23 i {
  font-size: 23px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-23 b {
  font-size: 23px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-24 {
  font-size: 24px !important;
}
.vertical-carousel .solo-title * .size-24 i {
  font-size: 24px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-24 b {
  font-size: 24px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-25 {
  font-size: 25px !important;
}
.vertical-carousel .solo-title * .size-25 i {
  font-size: 25px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-25 b {
  font-size: 25px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-26 {
  font-size: 26px !important;
}
.vertical-carousel .solo-title * .size-26 i {
  font-size: 26px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-26 b {
  font-size: 26px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-27 {
  font-size: 27px !important;
}
.vertical-carousel .solo-title * .size-27 i {
  font-size: 27px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-27 b {
  font-size: 27px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-28 {
  font-size: 28px !important;
}
.vertical-carousel .solo-title * .size-28 i {
  font-size: 28px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-28 b {
  font-size: 28px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-29 {
  font-size: 29px !important;
}
.vertical-carousel .solo-title * .size-29 i {
  font-size: 29px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-29 b {
  font-size: 29px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-30 {
  font-size: 30px !important;
}
.vertical-carousel .solo-title * .size-30 i {
  font-size: 30px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-30 b {
  font-size: 30px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-31 {
  font-size: 31px !important;
}
.vertical-carousel .solo-title * .size-31 i {
  font-size: 31px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-31 b {
  font-size: 31px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-32 {
  font-size: 32px !important;
}
.vertical-carousel .solo-title * .size-32 i {
  font-size: 32px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-32 b {
  font-size: 32px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-33 {
  font-size: 33px !important;
}
.vertical-carousel .solo-title * .size-33 i {
  font-size: 33px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-33 b {
  font-size: 33px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-34 {
  font-size: 34px !important;
}
.vertical-carousel .solo-title * .size-34 i {
  font-size: 34px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-34 b {
  font-size: 34px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-35 {
  font-size: 35px !important;
}
.vertical-carousel .solo-title * .size-35 i {
  font-size: 35px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-35 b {
  font-size: 35px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-36 {
  font-size: 36px !important;
}
.vertical-carousel .solo-title * .size-36 i {
  font-size: 36px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-36 b {
  font-size: 36px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-37 {
  font-size: 37px !important;
}
.vertical-carousel .solo-title * .size-37 i {
  font-size: 37px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-37 b {
  font-size: 37px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-38 {
  font-size: 38px !important;
}
.vertical-carousel .solo-title * .size-38 i {
  font-size: 38px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-38 b {
  font-size: 38px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-39 {
  font-size: 39px !important;
}
.vertical-carousel .solo-title * .size-39 i {
  font-size: 39px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-39 b {
  font-size: 39px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-40 {
  font-size: 40px !important;
}
.vertical-carousel .solo-title * .size-40 i {
  font-size: 40px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-40 b {
  font-size: 40px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-41 {
  font-size: 41px !important;
}
.vertical-carousel .solo-title * .size-41 i {
  font-size: 41px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-41 b {
  font-size: 41px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-42 {
  font-size: 42px !important;
}
.vertical-carousel .solo-title * .size-42 i {
  font-size: 42px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-42 b {
  font-size: 42px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-43 {
  font-size: 43px !important;
}
.vertical-carousel .solo-title * .size-43 i {
  font-size: 43px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-43 b {
  font-size: 43px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-44 {
  font-size: 44px !important;
}
.vertical-carousel .solo-title * .size-44 i {
  font-size: 44px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-44 b {
  font-size: 44px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-45 {
  font-size: 45px !important;
}
.vertical-carousel .solo-title * .size-45 i {
  font-size: 45px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-45 b {
  font-size: 45px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-46 {
  font-size: 46px !important;
}
.vertical-carousel .solo-title * .size-46 i {
  font-size: 46px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-46 b {
  font-size: 46px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-47 {
  font-size: 47px !important;
}
.vertical-carousel .solo-title * .size-47 i {
  font-size: 47px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-47 b {
  font-size: 47px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-48 {
  font-size: 48px !important;
}
.vertical-carousel .solo-title * .size-48 i {
  font-size: 48px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-48 b {
  font-size: 48px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-49 {
  font-size: 49px !important;
}
.vertical-carousel .solo-title * .size-49 i {
  font-size: 49px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-49 b {
  font-size: 49px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-50 {
  font-size: 50px !important;
}
.vertical-carousel .solo-title * .size-50 i {
  font-size: 50px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-50 b {
  font-size: 50px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-51 {
  font-size: 51px !important;
}
.vertical-carousel .solo-title * .size-51 i {
  font-size: 51px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-51 b {
  font-size: 51px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-52 {
  font-size: 52px !important;
}
.vertical-carousel .solo-title * .size-52 i {
  font-size: 52px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-52 b {
  font-size: 52px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-53 {
  font-size: 53px !important;
}
.vertical-carousel .solo-title * .size-53 i {
  font-size: 53px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-53 b {
  font-size: 53px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-54 {
  font-size: 54px !important;
}
.vertical-carousel .solo-title * .size-54 i {
  font-size: 54px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-54 b {
  font-size: 54px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-55 {
  font-size: 55px !important;
}
.vertical-carousel .solo-title * .size-55 i {
  font-size: 55px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-55 b {
  font-size: 55px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-56 {
  font-size: 56px !important;
}
.vertical-carousel .solo-title * .size-56 i {
  font-size: 56px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-56 b {
  font-size: 56px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-57 {
  font-size: 57px !important;
}
.vertical-carousel .solo-title * .size-57 i {
  font-size: 57px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-57 b {
  font-size: 57px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-58 {
  font-size: 58px !important;
}
.vertical-carousel .solo-title * .size-58 i {
  font-size: 58px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-58 b {
  font-size: 58px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-59 {
  font-size: 59px !important;
}
.vertical-carousel .solo-title * .size-59 i {
  font-size: 59px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-59 b {
  font-size: 59px !important;
  font-style: bold !important;
}
.vertical-carousel .solo-title * .size-60 {
  font-size: 60px !important;
}
.vertical-carousel .solo-title * .size-60 i {
  font-size: 60px !important;
  font-style: italic !important;
}
.vertical-carousel .solo-title * .size-60 b {
  font-size: 60px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title p {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: block;
}
.vertical-carousel .vertical-carousel-center-text-title span,
.vertical-carousel .vertical-carousel-center-text-title i,
.vertical-carousel .vertical-carousel-center-text-title b {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: contents;
}
.vertical-carousel .vertical-carousel-center-text-title .size-8 {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-8 {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-8 i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-8 i {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-8 b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-8 b {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-9 {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-9 {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-9 i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-9 i {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-9 b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-9 b {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-10 {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-10 {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-10 i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-10 i {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-10 b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-10 b {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-11 {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-11 {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-11 i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-11 i {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-11 b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-11 b {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-12 {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-12 {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-12 i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-12 i {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-12 b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-12 b {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-13 {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-13 {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-13 i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-13 i {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-13 b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-13 b {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-14 {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-14 {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-14 i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-14 i {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-14 b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-14 b {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-15 {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-15 {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-15 i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-15 i {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-15 b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-15 b {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-16 {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-16 {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-16 i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-16 i {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-16 b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-16 b {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-17 {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-17 {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-17 i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-17 i {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-17 b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-17 b {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-18 {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-18 {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-18 i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-18 i {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-18 b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-18 b {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-19 {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-19 {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-19 i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-19 i {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-19 b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-19 b {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-20 {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-20 {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-20 i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-20 i {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-20 b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-20 b {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-21 {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-21 {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-21 i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-21 i {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-21 b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-21 b {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-22 {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-22 {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-22 i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-22 i {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-22 b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-22 b {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-23 {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-23 {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-23 i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-23 i {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-23 b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-23 b {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-24 {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-24 {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-24 i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-24 i {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-24 b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-24 b {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-25 {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-25 {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-25 i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-25 i {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-25 b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-25 b {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-26 {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-26 {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-26 i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-26 i {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-26 b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-26 b {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-27 {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-27 {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-27 i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-27 i {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-27 b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-27 b {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-28 {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-28 {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-28 i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-28 i {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-28 b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-28 b {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-29 {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-29 {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-29 i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-29 i {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-29 b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-29 b {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-30 {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-30 {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-30 i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-30 i {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-30 b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-30 b {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-31 {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-31 {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-31 i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-31 i {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-31 b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-31 b {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-32 {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-32 {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-32 i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-32 i {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-32 b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-32 b {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-33 {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-33 {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-33 i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-33 i {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-33 b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-33 b {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-34 {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-34 {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-34 i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-34 i {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-34 b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-34 b {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-35 {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-35 {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-35 i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-35 i {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-35 b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-35 b {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-36 {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-36 {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-36 i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-36 i {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-36 b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-36 b {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-37 {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-37 {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-37 i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-37 i {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-37 b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-37 b {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-38 {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-38 {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-38 i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-38 i {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-38 b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-38 b {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-39 {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-39 {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-39 i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-39 i {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-39 b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-39 b {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-40 {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-40 {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-40 i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-40 i {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-40 b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-40 b {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-41 {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-41 {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-41 i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-41 i {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-41 b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-41 b {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-42 {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-42 {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-42 i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-42 i {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-42 b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-42 b {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-43 {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-43 {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-43 i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-43 i {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-43 b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-43 b {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-44 {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-44 {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-44 i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-44 i {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-44 b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-44 b {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-45 {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-45 {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-45 i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-45 i {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-45 b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-45 b {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-46 {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-46 {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-46 i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-46 i {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-46 b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-46 b {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-47 {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-47 {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-47 i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-47 i {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-47 b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-47 b {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-48 {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-48 {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-48 i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-48 i {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-48 b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-48 b {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-49 {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-49 {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-49 i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-49 i {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-49 b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-49 b {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-50 {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-50 {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-50 i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-50 i {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-50 b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-50 b {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-51 {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-51 {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-51 i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-51 i {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-51 b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-51 b {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-52 {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-52 {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-52 i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-52 i {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-52 b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-52 b {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-53 {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-53 {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-53 i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-53 i {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-53 b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-53 b {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-54 {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-54 {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-54 i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-54 i {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-54 b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-54 b {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-55 {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-55 {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-55 i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-55 i {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-55 b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-55 b {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-56 {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-56 {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-56 i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-56 i {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-56 b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-56 b {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-57 {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-57 {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-57 i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-57 i {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-57 b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-57 b {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-58 {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-58 {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-58 i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-58 i {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-58 b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-58 b {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-59 {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-59 {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-59 i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-59 i {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-59 b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-59 b {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-60 {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-60 {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-60 i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-60 i {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title .size-60 b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title .size-60 b {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b span {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b span {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title b i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title b i {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i span {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i span {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title i b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title i b {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only {
  display: block !important;
}
@media screen and (min-width: 1025px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only {
    display: none !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only p {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: block;
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only span,
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i,
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: contents;
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-8 {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-8 {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-8 i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-8 i {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-8 b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-8 b {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-9 {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-9 {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-9 i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-9 i {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-9 b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-9 b {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-10 {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-10 {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-10 i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-10 i {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-10 b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-10 b {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-11 {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-11 {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-11 i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-11 i {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-11 b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-11 b {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-12 {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-12 {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-12 i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-12 i {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-12 b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-12 b {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-13 {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-13 {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-13 i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-13 i {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-13 b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-13 b {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-14 {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-14 {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-14 i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-14 i {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-14 b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-14 b {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-15 {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-15 {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-15 i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-15 i {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-15 b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-15 b {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-16 {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-16 {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-16 i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-16 i {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-16 b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-16 b {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-17 {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-17 {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-17 i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-17 i {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-17 b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-17 b {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-18 {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-18 {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-18 i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-18 i {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-18 b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-18 b {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-19 {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-19 {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-19 i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-19 i {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-19 b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-19 b {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-20 {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-20 {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-20 i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-20 i {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-20 b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-20 b {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-21 {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-21 {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-21 i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-21 i {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-21 b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-21 b {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-22 {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-22 {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-22 i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-22 i {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-22 b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-22 b {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-23 {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-23 {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-23 i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-23 i {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-23 b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-23 b {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-24 {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-24 {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-24 i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-24 i {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-24 b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-24 b {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-25 {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-25 {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-25 i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-25 i {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-25 b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-25 b {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-26 {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-26 {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-26 i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-26 i {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-26 b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-26 b {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-27 {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-27 {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-27 i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-27 i {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-27 b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-27 b {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-28 {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-28 {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-28 i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-28 i {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-28 b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-28 b {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-29 {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-29 {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-29 i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-29 i {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-29 b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-29 b {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-30 {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-30 {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-30 i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-30 i {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-30 b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-30 b {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-31 {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-31 {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-31 i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-31 i {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-31 b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-31 b {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-32 {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-32 {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-32 i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-32 i {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-32 b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-32 b {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-33 {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-33 {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-33 i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-33 i {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-33 b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-33 b {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-34 {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-34 {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-34 i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-34 i {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-34 b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-34 b {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-35 {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-35 {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-35 i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-35 i {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-35 b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-35 b {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-36 {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-36 {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-36 i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-36 i {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-36 b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-36 b {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-37 {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-37 {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-37 i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-37 i {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-37 b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-37 b {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-38 {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-38 {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-38 i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-38 i {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-38 b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-38 b {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-39 {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-39 {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-39 i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-39 i {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-39 b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-39 b {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-40 {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-40 {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-40 i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-40 i {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-40 b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-40 b {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-41 {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-41 {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-41 i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-41 i {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-41 b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-41 b {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-42 {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-42 {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-42 i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-42 i {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-42 b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-42 b {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-43 {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-43 {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-43 i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-43 i {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-43 b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-43 b {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-44 {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-44 {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-44 i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-44 i {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-44 b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-44 b {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-45 {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-45 {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-45 i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-45 i {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-45 b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-45 b {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-46 {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-46 {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-46 i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-46 i {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-46 b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-46 b {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-47 {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-47 {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-47 i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-47 i {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-47 b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-47 b {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-48 {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-48 {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-48 i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-48 i {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-48 b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-48 b {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-49 {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-49 {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-49 i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-49 i {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-49 b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-49 b {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-50 {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-50 {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-50 i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-50 i {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-50 b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-50 b {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-51 {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-51 {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-51 i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-51 i {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-51 b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-51 b {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-52 {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-52 {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-52 i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-52 i {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-52 b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-52 b {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-53 {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-53 {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-53 i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-53 i {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-53 b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-53 b {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-54 {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-54 {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-54 i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-54 i {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-54 b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-54 b {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-55 {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-55 {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-55 i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-55 i {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-55 b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-55 b {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-56 {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-56 {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-56 i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-56 i {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-56 b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-56 b {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-57 {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-57 {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-57 i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-57 i {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-57 b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-57 b {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-58 {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-58 {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-58 i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-58 i {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-58 b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-58 b {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-59 {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-59 {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-59 i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-59 i {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-59 b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-59 b {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-60 {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-60 {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-60 i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-60 i {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-60 b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only .size-60 b {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b span {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only b i {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i span {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.mobile-only i b {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.mobile-only p,
.vertical-carousel .vertical-carousel-center-text-title.mobile-only span {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only {
    display: block !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only p {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: block;
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only span,
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i,
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: contents;
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-8 {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-8 {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-8 i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-8 i {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-8 b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-8 b {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 16px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 14px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-9 {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-9 {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-9 i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-9 i {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-9 b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-9 b {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 17px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 15px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-10 {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-10 {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-10 i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-10 i {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-10 b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-10 b {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 18px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 16px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-11 {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-11 {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-11 i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-11 i {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-11 b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-11 b {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 19px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 17px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-12 {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-12 {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-12 i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-12 i {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-12 b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-12 b {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 20px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 18px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-13 {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-13 {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-13 i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-13 i {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-13 b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-13 b {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 21px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 19px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-14 {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-14 {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-14 i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-14 i {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-14 b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-14 b {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 22px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 20px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-15 {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-15 {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-15 i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-15 i {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-15 b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-15 b {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 23px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 21px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-16 {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-16 {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-16 i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-16 i {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-16 b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-16 b {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 24px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 22px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-17 {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-17 {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-17 i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-17 i {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-17 b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-17 b {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 25px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 23px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-18 {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-18 {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-18 i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-18 i {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-18 b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-18 b {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 26px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 24px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-19 {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-19 {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-19 i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-19 i {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-19 b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-19 b {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 27px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 25px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-20 {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-20 {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-20 i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-20 i {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-20 b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-20 b {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 28px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 26px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-21 {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-21 {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-21 i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-21 i {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-21 b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-21 b {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 29px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 27px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-22 {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-22 {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-22 i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-22 i {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-22 b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-22 b {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 30px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 28px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-23 {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-23 {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-23 i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-23 i {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-23 b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-23 b {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 31px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 29px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-24 {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-24 {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-24 i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-24 i {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-24 b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-24 b {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 32px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 30px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-25 {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-25 {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-25 i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-25 i {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-25 b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-25 b {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 33px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 31px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-26 {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-26 {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-26 i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-26 i {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-26 b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-26 b {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 34px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 32px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-27 {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-27 {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-27 i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-27 i {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-27 b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-27 b {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 35px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 33px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-28 {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-28 {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-28 i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-28 i {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-28 b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-28 b {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 36px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 34px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-29 {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-29 {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-29 i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-29 i {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-29 b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-29 b {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 37px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 35px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-30 {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-30 {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-30 i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-30 i {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-30 b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-30 b {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 38px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 36px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-31 {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-31 {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-31 i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-31 i {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-31 b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-31 b {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 39px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 37px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-32 {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-32 {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-32 i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-32 i {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-32 b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-32 b {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 40px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 38px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-33 {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-33 {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-33 i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-33 i {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-33 b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-33 b {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 41px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 39px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-34 {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-34 {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-34 i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-34 i {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-34 b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-34 b {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 42px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 40px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-35 {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-35 {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-35 i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-35 i {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-35 b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-35 b {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 43px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 41px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-36 {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-36 {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-36 i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-36 i {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-36 b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-36 b {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 44px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 42px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-37 {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-37 {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-37 i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-37 i {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-37 b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-37 b {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 45px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 43px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-38 {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-38 {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-38 i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-38 i {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-38 b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-38 b {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 46px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 44px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-39 {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-39 {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-39 i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-39 i {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-39 b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-39 b {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 47px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 45px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-40 {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-40 {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-40 i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-40 i {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-40 b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-40 b {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 48px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 46px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-41 {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-41 {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-41 i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-41 i {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-41 b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-41 b {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 49px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 47px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-42 {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-42 {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-42 i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-42 i {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-42 b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-42 b {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 50px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 48px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-43 {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-43 {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-43 i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-43 i {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-43 b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-43 b {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 51px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 49px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-44 {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-44 {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-44 i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-44 i {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-44 b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-44 b {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 52px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 50px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-45 {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-45 {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-45 i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-45 i {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-45 b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-45 b {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 53px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 51px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-46 {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-46 {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-46 i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-46 i {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-46 b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-46 b {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 54px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 52px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-47 {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-47 {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-47 i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-47 i {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-47 b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-47 b {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 55px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 53px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-48 {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-48 {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-48 i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-48 i {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-48 b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-48 b {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 56px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 54px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-49 {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-49 {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-49 i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-49 i {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-49 b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-49 b {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 57px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 55px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-50 {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-50 {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-50 i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-50 i {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-50 b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-50 b {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 58px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 56px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-51 {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-51 {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-51 i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-51 i {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-51 b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-51 b {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 59px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 57px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-52 {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-52 {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-52 i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-52 i {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-52 b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-52 b {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 60px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 58px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-53 {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-53 {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-53 i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-53 i {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-53 b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-53 b {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 61px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 59px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-54 {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-54 {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-54 i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-54 i {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-54 b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-54 b {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 62px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 60px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-55 {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-55 {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-55 i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-55 i {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-55 b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-55 b {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 63px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 61px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-56 {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-56 {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-56 i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-56 i {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-56 b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-56 b {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 64px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 62px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-57 {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-57 {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-57 i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-57 i {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-57 b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-57 b {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 65px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 63px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-58 {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-58 {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-58 i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-58 i {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-58 b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-58 b {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 66px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 64px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-59 {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-59 {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-59 i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-59 i {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-59 b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-59 b {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 67px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 65px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-60 {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-60 {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-60 i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-60 i {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-60 b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only .size-60 b {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b span {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only b i {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i span {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
  line-height: 68px !important;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-title.desktop-only i b {
    line-height: 66px !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-title.desktop-only p {
  margin-bottom: 0;
  padding-bottom: 0;
}
.vertical-carousel .vertical-carousel-center-text-title .size-8 {
  font-size: 8px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-8 i {
  font-size: 8px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-8 b {
  font-size: 8px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-9 {
  font-size: 9px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-9 i {
  font-size: 9px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-9 b {
  font-size: 9px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-10 {
  font-size: 10px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-10 i {
  font-size: 10px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-10 b {
  font-size: 10px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-11 {
  font-size: 11px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-11 i {
  font-size: 11px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-11 b {
  font-size: 11px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-12 {
  font-size: 12px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-12 i {
  font-size: 12px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-12 b {
  font-size: 12px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-13 {
  font-size: 13px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-13 i {
  font-size: 13px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-13 b {
  font-size: 13px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-14 {
  font-size: 14px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-14 i {
  font-size: 14px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-14 b {
  font-size: 14px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-15 {
  font-size: 15px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-15 i {
  font-size: 15px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-15 b {
  font-size: 15px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-16 {
  font-size: 16px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-16 i {
  font-size: 16px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-16 b {
  font-size: 16px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-17 {
  font-size: 17px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-17 i {
  font-size: 17px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-17 b {
  font-size: 17px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-18 {
  font-size: 18px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-18 i {
  font-size: 18px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-18 b {
  font-size: 18px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-19 {
  font-size: 19px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-19 i {
  font-size: 19px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-19 b {
  font-size: 19px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-20 {
  font-size: 20px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-20 i {
  font-size: 20px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-20 b {
  font-size: 20px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-21 {
  font-size: 21px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-21 i {
  font-size: 21px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-21 b {
  font-size: 21px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-22 {
  font-size: 22px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-22 i {
  font-size: 22px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-22 b {
  font-size: 22px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-23 {
  font-size: 23px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-23 i {
  font-size: 23px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-23 b {
  font-size: 23px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-24 {
  font-size: 24px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-24 i {
  font-size: 24px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-24 b {
  font-size: 24px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-25 {
  font-size: 25px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-25 i {
  font-size: 25px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-25 b {
  font-size: 25px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-26 {
  font-size: 26px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-26 i {
  font-size: 26px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-26 b {
  font-size: 26px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-27 {
  font-size: 27px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-27 i {
  font-size: 27px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-27 b {
  font-size: 27px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-28 {
  font-size: 28px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-28 i {
  font-size: 28px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-28 b {
  font-size: 28px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-29 {
  font-size: 29px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-29 i {
  font-size: 29px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-29 b {
  font-size: 29px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-30 {
  font-size: 30px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-30 i {
  font-size: 30px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-30 b {
  font-size: 30px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-31 {
  font-size: 31px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-31 i {
  font-size: 31px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-31 b {
  font-size: 31px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-32 {
  font-size: 32px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-32 i {
  font-size: 32px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-32 b {
  font-size: 32px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-33 {
  font-size: 33px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-33 i {
  font-size: 33px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-33 b {
  font-size: 33px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-34 {
  font-size: 34px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-34 i {
  font-size: 34px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-34 b {
  font-size: 34px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-35 {
  font-size: 35px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-35 i {
  font-size: 35px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-35 b {
  font-size: 35px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-36 {
  font-size: 36px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-36 i {
  font-size: 36px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-36 b {
  font-size: 36px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-37 {
  font-size: 37px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-37 i {
  font-size: 37px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-37 b {
  font-size: 37px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-38 {
  font-size: 38px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-38 i {
  font-size: 38px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-38 b {
  font-size: 38px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-39 {
  font-size: 39px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-39 i {
  font-size: 39px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-39 b {
  font-size: 39px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-40 {
  font-size: 40px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-40 i {
  font-size: 40px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-40 b {
  font-size: 40px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-41 {
  font-size: 41px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-41 i {
  font-size: 41px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-41 b {
  font-size: 41px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-42 {
  font-size: 42px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-42 i {
  font-size: 42px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-42 b {
  font-size: 42px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-43 {
  font-size: 43px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-43 i {
  font-size: 43px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-43 b {
  font-size: 43px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-44 {
  font-size: 44px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-44 i {
  font-size: 44px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-44 b {
  font-size: 44px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-45 {
  font-size: 45px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-45 i {
  font-size: 45px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-45 b {
  font-size: 45px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-46 {
  font-size: 46px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-46 i {
  font-size: 46px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-46 b {
  font-size: 46px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-47 {
  font-size: 47px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-47 i {
  font-size: 47px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-47 b {
  font-size: 47px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-48 {
  font-size: 48px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-48 i {
  font-size: 48px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-48 b {
  font-size: 48px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-49 {
  font-size: 49px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-49 i {
  font-size: 49px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-49 b {
  font-size: 49px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-50 {
  font-size: 50px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-50 i {
  font-size: 50px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-50 b {
  font-size: 50px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-51 {
  font-size: 51px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-51 i {
  font-size: 51px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-51 b {
  font-size: 51px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-52 {
  font-size: 52px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-52 i {
  font-size: 52px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-52 b {
  font-size: 52px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-53 {
  font-size: 53px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-53 i {
  font-size: 53px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-53 b {
  font-size: 53px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-54 {
  font-size: 54px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-54 i {
  font-size: 54px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-54 b {
  font-size: 54px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-55 {
  font-size: 55px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-55 i {
  font-size: 55px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-55 b {
  font-size: 55px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-56 {
  font-size: 56px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-56 i {
  font-size: 56px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-56 b {
  font-size: 56px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-57 {
  font-size: 57px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-57 i {
  font-size: 57px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-57 b {
  font-size: 57px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-58 {
  font-size: 58px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-58 i {
  font-size: 58px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-58 b {
  font-size: 58px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-59 {
  font-size: 59px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-59 i {
  font-size: 59px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-59 b {
  font-size: 59px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-60 {
  font-size: 60px !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-60 i {
  font-size: 60px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title .size-60 b {
  font-size: 60px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.vertical-carousel .vertical-carousel-center-text-title * b {
  font-weight: bold;
}
.vertical-carousel .vertical-carousel-center-text-title * b span {
  font-weight: bold;
}
.vertical-carousel .vertical-carousel-center-text-title * b i {
  font-style: italic;
  font-weight: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * i {
  font-style: italic;
}
.vertical-carousel .vertical-carousel-center-text-title * i span {
  font-style: italic;
}
.vertical-carousel .vertical-carousel-center-text-title * i b {
  font-style: italic !important;
  font-weight: bold;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-8 {
  font-size: 8px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-8 i {
  font-size: 8px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-8 b {
  font-size: 8px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-9 {
  font-size: 9px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-9 i {
  font-size: 9px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-9 b {
  font-size: 9px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-10 {
  font-size: 10px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-10 i {
  font-size: 10px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-10 b {
  font-size: 10px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-11 {
  font-size: 11px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-11 i {
  font-size: 11px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-11 b {
  font-size: 11px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-12 {
  font-size: 12px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-12 i {
  font-size: 12px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-12 b {
  font-size: 12px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-13 {
  font-size: 13px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-13 i {
  font-size: 13px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-13 b {
  font-size: 13px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-14 {
  font-size: 14px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-14 i {
  font-size: 14px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-14 b {
  font-size: 14px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-15 {
  font-size: 15px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-15 i {
  font-size: 15px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-15 b {
  font-size: 15px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-16 {
  font-size: 16px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-16 i {
  font-size: 16px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-16 b {
  font-size: 16px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-17 {
  font-size: 17px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-17 i {
  font-size: 17px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-17 b {
  font-size: 17px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-18 {
  font-size: 18px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-18 i {
  font-size: 18px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-18 b {
  font-size: 18px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-19 {
  font-size: 19px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-19 i {
  font-size: 19px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-19 b {
  font-size: 19px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-20 {
  font-size: 20px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-20 i {
  font-size: 20px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-20 b {
  font-size: 20px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-21 {
  font-size: 21px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-21 i {
  font-size: 21px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-21 b {
  font-size: 21px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-22 {
  font-size: 22px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-22 i {
  font-size: 22px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-22 b {
  font-size: 22px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-23 {
  font-size: 23px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-23 i {
  font-size: 23px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-23 b {
  font-size: 23px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-24 {
  font-size: 24px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-24 i {
  font-size: 24px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-24 b {
  font-size: 24px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-25 {
  font-size: 25px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-25 i {
  font-size: 25px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-25 b {
  font-size: 25px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-26 {
  font-size: 26px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-26 i {
  font-size: 26px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-26 b {
  font-size: 26px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-27 {
  font-size: 27px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-27 i {
  font-size: 27px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-27 b {
  font-size: 27px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-28 {
  font-size: 28px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-28 i {
  font-size: 28px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-28 b {
  font-size: 28px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-29 {
  font-size: 29px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-29 i {
  font-size: 29px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-29 b {
  font-size: 29px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-30 {
  font-size: 30px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-30 i {
  font-size: 30px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-30 b {
  font-size: 30px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-31 {
  font-size: 31px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-31 i {
  font-size: 31px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-31 b {
  font-size: 31px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-32 {
  font-size: 32px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-32 i {
  font-size: 32px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-32 b {
  font-size: 32px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-33 {
  font-size: 33px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-33 i {
  font-size: 33px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-33 b {
  font-size: 33px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-34 {
  font-size: 34px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-34 i {
  font-size: 34px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-34 b {
  font-size: 34px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-35 {
  font-size: 35px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-35 i {
  font-size: 35px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-35 b {
  font-size: 35px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-36 {
  font-size: 36px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-36 i {
  font-size: 36px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-36 b {
  font-size: 36px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-37 {
  font-size: 37px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-37 i {
  font-size: 37px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-37 b {
  font-size: 37px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-38 {
  font-size: 38px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-38 i {
  font-size: 38px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-38 b {
  font-size: 38px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-39 {
  font-size: 39px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-39 i {
  font-size: 39px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-39 b {
  font-size: 39px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-40 {
  font-size: 40px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-40 i {
  font-size: 40px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-40 b {
  font-size: 40px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-41 {
  font-size: 41px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-41 i {
  font-size: 41px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-41 b {
  font-size: 41px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-42 {
  font-size: 42px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-42 i {
  font-size: 42px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-42 b {
  font-size: 42px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-43 {
  font-size: 43px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-43 i {
  font-size: 43px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-43 b {
  font-size: 43px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-44 {
  font-size: 44px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-44 i {
  font-size: 44px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-44 b {
  font-size: 44px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-45 {
  font-size: 45px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-45 i {
  font-size: 45px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-45 b {
  font-size: 45px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-46 {
  font-size: 46px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-46 i {
  font-size: 46px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-46 b {
  font-size: 46px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-47 {
  font-size: 47px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-47 i {
  font-size: 47px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-47 b {
  font-size: 47px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-48 {
  font-size: 48px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-48 i {
  font-size: 48px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-48 b {
  font-size: 48px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-49 {
  font-size: 49px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-49 i {
  font-size: 49px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-49 b {
  font-size: 49px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-50 {
  font-size: 50px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-50 i {
  font-size: 50px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-50 b {
  font-size: 50px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-51 {
  font-size: 51px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-51 i {
  font-size: 51px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-51 b {
  font-size: 51px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-52 {
  font-size: 52px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-52 i {
  font-size: 52px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-52 b {
  font-size: 52px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-53 {
  font-size: 53px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-53 i {
  font-size: 53px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-53 b {
  font-size: 53px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-54 {
  font-size: 54px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-54 i {
  font-size: 54px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-54 b {
  font-size: 54px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-55 {
  font-size: 55px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-55 i {
  font-size: 55px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-55 b {
  font-size: 55px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-56 {
  font-size: 56px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-56 i {
  font-size: 56px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-56 b {
  font-size: 56px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-57 {
  font-size: 57px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-57 i {
  font-size: 57px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-57 b {
  font-size: 57px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-58 {
  font-size: 58px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-58 i {
  font-size: 58px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-58 b {
  font-size: 58px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-59 {
  font-size: 59px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-59 i {
  font-size: 59px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-59 b {
  font-size: 59px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-60 {
  font-size: 60px !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-60 i {
  font-size: 60px !important;
  font-style: italic !important;
}
.vertical-carousel .vertical-carousel-center-text-title * .size-60 b {
  font-size: 60px !important;
  font-style: bold !important;
}
.vertical-carousel .vertical-carousel-center-text-description {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-description {
    margin-bottom: 40px;
  }
}
.vertical-carousel .vertical-carousel-center-text-description.mobile-only {
  display: block !important;
}
@media screen and (min-width: 1025px) {
  .vertical-carousel .vertical-carousel-center-text-description.mobile-only {
    display: none !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-description.desktop-only {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .vertical-carousel .vertical-carousel-center-text-description.desktop-only {
    display: block !important;
  }
}
.vertical-carousel .vertical-carousel-center-text-description b {
  font-weight: bold;
}
.vertical-carousel .vertical-carousel-center-text-description b i {
  font-style: italic;
}
.vertical-carousel .vertical-carousel-center-text-description i {
  font-style: italic;
}
.vertical-carousel .vertical-carousel-center-text-description i b {
  font-weight: bold;
}
.vertical-carousel .vertical-carousel-center-text-description * {
  font-family: Inter;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .vertical-carousel-center-text-description * {
    font-family: Inter;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #ffffff;
  }
}
.vertical-carousel .vertical-carousel-center-text-description * a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.vertical-carousel .vertical-carousel-center-text-description * b {
  font-weight: bold;
}
.vertical-carousel .vertical-carousel-center-text-description * b i {
  font-style: italic;
}
.vertical-carousel .vertical-carousel-center-text-description * i {
  font-style: italic;
}
.vertical-carousel .vertical-carousel-center-text-description * i b {
  font-weight: bold;
}
.vertical-carousel-center-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: absolute;
  width: 100% !important;
}
.vertical-carousel-center-text-container.mobile-only {
  display: block !important;
}
@media screen and (min-width: 1025px) {
  .vertical-carousel-center-text-container.mobile-only {
    display: none !important;
  }
}
.vertical-carousel-center-text-container.desktop-only {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .vertical-carousel-center-text-container.desktop-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.vertical-carousel-center-text-container .desktop-only,
.vertical-carousel-center-text-container .mobile-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.vertical-carousel .vertical-carousel-center-text-row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.vertical-carousel .arrow-right {
  content: url("clientlib-site/resources/images/icons/arrow-right-white.svg");
}
.vertical-carousel .arrow-text {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}
.vertical-carousel .arrow-title {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 45px;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 50px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .arrow-title {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.vertical-carousel .arrow-description {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .arrow-description {
    margin-bottom: 20px;
  }
}
.vertical-carousel .arrow-description.mobile-only {
  display: block !important;
}
@media screen and (min-width: 1025px) {
  .vertical-carousel .arrow-description.mobile-only {
    display: none !important;
  }
}
.vertical-carousel .arrow-description.desktop-only {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .vertical-carousel .arrow-description.desktop-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.vertical-carousel .arrow-title-desc-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.vertical-carousel .arrow-txt-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .vertical-carousel .two-column-text-container {
    height: 88vh;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.vertical-carousel .last-slide-title {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 72px;
  line-height: 80px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .last-slide-title {
    margin-bottom: 40px;
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 56px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #ffffff;
  }
}
.vertical-carousel .last-slide-title * {
  font-family: Canela;
  font-style: normal;
  font-weight: normal;
  font-size: 72px;
  line-height: 80px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .vertical-carousel .last-slide-title * {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #ffffff;
  }
}
.vertical-carousel .last-slide-title * a {
  color: #000000;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.vertical-carousel .last-slide-title * b {
  font-weight: bold;
}
.vertical-carousel .last-slide-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-esperienza__button-close {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 54px;
  right: 54px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .modal-esperienza__button-close {
    top: 25px;
    right: 20px;
  }
  .modal-esperienza__button-close img {
    width: 16px;
    height: 16px;
  }
}
.modal-esperienza__content-container {
  display: none;
}
.modal-esperienza__content-container.active {
  position: relative;
  position: fixed;
  display: block !important;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 50, 50, 0.98);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-esperienza__iframe-container {
  width: 100%;
  margin: 0 auto;
  display: block;
  aspect-ratio: 16/9;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .modal-esperienza__iframe-container {
    width: 100%;
    max-width: 1148px;
  }
}
.modal-esperienza__iframe-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.mobile-only {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (min-width: 1025px) {
  .mobile-only {
    display: none !important;
  }
}

.desktop-only {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .desktop-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

/*gradient option*/
.vertical-carousel-img-bg-container.first-opacity-vertical picture:before {
  content: "";
  display: block;
  position: absolute;
  height: 70%;
  width: 100%;
  bottom: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.first-opacity-vertical picture:before {
    height: 60%;
  }
}
.vertical-carousel-img-bg-container.second-opacity-vertical picture:before {
  content: "";
  display: block;
  position: absolute;
  height: 50%;
  width: 100%;
  bottom: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.second-opacity-vertical picture:before {
    height: 40%;
  }
}
.vertical-carousel-img-bg-container.third-opacity-vertical picture:before {
  content: "";
  display: block;
  position: absolute;
  height: 30%;
  width: 100%;
  bottom: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.third-opacity-vertical picture:before {
    height: 20%;
  }
}
.vertical-carousel-img-bg-container.first-opacity-vertical-top picture:before {
  content: "";
  display: block;
  position: absolute;
  height: 70%;
  width: 100%;
  top: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.first-opacity-vertical-top picture:before {
    height: 60%;
  }
}
.vertical-carousel-img-bg-container.second-opacity-vertical-top picture:before {
  content: "";
  display: block;
  position: absolute;
  height: 50%;
  width: 100%;
  top: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.second-opacity-vertical-top picture:before {
    height: 40%;
  }
}
.vertical-carousel-img-bg-container.third-opacity-vertical-top picture:before {
  content: "";
  display: block;
  position: absolute;
  height: 30%;
  width: 100%;
  top: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.third-opacity-vertical-top picture:before {
    height: 20%;
  }
}

.vertical-carousel-img-bg-container.first-opacity-horizontal picture:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 70%;
  bottom: 0;
  right: 0;
  z-index: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.first-opacity-horizontal picture:after {
    width: 25%;
  }
}
.vertical-carousel-img-bg-container.second-opacity-horizontal picture:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 50%;
  bottom: 0;
  right: 0;
  z-index: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.second-opacity-horizontal picture:after {
    width: 25%;
  }
}
.vertical-carousel-img-bg-container.third-opacity-horizontal picture:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 30%;
  bottom: 0;
  right: 0;
  z-index: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.third-opacity-horizontal picture:after {
    width: 25%;
  }
}
.vertical-carousel-img-bg-container.first-opacity-horizontal-left picture:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 70%;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.first-opacity-horizontal-left picture:after {
    width: 25%;
  }
}
.vertical-carousel-img-bg-container.second-opacity-horizontal-left picture:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 50%;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.second-opacity-horizontal-left picture:after {
    width: 25%;
  }
}
.vertical-carousel-img-bg-container.third-opacity-horizontal-left picture:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 30%;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}
@media screen and (max-width: 767px) {
  .vertical-carousel-img-bg-container.third-opacity-horizontal-left picture:after {
    width: 25%;
  }
}

.vertical-carousel-img-bg-container {
  height: 100%;
}

section.video {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  section.video {
    padding: 20px 0;
  }
}
section.video .video__container {
  width: 100%;
  /*aspect-ratio: 16 / 9;*/
  /**/
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /**/
}
@media screen and (min-width: 1025px) {
  section.video .video__container {
    max-width: 1148px;
    margin: 0 auto 30px;
  }
}

.video-padding {
  padding-top: 57.1808510638% !important;
  padding-bottom: 0 !important;
  display: block;
  position: relative;
  overflow: hidden;
  margin: 64px 0 50px;
}
@media screen and (max-width: 767px) {
  .video-padding {
    margin: 54px 0 70px;
  }
}

.video-embed {
  padding-top: 56.25% !important;
  padding-bottom: 0 !important;
  display: block;
  position: relative;
  overflow: hidden;
  margin: 64px auto 50px;
}
@media screen and (max-width: 767px) {
  .video-embed {
    margin: 54px auto 70px;
  }
}
@media screen and (min-width: 1600px) {
  .video-embed {
    max-width: 1148px !important;
    padding-top: 646px !important;
  }
}
.video-embed .video-container {
  max-width: 100% !important;
  margin: 0 !important;
}

@media screen and (min-width: 1025px) {
  .cmp-container .video:not(section.video) {
    max-width: 1148px;
    margin: 64px auto 50px;
  }
}

.voce .remove-margin {
  margin-top: 0 !important;
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .voce .remove-margin {
    margin-bottom: 90px !important;
    padding-top: 0 !important;
  }
}
.voce__img-container {
  padding-top: 68.1%;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.voce__img-container img {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voce .title-component {
  font-family: Canela;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 60px;
  /* or 125% */
  letter-spacing: 0.01em;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .voce .title-component {
    font-family: Canela;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 46px;
    /* identical to box height, or 128% */
    letter-spacing: 0.01em;
    color: #000000;
  }
}
@media screen and (max-width: 767px) {
  .voce .info-card-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 110px;
  }
}
@media screen and (max-width: 767px) {
  .voce .component-image-segment {
    margin-bottom: 24px;
    margin-top: 0;
  }
}

.toolbar-global-player {
  position: fixed;
  bottom: 0;
  height: 0;
  z-index: 1000;
}
.toolbar-global-player iframe {
  -webkit-clip-path: polygon(0 0, 485px 0, 485px 270px, 100% 270px, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 485px 0, 485px 270px, 100% 270px, 100% 100%, 0 100%);
  position: fixed;
  bottom: 0;
  height: 394px;
  background-color: unset;
}
.toolbar-global-player.only-toolbar iframe {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}
@media (max-width: 767px) {
  .toolbar-global-player.only-toolbar iframe {
    height: 135px;
  }
}
@media (min-width: 768px) {
  .toolbar-global-player.only-toolbar iframe {
    height: 135px;
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.only-toolbar iframe {
    height: 120px;
  }
}
@media (max-width: 767px) {
  .toolbar-global-player.accessibility-css.acs-subtitles iframe {
    height: 240px;
  }
}
@media (min-width: 768px) {
  .toolbar-global-player.accessibility-css.acs-subtitles iframe {
    height: 240px;
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-subtitles iframe {
    height: 190px;
  }
}
@media (min-width: 768px) {
  .toolbar-global-player.accessibility-css.acs-subtitles.acs-subtitles-menu iframe {
    height: 500px;
    -webkit-clip-path: polygon(0 0, 380px 0px, 380px 260px, 100% 260px, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 380px 0px, 380px 260px, 100% 260px, 100% 100%, 0 100%);
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-subtitles.acs-subtitles-menu iframe {
    height: 285px;
    -webkit-clip-path: polygon(0 90px, calc(100% - 270px) 90px, calc(100% - 270px) 0, calc(100% - 30px) 0, calc(100% - 30px) 90px, 100% 90px, 100% 100%, 0 100%);
            clip-path: polygon(0 90px, calc(100% - 270px) 90px, calc(100% - 270px) 0, calc(100% - 30px) 0, calc(100% - 30px) 90px, 100% 90px, 100% 100%, 0 100%);
  }
}
@media (min-width: 768px) {
  .toolbar-global-player.accessibility-css.acs-subtitles.acs-subtitles-menu-high iframe {
    height: 600px;
    -webkit-clip-path: polygon(0 0, 380px 0px, 380px 360px, 100% 360px, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 380px 0px, 380px 360px, 100% 360px, 100% 100%, 0 100%);
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-subtitles.acs-subtitles-menu-high iframe {
    height: 440px;
    -webkit-clip-path: polygon(0 240px, calc(100% - 270px) 240px, calc(100% - 270px) 0, calc(100% - 30px) 0, calc(100% - 30px) 240px, 100% 240px, 100% 100%, 0 100%);
            clip-path: polygon(0 240px, calc(100% - 270px) 240px, calc(100% - 270px) 0, calc(100% - 30px) 0, calc(100% - 30px) 240px, 100% 240px, 100% 100%, 0 100%);
  }
}
@media (max-width: 767px) {
  .toolbar-global-player.accessibility-css.acs-subtitles-expanded iframe {
    height: 580px;
  }
}
@media (min-width: 768px) {
  .toolbar-global-player.accessibility-css.acs-subtitles-expanded iframe {
    height: 580px;
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-subtitles-expanded iframe {
    height: 535px;
  }
}
@media (max-width: 767px) {
  .toolbar-global-player.accessibility-css.acs-subtitles-expanded.acs-subtitles-menu iframe {
    height: 100%;
  }
}
@media (min-width: 768px) {
  .toolbar-global-player.accessibility-css.acs-subtitles-expanded.acs-subtitles-menu iframe {
    height: 840px;
    -webkit-clip-path: polygon(0 0, 380px 0px, 380px 260px, 100% 260px, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 380px 0px, 380px 260px, 100% 260px, 100% 100%, 0 100%);
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-subtitles-expanded.acs-subtitles-menu iframe {
    height: 535px;
    -webkit-clip-path: unset;
            clip-path: unset;
  }
}
@media (max-width: 767px) {
  .toolbar-global-player.accessibility-css.acs-subtitles-expanded.acs-subtitles-menu-high iframe {
    height: 100%;
  }
}
@media (min-width: 768px) {
  .toolbar-global-player.accessibility-css.acs-subtitles-expanded.acs-subtitles-menu-high iframe {
    height: 950px;
    -webkit-clip-path: polygon(0 0, 380px 0px, 380px 370px, 100% 370px, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 380px 0px, 380px 370px, 100% 370px, 100% 100%, 0 100%);
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-subtitles-expanded.acs-subtitles-menu-high iframe {
    height: 535px;
    -webkit-clip-path: unset;
            clip-path: unset;
  }
}
@media (min-width: 768px) {
  .toolbar-global-player.accessibility-css.acs-menu iframe {
    height: 400px;
    -webkit-clip-path: polygon(0 0, 380px 0px, 380px 250px, 100% 250px, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 380px 0px, 380px 250px, 100% 250px, 100% 100%, 0 100%);
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-menu iframe {
    height: 285px;
    -webkit-clip-path: polygon(0 170px, calc(100% - 270px) 170px, calc(100% - 270px) 0, calc(100% - 30px) 0, calc(100% - 30px) 170px, 100% 170px, 100% 100%, 0 100%);
            clip-path: polygon(0 170px, calc(100% - 270px) 170px, calc(100% - 270px) 0, calc(100% - 30px) 0, calc(100% - 30px) 170px, 100% 170px, 100% 100%, 0 100%);
  }
}
@media (min-width: 768px) {
  .toolbar-global-player.accessibility-css.acs-menu-high iframe {
    height: 510px;
    -webkit-clip-path: polygon(0 0, 380px 0px, 380px 360px, 100% 360px, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 380px 0px, 380px 360px, 100% 360px, 100% 100%, 0 100%);
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-menu-high iframe {
    height: 440px;
    -webkit-clip-path: polygon(0 330px, calc(100% - 270px) 330px, calc(100% - 270px) 0, calc(100% - 30px) 0, calc(100% - 30px) 330px, 100% 330px, 100% 100%, 0 100%);
            clip-path: polygon(0 330px, calc(100% - 270px) 330px, calc(100% - 270px) 0, calc(100% - 30px) 0, calc(100% - 30px) 330px, 100% 330px, 100% 100%, 0 100%);
  }
}
.toolbar-global-player.accessibility-css.acs-fullscreen {
  display: unset !important;
}
.toolbar-global-player.accessibility-css.acs-fullscreen iframe {
  -webkit-clip-path: unset !important;
          clip-path: unset !important;
  height: 100% !important;
  position: fixed;
  bottom: 0;
}
@media (min-width: 768px) {
  .toolbar-global-player.accessibility-css.acs-video-left-menu iframe {
    height: 394px !important;
    -webkit-clip-path: polygon(0 0, 375px 0, 375px 250px, 100% 250px, 100% 100%, 0 100%) !important;
            clip-path: polygon(0 0, 375px 0, 375px 250px, 100% 250px, 100% 100%, 0 100%) !important;
  }
}
@media (min-width: 768px) {
  .toolbar-global-player.accessibility-css.acs-video-left-menu-high iframe {
    height: 520px !important;
    -webkit-clip-path: polygon(0 0, 375px 0, 375px 370px, 100% 370px, 100% 100%, 0 100%) !important;
            clip-path: polygon(0 0, 375px 0, 375px 370px, 100% 370px, 100% 100%, 0 100%) !important;
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-video-right-menu iframe {
    height: 275px !important;
    -webkit-clip-path: polygon(0 160px, calc(100% - 275px) 160px, calc(100% - 275px) 0, calc(100% - 35px) 0, calc(100% - 35px) 160px, 100% 160px, 100% 100%, 0 100%) !important;
            clip-path: polygon(0 160px, calc(100% - 275px) 160px, calc(100% - 275px) 0, calc(100% - 35px) 0, calc(100% - 35px) 160px, 100% 160px, 100% 100%, 0 100%) !important;
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-video-right-menu-high iframe {
    height: 400px !important;
    -webkit-clip-path: polygon(0 275px, calc(100% - 275px) 275px, calc(100% - 275px) 0, calc(100% - 35px) 0, calc(100% - 35px) 275px, 100% 275px, 100% 100%, 0 100%) !important;
            clip-path: polygon(0 275px, calc(100% - 275px) 275px, calc(100% - 275px) 0, calc(100% - 35px) 0, calc(100% - 35px) 275px, 100% 275px, 100% 100%, 0 100%) !important;
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-video-pip-right-menu iframe {
    -webkit-clip-path: polygon(0 0, 485px 0, 485px 270px, calc(100% - 270px) 270px, calc(100% - 270px) 120px, calc(100% - 40px) 120px, calc(100% - 40px) 270px, 100% 270px, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 485px 0, 485px 270px, calc(100% - 270px) 270px, calc(100% - 270px) 120px, calc(100% - 40px) 120px, calc(100% - 40px) 270px, 100% 270px, 100% 100%, 0 100%);
  }
}
@media (min-width: 1200px) {
  .toolbar-global-player.accessibility-css.acs-video-pip-right-menu-high iframe {
    height: 430px !important;
    -webkit-clip-path: polygon(0 30px, 485px 30px, 485px 310px, calc(100% - 270px) 310px, calc(100% - 270px) 0, calc(100% - 30px) 0, calc(100% - 30px) 310px, 100% 310px, 100% 100%, 0 100%);
            clip-path: polygon(0 30px, 485px 30px, 485px 310px, calc(100% - 270px) 310px, calc(100% - 270px) 0, calc(100% - 30px) 0, calc(100% - 30px) 310px, 100% 310px, 100% 100%, 0 100%);
  }
}

.disable-scroll {
  overflow-y: hidden;
}

.podcast-v2-container {
  margin-top: 20px !important;
  margin-bottom: 50px !important;
}
.podcast-v2-container .card-icon__text-pretitle {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 18px;
}
.podcast-v2-container .card-icon__text h2.title-podcast {
  padding-top: 4px;
}
.podcast-v2-container .card-icon__text .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.podcast-v2-container .card-icon__action.active {
  background-image: url(clientlib-site/resources/images/icons/podcast_play_black.svg) !important;
}
.podcast-v2-container .card-icon__action.paused {
  background-image: url(clientlib-site/resources/images/icons/podcast_play_black.svg) !important;
}
@media screen and (max-width: 1023px) {
  .podcast-v2-container .podcast-card-icon.list {
    max-height: unset;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .podcast-v2-container .podcast-card-icon.list {
    height: auto;
  }
}
@media screen and (max-width: 1023px) {
  .podcast-v2-container .card-icon__content {
    padding-right: 14px !important;
    padding-left: 14px !important;
    margin-left: 0px;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .podcast-v2-container .card-icon__content {
    height: auto;
  }
}
@media screen and (max-width: 1023px) {
  .podcast-v2-container .card-icon__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .podcast-v2-container .card-icon__text {
    height: auto;
  }
}
@media screen and (max-width: 1023px) {
  .podcast-v2-container .card-icon__text-pretitle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .podcast-v2-container .card-icon__text-pretitle p:first-child {
    color: grey !important;
    font-size: rem(10px) !important;
  }
  .podcast-v2-container .card-icon__text-pretitle p:last-child {
    font-weight: 300;
    display: none;
    width: 80% !important;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
  }
  .podcast-v2-container .card-icon__text h2.title-podcast {
    font-size: rem(18px) !important;
    font-family: "Open Sans Semibold", sans-serif;
    color: black;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .podcast-v2-container .card-icon__text h2.title-podcast {
    margin-left: 32px;
  }
}
@media screen and (max-width: 1023px) {
  .podcast-v2-container .card-icon__text span {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-left: 60px;
  }
}

@media screen and (max-width: 767px) {
  .video-gallery-v2-component .filters__wrapper {
    padding: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.video-gallery-v2-component__item .hide {
  display: none;
}
.video-gallery-v2-component__item__loader {
  width: 100%;
  height: 100%;
  position: relative;
}
.video-gallery-v2-component__item__loader::after, .video-gallery-v2-component__item__loader::before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #FFF;
  position: absolute;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  -webkit-animation: animloader 2s linear infinite;
          animation: animloader 2s linear infinite;
}
.video-gallery-v2-component__item__loader::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@-webkit-keyframes animloader {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@keyframes animloader {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
.video-gallery-v2-component__item__content-container {
  background-color: #c4c4c4;
  position: relative;
  aspect-ratio: 16/9;
}
.video-gallery-v2-component__item__placeholder-container {
  height: 100%;
  position: relative;
}
.video-gallery-v2-component__item__placeholder-container__placeholder {
  opacity: 0.9;
  color: white;
}
.video-gallery-v2-component__item__placeholder-container__play-container {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  background-color: rgb(255, 255, 255);
  border: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.video-gallery-v2-component__item__placeholder-container__play-container__icon {
  border: none;
  background-color: transparent;
  width: 100%;
  height: 100%;
  background-image: url("clientlib-site/resources/images/icons/play_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.aem-AuthorLayer-Edit .vertical-carousel-box .video-v2-container,
.aem-AuthorLayer-initial .vertical-carousel-box .video-v2-container,
.aem-AuthorLayer-structure .vertical-carousel-box .video-v2-container,
.aem-AuthorLayer-Layouting .vertical-carousel-box .video-v2-container,
.aem-AuthorLayer-Developer .vertical-carousel-box .video-v2-container,
.aem-AuthorLayer-Timewarp .vertical-carousel-box .video-v2-container {
  margin: 0 3%;
  position: relative;
}
.aem-AuthorLayer-Edit .vertical-carousel-box .video-v2-container section,
.aem-AuthorLayer-initial .vertical-carousel-box .video-v2-container section,
.aem-AuthorLayer-structure .vertical-carousel-box .video-v2-container section,
.aem-AuthorLayer-Layouting .vertical-carousel-box .video-v2-container section,
.aem-AuthorLayer-Developer .vertical-carousel-box .video-v2-container section,
.aem-AuthorLayer-Timewarp .vertical-carousel-box .video-v2-container section {
  height: 100%;
}
.aem-AuthorLayer-Edit .vertical-carousel-box .video-v2-container .container-discovery,
.aem-AuthorLayer-initial .vertical-carousel-box .video-v2-container .container-discovery,
.aem-AuthorLayer-structure .vertical-carousel-box .video-v2-container .container-discovery,
.aem-AuthorLayer-Layouting .vertical-carousel-box .video-v2-container .container-discovery,
.aem-AuthorLayer-Developer .vertical-carousel-box .video-v2-container .container-discovery,
.aem-AuthorLayer-Timewarp .vertical-carousel-box .video-v2-container .container-discovery {
  height: 100%;
}
.aem-AuthorLayer-Edit .vertical-carousel-box .video-v2-container .parent-container-youtube-vimeo,
.aem-AuthorLayer-initial .vertical-carousel-box .video-v2-container .parent-container-youtube-vimeo,
.aem-AuthorLayer-structure .vertical-carousel-box .video-v2-container .parent-container-youtube-vimeo,
.aem-AuthorLayer-Layouting .vertical-carousel-box .video-v2-container .parent-container-youtube-vimeo,
.aem-AuthorLayer-Developer .vertical-carousel-box .video-v2-container .parent-container-youtube-vimeo,
.aem-AuthorLayer-Timewarp .vertical-carousel-box .video-v2-container .parent-container-youtube-vimeo {
  height: 100%;
}
.aem-AuthorLayer-Edit .vertical-carousel-box .video-v2-container .container-youtube,
.aem-AuthorLayer-Edit .vertical-carousel-box .video-v2-container .container-vimeo,
.aem-AuthorLayer-initial .vertical-carousel-box .video-v2-container .container-youtube,
.aem-AuthorLayer-initial .vertical-carousel-box .video-v2-container .container-vimeo,
.aem-AuthorLayer-structure .vertical-carousel-box .video-v2-container .container-youtube,
.aem-AuthorLayer-structure .vertical-carousel-box .video-v2-container .container-vimeo,
.aem-AuthorLayer-Layouting .vertical-carousel-box .video-v2-container .container-youtube,
.aem-AuthorLayer-Layouting .vertical-carousel-box .video-v2-container .container-vimeo,
.aem-AuthorLayer-Developer .vertical-carousel-box .video-v2-container .container-youtube,
.aem-AuthorLayer-Developer .vertical-carousel-box .video-v2-container .container-vimeo,
.aem-AuthorLayer-Timewarp .vertical-carousel-box .video-v2-container .container-youtube,
.aem-AuthorLayer-Timewarp .vertical-carousel-box .video-v2-container .container-vimeo {
  height: 100%;
}
.aem-AuthorLayer-Edit .vertical-carousel-box .video-v2-container .container-youtube .plyr,
.aem-AuthorLayer-Edit .vertical-carousel-box .video-v2-container .container-vimeo .plyr,
.aem-AuthorLayer-initial .vertical-carousel-box .video-v2-container .container-youtube .plyr,
.aem-AuthorLayer-initial .vertical-carousel-box .video-v2-container .container-vimeo .plyr,
.aem-AuthorLayer-structure .vertical-carousel-box .video-v2-container .container-youtube .plyr,
.aem-AuthorLayer-structure .vertical-carousel-box .video-v2-container .container-vimeo .plyr,
.aem-AuthorLayer-Layouting .vertical-carousel-box .video-v2-container .container-youtube .plyr,
.aem-AuthorLayer-Layouting .vertical-carousel-box .video-v2-container .container-vimeo .plyr,
.aem-AuthorLayer-Developer .vertical-carousel-box .video-v2-container .container-youtube .plyr,
.aem-AuthorLayer-Developer .vertical-carousel-box .video-v2-container .container-vimeo .plyr,
.aem-AuthorLayer-Timewarp .vertical-carousel-box .video-v2-container .container-youtube .plyr,
.aem-AuthorLayer-Timewarp .vertical-carousel-box .video-v2-container .container-vimeo .plyr {
  height: 100%;
}

.video-v2-container {
  background-color: black;
}
.video-v2-container .container-discovery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 80vh;
}
.video-v2-container .container-discovery iframe {
  height: 100%;
  aspect-ratio: 16/9;
  background-color: unset;
}
.video-v2-container .parent-container-youtube-vimeo {
  position: relative;
}
.video-v2-container .parent-container-youtube-vimeo .container-youtube {
  max-width: 100vh;
  margin-left: auto;
  margin-right: auto;
}
.video-v2-container .parent-container-youtube-vimeo .container-vimeo {
  max-width: 100vh;
  margin-left: auto;
  margin-right: auto;
}
.video-v2-container .parent-container-youtube-vimeo .title {
  pointer-events: none;
  text-align: center;
  width: 100%;
  z-index: 3;
  font-weight: 300;
  font-size: 3rem;
  color: white;
  position: absolute;
  margin-top: 10%;
  padding: 0 10px;
}

.vertical-carousel-box .video-v2-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vertical-carousel-box .video-v2-container section {
  width: 100%;
}
.vertical-carousel-box .video-v2-container .container-discovery {
  max-height: 100vh;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: unset;
}
.vertical-carousel-box .video-v2-container .container-discovery .allowScroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 300px), calc(100% - 270px) calc(100% - 300px), calc(100% - 270px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 300px), calc(100% - 270px) calc(100% - 300px), calc(100% - 270px) 100%, 0 100%);
}
.vertical-carousel-box .video-v2-container .container-youtube,
.vertical-carousel-box .video-v2-container .container-vimeo {
  max-height: 100vh;
  max-width: none;
}
.vertical-carousel-box .video-v2-container .container-youtube .plyr,
.vertical-carousel-box .video-v2-container .container-vimeo .plyr {
  max-height: 100vh;
}
.vertical-carousel-box .video-v2-container .container-youtube .plyr .plyr__video-wrapper,
.vertical-carousel-box .video-v2-container .container-vimeo .plyr .plyr__video-wrapper {
  position: unset;
}
