:root {
  --black: #292d2e;
  --red: #c4171b;
  --white: #ffffff;
  --light-grey: #f2f2f2;
  --medium-grey: #98a4a7;
  --dark-grey: #857766;
  --brown: #5f3c3c;
  --medium-black: #232424;
  --beige: #e7e2d9;
  --dark-beige: #857766;
  --f-medium: 500;
  --f-light: 200;
  --f-regular: 400;
  --default-transition: 0.2s ease-in-out;
}

html,
body {
  overflow-x: hidden !important;
}

body {
  color: var(--black);
}

.cmb2-media-status .embed-status .cmb2-remove-file-button,
.cmb2-media-status .img-status .cmb2-remove-file-button {
  background-image: url("/wp-content/themes/tiriboco-theme/CMB2/images/ico-delete.png");
}

/* PRELOADER STYLE */
.preloader-entrance-website {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 99999 !important;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-in-bck-center {
  -webkit-animation: slide-in-bck-center 0.7s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both;
  animation: slide-in-bck-center 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    reverse both;
}

@-webkit-keyframes slide-in-bck-center {
  0% {
    -webkit-transform: translateZ(600px) scale(1.5);
    transform: translateZ(600px) scale(1.5);
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    opacity: 1;
  }
}
@keyframes slide-in-bck-center {
  0% {
    -webkit-transform: translateZ(600px) scale(1.5);
    transform: translateZ(600px) scale(1.5);
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    opacity: 1;
  }
}

/* FINE PRELOADER STYLE */

@keyframes fadeIn {
  0% {
    opacity: 0;
    filter: blur(20px);
  }

  100% {
    opacity: 100%;
    filter: blur(0);
  }
}

nav .nav-link {
  color: var(--black);
}

.navbar .main-menu .nav-link.active,
div#offcanvasMenu .main-menu a.nav-link.active {
  color: var(--red);
}

.font-weight-medium {
  font-weight: var(--f-medium);
}

/* Fixed CTA Style */
.fixed-contact-us-cta {
  width: 184px;
  background-color: var(--red);
  color: var(--white);
  position: fixed;
  top: calc(100dvh - 110px);
  right: 32px;
  padding: 8px 0;
  text-decoration: none;
  z-index: 99;
}

.fixed-contact-us-cta > div {
  position: relative;
}

.fixed-contact-us-cta > div p {
  font-size: 17px;
}

.fixed-contact-us-cta .placeholder-avatar {
  position: absolute;
  left: -28px;
  top: -21px;
  transition: 0.2s ease-in-out;
}

.fixed-contact-us-cta:hover .placeholder-avatar {
  top: -13px;
}

/* NAVBAR Style */
.navbar {
  background-color: var(--white);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  padding-top: 0;
}

.navbar.default-position {
  position: absolute;
  z-index: 9;
}

.navbar.default-bg {
  background: #1e1d1d8f;
  backdrop-filter: blur(7px);
}

nav.navbar.default-bg .nav-link {
  color: white;
}

nav.navbar.default-bg .nav-link img {
  filter: invert(1);
}

nav.navbar.default-bg .assistenza-special-cta img {
  filter: none;
}

nav.navbar.default-bg .assistenza-special-cta span {
  color: white;
}

nav.navbar.default-bg .main-menu .nav-link.active {
  color: rgba(255, 255, 255, 0.714);
}

#main {
  margin-top: 0 !important;
}

.navbar .main-menu .nav-link {
  font-size: 18px;
  transition: var(--default-transition);
}

.navbar .main-menu .nav-item:hover .nav-link {
  color: var(--red);
}

.navbar.default-position .main-menu .default-contact-menu {
  display: none;
}

nav.navbar.default-bg .nav-link.logo-mobile img {
  filter: none !important;
}

nav.navbar.default-bg .lang-selector {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1L5 5L9 1' stroke='white' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.lang-selector {
  appearance: none;
  border: none;
  color: var(--black);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1L5 5L9 1' stroke='black' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%;
  background-size: 0.65em auto;
  padding-right: 1em;
}

.assistenza-special-cta {
  position: relative;
}

.assistenza-special-cta span {
  font-size: 21px;
  color: var(--red);
}

.assistenza-special-cta span::after {
  content: "";
  display: block;
  border: 2px solid red;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  position: absolute;
  right: -40px;
  top: 12px;
  transition: var(--default-transition);
}

.assistenza-special-cta img {
  position: absolute;
  left: 16px;
  bottom: 0;
  transition: var(--default-transition);
}

.assistenza-special-cta:hover img {
  left: 40px;
}

@keyframes arrowBounceRight {
  0% {
    left: 16px;
  }

  25% {
    left: 22px;
  }

  50% {
    left: 16px;
  }

  75% {
    left: 22px;
  }

  100% {
    left: 16px;
  }
}

/* Sticky menu style */
.navbar.sticky-position {
  position: fixed;
  animation: stickyNavEntrance 0.2s ease-in-out;
  height: 80px;
  z-index: 10;
}

@keyframes stickyNavEntrance {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

nav.navbar.sticky-position ul.default-contact-menu {
  display: none;
}

nav.navbar.sticky-position .nav.main-menu ul.default-contact-menu {
  display: flex;
  padding: 0 8px;
}

nav.navbar.sticky-position .logo img {
  height: 48px;
}

.navbar.sticky-position .main-menu .nav-link {
  font-size: 17px;
}

.navbar.sticky-position .assistenza-special-cta span {
  font-size: 19px;
}

.navbar.sticky-position .assistenza-special-cta span::after {
  height: 40px;
  width: 40px;
  right: -28px;
  top: 15px;
}

.navbar.sticky-position .assistenza-special-cta img {
  width: 120px;
}

.container.desktop {
  flex-wrap: nowrap;
}

.navbar .container.mobile {
  display: none;
}

/* OFFCANVAS MENU Style */
.offcanvas-backdrop.show {
  opacity: 0;
}

div#offcanvasMenu {
  background-color: #ffffffe8;
  height: calc(100vh - 54px);
  bottom: 0;
  top: unset;
}

div#offcanvasMenu .main-menu {
  text-align: center;
}

div#offcanvasMenu .assistenza-special-cta img,
div#offcanvasMenu .assistenza-special-cta span::after {
  display: none;
}

div#offcanvasMenu .main-menu .nav-link,
div#offcanvasMenu .assistenza-special-cta span {
  font-size: 28px;
}

div#offcanvasMenu .main-menu .nav-link {
  color: var(--black);
}

div#offcanvasMenu .lang-selector {
  font-size: 18px;
}

/* FOOTER Style */
footer {
  background-color: var(--black);
  padding: 64px 0 32px 0;
}

footer .logo {
  width: fit-content;
  display: block;
}

footer a,
footer p {
  color: var(--white);
  text-decoration: none;
  margin: 0;
  font-size: 18px;
}

footer h6 a {
  margin: 0;
  font-size: 40px;
  color: var(--white);
  font-weight: var(--f-regular);
}

footer .legal-link-box span,
footer .legal-link-box a {
  color: var(--white);
  opacity: 0.5;
}

footer a {
  transition: var(--default-transition);
}

footer a:hover {
  opacity: 0.5;
}

footer .legal-link-box a:hover {
  opacity: 1;
}

.disclaimer-box .explicit-info a {
  color: white !important;
}

/* HERO SECTION Style */
.home.hero-section {
  height: 100dvh;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100vw;
  position: relative;
}

.home.hero-section h1 {
  font-size: 169px;
  font-weight: var(--f-light);
  text-align: center;
  margin-top: 48px;
  line-height: 1em;
  margin-bottom: 0;
  color: #4f4c4c;
  position: absolute;
  filter: brightness(0.5);
}

video.hero-video {
  height: 100dvh;
  width: 100vw !important;
  object-fit: cover;
}

/* HERO STANDARD Style */
.standard-hero {
  height: 600px;
  background-color: var(--red);
  display: flex;
  justify-content: start;
  align-items: center;
  z-index: 0;
}

.standard-hero.corsi {
  min-height: 450px;
  padding: 80px 0;
}

.standard-hero.corsi .container h1 {
  max-width: 40%;
  font-size: 66px;
}

.standard-hero .container h1 {
  font-weight: 700;
}

.standard-hero .container {
  z-index: 9;
}

.standard-hero h1 {
  color: var(--white);
  font-size: 126px;
  padding-top: 80px;
  margin: 0;
  font-weight: var(--f-light);
}

.standard-hero.corsi.archive-corsi h1 {
  font-size: 126px;
}

.standard-hero .featured-hero-standard-img {
  top: 0;
  height: 100%;
  object-fit: cover;
  width: 55%;
  right: 0;
}

/* GENERAL Style */
.main-content {
  margin-top: 130px;
  margin-bottom: 132px;
}

.bg-black {
  background-color: var(--medium-black) !important;
}

.bg-brown {
  background-color: var(--dark-beige) !important;
}

button.splide__arrow {
  background: transparent;
  border: none;
  opacity: 0.6;
}

.custom-pagination {
  color: var(--white);
  opacity: 0.6;
  width: 60px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-weight: var(--f-light);
}

span.current-slide {
  font-weight: var(--f-regular);
}

.splide__arrows {
  margin-top: 16px;
}

.special-cta {
  width: fit-content;
  text-decoration: none;
  position: relative;
  transition: var(--default-transition);
  margin-right: 55px;
}

.special-cta:hover {
  margin-left: 8px !important;
}

.special-cta span {
  font-size: 21px;
  text-transform: uppercase;
  color: var(--red);
  position: relative;
}

.special-cta span::after {
  content: "";
  background: url("/wp-content/uploads/2025/01/arrow-right-cta-red.svg");
  display: block;
  position: absolute;
  width: 49px;
  height: 49px;
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  right: -54px;
  top: 4px;
}

.special-cta span::before {
  content: "";
  background: var(--red);
  width: calc(100% + 6px);
  height: 2px;
  display: block;
  left: 0;
  bottom: -4px;
  position: absolute;
}

.special-cta img {
  position: absolute;
  bottom: -10px;
  left: 0;
}

.small-h2 {
  font-size: 74px;
  margin: 0;
  font-weight: var(--f-light);
  text-align: center;
}

section.partner-marquee-section .small-h2 {
  font-size: 54px;
}

.medium-h2 {
  font-size: 74px;
  margin: 0;
  font-weight: var(--f-light);
  line-height: 1em;
}

.row.double-col div {
  padding: 32px;
}

.anniversary-rotating-badge img {
  animation: rotatingBadge 8s linear infinite;
  transform-origin: center;
}

@keyframes rotatingBadge {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* PAGINA CONTACT Style */
.explicit-info p {
  margin: 0;
}

.explicit-info a {
  color: var(--black);
  text-decoration: none;
  transform: var(--default-transition);
}

.explicit-info a:hover {
  opacity: 0.6;
}

.map iframe {
  height: 450px;
}

/* CONTACT FORM Style */
.contact-form-section {
  margin-top: 80px;
}

.contact-form-section .container {
  background-color: var(--light-grey);
  padding: 0;
  display: flex;
  width: 100%;
}

.contact-form-img-box {
  width: 40%;
}

.contact-form-main {
  padding: 64px;
  width: 60%;
  height: fit-content;
}

.contact-form-main h3 {
  font-size: 40px;
  line-height: 1em;
  font-weight: var(--f-light);
  margin: 0;
}

.contact-form-header p {
  font-size: 17px;
}

.call-us {
  font-size: 32px;
  font-weight: var(--f-light);
  color: var(--black);
  text-decoration: none;
  transition: var(--default-transition);
}

.call-us:hover {
  opacity: 0.5;
}

.contact-form {
  width: 80%;
}

.contact-form label {
  width: 100%;
}

.contact-form h4 {
  font-size: 32px;
  margin: 0;
  font-weight: var(--f-light);
}

.contact-form button {
  background-color: transparent;
  border: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid;
}

.contact-form textarea {
  min-height: 120px;
}

/* CORSI ARCHIVE Style */

.corso-filter {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--red);
  transition: var(--default-transition);
}

.corso-filter.active,
.corso-filter:hover {
  color: var(--medium-grey);
}

.corso-box {
  text-decoration: none;
  transition: var(--default-transition);
}

.corso-box.home .preview-img {
  height: 400px;
}

.corso-box .preview-img {
  width: 450px;
  height: 300px;
  z-index: 9;
  transition: var(--default-transition);
  z-index: 0;
}

.corso-box:hover .preview-img {
  margin-right: -20px;
}

.corso-meta-info {
  padding: 32px 64px;
  width: calc((100% - 450px) + 40px);
  min-height: 360px;
  padding-left: 96px;
  margin-left: -40px;
}

.corso-meta-info h2,
.corso-meta-info p,
.corso-meta-info span {
  color: var(--white);
}

/*
.corso-meta-info h2,
.corso-meta-info p,
.corso-meta-info span {
  color: var(--black);
}
  */

.corso-meta-info span {
  opacity: 0.5;
}

.corso-meta-info span {
  font-size: 16px;
  font-weight: var(--f-light);
}

.corso-meta-info .level {
  text-transform: uppercase;
}

.corso-title {
  font-size: 3.8em;
  font-weight: var(--f-light);
}

/* CORSO SINGLE Style */
.single-corso-hero {
  background-color: var(--brown);
}

.single-corso-hero h1 {
  font-size: 60px;
  width: 45%;
}

.specific-corso-single .corso-meta-info {
  padding-left: 64px;
  min-height: fit-content;
  width: 80%;
  margin: auto;
}

.single-corso-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.single-corso-cta span {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  opacity: 1;
}

.single-corso-cta::after {
  content: "";
  width: 48px;
  height: 48px;
  border: 2px solid var(--white);
  display: block;
  border-radius: 50%;
}

.corso-cta-wrapper svg {
  position: absolute;
  right: 9px;
  top: -10px;
  transition: var(--default-transition);
}

.corso-cta-wrapper:hover svg {
  top: 3px;
}

/* HOMEPAGE page Style */

.intro-home {
  background-color: var(--medium-black);
  padding-bottom: 120px;
}

.cool-text {
  color: var(--white);
  font-size: 3.8em;
  font-weight: var(--f-light);
  line-height: 1.1em;
}

.cool-text span {
  color: var(--red);
}

.img-slider {
  height: 600px;
  width: 550px;
}

.img-slider {
  width: 30%;
}

.alternative-row-column .cta {
  width: 100%;
}

section.progetto .header-part h2 {
  max-width: 480px;
}

section.progetto .header-part {
}

ul#slider_home1-list li {
  height: 550px;
}

.cool-text-container {
  width: 70%;
  padding: 32px 24px;
  padding-top: 54px;
}

.anniversary-badge {
  padding-bottom: 80px;
}

.video-box {
  height: 350px;
}

.video-box img {
  position: absolute;
  right: 32px;
  width: 400px;
  top: 0;
}

.label {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--red);
}

section.progetto {
  margin-top: 180px;
  margin-bottom: 80px;
}

section.progetto .header-part {
  width: 80%;
  gap: 16px;
}

section.progetto .header-part p {
  font-size: 21px;
  max-width: 446px;
}

.card-content-info.header-part {
  width: 82%;
}

.perk {
  padding: 40px;
}

.perk-header {
  display: flex;
  align-items: center;
}

.perk-header span.number {
  font-size: 80px;
  color: var(--red);
}

.perk-header span.caption {
  font-size: 24px;
  margin-top: 12px;
}

img.perk-img {
  height: 200px;
}

.second-perk {
  margin-top: 80px;
}

.su-misura-home-section .special-cta:hover {
  margin-right: -8px !important;
}

section.esperienza {
  padding: 120px 0;
  background-color: var(--black);
}

section.esperienza .header-part {
  max-width: 700px;
  margin: auto;
}

section.esperienza .header-part h2,
section.esperienza .header-part p {
  color: var(--white);
}

section.esperienza .header-part h2 {
  margin-bottom: 40px;
}

div#slider_home2 {
  margin-top: 32px;
  max-width: 100%;
  margin-left: 64px;
  margin-right: 0;
}

div#slider_home2 .splide__slide {
  width: calc(100% / 3.5) !important;
  padding: 24px;
}

div#slider_home2 .splide__slide a {
  color: var(--white);
  text-decoration: none;
  transition: var(--default-transition);
}

div#slider_home2 .splide__slide .experience-preview-image {
  height: 470px;
}

div#slider_home2 .splide__slide:nth-child(even) {
  margin-top: 40px;
}

div#slider_home2 .splide__slide p {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 0;
}

.partner-marquee-section {
  padding: 40px 0 80px 0;
}

.partner-marquee-section marquee {
  width: 100%;
  margin: auto;
}

.marquee-header h2 {
  text-align: center;
}

.partner-marquee-section img {
  margin-right: 32px;
}

.loading-text {
  width: 100%;
  text-align: center;
}

.corsi-home-preview {
  background-color: var(--beige);
  padding: 80px 0;
}

.preloader {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
}

.corsi-list,
.macchine-list {
  min-height: 300px;
}

.corsi-list.box-loading,
.macchine-list.box-loading {
  animation: fadeInOut 0.5s ease-in-out forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.corsi-home-preview .single-corso-cta svg {
  transform: rotate(-90deg);
  top: 2px;
}

section.case-history .header-part {
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin-left: auto;
  align-items: start;
  width: fit-content;
  margin: auto;
}

div#slider_home3 {
  margin: 24px 0;
}

section.case-history {
  padding-top: 120px;
  padding-bottom: 80px;
}

section.case-history .card-content .header-part .label {
  color: var(--white);
}

section.case-history .header-part {
  margin-bottom: 80px;
}

section.case-history .card-content .header-part {
  margin-bottom: 0;
}

section.case-history .header-part p {
  color: var(--black);
}

section.case-history h3,
section.case-history p {
  margin: 0;
  color: var(--white);
}

section.case-history .card-content {
  background-color: var(--black);
  padding: 24px;
}

section.case-history .content,
section.case-history .card-content .header-part {
  display: flex;
  align-items: start;
  flex-direction: column;
}

section.case-history .card-content {
  display: flex;
  flex-direction: column;
  padding: 96px !important;
  padding-top: 52px !important;
}

section.case-history .label {
  color: var(--black);
}

section.case-history .content-card-img {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  height: 500px;
}

section.case-history .card-content .header-part {
  margin-top: 0;
  max-width: 100% !important;
  margin-left: 0;
}

section.case-history .card-content h3 {
  font-size: 80px;
  font-weight: var(--f-light);
}

section.case-history .col-12 {
  padding: 0;
}

section.case-history .cta.wrapper {
  width: calc(100% - 32px);
}

section.case-history .card-content .special-cta span {
  color: var(--white);
}

section.case-history .card-content .special-cta span::before {
  background: var(--white);
}

section.case-history .card-content .special-cta span::after {
  background: url("/wp-content/uploads/2025/01/arrow-right-cta-white.svg");
}

section.case-history .splide__arrows img {
  filter: invert(0.8);
}

section.case-history .splide__arrows .custom-pagination {
  color: var(--dark-grey);
}

/* ABOUT page Style */
.alternative-row-column .row img {
  width: 100%;
  height: unset;
  height: 450px;
}

.about-contain-img {
  object-fit: contain !important;
}

.alternative-row-column .row {
  max-width: 100vw;
}

.alternative-row-column .row .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 25px;
}

.text-alt-forniture-column {
  padding-left: 3em;
}

.p-forniture {
  width: 76%;
  font-size: 18px;
}

.inner-width {
  width: calc((85vw / 2) - 64px);
  box-sizing: border-box;
}

section.quote-with-bg {
  background: url("/wp-content/uploads/2025/01/tiriboco-senigallia.jpg");
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  padding: 0;
}

section.quote-with-bg .row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

section.quote-with-bg .row .img-box {
  height: fit-content;
}

.special-about-w-badge .caption {
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.special-about-w-badge .caption {
  display: flex;
  align-items: end;
}

.special-about-w-badge .inner-width {
  padding-left: 0;
}

.special-about-w-badge .anniversary-badge {
  width: 120px;
  padding-bottom: 0;
  bottom: 0;
  left: -48px;
}

.quote-default.quote-bg-center {
  background-color: #00000096;
}

section.quote-with-bg p {
  text-align: center;
}

.quote-default {
  background: var(--red);
  padding: 64px 120px;
}

.quote-default p {
  color: var(--white);
}

.quote-default .big-caption {
  font-size: 44px;
  font-weight: var(--f-light);
}

.quote-default .quote-name {
  font-size: 24px;
  text-align: end;
  font-weight: var(--f-light);
}

.quote-with-bg p {
  max-width: 900px;
}

.bg-brown {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
}

.bg-brown .alternative-row-column .caption {
  color: var(--white);
}

.about-sostenibilità {
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-sostenibilità .caption {
  align-items: end;
}

.about-sostenibilità .inner-width {
  padding-left: 0;
}

.alternative-row-column .row {
  max-width: 100vw;
}

/* SU MISURA page Style */
div#sliderGallerySuMisura {
  margin-top: 54px !important;
}

#sliderGallerySuMisura li {
  height: 450px;
}

#sliderGallerySuMisura li:nth-child(even) {
  width: 40% !important;
}

#sliderGallerySuMisura li:nth-child(odd) {
  padding-top: 0;
  margin-top: 24px;
  width: 25% !important;
}

section.ottimizzazioni-section .splide__arrows {
  margin-top: 32px;
}

#sliderGallerySuMisura .splide__arrows img {
  filter: invert(0.8);
}

#sliderGallerySuMisura .splide__arrows .custom-pagination {
  color: var(--dark-grey);
}

.soluzioni-section {
  background-color: var(--beige);
  padding: 80px 0;
}

.column-w-content {
  padding-right: 54px;
}

div#soluzioniGallery {
  padding-top: 70px;
  /*
  margin-left: calc(100vw - 1440px);
  */
  margin-left: 64px;
}

div#soluzioniGallery .splide__track {
  padding-left: 24px !important;
}

div#soluzioniGallery .splide__slide a.card {
  text-decoration: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
  background-color: transparent;
}

div#soluzioniGallery .splide__slide a.card .featured-image {
  height: 140px;
  transition: var(--default-transition);
}

div#soluzioniGallery .splide__slide a.card:hover .featured-image {
  margin-left: 0;
}

div#soluzioniGallery .splide__slide a.card .featured-image {
  margin-left: -24px;
}

div#soluzioniGallery .splide__slide a.card .card-content-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: var(--white);
}

.forniture-card .splide {
  width: calc(45% + 32px);
  margin-right: -32px;
}

.forniture-card .splide img {
  width: 100%;
  height: 100%;
}

div#soluzioniGallery .splide__slide a.card .card-content-info {
  color: var(--red);
  font-weight: var(--f-light);
}

div#soluzioniGallery .custom-pagination {
  color: var(--black);
}

/* FORNITURE page Style */
.bg-light-grey {
  background-color: var(--light-grey);
}

.sliderFornitures {
  z-index: 9;
}

section.all-forniture-archive {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 80px 0;
}

.sliderFornitures .splide__slide .featured-image {
}

.forniture-card .splide__slide .featured-image {
  height: 100%;
}

.forniture-card .splide__slide h3.slider-card-title {
  color: var(--red);
  font-size: 40px;
  font-weight: var(--f-regular);
}

h3.slider-card-title {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 400;
}

.forniture-card .splide__slide img {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-right: -24px;
}

.forniture-card .splide__slide .featured-image {
  margin-top: 32px;
}

.forniture-card .card-content-info {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  height: 500px;
  width: 55%;
  padding: 100px 60px 60px 130px;
}

.furniture-partners {
  flex-wrap: wrap;
  row-gap: 40px !important;
}

.forniture-card .furniture-partners img {
  height: 44px;
}

.all-forniture-archive .forniture-card:nth-of-type(even) .splide {
  order: 1;
  margin-left: -32px;
}

.all-forniture-archive .forniture-card:nth-of-type(even) .card-content-info {
  padding-left: 60px;
  padding-right: 120px;
}

.forniture-card .custom-pagination,
.corsi-home-preview .custom-pagination {
  color: var(--black);
}

.all-forniture-archive .forniture-card:nth-of-type(even) .splide__arrows {
  right: unset;
  left: 60px;
}

.card-content-info .forniture-card .custom-pagination {
  color: var(--black);
}

.forniture-card .splide__arrows {
  right: 60px;
}

.su-misura-home-section.alternative p {
  max-width: 50%;
}

/* PAGINA RICONDIZIONATO */
.filtri button#filter-button {
  border-width: 1px;
  background: transparent;
}

.ricondizionati-archive {
  margin-bottom: 80px;
  padding-top: 60px;
}

.ricondizionati-archive .row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.single-product {
  width: calc(25% - 32px);
}

.single-product .product-image {
  width: 100%;
}

.single-product hr {
  border-top: 1px solid var(--red);
}

.single-product .product-title {
  font-size: 24px;
  color: var(--black);
  font-weight: var(--f-regular);
}

.single-product .price .label,
.single-product .marca .label {
  text-transform: unset;
  color: var(--red);
  font-size: 14px;
}

.single-product .price p {
  color: var(--red);
}

.single-product .marca p {
  color: var(--black);
  text-transform: uppercase;
  font-size: 21px;
}

.ricondizionati-archive .filtri {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  align-items: center;
}

.ricondizionati-archive .filtri .filtri-title {
  text-transform: uppercase;
  color: var(--medium-grey);
}

.ricondizionati-archive .filtri select {
  word-wrap: normal;
  border: none;
  border-bottom: 1px solid var(--red);
  padding: 0 24px 8px 24px;
  text-transform: uppercase;
  color: var(--red);
  width: calc((100% / 4) - 24px);
  max-height: 32px;
}

.delete-filters {
  color: var(--red);
  text-decoration: underline;
}

.custom-positioning.sempre-al-tuo-fianco {
  margin-top: 100px;
}

.red-line {
  background-color: var(--red);
}

.red-line.horizontal {
  height: 1px;
}

.case-history .header-part .red-line {
  bottom: -30px;
  width: 170%;
}

section.progetto.homepage span.red-line.vertical {
  height: 300px;
  right: 0;
  top: calc(-300px + 36px);
}

section.intro-home.main-black-bg-gallery-badge {
  padding-bottom: 0;
}

section.intro-home.main-black-bg-gallery-badge span.red-line.vertical {
  height: calc(100% + 96px);
  top: 0;
  left: calc(30% + 22px);
}

section.intro-home.main-black-bg-gallery-badge
  span.red-line.vertical.second-vertical {
  right: 88px;
  left: unset;
  top: 0;
  height: 300px;
  z-index: 8;
}

section.intro-home.main-black-bg-gallery-badge span.red-line.horizontal {
  left: calc(30% + 22px);
  bottom: -96px;
  width: calc(1320px - 30%);
}

section.intro-home.main-black-bg-gallery-badge .anniversary-rotating-badge {
  background: var(--medium-black);
  z-index: 9;
  padding-left: 16px;
  padding-bottom: 16px;
}

.main-content.main-w-video-section {
  margin-bottom: 0;
}

section.progetto.container.homepage {
  margin-top: 0;
  padding-top: 180px;
}

.custom-positioning.sempre-al-tuo-fianco .red-line {
  top: 30px;
}

.custom-positioning.sempre-al-tuo-fianco .row {
  padding-left: 0;
  padding-right: 0;
}

.custom-positioning.sempre-al-tuo-fianco .row .column-w-content {
  padding-left: 0;
}

.custom-positioning.sempre-al-tuo-fianco .row .column-w-image {
  padding-right: 0;
}

.red-line.vertical {
  width: 1px;
}

.case-history span.red-line.vertical {
  height: 272px;
  width: 1px;
  bottom: -30px;
  right: -70%;
}

.soluzioni-section .red-line.horizontal {
  left: 0;
  width: 50%;
  top: 35px;
}

.esperienza span.red-line.horizontal {
  width: 700px;
  top: 39px;
  left: 0;
}

.esperienza span.red-line.vertical {
  left: 0;
  height: 300px;
  top: calc(-300px + 39px);
}

.esperienza .header-part .label {
  margin-bottom: 30px;
  display: block;
}

.progetto span.red-line.horizontal {
  width: 100%;
  left: 0;
  top: 36px;
}

section.su-misura-template-intro-section {
  margin-bottom: 0;
}

.red-line.vertical.concetto {
  height: 200px;
  right: 90px;
}

section.su-misura-template-intro-section .anniversary-rotating-badge {
  position: absolute !important;
}

section.su-misura-template-intro-section .anniversary-rotating-badge {
  position: absolute !important;
  top: 88px;
  background: white;
  z-index: 9;
  padding-left: 16px;
  padding-top: 16px;
}

section.progetto.su-misura {
  margin-top: 0;
  padding-top: 140px;
}

.su-misura-template-intro-section .anniversary-badge {
  padding-bottom: 0;
}

.progetto-section-header .label {
  padding-bottom: 36px;
  display: block;
}

.su-misura-spazi-e-flussi-section span.red-line.horizontal {
  width: calc(100% + 164px);
  top: 180px;
  left: -124px;
}

.su-misura-spazi-e-flussi-section span.red-line.vertical {
  height: 100%;
  right: -42px;
  top: 180px;
}

.su-misura-spazi-e-flussi-section h2 {
  padding-bottom: 30px;
}

.soluzioni-section span.red-line.vertical {
  height: 300px;
  top: -265px;
}

.soluzioni-section h2 {
  padding-left: 32px;
}

.custom-positioning.sempre-al-tuo-fianco .column-w-content {
  margin-top: -60px;
}

.custom-positioning.sempre-al-tuo-fianco .column-w-content .label {
  display: block;
  margin-bottom: 30px;
}

section.main-content.contact-page h2.small-h2 {
  text-align: start;
}

.marquee .track img {
  height: 50px;
}

.forniture-card .furniture-partners img {
  width: calc(25% - 20px);
  max-height: 100%;
  object-fit: contain;
}

section.standard-hero.about-header img.featured-hero-standard-img {
  object-position: top;
}

.padding-160-0 {
  padding: 160px 0;
}

.legal-menu-ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

/* Hide the span in the first child li */
.legal-link-box li:first-child span {
  display: none;
}

/* Add margin-right to the second child li span */
.legal-link-box li:nth-child(2) span {
  margin-right: 0.5rem;
}

ul#menu-footer-main-menu-ita {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 1.5rem !important;
  flex-wrap: wrap;
  max-height: 180px;
  width: 100%;
  flex-direction: column;
}

ul#menu-footer-main-menu-ita li {
  width: calc(50% - 1.5rem);
}

div#offcanvasMenu .main-menu {
  display: flex;
  flex-direction: column;
}

.forniture-card .splide__slide .featured-image {
  max-height: 370px;
}

/* -- EXTRA BIG MEDIA QUERY Speciale #1 -- */
@media (min-width: 2290px) {
  div#soluzioniGallery-track {
    max-width: 2200px;
    margin: auto;
  }

  .alternative-row-column {
    max-width: 2000px;
    margin: auto;
  }

  .inner-width {
    width: auto;
  }
}
/* -- MEDIA QUERY Speciale #2 -- */
@media (max-width: 1350px) and (min-width: 1200px) {
}

/* -- MEDIA QUERY Speciale #3 -- */
@media (max-width: 1199px) and (min-width: 932px) {
  .bg-black.special-about-w-badge .caption {
    height: auto;
    align-items: start;
  }

  .single-product .product-title {
    font-size: 18px;
  }

  .single-product .marca p,
  .single-product .price p {
    font-size: 14px;
  }

  .ricondizionati-archive .row {
    gap: 24px;
  }

  .single-product {
    width: calc(25% - 24px);
  }

  .special-about-w-badge .anniversary-badge {
    width: fit-content;
    padding-bottom: 0;
    top: -80px;
    right: 0;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bg-black.special-about-w-badge .alternative-row-column .inner-width {
    width: 100%;
    margin-bottom: 24px;
  }

  .alternative-row-column .inner-width h2 {
    font-size: 56px;
  }

  .corso-meta-info {
    width: calc((100% - 350px) + 32px);
    margin-left: -32px;
  }

  .corso-box .preview-img {
    width: 350px;
  }

  .video-box {
    display: flex;
    justify-content: end;
  }

  .video-box img {
    position: static;
    width: 300px;
  }

  section.progetto .header-part {
    width: 100%;
  }

  .perk-header span.number {
    font-size: 40px;
  }

  .perk {
    padding: 24px;
  }

  div#slider_home2 .splide__slide {
    padding: 0;
  }

  div#slider_home2 .splide__arrows {
    margin-top: 80px;
  }

  section.esperienza {
    padding: 80px 0;
  }

  .special-about-w-badge .anniversary-badge img {
    height: 150px;
  }

  .special-about-w-badge .anniversary-badge {
    left: unset;
    right: 64px !important;
  }

  section.bg-black.special-about-w-badge {
    padding-bottom: 64px;
  }

  .su-misura-home-section.alternative p {
    max-width: 55%;
  }
}

/* -- MEDIA QUERY -- */
@media (max-width: 1099px) and (min-width: 931px) {
  .bg-black.special-about-w-badge .caption {
    height: auto;
    align-items: start;
  }

  .case-history .header-part .red-line {
    display: none;
  }

  .ricondizionati-archive .filtri select {
    width: 100%;
  }

  section.bg-black.special-about-w-badge {
    padding-bottom: 64px;
  }

  .special-about-w-badge .anniversary-badge {
    left: unset;
    right: 64px !important;
  }

  .special-about-w-badge .anniversary-badge {
    width: fit-content;
    padding-bottom: 0;
    top: -80px;
    right: 0;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar.nav .logo img {
    height: 44px;
  }

  .assistenza-special-cta img,
  .assistenza-special-cta span::after {
    display: none;
  }

  .navbar .main-menu .nav-link,
  .assistenza-special-cta span {
    font-size: 16px;
  }

  .navbar.sticky-position .main-menu .nav-link,
  .navbar.sticky-position .assistenza-special-cta span {
    font-size: 14px;
  }

  nav.navbar.sticky-position .nav.main-menu ul.default-contact-menu {
    padding: 0;
  }

  nav.navbar.sticky-position .logo img {
    height: 36px;
  }

  .contact-form-section .container {
    flex-direction: column;
  }

  .contact-form-img-box,
  .contact-form-main {
    width: 100%;
  }

  .contact-form-img {
    height: 260px;
  }

  .video-box img {
    position: static;
    width: 300px;
  }

  .perk {
    padding: 8px;
  }

  .second-perk {
    margin-top: 0;
  }

  div#slider_home2 .splide__slide {
    padding: 0;
  }

  .alternative-row-column .inner-width {
    width: 100%;
    margin-bottom: 24px;
  }

  .alternative-row-column .inner-width h2 {
    font-size: 56px;
  }

  .alternative-row-column .row img {
    height: 300px;
  }

  .alternative-row-column .caption {
    max-width: 720px !important;
    margin: auto;
    margin-top: 54px;
  }

  .alternative-row-column .caption .inner-width {
    padding-left: 0;
  }

  .special-about-w-badge .anniversary-badge img {
    height: 150px;
  }

  .forniture-card .card-content-info {
    padding: 70px;
  }

  .forniture-card .splide__slide {
    margin-right: 0;
    width: 30%;
  }

  .su-misura-home-section.alternative p {
    max-width: 70%;
  }
}

@media (max-width: 930px) {
  .ricondizionati-archive .filtri select {
    width: 100%;
  }

  section.progetto.container.homepage span.red-line {
    display: none;
  }

  section.progetto.container.homepage {
    padding-top: 80px;
  }

  section.esperienza span.red-line {
    display: none;
  }

  div#slider_home2 {
    margin: auto;
  }

  div#slider_home2 .splide__slide:nth-child(even) {
    margin-top: 0;
  }

  section.corsi-home-preview .corso-meta-info {
    width: 70%;
    margin-left: 0;
  }

  section.corsi-home-preview .corso-box .preview-img {
    width: 30%;
  }

  section.corsi-home-preview .corso-title {
    font-size: 36px;
  }

  section.corsi-home-preview .container {
    max-width: 100% !important;
  }

  section.case-history {
    margin: auto !important;
  }

  section.esperienza {
    padding-top: 80px;
  }

  div#soluzioniGallery span.red-line {
    display: none;
  }

  .partner-marquee-section {
    padding-bottom: 0;
  }

  .case-history .header-part .red-line {
    display: none;
  }

  section.su-misura-template-intro-section {
    margin-top: 80px;
  }

  section.progetto.su-misura {
    padding-top: 80px;
  }

  section.su-misura-template-intro-section .anniversary-badge {
    display: none !important;
  }

  section.progetto.su-misura span.red-line {
    display: none;
  }

  section.su-misura-spazi-e-flussi-section span.red-line {
    display: none;
  }

  section.su-misura-spazi-e-flussi-section {
    margin-bottom: 60px;
  }

  section.case-history .content-card-img {
    order: 1 !important;
  }

  section.case-history .card-content {
    order: 2 !important;
  }

  .alternative-row-column .caption {
    max-width: 720px !important;
    margin: auto;
  }

  section.main-content .alternative-row-column .caption {
    padding-top: 24px;
  }

  section.bg-black.special-about-w-badge {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .bg-black.special-about-w-badge .alternative-row-column .inner-width {
    width: 100%;
    margin-bottom: 24px;
    padding-right: 32px;
  }

  .bg-black.special-about-w-badge .caption {
    height: auto;
    align-items: start;
  }

  .special-about-w-badge .anniversary-badge {
    left: unset;
    right: 64px !important;
  }

  .special-about-w-badge .anniversary-badge {
    width: fit-content;
    padding-bottom: 0;
    top: -80px;
    right: 0;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .special-about-w-badge .anniversary-badge img {
    height: 150px;
  }

  .alternative-row-column .row img {
    height: 300px;
  }

  .navbar .container.desktop {
    display: none;
  }

  .navbar .container.mobile {
    display: flex;
  }

  .contact-form-section .container {
    flex-direction: column;
  }

  .contact-form-img-box,
  .contact-form-main {
    width: 100%;
  }

  .contact-form-img {
    height: 260px;
  }

  .specific-corso-single .corso-meta-info {
    width: 100%;
  }

  .video-box {
    display: flex;
  }

  .video-box img {
    position: static;
  }

  .su-misura-home-section {
    padding-bottom: 80px;
  }

  .su-misura-home-section .cta {
    padding-right: 64px;
  }

  div#slider_home2 .splide__slide {
    width: calc(100% / 2.5) !important;
  }

  .quote-default {
    padding: 64px;
  }

  .quote-default .big-caption {
    font-size: 36px;
  }

  .quote-default .quote-name {
    font-size: 18px;
  }

  section.intro-home.main-black-bg-gallery-badge span.red-line {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 930px) {
  section.esperienza .header-part {
    max-width: 700px;
    margin: auto;
    padding: 0 36px;
  }

  /* section.esperienza {
    padding: 60px 0;
  } */

  section.case-history {
    margin: 80px 0;
  }

  .corso-title {
    font-size: 46px;
  }
  .corso-details-box {
    flex-wrap: wrap;
    gap: 16px;
    flex-direction: column;
  }

  .corso-meta-info > p {
    display: none;
  }

  .small-h2 {
    font-size: 54px;
    margin: 0;
    font-weight: var(--f-light);
    text-align: start;
  }

  .progetto-section-header {
    padding-left: 24px;
  }

  .perk {
    display: none !important;
  }

  .ricondizionati-archive .filtri {
    flex-direction: column;
  }

  .ricondizionati-archive select {
    width: 100%;
  }

  .single-product .product-title {
    font-size: 18px;
  }

  .single-product .marca p,
  .single-product .price p {
    font-size: 14px;
  }

  .ricondizionati-archive .row {
    gap: 24px;
  }

  .single-product {
    width: calc(33% - 24px);
  }

  .bg-black.special-about-w-badge .alternative-row-column .inner-width {
    width: 100%;
    margin-bottom: 24px;
    padding-right: 32px;
  }

  .row.double-col .col-sx {
    padding-left: 0;
  }

  .row.double-col .col-dx {
    padding-right: 0;
  }

  .row.double-col img {
    height: 350px;
  }

  .medium-h2 {
    font-size: 44px;
  }

  .navbar {
    height: 54px;
  }

  footer .logo img {
    height: 50px;
  }

  .home.hero-section h1 {
    font-size: 70px;
  }

  .standard-hero {
    height: 400px;
  }

  .standard-hero h1 {
    font-size: 54px;
  }

  .standard-hero.corsi.archive-corsi h1 {
    font-size: 54px;
  }

  .corso-meta-info {
    width: calc((100% - 200px) + 32px);
    margin-left: -32px;
  }

  .corso-meta-info {
    padding: 24px;
    padding-left: 24px !important;
  }

  .corso-box .preview-img {
    width: 200px;
  }

  .cool-text-container {
    width: 100%;
    padding: 54px 16px;
  }

  .cool-text {
    font-size: 24px;
  }

  .img-slider {
    height: auto;
    width: 100%;
  }

  .video-box {
    display: flex;
    justify-content: start;
  }

  .video-box img {
    position: static;
    width: 100% !important;
  }

  div#slider_home2 .splide__slide {
    width: 100% !important;
  }

  section.case-history .content-card-img {
    height: 260px;
  }

  section.progetto {
    margin-top: 120px;
  }

  .quote-default {
    padding: 32px;
  }

  .quote-default .big-caption {
    font-size: 36px;
  }

  .quote-default .quote-name {
    font-size: 18px;
  }

  .inner-width {
    width: 100%;
    padding-left: 16px !important;
    padding-right: 16px;
  }

  section.bg-brown {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  section.bg-brown .caption {
    margin-top: 24px;
  }

  .about-sostenibilità {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .forniture-card .splide__slide {
    flex-direction: column;
  }

  .forniture-card .card-content-info {
    padding: 68px;
    width: 100%;
  }

  .forniture-card .splide__slide img {
    width: 100%;
  }

  .forniture-card .splide__slide .featured-image {
    margin-right: 0;
    max-height: 200px !important;
    height: 200px !important;
  }

  .forniture-card .card-content-info {
    height: auto;
  }

  .forniture-card .splide__arrows {
    position: static !important;
  }

  .su-misura-home-section.alternative p {
    max-width: 100%;
  }

  .main-content.contact-page .map {
    margin-top: 80px;
  }

  .custom-positioning.sempre-al-tuo-fianco {
    padding: 0 16px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .su-misura-home-section {
    padding-bottom: 0;
  }

  section.intro-home.main-black-bg-gallery-badge span.red-line.vertical {
    display: block;
    left: 0;
    right: 0;
    margin: auto;
  }

  section.intro-home.main-black-bg-gallery-badge .anniversary-rotating-badge {
    padding-right: 16px;
  }

  section.intro-home.main-black-bg-gallery-badge
    span.red-line.vertical.second-vertical {
    left: 0;
    right: 0;
    margin: auto;
  }

  .custom-positioning.sempre-al-tuo-fianco {
    padding: 0 16px;
  }

  .ricondizionati-archive {
    padding-top: 0;
  }

  .special-cta span::after {
    top: 4px;
  }

  .main-content.contact-page .map {
    margin-top: 80px;
  }

  .su-misura-home-section .column-w-content {
    padding-right: 0;
  }

  div#slider_home2-track {
    padding-left: 16px !important;
  }

  .splide__slide .perk {
    padding: 0;
  }

  .p-forniture {
    width: 100%;
  }

  .main-content {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .text-alt-forniture-column {
    padding-left: 16px;
  }

  #sliderGallerySuMisura li:nth-child(odd),
  #sliderGallerySuMisura li:nth-child(even) {
    width: calc(100% - 32px) !important;
    margin-left: 16px !important;
  }

  div#soluzioniGallery .splide__track {
    padding-left: 0 !important;
  }

  div#soluzioniGallery .splide__slide a.card .card-content-info p {
    padding-right: 16px;
  }

  div#soluzioniGallery {
    margin-left: 16px;
    margin-right: 16px;
  }

  .second-perk {
    margin-top: 0;
  }

  .partner-marquee-section {
    padding-bottom: 0;
  }

  section.case-history .card-content {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  section.case-history .header-part {
    margin-bottom: 28px;
  }

  section.esperienza .header-part {
    max-width: 700px;
    margin: auto;
    padding: 0 36px;
  }

  section.case-history {
    margin: 80px 0;
  }
  .corso-title {
    font-size: 46px;
  }

  .corso-meta-info p {
    font-size: 24px;
  }

  .corso-details-box {
    flex-wrap: wrap;
    gap: 16px;
    flex-direction: column;
  }

  .corso-meta-info > p {
    display: none;
  }

  .small-h2 {
    font-size: 54px;
    margin: 0;
    font-weight: var(--f-light);
    text-align: start;
  }

  .progetto-section-header {
    padding-left: 24px;
  }

  .corso-box.home .preview-img {
    margin-bottom: -50px;
    padding: 0 10px;
  }

  section.progetto .header-part {
    width: 85%;
    gap: 16px;
  }

  .perks.row {
    display: none !important;
  }

  .caption {
    order: 2;
  }

  section.main-content.ricondizionato-main {
    margin-bottom: 40px;
  }

  .corso-box:hover .preview-img {
    margin-right: 0;
  }

  .standard-hero.single-corso.corsi h1 {
    font-size: 40px;
    max-width: 100%;
  }

  img.corso-img-single {
    margin-bottom: 40px;
  }

  .ricondizionati-archive .filtri {
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }

  .standard-hero.corsi {
    min-height: 260px;
    padding: 0;
  }

  .form-control-buttons {
    width: 100%;
  }

  .filtri button#filter-button {
    padding: 8px 0;
  }

  .ricondizionati-archive select {
    width: 100%;
  }

  .single-product .product-title {
    font-size: 18px;
  }

  .single-product .marca p,
  .single-product .price p {
    font-size: 14px;
  }

  .ricondizionati-archive .row {
    gap: 24px;
  }

  .single-product {
    width: 100%;
  }

  .forniture-card {
    flex-direction: column;
  }

  .forniture-card .splide {
    width: 100%;
    margin: 0;
  }

  .all-forniture-archive .forniture-card .card-content-info {
    padding: 16px !important;
  }

  .all-forniture-archive .forniture-card:nth-of-type(even) .splide {
    order: inherit;
    margin-left: 0;
  }

  .alternative-row-column .row {
    margin: 0;
  }

  .furniture-partners img {
    width: 20%;
    object-fit: contain;
  }

  section.bg-black.special-about-w-badge {
    padding-bottom: 36px;
    padding-top: 36px;
  }

  section.bg-brown {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  section.bg-brown .caption {
    margin-top: 24px;
  }

  .inner-width {
    width: 100%;
    padding-left: 16px !important;
    padding-right: 16px;
  }

  .about-sostenibilità {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .bg-black.special-about-w-badge .alternative-row-column .inner-width {
    width: 100%;
    margin-bottom: 24px;
    padding-right: 32px;
  }

  .row.double-col div {
    padding: 16px;
  }

  .row.double-col img {
    height: 300px;
  }

  .medium-h2 {
    font-size: 44px;
  }

  .standard-hero {
    min-height: 260px;
    height: unset;
  }

  .standard-hero h1 {
    font-size: 54px;
  }

  .standard-hero.corsi.archive-corsi h1 {
    font-size: 54px;
  }

  .standard-hero img {
    display: none;
  }

  .navbar {
    height: 54px;
  }

  .navbar.sticky-position {
    height: 54px;
  }

  .home.hero-section {
    align-items: start;
  }

  .home.hero-section h1 {
    font-size: 66px;
    margin-top: 94px;
  }

  footer .logo {
    margin-bottom: 24px !important;
  }

  footer .disclaimer-box {
    gap: 24px !important;
  }

  footer .logo img {
    height: 50px;
  }

  .fixed-contact-us-cta {
    display: none;
  }

  footer h6 a {
    font-size: 32px;
  }

  .contact-form-main {
    padding: 32px 16px 64px 16px;
  }

  .contact-form {
    width: 100%;
  }

  .corso-box {
    flex-direction: column;
  }

  .corso-box .preview-img {
    width: 100%;
    height: 150px;
  }

  .corso-meta-info {
    width: 100%;
    margin-left: 0;
    padding: 70px 16px 24px 16px !important;
  }

  .corso-title {
    font-size: 36px;
  }

  .corso-details-box {
    flex-wrap: wrap;
    gap: 16px;
  }

  .corso-filter {
    flex: 0 0 auto;
    display: flex;
  }

  .corsi-filters {
    width: 100%;
    overflow-x: auto;
    justify-content: start !important;
    white-space: nowrap;
    gap: 16px !important;
  }

  .single-corso-hero h1 {
    font-size: 40px;
    width: 100%;
  }

  .cool-text-container {
    width: 100%;
    padding: 90px 16px 46px 16px;
  }

  .cool-text {
    font-size: 32px;
  }

  .intro-home .cool-text {
    background: var(--medium-black);
  }

  .intro-home .splide__arrows {
    background: var(--medium-black);
    margin-top: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .img-slider {
    height: auto;
    width: 100%;
    padding: 0 16px;
  }

  .anniversary-badge {
    justify-content: center !important;
    align-items: center;
    margin-top: 80px;
    transform: scale(0.7);
    padding-bottom: 16px;
  }

  div#slider_home1 .splide__slide {
    height: 450px;
  }

  .video-box {
    display: flex;
    justify-content: start;
    margin-top: 40px;
  }

  .video-box img {
    position: static;
    width: 100% !important;
  }

  div#slider_home2 .splide__slide {
    width: calc(100% - 40px) !important;
    padding: 0;
  }

  div#slider_home2 .splide__slide .experience-preview-image {
    height: 400px;
  }

  div#slider_home2 .splide__arrows {
    margin-top: 80px;
    margin-left: -16px;
  }

  div#slider_home2 {
    /* padding-left: 16px; */
    margin-top: 60px;
    margin-left: 0;
  }

  section.esperienza {
    padding: 60px 0;
  }

  section.case-history .content-card-img {
    height: 260px;
  }

  section.progetto {
    margin-top: 0;
  }

  .quote-default {
    padding: 32px;
  }

  .quote-default .big-caption {
    font-size: 36px;
  }

  .quote-default .quote-name {
    font-size: 18px;
  }

  .alternative-row-column .row img {
    height: 250px;
  }

  .forniture-card .splide__slide {
    flex-direction: column;
  }

  .forniture-card .card-content-info {
    padding: 24px;
    width: 100%;
  }

  .forniture-card .splide__slide img {
    width: 100%;
  }

  .forniture-card .splide__slide .featured-image {
    margin-right: 0;
    max-height: 200px !important;
    height: 200px !important;
  }

  .forniture-card .card-content-info {
    height: auto;
  }

  .forniture-card .splide__arrows {
    position: static !important;
  }

  .su-misura-home-section.alternative p {
    max-width: 100%;
  }
}

.marquee {
  display: flex;
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 80px;
  overflow-x: hidden;
}

.track {
  display: flex;
  gap: 800px;
  position: absolute;
  white-space: nowrap;
  will-change: transform;
}

@keyframes marquee-mobile {
  0% {
    transform: translateX(9%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-tablet {
  0% {
    transform: translateX(17%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-laptop {
  0% {
    transform: translateX(17%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-xl {
  0% {
    transform: translateX(30%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-xxl {
  0% {
    transform: translateX(25%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(40%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.su-misura {
  font-size: 19px;
}

.time-shift {
  text-transform: uppercase;
}
