/*
  Theme Name: Transenne by Egloo
  Author: Egloo
  Author URI: https://egloo.it
  Version: 1.0.0
*/

/* -----------------------------------
==============================================================================
	# FONT
==============================================================================
----------------------------------- */

@font-face {
  font-family: "Helvetica Neue LT Std";
  font-style: normal;
  font-weight: 300;
  src: url(./files/fonts/HelveticaNeueLTStd-Lt.otf) format("opentype");
}

@font-face {
  font-family: "Helvetica Neue LT Std";
  font-style: italic;
  font-weight: 300;
  src: url(./files/fonts/HelveticaNeueLTStd-LtIt.otf) format("opentype");
}

@font-face {
  font-family: "Helvetica Neue LT Std";
  font-style: normal;
  font-weight: 400;
  src: url(./files/fonts/HelveticaNeue-LT-55-Roman.otf) format("opentype");
}

@font-face {
  font-family: "Helvetica Neue LT Std";
  font-style: italic;
  font-weight: 400;
  src: url(./files/fonts/HelveticaNeue-LT-55-Roman-Italic.otf) format("opentype");
}

@font-face {
  font-family: "Helvetica Neue LT Std";
  font-style: normal;
  font-weight: 500;
  src: url(./files/fonts/HelveticaNeueLTStd-Md.otf) format("opentype");
}

@font-face {
  font-family: "Helvetica Neue LT Std";
  font-style: italic;
  font-weight: 500;
  src: url(./files/fonts/HelveticaNeueLTStd-MdIt.otf) format("opentype");
}

@font-face {
  font-family: "Helvetica Neue LT Std";
  font-style: normal;
  font-weight: 700;
  src: url(./files/fonts/HelveticaNeue-LT-55-Roman-Bold.otf) format("opentype");
}

@font-face {
  font-family: "Helvetica Neue LT Std";
  font-style: italic;
  font-weight: 700;
  src: url(./files/fonts/HelveticaNeue-LT-55-Roman-Bold-Italic.otf) format("opentype");
}

@font-face {
  font-family: "Transenne icons";
  font-style: normal;
  font-weight: normal;
  src: url(./files/fonts/transenne-icons.ttf) format("truetype"), url(./files/fonts/transenne-icons.woff) format("woff");
}

/* -----------------------------------
==============================================================================
	# GENERAL
==============================================================================
----------------------------------- */

:root {
  font-size: 16px;
  font-family: "Helvetica Neue LT Std", sans-serif;

  --accent: #ed720d;
  --grey-1: #f7f7f7;
  --grey-2: #bababa;
  --grey-3: #707070;
  --grey-4: #6c6c6c;

  --full-heihgt: 100vh;
  --menu-height: 9.375rem;
  --padding-top: var(--menu-height);
  /* --container: 1144px; */
  --container: 1204px;
  --container-narrow: 838px;

  color: var(--grey-4);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

input,
textarea {
  font-family: "Helvetica Neue LT Std", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

button {
  font-family: "Helvetica Neue LT Std", sans-serif;
}

textarea {
  line-height: 1.3;
}

.container {
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: var(--container);
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
  }
}

body {
  padding-top: var(--menu-height);
}

body.admin-bar {
  --padding-top: calc(var(--menu-height) + 32px);
}

.full-height {
  min-height: var(--full-heihgt);
}

.full-height-menu {
  min-height: calc(var(--full-heihgt) - var(--padding-top));
}

a {
  color: inherit;
  text-decoration: none;
  transition-duration: 0.3s;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

section {
  position: relative;
}

section .bg,
section .bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section .bg .overlay {
  background-color: black;
}

section .bg img,
section .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.breadcrums p {
  color: var(--grey-3);
  opacity: 0.5;
}

/* CTA */

a.classic-cta {
  display: inline-flex;
  gap: 3rem;
  align-items: center;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
}

a.classic-cta img {
  width: 2rem;
  transition-duration: 0.3s;
}

a.classic-cta:hover img {
  transform: translateX(25%);
}

/* Text & Image sections */

.text-img-sections {
  display: flex;
  flex-direction: column;
  gap: 6.5rem;
}

.text-img-sections .single-section .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1.875rem;
  grid-row-gap: 3rem;
}

.text-img-sections .single-section .columns .col {
  display: flex;
  align-items: center;
  order: 2;
}

.text-img-sections .single-section .columns .col.img img {
  width: 100%;
}

.text-img-sections .single-section.img-left .columns .col.img img {
  border-top-right-radius: 0.7rem;
  border-bottom-right-radius: 0.7rem;
}

.text-img-sections .single-section.img-right .columns .col.img img {
  border-top-left-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
}

.text-img-sections .single-section .col.text-content .content-wrapper {
  max-width: calc(var(--container) / 2 - 2rem);
}

.text-img-sections .single-section.img-right .col.text-content .content-wrapper {
  margin-left: auto;
}

.text-img-sections .single-section.img-right .col.text-content {
  order: 1;
}

.text-img-sections .single-section.img-left .col.text-content .content-wrapper {
  padding-right: 2rem;
}

.text-img-sections .single-section.img-right .col.text-content .content-wrapper {
  padding-left: 2rem;
}

.text-img-sections .single-section .col.text-content .content {
  max-width: 66.66%;
  margin: auto;
}

.text-img-sections .single-section .col.text-content .title {
  margin-bottom: 1.5rem;
}

.text-img-sections .single-section .col.text-content .title h3 {
  font-size: 1.875rem;
  color: var(--grey-3);
}

.text-img-sections .single-section .col.text-content .text {
  margin-bottom: 2.5rem;
}

.text-img-sections .single-section .col.text-content .text p {
  columns: var(--grey-3);
  line-height: 1.25;
}

.text-img-sections .single-section .col.text-content .link a {
  display: inline-flex;
  gap: 3rem;
  align-items: center;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
}

.text-img-sections .single-section .col.text-content .link a img {
  width: 2rem;
  transition-duration: 0.3s;
}

.text-img-sections .single-section .col.text-content .link a:hover img {
  transform: translateX(25%);
}

body #purposes-content-container .purposes-header .purposes-header-title {
  font-size: 36px !important;
}

body #iubenda-iframe .iub-toggle-checkbox input.style1:checked {
  background-color: #ed720d !important;
}

body #iubenda-iframe #iubFooterBtnContainer button {
  background-color: #ed720d !important;
  color: white !important;
  border-color: #ed720d !important;
}

body #iubenda-iframe #iubFooterBtnContainer button:hover,
body #iubenda-iframe #iubFooterBtnContainer button:focus {
  background-color: transparent !important;
  border-color: #ed720d !important;
  color: #ed720d !important;
}

body #iubenda-iframe [tabindex]:not([tabindex="-1"]):focus,
body #iubenda-iframe a[href]:focus,
body #iubenda-iframe button:focus,
body #iubenda-iframe details:focus,
body #iubenda-iframe input:focus,
body #iubenda-iframe select:focus,
body #iubenda-iframe textarea:focus {
  outline: none !important;
}

/* Icons */

i {
  font-family: "Transenne icons";
  position: relative;
  font-style: normal;
}

i.profile::before {
  content: "\1f464";
}

i.cart::before {
  content: "\1f6d2";
}

@media (max-width: 768px) {
  .text-img-sections .single-section .columns {
    grid-template-columns: 1fr;
  }

  .text-img-sections .single-section .col.text-content .title h3 {
    font-size: 1.4rem;
  }

  .text-img-sections .single-section .col.img {
    order: 1;
  }

  .text-img-sections .single-section .columns .col.img img {
    max-width: 80%;
  }

  .text-img-sections .single-section.img-right .columns .col.img img {
    margin-left: auto;
  }
}

a.custom-cta {
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--grey-4);
  margin-top: 4rem;
}

a.custom-cta:after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45"> <g id="Raggruppa_31" data-name="Raggruppa 31" transform="translate(-943 -1623)"> <circle id="Ellisse_13" data-name="Ellisse 13" cx="22.5" cy="22.5" r="22.5" transform="translate(943 1623)" fill="%23ed720d"/> <g id="Raggruppa_28" data-name="Raggruppa 28" transform="translate(951.467 1636.903)"> <path id="Tracciato_5" data-name="Tracciato 5" d="M296.919,295.118v-2.926h21.166l-6.059-5.787,2.23-1.961,9.227,9.2-9.227,9.227L312,300.847l6.089-5.73Z" transform="translate(-296.919 -284.443)" fill="%23fff"/> </g> </g></svg>');
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transition: all 300ms ease-in-out;
}

a.custom-cta:hover:after {
  transform: translateX(25%);
}

/* -----------------------------------
==============================================================================
	# HEADER
==============================================================================
----------------------------------- */

body > header {
  position: absolute;
  top: 0;
  width: 100%;
  height: var(--menu-height);
  z-index: 10;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}

body.admin-bar > header {
  top: 32px;
}

body > header .top-bar {
  height: 2.8rem;
  background-color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

body > header .top-bar img {
  max-width: 3.5rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translatey(-50%);
}

body > header .top-bar a {
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--grey-1);
  line-height: 1;
}

body > header .voci-menu {
  height: calc(var(--menu-height) - 2.8rem);
  display: flex;
}

body > header .voci-menu .container {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

body > header .voci-menu .container .logo-wrapper {
  display: grid;
  align-items: center;
}

body > header .voci-menu .container .icons {
  margin-left: auto;
  margin-right: 2.3rem;
  display: flex;
}

body > header .voci-menu .container .languages.only-desktop {
  display: flex;
}

body > header .voci-menu .container .voice-wrapper,
body > header .voci-menu .container .voice-wrapper .menu-menu-principale-container {
  margin-left: auto;
  display: flex;
  align-items: stretch;
}

body > header .voci-menu .logo img {
  width: 20rem;
}

body > header .voci-menu ul,
body > header .voci-menu li {
  all: unset;
}

body > header .voci-menu ul {
  display: flex;
  gap: 2rem;
}

body > header .voci-menu ul#menu-menu-principale {
  gap: 0;
}

body > header .voci-menu li {
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--grey-3);
  text-transform: uppercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition-duration: 0.3s;
}

body > header .voci-menu ul#menu-menu-principale li {
  gap: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

body > header .voci-menu ul#menu-menu-principale li.with-sub-voices:hover,
body > header .voci-menu ul#menu-menu-principale li.with-sub-voices.active {
  background-color: var(--grey-1);
}

body > header .voci-menu ul#menu-menu-principale li .sub-menu {
  display: none;
}

body > header .voci-menu li a {
  position: relative;
  display: block;
  text-align: center;
}

body > header .voci-menu li a::before {
  content: "";
  position: absolute;
  top: calc(100% + 0.25rem);
  left: calc(50% - 0.45rem);
  width: 0.9rem;
  height: 3px;
  border-radius: 100px;
  background-color: var(--accent);
  transform: scaleX(0);
  transition-duration: 0.3s;
}

body > header .voci-menu li.current-menu-item a::before,
body > header .voci-menu li a:hover::before {
  transform: scaleX(1);
}

body > header .hb {
  display: none;
  position: absolute;
  left: 1.875rem;
  bottom: calc((50% - 0.425rem));
  width: 1.2rem;
  height: 0.85rem;
}

body > header .hb .line {
  position: absolute;
  transform-origin: center center;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 100px;
  background-color: var(--grey-3);
  transition-duration: 0.3s;
}

body > header .hb .line.ln-1 {
  top: 0;
}

body > header .hb .line.ln-2 {
  top: calc(50% - 1px);
}

body > header .hb .line.ln-3 {
  bottom: 0;
}

body > header.open .hb .line.ln-1 {
  transform: translateY(calc(0.425rem - 1px)) rotate(45deg);
}

body > header.open .hb .line.ln-2 {
  opacity: 0;
}

body > header.open .hb .line.ln-3 {
  transform: translateY(calc(-0.425rem + 1px)) rotate(-45deg);
}

body > header .voci-menu .icons ul {
  gap: 1.3rem;
}

body > header .voci-menu .icons ul li {
  font-size: 1.17rem;
  font-weight: normal;
  color: var(--grey-3);
  line-height: 1;
}

body > header .voci-menu .icons ul li a::before {
  display: none;
}

body > header .voci-menu .icons ul li a {
  display: inline-block;
}

body > header .voci-menu .icons li.cart a {
  position: relative;
}

body > header .voci-menu .icons li.cart a span.cart-contents-count {
  position: absolute;
  /* right: -0.61rem; */
  right: -0.61em;
  /* bottom: -0.61rem; */
  bottom: -0.61em;
  /* width: 1.22rem; */
  width: 1.22em;
  /* height: 1.22rem; */
  height: 1.22em;
  text-align: center;
  background-color: var(--accent);
  color: white;
  border-radius: 100px;
  /* font-size: 0.7rem; */
  font-size: 0.62em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 0.25em; */
}

/* Sub menu */

body > header .sub-voices {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}

body > header .sub-voices .single-sub.inactive {
  display: none;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .columns {
  display: grid;
  grid-template-columns: 3fr 2fr;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col {
  padding-top: 4rem;
  padding-bottom: 4.8rem;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big {
  background-color: var(--grey-1);
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .content {
  padding-right: 4.2rem;
  padding-left: 2rem;
  max-width: calc(var(--container) / 3 * 2 - 3rem + 2rem);
  margin-left: auto;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.small .content {
  padding-left: 4.2rem;
  padding-right: 2rem;
  max-width: calc(var(--container) / 3 + 2rem);
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.small .content .elements {
  max-height: 404px;
  overflow: scroll;
  padding-right: 20px;
  margin-right: -20px;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.small .cta a {
  margin-top: 15px;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.small .content .elements::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  display: block;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.small .content .elements::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(112, 112, 112, 0.2);
  box-shadow: 0 0 1px rgb(255 255 255 / 50%);
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col .title h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .blocco-tipologia p {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.6rem;
  margin-bottom: 2rem;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .boxes .single-event {
  position: relative;
  padding-bottom: 100%;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .boxes .single-event a,
body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .boxes .single-event a .img-cont {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .boxes .single-event a .img-cont::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  opacity: 0.2;
  transition-duration: 0.3s;
  border-radius: 0.7rem;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .boxes .single-event a:hover .img-cont::after {
  opacity: 0.5;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .boxes .single-event a {
  display: block;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.4rem;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .boxes .single-event a .img-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.7rem;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .boxes .single-event a .event-title {
  position: relative;
  text-align: center;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .boxes .single-event a .event-title h3 {
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .columns {
  display: grid;
  grid-template-columns: 3fr 2fr;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col {
  padding-top: 4rem;
  padding-bottom: 5.1rem;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big {
  background-color: var(--grey-1);
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .content {
  padding-right: 4.2rem;
  padding-left: 2rem;
  max-width: calc(var(--container) / 3 * 2 - 3rem + 2rem);
  margin-left: auto;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.small .content {
  padding-left: 4.2rem;
  padding-right: 2rem;
  max-width: calc(var(--container) / 3 + 2rem);
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.small .content .elements {
  max-height: 404px;
  overflow: scroll;
  padding-right: 20px;
  margin-right: -20px;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.small .cta a {
  margin-top: 15px;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.small .content .elements::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  display: block;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.small .content .elements::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(112, 112, 112, 0.2);
  box-shadow: 0 0 1px rgb(255 255 255 / 50%);
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col .title h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .blocco-tipologia p {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.6rem;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .boxes .single-event {
  position: relative;
  padding-bottom: 72%;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .boxes .single-event a,
body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .boxes .single-event a .img-cont {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .boxes .single-event a .img-cont::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: black;
  opacity: 0.4;
  transition-duration: 0.3s;
  border-radius: 0.7rem;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .boxes .single-event a:hover .img-cont::after {
  opacity: 0.5;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .boxes .single-event a {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .boxes .single-event a .img-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.7rem;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .boxes .single-event a .event-title {
  position: relative;
  text-align: center;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .boxes .single-event a .event-title h3 {
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.small {
  display: flex;
  flex-direction: column;
}

body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.small .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body > header .sub-voices .single-sub .single-col .cta a {
  display: inline-block;
  color: var(--accent);
  text-decoration: underline;
  font-weight: bold;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.small {
  display: flex;
  flex-direction: column;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.small .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.small .product-list,
body > header .sub-voices .single-sub[data-voice="vendita"] .product-list,
body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.small .product-list {
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.small .product-list .single-prod a,
body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.small .product-list .single-prod a,
body > header .sub-voices .single-sub[data-voice="vendita"] .product-list .single-prod a {
  display: block;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.small .product-list .single-prod .prod-title h3,
body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.small .product-list .single-prod .prod-title h3,
body > header .sub-voices .single-sub[data-voice="vendita"] .product-list .single-prod .prod-title h3 {
  margin-bottom: 0;
  line-height: 1;
  font-size: 1rem;
  font-weight: normal;
}

body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.small .product-list .single-prod .prod-img img,
body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.small .product-list .single-prod .prod-img img,
body > header .sub-voices .single-sub[data-voice="vendita"] .product-list .single-prod .prod-img img {
  max-height: 3rem;
  width: auto;
}

body > header .sub-voices .single-sub[data-voice="vendita"] {
  padding-top: 4rem;
  padding-bottom: 4.8rem;
}

body > header .sub-voices .single-sub[data-voice="vendita"] .title h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
}

body > header .sub-voices .single-sub[data-voice="vendita"] .columns {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-column-gap: 2rem;
}

body > header .sub-voices .single-sub[data-voice="vendita"] .columns .single-col.cta-cont {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

body > header .sub-voices .single-sub[data-voice="vendita"] .product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 8.75vw;
  border-top: none;
}

body > header .sub-voices .single-sub[data-voice="vendita"] .product-list .single-prod:nth-child(-n + 2) {
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}

body.single-product .additional-content,
body.single-noleggio .additional-content {
  font-size: 0.94rem;
  line-height: 1.17rem;
  display: block;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

body.single-product .additional-content > div:not(:last-child),
body.single-noleggio .additional-content > div:not(:last-child) {
  margin-bottom: 1.5rem;
}

.swipers .swiper-slide {
  transition: opacity 300ms ease-in-out;
}

.swipers .swiper.pricipal .swiper-slide:not(.swiper-slide-thumb-active):hover {
  opacity: 1;
}

.swipers .swiper.pricipal2 .swiper-slide:not(.swiper-slide-thumb-active),
.swipers .swiper.pricipal .swiper-slide:not(.swiper-slide-thumb-active) {
  opacity: 0.5;
}

.swipers .swiper.pricipal,
.swipers .swiper.pricipal2 {
  padding-top: 0.8rem;
}

@media (max-width: 768px) {
  :root {
    --menu-height: 4rem;
  }

  body.single-product .additional-content > div,
  body.single-noleggio .additional-content > div {
    margin-bottom: 1.5rem;
  }

  body > header .hb {
    display: block;
  }

  body > header .voci-menu .logo img {
    width: unset;
  }

  body > header .top-bar {
    display: none;
  }

  body > header .voci-menu {
    height: var(--menu-height);
  }

  body > header .voci-menu .logo a {
    display: block;
    width: 60%;
    margin: auto;
  }

  body > header .voci-menu .voice-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
  }

  body > header .voci-menu .voice-wrapper ul {
    display: flex;
    flex-direction: column;
    padding: 3.5rem 2rem;
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  }

  body > header.open .voci-menu .voice-wrapper {
    display: block;
  }

  body > header .voci-menu .voice-wrapper li {
    text-align: center;
  }

  body > header .voci-menu .icons {
    position: absolute;
    right: 1.875rem;
    height: 100%;
  }

  body > header .voci-menu .icons ul {
    gap: 0.65rem;
  }

  body > header .voci-menu .icons ul li {
    font-size: 1rem;
  }

  body > header .voci-menu .container .languages.only-desktop,
  body > header .sub-voices,
  body > header:not(.open) .voci-menu .container .voice-wrapper,
  body > header:not(.open) .voci-menu .container .voice-wrapper .menu-menu-principale-container {
    display: none;
  }

  body > header .voci-menu ul#menu-menu-principale {
    flex: 1;
    gap: 2rem;
    align-items: center;
  }
}

/* -----------------------------------
==============================================================================
	# FOOTER
==============================================================================
----------------------------------- */

/* Stength */

footer .strength-section {
  padding-bottom: 6.5rem;
}

footer .strength-section .single-stength {
  padding-top: 3.9rem;
  padding-bottom: 3.9rem;
  transition-duration: 0.3s;
  border-top: 2px solid var(--grey-4);
}

footer .strength-section .single-stength:last-child {
  border-bottom: 2px solid var(--grey-4);
}

footer .strength-section .single-stength p,
footer .strength-section .single-stength p strong {
  line-height: 1;
  display: flex;
  gap: 1.875rem;
  align-items: center;
  font-size: 1.875rem;
  font-weight: bold;
  transition-duration: 0.3s;
}

@media (min-width: 768px) {
  footer .strength-section .single-stength:hover {
    background-color: var(--accent);
    border-top-color: var(--accent);
    border-bottom-color: var(--accent);
  }

  footer .strength-section .single-stength:hover + * {
    border-top-color: var(--accent);
  }

  footer .strength-section .single-stength p {
    transform: translateX(-3.875rem);
  }

  footer .strength-section .single-stength:hover p {
    color: white;
    transform: translateX(0);
  }

  body.home main section#products .boxes .single-product .columns,
  body.archive section#archive-shop .boxes .single-product .columns,
  body.single-product .related .single-product .columns {
    grid-column-gap: 1.5rem;
    padding: 0 0 0 1.5rem;
  }

  body.home main section#products .boxes .single-product .col.immagine .img-cont,
  body.archive section#archive-shop .boxes .single-product .col.immagine .img-cont,
  body.single-product .related .single-product .col.immagine .img-cont {
    height: auto !important;
  }

  body.home main section#products .boxes .single-product .col.text .content .title h3,
  body.archive main section#archive-shop .boxes .single-product .col.text .content .title h3,
  body.single-product main .related .boxes .single-product .col.text .content .title h3,
  body.single-product main .related .single-product .col.text .content .title h3,
  body.single-barriere main section#products .boxes .single-product .col.text .content .title h3 {
    font-size: 1.6rem;
  }
}

footer .strength-section .single-stength p svg {
  width: 2rem;
  opacity: 0;
  transition-duration: 0.3s;
}

footer .strength-section .single-stength:hover p svg {
  opacity: 1;
}

/* Contact boxes */

footer .contact-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

footer .contact-boxes .single-box:first-child {
  background-color: var(--grey-1);
}

footer .contact-boxes .single-box:last-child {
  background-color: var(--grey-2);
}

footer .contact-boxes .single-box {
  padding: 4.17rem 30% 4.17rem 21%;
}

footer .contact-boxes .single-box .text p {
  font-size: 2.6rem;
  line-height: 1.18;
  font-weight: 500;
  margin-bottom: 0.5em;
}

footer .contact-boxes .single-box .text a {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  transition-duration: 0.3s;
}

footer .contact-boxes .single-box .text a::before {
  content: "";
  width: 0.9rem;
  height: 2px;
  background-color: #ed720d;
  margin-bottom: 0.35rem;
}

footer .contact-boxes .single-box:last-child .text p,
footer .contact-boxes .single-box:last-child .text a {
  color: white;
}

footer .contact-boxes .single-box .text a:hover {
  color: var(--accent);
}

footer main {
  background-color: var(--grey-4);
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  color: white;
}

footer main a {
  transition-duration: 0.3s;
}

footer main a:hover {
  opacity: 0.75;
}

footer main .footer-title {
  margin-bottom: 4.7rem;
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: flex-end;
  gap: 1.875rem;
}

footer main .footer-title p a {
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  text-align: center;
  color: var(--grey-4);
}

footer main .footer-title h3 {
  font-size: 1.875rem;
  text-transform: uppercase;
}

footer main .columns {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-column-gap: 1.875rem;
}

footer main .columns .col {
  display: grid;
  grid-column-gap: 1.875rem;
  grid-row-gap: 2.8rem;
}

footer main .columns .col.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

footer main .columns .col.col-3 h3 {
  font-size: 1rem;
  text-transform: uppercase;
}

footer main .columns .col.col-3 > * {
  line-height: 1.5;
}

footer main .links .single-link p {
  line-height: 1.5;
}

footer main .links .single-link p a {
  text-transform: uppercase;
  font-weight: bold;
}

footer main .social .title {
  margin-bottom: 0.5rem;
}

footer main .social .title h3 {
  text-transform: uppercase;
  font-size: 1rem;
}

footer main .social .social-icons {
  display: flex;
  gap: 0.75rem;
}

footer main .social .social-icons a img {
  width: 1.7rem;
}

footer main .logo-footer-custom img {
  max-width: 6rem;
}

/* Bottom */

footer .bottom-bar {
  margin-top: 2px;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  background-color: var(--grey-4);
  color: white;
}

footer .bottom-bar .content {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  footer .strength-section .single-stength p {
    font-size: 1.4rem;
  }

  footer .strength-section .single-stength p svg {
    display: none;
  }

  footer .contact-boxes {
    grid-template-columns: 1fr;
  }

  footer .contact-boxes .single-box .text p {
    font-size: 1.8rem;
  }

  footer .contact-boxes .single-box {
    padding: 2.5rem;
  }

  footer main .columns,
  footer main .columns .col.col-3,
  footer main .columns .col {
    grid-template-columns: 1fr;
  }

  footer main .footer-title {
    grid-template-columns: 1fr;
    gap: 2.7rem;
  }

  footer main .footer-title p a {
    padding: 0.7rem 1rem;
  }

  body.page-template-tmpl-newsletter main #mc_embed_signup form {
    padding-top: 2rem;
  }

  body.page-template-tmpl-newsletter main #mc_embed_signup #mc_embed_signup_scroll h2 {
    font-size: 2.2rem;
  }
}

/* -----------------------------------
==============================================================================
	# HOME
==============================================================================
----------------------------------- */

/* Hero */

body.home section#hero {
  display: flex;
  color: white;
}

body.home section#hero .bg {
  background: black;
}

body.home section#hero .bg video {
  opacity: 0.8;
}

body.home section#hero .content {
  flex: 1;
  display: flex;
  align-items: center;
}

body.home section#hero .title {
  text-align: center;
}

body.home section#hero .title h1 {
  color: white;
  font-size: 2.6rem;
  line-height: 1.18;
}

/* Seconda */

body.home section#seconda {
  padding-top: 8.5rem;
  padding-bottom: 9.5rem;
}

body.home section#seconda .columns {
  display: grid;
  grid-template-columns: 7fr 5fr;
}

body.home section#seconda .col.immagine {
  display: flex;
  align-items: center;
}

body.home section#seconda .col.immagine .img-cont {
  width: 80%;
  margin: auto;
  position: relative;
}

body.home section#seconda .col.immagine .img-cont img {
  width: 100%;
}

body.home section#seconda .col.testo {
  display: flex;
  align-items: center;
}

body.home section#seconda .col.testo .content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

body.home section#seconda .titoletto p,
body.home section#seconda .cta a {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--grey-4);
}

body.home section#seconda .titolo-corpo h2 {
  font-size: 2.6rem;
  line-height: 1.18;
  color: var(--accent);
  margin-bottom: 0.25em;
}

body.home section#seconda .titolo-corpo p {
  font-size: 1.4rem;
  line-height: 1.33;
  color: var(--grey-3);
}

body.home section#seconda .cta a {
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  line-height: 1;
}

body.home section#seconda .cta a img {
  width: 2em;
  transition-duration: 0.3s;
}

body.home section#seconda .cta a:hover img {
  transform: translateX(25%);
}

/* Noleggio */

body.home section#noleggio {
  padding-top: 6.8rem;
  padding-bottom: 6.8rem;
  background-color: var(--grey-1);
}

body.home section#noleggio .section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

body.home section#noleggio .section-title h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--accent);
  text-transform: uppercase;
}

body.home section#noleggio .section-title p {
  color: var(--grey-3);
}

body.home section#noleggio .boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.875rem;
}

body.home section#noleggio .boxes .single-event {
  position: relative;
}

body.home section#noleggio .boxes .single-event a {
  display: block;
}

body.home section#noleggio .boxes .single-event .img-cont {
  width: 100%;
  position: relative;
  padding-bottom: 66.66%;
  margin-bottom: 2rem;
}

body.home section#noleggio .boxes .single-event img {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 0.7rem;
  object-fit: cover;
  object-position: center;
}

body.home section#noleggio .boxes .single-event .event-title {
  text-align: center;
}

body.home section#noleggio .boxes .single-event .event-title h3 {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

body.home section#noleggio .boxes .single-event .event-title .data p {
  line-height: 1.25;
}

body.home section#noleggio .boxes .single-event .event-title .data .bancali p {
  font-weight: bold;
  text-transform: uppercase;
}

/* Products */

body.home section#products {
  padding-top: 6.6rem;
  padding-bottom: 6.15rem;
}

body.home section#products .section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

body.home section#products .section-title h2 {
  font-size: 2.6rem;
  line-height: 1.18;
  color: var(--accent);
  margin-bottom: 0.25em;
}

body.home section#products .section-title p {
  color: var(--grey-3);
}

body.home section#products .boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.875rem;
}

body.home section#products .boxes .single-product {
  background-color: var(--grey-1);
  border-radius: 0.7rem;
}

body.home section#products .boxes .single-product .columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 1.875rem;
}

body.home section#products .boxes .single-product .columns .col {
  display: flex;
}

body.home section#products .boxes .single-product .columns .col > * {
  flex: 1;
}

body.home section#products .boxes .single-product .col.immagine {
  display: flex;
  align-items: center;
}

body.home section#products .boxes .single-product .col.immagine .img-cont {
  height: 80%;
}

body.home section#products .boxes .single-product .col.immagine .img-cont img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center right;
}

body.home section#products .boxes .single-product .col.text .content {
  padding-top: 4.25rem;
  padding-bottom: 4rem;
  padding-right: 4.5rem;
}

body.home section#products .boxes .single-product .col.text .content .title {
  margin-bottom: 0.5rem;
}

body.home section#products .boxes .single-product .col.text .content .title h3 {
  font-size: 1.875rem;
}

body.home section#products .boxes .single-product .col.text .content .excerpt {
  margin-bottom: 4.5rem;
}

body.home section#products .boxes .single-product .col.text .content .cta a {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  align-items: center;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
}

body.home section#products .boxes .single-product .col.text .content .cta a img {
  width: 2em;
  transition-duration: 0.3s;
}

body.home section#products .boxes .single-product .col.text .content .cta a:hover img {
  transform: translateX(25%);
}

/* Notizie */

body.home section#notizie {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--grey-1);
}

body.home section#notizie .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

body.home section#notizie .top-bar .section-title h2 {
  font-size: 2.1rem;
  color: var(--accent);
  line-height: 1;
}

body.home section#notizie .top-bar .cta a {
  color: var(--accent);
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: bold;
}

body.home section#notizie .articoli {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.875rem;
}

body.home section#notizie .articoli .single-notizia {
  position: relative;
}

body.home section#notizie .articoli .single-notizia a {
  display: block;
}

body.home section#notizie .articoli .single-notizia .data {
  margin-bottom: 1.25rem;
}

body.home section#notizie .articoli .single-notizia .img {
  width: 100%;
  position: relative;
  padding-bottom: 66.66%;
  margin-bottom: 1.5rem;
}

body.home section#notizie .articoli .single-notizia .img img {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 0.7rem;
  object-fit: cover;
  object-position: center;
}

body.home section#notizie .articoli .single-notizia .bottom-text {
  padding-right: 10%;
}

body.home section#notizie .articoli .single-notizia .bottom-text .title {
  margin-bottom: 1rem;
}

body.home section#notizie .articoli .single-notizia .bottom-text .title .h3 {
  line-height: 1.333;
}

/* Clienti */

body.home section#clienti {
  padding-top: 5.5rem;
  padding-bottom: 6.5rem;
}

body.home section#clienti .section-title {
  text-align: center;
  margin-bottom: 4.8rem;
}

body.home section#clienti .section-title h2 {
  text-transform: uppercase;
  color: var(--accent);
  font-size: 1.875rem;
}

@media (max-width: 768px) {
  body.home section#hero .title h1 {
    font-size: 1.4rem;
  }

  body.home section#seconda .columns {
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
  }

  body.home section#seconda .titolo-corpo h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  body.home section#noleggio .boxes {
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
  }

  body.home section#products .boxes {
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
  }

  body.home section#products .boxes .single-product .columns {
    grid-template-columns: 1fr;
    grid-row-gap: 1.45rem;
  }

  body.home section#products .boxes .single-product .col.immagine .img-cont img {
    height: auto;
    width: 80%;
    margin: auto;
  }

  body.home section#products .boxes .single-product .col.text .content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  body.home section#notizie .top-bar,
  body.page-template-tmpl-barriere section#notizie .container .top-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  body.home section#notizie .articoli,
  body.page-template-tmpl-barriere section#notizie .container .articoli {
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
  }

  body.home section#clienti > .container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* -----------------------------------
==============================================================================
	# CHI SIAMO
==============================================================================
----------------------------------- */

/* Hero */

body.page-template-tmpl-chi-siamo section#hero {
  display: flex;
}

body.page-template-tmpl-chi-siamo section#hero .page-title {
  flex: 1;
  position: relative;
  display: grid;
  place-items: center;
}

body.page-template-tmpl-chi-siamo section#hero .page-title h1 {
  font-size: 2.6rem;
  color: white;
}

/* Intro */

body.page-template-tmpl-chi-siamo section#intro {
  padding-top: 3rem;
  padding-bottom: 6.14rem;
}

body.page-template-tmpl-chi-siamo section#intro .container {
  max-width: var(--container-narrow);
}

body.page-template-tmpl-chi-siamo section#intro .top {
  margin-bottom: 2.7rem;
}

body.page-template-tmpl-chi-siamo section#intro .section-title {
  margin-bottom: 2rem;
}

body.page-template-tmpl-chi-siamo section#intro .section-title h2 {
  font-size: 2.6rem;
  color: var(--accent);
}

body.page-template-tmpl-chi-siamo section#intro .text p {
  line-height: 1.25;
  color: var(--grey-3);
}

/* Sezione immagini e test */

body.page-template-tmpl-chi-siamo section#immagini-testo {
  padding-top: 6.56rem;
  padding-bottom: 6.56rem;
  background-color: var(--grey-1);
}

/* Sezione testo */

body.page-template-tmpl-chi-siamo section#text-section {
  padding-top: 6.8rem;
  padding-bottom: 6.8rem;
}

body.page-template-tmpl-chi-siamo section#text-section .container {
  max-width: var(--container-narrow);
}

body.page-template-tmpl-chi-siamo section#text-section .content h3,
body.page-template-tmpl-chi-siamo section#text-section .content p {
  font-size: 1.4rem;
  color: var(--grey-3);
  line-height: 1.33;
}

body.page-template-tmpl-chi-siamo section#text-section .content h3 {
  margin-bottom: 1.875rem;
  text-transform: uppercase;
}

body.page-template-tmpl-chi-siamo section#text-section .content p:not(:last-of-type) {
  margin-bottom: 3.75rem;
}

/* Gallery */

body.page-template-tmpl-chi-siamo section#gallery {
  padding-top: 6.56rem;
  padding-bottom: 6.56rem;
  background-color: var(--grey-1);
  overflow: hidden;
}

body.page-template-tmpl-chi-siamo section#gallery .section-title {
  margin-bottom: 2.2rem;
}

body.page-template-tmpl-chi-siamo section#gallery .section-title h2 {
  color: var(--accent);
  font-size: 1.875rem;
}

body.page-template-tmpl-chi-siamo section#gallery .swiper {
  max-width: var(--container);
  padding-left: 2rem;
  padding-right: 2rem;
  overflow: visible;
}

body.page-template-tmpl-chi-siamo section#gallery .swiper .swiper-slide .img-cont img {
  border-radius: 0.7rem;
}

/* -----------------------------------
==============================================================================
	# ARCHIVE NOLEGGIO
==============================================================================
----------------------------------- */

/* Hero */

body.page-template-tmpl-noleggio section#hero {
  display: flex;
}

body.page-template-tmpl-noleggio section#hero .page-title {
  flex: 1;
  position: relative;
  display: grid;
  place-items: center;
}

body.page-template-tmpl-noleggio section#hero .page-title h1 {
  font-size: 2.6rem;
  color: white;
}

/* Intro */

body.page-template-tmpl-noleggio section#intro {
  padding-top: 3rem;
  padding-bottom: 6.14rem;
}

body.page-template-tmpl-noleggio section#intro .classic-cta {
  color: var(--accent);
}

body.page-template-tmpl-noleggio section#intro .container {
  max-width: var(--container-narrow);
}

body.page-template-tmpl-noleggio section#intro .top {
  margin-bottom: 2.7rem;
}

body.page-template-tmpl-noleggio section#intro .section-title {
  margin-bottom: 2rem;
}

body.page-template-tmpl-noleggio section#intro .section-title h2 {
  font-size: 2.6rem;
  color: var(--accent);
  text-transform: uppercase;
}

body.page-template-tmpl-noleggio section#intro .text {
  margin-bottom: 2rem;
}

body.page-template-tmpl-noleggio section#intro .text p {
  line-height: 1.25;
  color: var(--grey-3);
}

/* Why choose */

body.page-template-tmpl-noleggio section#why-choose {
  background-color: var(--grey-1);
  padding-top: 6.5rem;
  padding-bottom: 6rem;
}

body.page-template-tmpl-noleggio section#why-choose .section-title {
  text-align: center;
  margin-bottom: 2.7rem;
}

body.page-template-tmpl-noleggio section#why-choose .section-title h2 {
  font-size: 2.6rem;
}

body.page-template-tmpl-noleggio section#why-choose .columns {
  display: flex;
  justify-content: center;
  gap: 9vw;
}

body.page-template-tmpl-noleggio section#why-choose .img-wrapper {
  width: 7rem;
  height: 5.6rem;
  position: relative;
  margin-bottom: 2.8rem;
}

body.page-template-tmpl-noleggio section#why-choose .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

body.page-template-tmpl-noleggio section#why-choose .title h3 {
  text-align: center;
  font-weight: normal;
  font-size: 1.17rem;
}

body.page-template-tmpl-noleggio section#why-choose .title h3 .main {
  font-weight: bold;
}

/* Immagini & testo */

body.page-template-tmpl-noleggio section#immagini-testo {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

/* Noleggio */

body.page-template-tmpl-noleggio section#noleggio {
  padding-top: 6.8rem;
  padding-bottom: 6.8rem;
  background-color: white;
}

body.page-template-tmpl-noleggio section#noleggio .section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

body.page-template-tmpl-noleggio section#noleggio .section-title h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--accent);
  text-transform: uppercase;
}

body.page-template-tmpl-noleggio section#noleggio .section-title p {
  color: var(--grey-3);
}

body.page-template-tmpl-noleggio section#noleggio .boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.875rem;
}

body.page-template-tmpl-noleggio section#noleggio .boxes .single-event {
  position: relative;
}

body.page-template-tmpl-noleggio section#noleggio .boxes .single-event a {
  display: block;
}

body.page-template-tmpl-noleggio section#noleggio .boxes .single-event .img-cont {
  width: 100%;
  position: relative;
  padding-bottom: 66.66%;
  margin-bottom: 2rem;
}

body.page-template-tmpl-noleggio section#noleggio .boxes .single-event img {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 0.7rem;
  object-fit: cover;
  object-position: center;
}

body.page-template-tmpl-noleggio section#noleggio .boxes .single-event .event-title {
  text-align: center;
}

body.page-template-tmpl-noleggio section#noleggio .boxes .single-event .event-title h3 {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

body.page-template-tmpl-noleggio section#noleggio .boxes .single-event .event-title .data p {
  line-height: 1.25;
}

body.page-template-tmpl-noleggio section#noleggio .boxes .single-event .event-title .data .bancali p {
  font-weight: bold;
  text-transform: uppercase;
}

/* Products */

body.page-template-tmpl-noleggio section#single-products {
  padding-top: 6.6rem;
  padding-bottom: 6.15rem;
  background: var(--grey-1);
}

body.page-template-tmpl-noleggio section#single-products .section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

body.page-template-tmpl-noleggio section#single-products .section-title h2 {
  font-size: 2.6rem;
  line-height: 1.18;
  color: var(--accent);
  margin-bottom: 0.25em;
}

body.page-template-tmpl-noleggio section#single-products .section-title p {
  color: var(--grey-3);
}

body.page-template-tmpl-noleggio section#single-products .boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.875rem;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product {
  background-color: white;
  border-radius: 0.7rem;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .columns {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  grid-column-gap: 1.875rem;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .columns .col {
  display: flex;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .columns .col > * {
  flex: 1;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .col.immagine {
  display: flex;
  align-items: center;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .col.immagine .img-cont img {
  height: 100%;
  width: 90%;
  max-height: 300px;
  margin-left: auto;
  object-fit: contain;
  object-position: center;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .col.text .content {
  padding-top: 4.25rem;
  padding-bottom: 4rem;
  padding-right: 2rem;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .col.text .content .title {
  margin-bottom: 0.5rem;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .col.text .content .title h3 {
  font-size: 1.875rem;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .col.text .content .excerpt {
  margin-bottom: 4.5rem;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .col.text .content .cta a {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  align-items: center;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .col.text .content .cta a img {
  width: 2em;
  transition-duration: 0.3s;
}

body.page-template-tmpl-noleggio section#single-products .boxes .single-product .col.text .content .cta a:hover img {
  transform: translateX(25%);
}

@media (max-width: 768px) {
  body.page-template-tmpl-noleggio section#hero .page-title {
    padding: 2rem;
  }

  body.page-template-tmpl-noleggio section#hero .page-title h1 {
    font-size: 1.8rem;
  }

  body.page-template-tmpl-noleggio section#why-choose .section-title h2 {
    font-size: 1.8rem;
  }

  body.page-template-tmpl-noleggio section#why-choose .columns {
    flex-direction: column;
  }

  body.page-template-tmpl-noleggio section#why-choose .img-wrapper {
    margin: auto;
    margin-bottom: 1rem;
  }

  body.page-template-tmpl-noleggio section#noleggio .boxes {
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
  }

  body.page-template-tmpl-noleggio section#single-products .boxes {
    grid-template-columns: 1fr;
  }

  body.page-template-tmpl-noleggio section#single-products .boxes .single-product .columns {
    grid-template-columns: 1fr;
  }

  body.page-template-tmpl-noleggio section#single-products .boxes .single-product .col.text .content {
    padding-top: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
  }

  body.page-template-tmpl-noleggio section#single-products .boxes .single-product .col.immagine .img-cont img {
    max-height: 250px;
  }
}

/* -----------------------------------
==============================================================================
	# NOLEGGIO PACCHETTO
==============================================================================
----------------------------------- */

/* Hero */

body.single-noleggio.noleggio-cat-pacchetto section#hero {
  display: flex;
}

body.single-noleggio.noleggio-cat-pacchetto section#hero .container {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 7.4vh;
}

body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date {
  background-color: var(--grey-1);
  padding: 3rem;
  border-radius: 0.7rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date .title h1 {
  font-size: 1.64rem;
  color: var(--accent);
  margin-bottom: 2.15rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--grey-3);
  margin-bottom: 0.5rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date input {
  padding: 0.9rem;
  border: 2px solid var(--accent);
  border-radius: 0.7rem;
  line-height: 1;
  font-weight: bold;
  color: var(--grey-3);
  min-width: 11rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date .input-date {
  display: flex;
  gap: 1.4rem;
  align-items: flex-end;
  margin-bottom: 2.7rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date .input-date .arrow img {
  width: 2.85rem;
  margin-bottom: 0.125rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date .input-location {
  margin-bottom: 2.4rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date .input-location .input.grande {
  display: flex;
  flex-direction: column;
}

body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date .input-location .input.grande input {
  flex: 1;
}

body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date .cta a {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: underline;
  color: var(--accent);
}

/* Intro */

body.single-noleggio.noleggio-cat-pacchetto section#intro {
  padding-top: 3rem;
  padding-bottom: 6.14rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#form {
  padding-top: 3rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#form .container,
body.single-noleggio.noleggio-cat-pacchetto section#intro .container {
  max-width: var(--container-narrow);
}

body.single-noleggio.noleggio-cat-pacchetto section#form .container #simple-contant-form {
  border-radius: 0.7rem;
  background-color: var(--grey-1);
  padding: 4rem;
  margin-top: 0;
  margin-bottom: 7.5rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#intro .top {
  margin-bottom: 2.7rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#intro .section-title {
  margin-bottom: 2rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#intro .section-title h2 {
  font-size: 2.6rem;
  color: var(--accent);
}

body.single-noleggio.noleggio-cat-pacchetto section#intro .text p {
  line-height: 1.25;
  color: var(--grey-3);
}

body.single-noleggio.noleggio-cat-pacchetto section#intro .cta {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}

body.single-noleggio.noleggio-cat-pacchetto section#intro .cta a {
  background-color: var(--accent);
  border: 2px solid var(--accent);
  color: white;
  padding: 0.8rem 5.25rem 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.4rem;
  border-radius: 0.7rem;
  line-height: 1;
  transition-duration: 0.3s;
}

body.single-noleggio.noleggio-cat-pacchetto section#intro .cta a:hover {
  background-color: transparent;
  color: var(--accent);
}

/* Info */

body.single-noleggio.noleggio-cat-pacchetto section#info {
  padding-top: 8.5rem;
  padding-bottom: 9.5rem;
  background-color: var(--grey-1);
  margin-bottom: 4rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#info .columns {
  display: grid;
  grid-template-columns: 7fr 5fr;
}

body.single-noleggio.noleggio-cat-pacchetto section#info .col.immagine {
  display: flex;
  align-items: center;
}

body.single-noleggio.noleggio-cat-pacchetto section#info .col.immagine .img-cont {
  width: 80%;
  margin: auto;
  position: relative;
}

body.single-noleggio.noleggio-cat-pacchetto section#info .col.immagine .img-cont img {
  width: 100%;
}

body.single-noleggio.noleggio-cat-pacchetto section#info .col.testo {
  display: flex;
  align-items: center;
}

body.single-noleggio.noleggio-cat-pacchetto section#info .col.testo .content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#info .titolo-corpo h2 {
  font-size: 2.6rem;
  line-height: 1.18;
  color: var(--grey-3);
  margin-bottom: 0.25em;
}

body.single-noleggio.noleggio-cat-pacchetto section#info .titolo-corpo p {
  font-size: 1.4rem;
  line-height: 1.33;
  color: var(--grey-3);
}

/* Steps */

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step {
  border-bottom: 2px solid var(--grey-1);
  padding-top: 5.3rem;
  padding-bottom: 5.3rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step:not(.ready),
body.single-noleggio.noleggio-cat-pacchetto section#configuratore.not-conf .step.ready.configurazione {
  display: none;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step:nth-last-child(2) {
  background-color: var(--grey-1);
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step .step-title {
  text-align: center;
  margin-bottom: 2.8rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step .step-title h3 {
  font-weight: bold;
  font-size: 1.875rem;
  color: var(--accent);
  text-transform: uppercase;
}

body.single-noleggio.noleggio-cat-pacchetto.noleggio-template-noleggio-medium section#configuratore .step.buttons-super-big .options {
  grid-template-columns: repeat(2, 1fr);
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step .options {
  /* padding-left: calc(100% / 6 - 1.875rem);
  padding-right: calc(100% / 6 - 1.875rem); */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(33% - 3.75rem), 1fr));
  grid-gap: 1.875rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 1.875rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .columns .col {
  display: flex;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .columns .col > * {
  flex: 1;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .col.immagine {
  display: flex;
  align-items: center;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .col.immagine .img-cont {
  height: 80%;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .col.immagine .img-cont img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center right;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .col.text .content {
  padding-top: 4.25rem;
  padding-bottom: 4rem;
  padding-right: 4.5rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .col.text .content .title {
  margin-bottom: 0.5rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .col.text .content .title p {
  font-size: 1.875rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-small .options {
  padding-left: calc(100% / 4 - 1.875rem);
  padding-right: calc(100% / 4 - 1.875rem);
  grid-template-columns: repeat(2, 1fr);
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons .options .single-option {
  position: relative;
  display: flex;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons .options .single-option .total-option-wrapper {
  position: relative;
  display: flex;
  background-color: var(--grey-1);
  border-radius: 0.7rem;
  overflow: hidden;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  transition-duration: 0.3s;
  cursor: pointer;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.sel.buttons .options .single-option .total-option-wrapper {
  opacity: 0.5;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.sel.buttons .options .single-option.selected .total-option-wrapper,
body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons .options .single-option .total-option-wrapper:hover {
  opacity: 1;
  border-color: var(--accent);
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-small .options .single-option .option-wrapper {
  display: grid;
  grid-template-columns: 3fr 7fr;
  grid-column-gap: 0.8rem;
  padding-right: 2rem;
  padding-left: 0.7rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-small .options .single-option .option-wrapper .img {
  padding-top: 0.84rem;
  padding-bottom: 0.84rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-big .options .single-option .option-wrapper {
  padding: 1.64rem 2rem 1.64rem 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.7rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons .options .single-option .option-wrapper .value {
  display: flex;
  align-items: center;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons .options .single-option .option-wrapper .value p {
  font-size: 1.17rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--grey-3);
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons .options .single-option .deselect-icon {
  position: absolute;
  transform: translate(50%, -50%);
  top: 0;
  right: 0;
  cursor: pointer;
  display: none;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons .options .single-option.selected .deselect-icon {
  display: unset;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons .options .single-option .deselect-icon img {
  width: 1.36rem;
  height: 1.36rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.check .options {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  align-items: center;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.check .options .single-option .value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.check .options .single-option .value .box {
  width: 2.1rem;
  height: 2.1rem;
  border: 2px solid var(--accent);
  border-radius: 0.7rem;
  transition-duration: 0.3s;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.check .options .single-option.selected .value .box,
body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.check .options .single-option:hover .value .box {
  background-color: var(--accent);
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.check .options .single-option .value p {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--grey-3);
  line-height: 1;
  margin-bottom: -0.3em;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.875rem;
  margin-bottom: 4.4rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs .input-wrapper {
  display: flex;
  flex-direction: column;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs .input-wrapper.medium {
  grid-column: span 2;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs .input-wrapper.large {
  grid-column: -1/1;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs .input-wrapper label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--grey-3);
  margin-bottom: 0.5rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs .input-wrapper label sup {
  padding-right: 0.25em;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs .input-wrapper input,
body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs .input-wrapper textarea {
  border: 2px solid var(--accent);
  border-radius: 0.7rem;
  line-height: 1;
  color: var(--grey-3);
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs .input-wrapper input {
  text-transform: uppercase;
  font-weight: bold;
  padding: 0.9rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs .input-wrapper textarea {
  padding: 1.2rem 0.9rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .submit {
  display: flex;
  justify-content: center;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .submit input[type="submit"] {
  all: unset;
  cursor: pointer;
  background-color: var(--accent);
  border: 2px solid var(--accent);
  color: white;
  padding: 0.8rem 5.25rem 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.4rem;
  border-radius: 0.7rem;
  line-height: 1;
  transition-duration: 0.3s;
  text-align: center;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .submit input[type="submit"]:hover {
  background-color: transparent;
  color: var(--accent);
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .messages {
  position: absolute;
  top: calc(100% + 1.5rem);
  padding-left: 1rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .messages::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 0.5rem);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100%;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .messages.success::before {
  background-color: greenyellow;
}

body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .messages.error::before {
  background-color: red;
}

/* Finale */

body.single-noleggio.noleggio-cat-pacchetto section#finale {
  padding-top: 6.8rem;
  padding-bottom: 6.8rem;
  background-color: var(--grey-1);
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .section-title h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--accent);
  text-transform: uppercase;
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .section-title p {
  color: var(--grey-3);
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .boxes {
  padding-left: calc(100% / 6 - 1.875rem);
  padding-right: calc(100% / 6 - 1.875rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1.875rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .boxes .single-event {
  position: relative;
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .boxes .single-event a {
  display: block;
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .boxes .single-event .img-cont {
  width: 100%;
  position: relative;
  padding-bottom: 66.66%;
  margin-bottom: 2rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .boxes .single-event img {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 0.7rem;
  object-fit: cover;
  object-position: center;
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .boxes .single-event .event-title {
  text-align: center;
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .boxes .single-event .event-title h3 {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .boxes .single-event .event-title .data p {
  line-height: 1.25;
}

body.single-noleggio.noleggio-cat-pacchetto section#finale .boxes .single-event .event-title .data .bancali p {
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  body.single-noleggio.noleggio-cat-pacchetto section#hero .container {
    justify-content: center;
    align-items: center;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date .input-date {
    flex-direction: column;
    align-items: flex-start;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#hero #form-date .input-date .arrow {
    display: none;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#info .columns {
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-small .options,
  body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .options,
  body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-big .options {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs {
    grid-template-columns: 1fr;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .inputs .input-wrapper.medium {
    grid-column: unset;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#finale .boxes {
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .columns {
    grid-template-columns: 1fr;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .col.immagine .img-cont img {
    width: 80%;
    margin: auto;
    height: auto;
    max-height: 12rem;
    object-fit: contain;
    object-position: center;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.buttons-super-big .single-option .option-wrapper .col.text .content {
    padding-top: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#configuratore .step.form form .submit input[type="submit"] {
    font-size: 1.25rem;
  }
}

/* -----------------------------------
==============================================================================
	# CONSULENZA / CONTATTI
==============================================================================
----------------------------------- */

body.page-template-tmpl-consulenza-contatti section#main {
  margin-top: 4.35rem;
  margin-bottom: 4.35rem;
  position: relative;
}

body.page-template-tmpl-consulenza-contatti section#main .background-side {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 0.9375rem);
  height: 100%;
  background-color: var(--grey-1);
  border-top-left-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
}

body.page-template-tmpl-consulenza-contatti section#main .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.875rem;
}

body.page-template-tmpl-consulenza-contatti section#main .col.desc {
  padding: 2rem 6% 2rem 6.5rem;
  display: flex;
  align-items: center;
}

body.page-template-tmpl-consulenza-contatti section#main .col.desc .titoletto {
  margin-bottom: 3.18rem;
}

body.page-template-tmpl-consulenza-contatti section#main .col.desc .titoletto h2 {
  font-size: 0.93rem;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--grey-4);
}

body.page-template-tmpl-consulenza-contatti section#main .col.desc .page-title {
  margin-bottom: 0.56rem;
  max-width: 80%;
}

body.page-template-tmpl-consulenza-contatti section#main .col.desc .page-title h1,
body.page-template-tmpl-consulenza-contatti section#intro-contatti-consulenza h2 {
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--accent);
  line-height: 1.18;
}

body.page-template-tmpl-consulenza-contatti section#intro-contatti-consulenza h2 {
  padding-left: 6.5rem;
  margin-top: 5.8rem;
}

body.page-template-tmpl-consulenza-contatti section#intro-contatti-consulenza .sedi {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 3rem;
  padding-top: 2.5rem;
  padding-left: 6.5rem;
  padding-bottom: 4rem;
}

body.page-template-tmpl-consulenza-contatti section#intro-contatti-consulenza .title h3 {
  font-size: 1.875rem;
  margin-bottom: 1.8rem;
}

body.page-template-tmpl-consulenza-contatti section#intro-contatti-consulenza .info {
  font-size: 1.2rem;
  line-height: 1.33;
  color: var(--grey-3);
}

body.page-template-tmpl-consulenza-contatti section#main .col.desc .description p {
  font-size: 1.2rem;
  line-height: 1.33;
  color: var(--grey-3);
}

body.page-template-tmpl-consulenza-contatti section#main .col.form {
  padding: 16% 0 16% 17.5%;
}

form#simple-contant-form .inputs-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 1.875rem;
  grid-row-gap: 2.2rem;
  margin-bottom: 2.3rem;
}

form#simple-contant-form .inputs-wrapper .single-input {
  display: flex;
  flex-direction: column;
}

.hidden[data-service-type] {
  display: none;
}

form#simple-contant-form .inputs-wrapper .single-input.big {
  grid-column: span 2;
}

form#simple-contant-form .inputs-wrapper .single-input.check .checks-line {
  display: flex;
  gap: 1.5rem;
}

form#simple-contant-form .inputs-wrapper .single-input.check .checks-line .single-check {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

form#simple-contant-form .inputs-wrapper .single-input.check .checks-line .single-check label {
  margin-bottom: 0;
  line-height: 1;
}

form#simple-contant-form label,
form#simple-contant-form p {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.35rem;
}

form#simple-contant-form .inputs-wrapper .single-input.big .single-check label {
  margin-bottom: 0;
}

form#simple-contant-form .inputs-wrapper .single-input.big .single-check {
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
}

.hidden[data-service-type] {
  display: none !important;
}

form#simple-contant-form input[name="quantity"][readonly="true"] {
  cursor: not-allowed;
}

form#simple-contant-form input:not([type="submit"]),
form#simple-contant-form textarea,
form#simple-contant-form select {
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-radius: 0.7rem;
  padding: 0.75rem;
  line-height: 1;
  background-color: transparent;
}

form#simple-contant-form select {
  min-height: 44px;
}

form#simple-contant-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus,
form#simple-contant-form textarea:focus,
form#simple-contant-form select:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--accent);
  border-color: var(--accent);
}

form#simple-contant-form input[type="checkbox"]:focus,
form#simple-contant-form input[type="radio"]:focus {
  outline: none;
}

form#simple-contant-form input[type="submit"] {
  all: unset;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.4rem;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--accent);
}

form#simple-contant-form .messages {
  position: absolute;
  bottom: 3.5rem;
}

@media (max-width: 768px) {
  body.page-template-tmpl-consulenza-contatti section#main .background-side {
    display: none;
  }

  body.page-template-tmpl-consulenza-contatti section#main .columns {
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
  }

  body.page-template-tmpl-consulenza-contatti section#intro-contatti-consulenza .sedi {
    grid-template-columns: 1fr;
    grid-row-gap: 2.5rem;
    padding-left: 0;
    padding-bottom: 0;
  }

  body.page-template-tmpl-consulenza-contatti section#intro-contatti-consulenza h2 {
    padding-left: 0;
    margin-top: 4rem;
  }

  body.page-template-tmpl-consulenza-contatti section#intro-contatti-consulenza .title h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  body.page-template-tmpl-consulenza-contatti section#main .col.desc,
  body.page-template-tmpl-consulenza-contatti section#main .col.form {
    padding: 0;
  }

  form#simple-contant-form .inputs-wrapper {
    grid-template-columns: 1fr;
  }

  form#simple-contant-form .inputs-wrapper .single-input.big {
    grid-column: unset;
  }

  body.page-template-tmpl-consulenza-contatti section#main .col.desc .page-title h1,
  body.page-template-tmpl-consulenza-contatti section#main .col.desc .page-title h1,
  body.page-template-tmpl-consulenza-contatti section#intro-contatti-consulenza h2 {
    font-size: 1.8rem;
  }

  body.page-template-tmpl-consulenza-contatti section#main .col.desc .description p,
  body.page-template-tmpl-consulenza-contatti section#intro-contatti-consulenza .info {
    font-size: 1rem;
  }
}

/* -----------------------------------
==============================================================================
	# BLOG
==============================================================================
----------------------------------- */

/* Hero */

body.page-template-tmpl-blog section#hero,
body.category section#hero,
body.tag section#hero {
  padding-top: 3.4rem;
  padding-bottom: 5rem;
}

body.page-template-tmpl-blog section#hero > .container,
body.category section#hero > .container,
body.tag section#hero > .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

body.page-template-tmpl-blog section#hero .content-wrapper,
body.category section#hero .content-wrapper,
body.tag section#hero .content-wrapper {
  grid-column: 3/11;
}

body.page-template-tmpl-blog section#hero .page-title {
  margin-bottom: 2rem;
}

body.page-template-tmpl-blog section#hero .page-title h1,
body.category section#hero .page-title h1,
body.tag section#hero .page-title h1 {
  font-size: 2.57rem;
  font-weight: bold;
  color: var(--accent);
}

body.page-template-tmpl-blog section#hero .page-content p {
  line-height: 1.25;
  color: var(--grey-3);
}

/* Categories */

body.page-template-tmpl-blog section#categories,
body.category section#categories,
body.tag section#categories {
  padding-bottom: 9.7rem;
}

body.page-template-tmpl-blog section#categories .categories {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

body.page-template-tmpl-blog section#categories .categories .single-category .top-bar,
body.category section#categories .single-category .top-bar,
body.tag section#categories .single-category .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

body.page-template-tmpl-blog section#categories .categories .single-category .top-bar .section-title h2,
body.category section#categories .single-category .top-bar .section-title h2,
body.tag section#categories .single-category .top-bar .section-title h2 {
  font-size: 1.17;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

body.page-template-tmpl-blog section#categories .categories .single-category .top-bar .cta a,
body.category section#categories .single-category .top-bar .cta a,
body.tag section#categories .single-category .top-bar .cta a {
  color: var(--accent);
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: bold;
}

body.page-template-tmpl-blog section#categories .categories .single-category .articles,
body.category section#categories .single-category .articles,
body.tag section#categories .single-category .articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.875rem;
}

body.page-template-tmpl-blog section#categories .categories .single-category .articles .single-notizia,
body.category section#categories .single-category .articles .single-notizia,
body.tag section#categories .single-category .articles .single-notizia {
  position: relative;
}

body.page-template-tmpl-blog section#categories .categories .single-category .articles .single-notizia a,
body.category section#categories .single-category .articles .single-notizia a,
body.tag section#categories .single-category .articles .single-notizia a {
  display: block;
}

body.page-template-tmpl-blog section#categories .categories .single-category .articles .single-notizia .data,
body.category section#categories .single-category .articles .single-notizia .data,
body.tag section#categories .single-category .articles .single-notizia .data {
  margin-bottom: 1.25rem;
}

body.page-template-tmpl-blog section#categories .categories .single-category .articles .single-notizia .img,
body.category section#categories .single-category .articles .single-notizia .img,
body.tag section#categories .single-category .articles .single-notizia .img {
  width: 100%;
  position: relative;
  padding-bottom: 66.66%;
  margin-bottom: 1.5rem;
}

body.page-template-tmpl-blog section#categories .categories .single-category .articles .single-notizia .img img,
body.category section#categories .single-category .articles .single-notizia .img img,
body.tag section#categories .single-category .articles .single-notizia .img img {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 0.7rem;
  object-fit: cover;
  object-position: center;
}

body.page-template-tmpl-blog section#categories .categories .single-category .articles .single-notizia .bottom-text,
body.category section#categories .single-category .articles .single-notizia .bottom-text,
body.tag section#categories .single-category .articles .single-notizia .bottom-text {
  padding-right: 10%;
}

body.page-template-tmpl-blog section#categories .categories .single-category .articles .single-notizia .bottom-text .title,
body.category section#categories .single-category .articles .single-notizia .bottom-text .title,
body.tag section#categories .single-category .articles .single-notizia .bottom-text .title {
  margin-bottom: 1rem;
}

body.page-template-tmpl-blog section#categories .categories .single-category .articles .single-notizia .bottom-text .title .h3,
body.category section#categories .single-category .articles .single-notizia .bottom-text .title .h3,
body.tag section#categories .single-category .articles .single-notizia .bottom-text .title .h3 {
  line-height: 1.333;
}

@media (max-width: 768px) {
  body.page-template-tmpl-blog section#hero > .container,
  body.category section#hero > .container,
  body.tag section#hero > .container {
    grid-template-columns: 1fr;
  }

  body.page-template-tmpl-blog section#hero .content-wrapper,
  body.category section#hero .content-wrapper,
  body.tag section#hero .content-wrapper {
    grid-column: unset;
  }

  body.page-template-tmpl-blog section#categories .categories .single-category .top-bar,
  body.category section#categories .single-category .top-bar,
  body.tag section#categories .single-category .top-bar {
    flex-direction: column;
    gap: 1fr;
    margin-bottom: 3rem;
    align-items: center;
  }

  body.page-template-tmpl-blog section#categories .categories .single-category .articles,
  body.category section#categories .single-category .articles,
  body.tag section#categories .single-category .articles {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------
==============================================================================
	# SINGLE ARTICLE
==============================================================================
----------------------------------- */

body.single-notizia section#main {
  padding-top: 2.7rem;
  padding-bottom: 6.5rem;
}

body.single-notizia section#main p,
body.single-notizia section#final p {
  color: var(--grey-3);
}

body.single-notizia section#main .container,
body.single-notizia section#final .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 1.875rem;
}

body.single-notizia section#main .container > *,
body.single-notizia section#final .container > * {
  grid-column: 3/11;
}

body.single-notizia section#main .top-bar {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2.8rem;
}

body.single-notizia section#main .top-bar .category a {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--accent);
}

body.single-notizia section#main .post-title {
  margin-bottom: 2.34rem;
}

body.single-notizia section#main .post-title h1 {
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1.18;
}

body.single-notizia section#main .post-data {
  margin-bottom: 1.5rem;
}

body.single-notizia section#main .post-data p {
  font-weight: bold;
  line-height: 1.25;
  text-transform: uppercase;
}

body.single-notizia section#main .post-content p:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

body.single-notizia section#main .post-content figure {
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
  border-radius: 0.7rem;
  overflow: hidden;
}

/* Gallery */

body.single-notizia section#gallery {
  padding-top: 6.56rem;
  padding-bottom: 6.56rem;
  background-color: var(--grey-1);
  overflow: hidden;
}

body.single-notizia section#gallery .section-title {
  margin-bottom: 2.2rem;
}

body.single-notizia section#gallery .section-title h2 {
  color: var(--accent);
  font-size: 1.875rem;
}

body.single-notizia section#gallery .swiper {
  max-width: var(--container);
  padding-left: 2rem;
  padding-right: 2rem;
  overflow: visible;
}

body.single-notizia section#gallery .swiper .swiper-slide .img-cont img {
  border-radius: 0.7rem;
}

/* Final */

body.single-notizia section#final {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

body.single-notizia section#final .tags {
  margin-bottom: 1.5rem;
}

body.single-notizia section#final .end-phrase p {
  font-weight: bold;
}

/* Notizie */

body.single-notizia section#notizie {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--grey-1);
}

body.single-notizia section#notizie .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

body.single-notizia section#notizie .top-bar .section-title h2 {
  font-size: 2.1rem;
  color: var(--accent);
  line-height: 1;
}

body.single-notizia section#notizie .top-bar .cta a {
  color: var(--accent);
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: bold;
}

body.single-notizia section#notizie .articoli {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.875rem;
}

body.single-notizia section#notizie .articoli .single-notizia {
  position: relative;
}

body.single-notizia section#notizie .articoli .single-notizia a {
  display: block;
}

body.single-notizia section#notizie .articoli .single-notizia .data {
  margin-bottom: 1.25rem;
}

body.single-notizia section#notizie .articoli .single-notizia .img {
  width: 100%;
  position: relative;
  padding-bottom: 66.66%;
  margin-bottom: 1.5rem;
}

body.single-notizia section#notizie .articoli .single-notizia .img img {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 0.7rem;
  object-fit: cover;
  object-position: center;
}

body.single-notizia section#notizie .articoli .single-notizia .bottom-text {
  padding-right: 10%;
}

body.single-notizia section#notizie .articoli .single-notizia .bottom-text .title {
  margin-bottom: 1rem;
}

body.single-notizia section#notizie .articoli .single-notizia .bottom-text .title .h3 {
  line-height: 1.333;
}

@media (max-width: 768px) {
  body.single-notizia section#main .container,
  body.single-notizia section#final .container {
    grid-template-columns: 1fr;
  }

  body.single-notizia section#main .container > *,
  body.single-notizia section#final .container > * {
    grid-column: unset;
  }

  body.single-notizia section#main .top-bar {
    flex-direction: column;
  }

  body.single-notizia section#main .post-title h1 {
    font-size: 1.8rem;
  }
}

/* -----------------------------------
==============================================================================
	# NOLEGGIO SEMPLICE
==============================================================================
----------------------------------- */

body.single-noleggio:not(.noleggio-cat-pacchetto) .product-title h1,
body.single-noleggio:not(.noleggio-cat-pacchetto) .section-title h2 {
  font-size: 2.57rem;
  line-height: 1.18;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.875rem;
}

body .swiper-pagination-bullet-active {
  background-color: var(--accent);
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col {
  display: block;
  width: 50%;
  align-items: start;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col .product-img:not(.swiper) {
  background-color: var(--grey-1);
  border-radius: 0.625rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col .product-img .swiper-slide,
body .woo-variation-gallery-wrapper .woo-variation-gallery-slider .slick-slide {
  display: flex;
  justify-content: center;
  background-color: var(--grey-1);
  border-radius: 0.625rem;
}

body.single-product .additional-content .custom-cta {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

body.single-product .additional-content img,
body.single-noleggio .additional-content img {
  border-radius: 0.625rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col .product-img img,
body .woo-variation-gallery-wrapper .woo-variation-gallery-slider .slick-slide img {
  height: 30rem;
  object-fit: contain;
  border-radius: 0.625rem;
  mix-blend-mode: multiply;
  max-width: 90% !important;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col .play svg {
  width: 8rem;
  height: auto;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col .play svg path {
  fill: var(--accent);
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: all 300ms ease;
  cursor: pointer;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col .video {
  position: relative;
  cursor: pointer;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col video {
  border-radius: 0.625rem;
  margin-top: 3rem;
}

body.single-product #main .single-product-content .main-images-content .play svg {
  width: 8rem;
  height: auto;
}

body.single-product #main .single-product-content .main-images-content .play svg path {
  fill: var(--accent);
}

body.single-product #main .single-product-content .main-images-content .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: all 300ms ease;
  cursor: pointer;
}

body.single-product #main .single-product-content .main-images-content .video {
  position: relative;
  cursor: pointer;
}

body.single-product #main .single-product-content .main-images-content video {
  border-radius: 0.625rem;
  margin-top: 3rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col .swiper-pagination {
  position: unset;
  margin-top: 1rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col .video.active .play {
  opacity: 0;
  visibility: hidden;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .breadcrums {
  margin-bottom: 3rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .product-title {
  margin-bottom: 2.5rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .product-desc {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(108, 108, 108, 0.2);
  margin-bottom: 2rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .product-desc p:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .cta a {
  display: block;
  background-color: var(--accent);
  padding: 0.8rem;
  border-radius: 0.7rem;
  border: 2px solid var(--accent);
  text-align: center;
  font-weight: bold;
  color: white;
  line-height: 0.85;
  transition-duration: 0.3s;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .cta a:hover {
  background-color: transparent;
  color: var(--accent);
}

/* Specifiche */

body.single-noleggio:not(.noleggio-cat-pacchetto) section#specifiche {
  background-color: var(--grey-1);
  padding-top: 6.6rem;
  padding-bottom: 6.6rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#specifiche .section-title {
  margin-bottom: 2.1rem;
  text-align: center;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#specifiche .columns {
  padding-left: 5.6%;
  padding-right: 5.6%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  grid-column-gap: 3rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#specifiche .image {
  margin-bottom: 1.4rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#specifiche .title {
  text-align: center;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#specifiche .title h3 {
  font-size: 1.4rem;
}

/* Installazione */

body.single-noleggio:not(.noleggio-cat-pacchetto) section#installazione {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#installazione .section-title {
  text-align: center;
  margin-bottom: 3.18rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#installazione .section-title h2 {
  color: var(--accent);
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#installazione .section-text {
  padding-left: 17%;
  padding-right: 17%;
  margin-bottom: 3rem;
  text-align: center;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#installazione .columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.875rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#installazione .image {
  margin-bottom: 1.4rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#installazione .title {
  text-align: center;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#installazione .title .title h3 {
  font-size: 1.4rem;
}

/* Come funziona */

body.single-noleggio:not(.noleggio-cat-pacchetto) section#come-funziona {
  padding-top: 7.64rem;
  padding-bottom: 7rem;
  background-color: var(--grey-1);
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#come-funziona .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4.17rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#come-funziona .section-title {
  margin-bottom: 3rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#come-funziona .section-title h2 {
  color: var(--accent);
}

/* Final */

body.single-noleggio:not(.noleggio-cat-pacchetto) section#final {
  padding-top: 4.45rem;
  padding-bottom: 6.4rem;
}

body.single-noleggio:not(.noleggio-cat-pacchetto) section#final .section-content {
  padding-left: 17%;
  padding-right: 17%;
}

@media (max-width: 768px) {
  body.single-noleggio:not(.noleggio-cat-pacchetto) .product-title h1,
  body.single-noleggio:not(.noleggio-cat-pacchetto) .section-title h2 {
    font-size: 1.8rem;
  }

  body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns {
    flex-wrap: wrap;
  }

  body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns > .col {
    width: 100%;
  }

  body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns {
    grid-template-columns: 1fr;
  }

  /* body.single-noleggio:not(.noleggio-cat-pacchetto) section#main .columns .col.img {
    order: 2;
  } */

  body.single-noleggio:not(.noleggio-cat-pacchetto) section#specifiche .columns {
    grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    grid-row-gap: 3rem;
    padding-left: 0;
    padding-right: 0;
  }

  body.single-noleggio:not(.noleggio-cat-pacchetto) section#specifiche .title h3 {
    font-size: 1rem;
  }

  body.single-noleggio:not(.noleggio-cat-pacchetto) section#installazione .section-text,
  body.single-noleggio:not(.noleggio-cat-pacchetto) section#final .section-content {
    padding-left: 0;
    padding-right: 0;
  }

  body.single-noleggio:not(.noleggio-cat-pacchetto) section#installazione .columns {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 1.5rem;
  }

  body.single-noleggio:not(.noleggio-cat-pacchetto) section#come-funziona .columns {
    grid-template-columns: 1fr;
    grid-row-gap: 2rem;
  }
}

section#main-index-content {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* -----------------------------------
==============================================================================
	# WOO
==============================================================================
----------------------------------- */

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: var(--accent);
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background-color: hwb(27 5% 20%);
}

/* -----------------------------------
==============================================================================
	# FAQ
==============================================================================
----------------------------------- */

body.page-template-tmpl-faq section#main {
  padding-top: 2.54rem;
  padding-bottom: 8.34rem;
}

body.page-template-tmpl-faq section#main > .container {
  max-width: 830px;
}

body.page-template-tmpl-faq section#main .breadcrums {
  margin-bottom: 4.125rem;
}

body.page-template-tmpl-faq section#main .page-titles {
  margin-bottom: 5.53rem;
}

body.page-template-tmpl-faq section#main .page-titles h1,
body.page-template-tmpl-faq section#main .page-titles h2 {
  font-size: 2.6rem;
  line-height: 1.18;
  color: var(--accent);
}

/* -----------------------------------
==============================================================================
	# ACCORDION
==============================================================================
----------------------------------- */

.accordion .single-acc-el {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(108, 108, 108, 0.2);
}

.accordion .single-acc-el,
.accordion .single-acc-el * {
  transition-duration: 0.3s;
}

.accordion .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion .title h2 {
  font-size: 1.875rem;
  color: var(--grey-3);
}

.accordion .icon {
  position: relative;
  width: 1rem;
  height: 1rem;
}

.accordion .icon::before,
.accordion .icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1875rem;
  left: 0;
  top: calc(50% - 0.09375rem);
  background-color: var(--grey-3);
  transform-origin: center;
  transition-duration: 0.3s;
}

.accordion .icon::after {
  transform: rotate(90deg);
}

.accordion .single-acc-el.open .icon::after {
  transform: rotate(0);
}

.accordion .content {
  padding-top: 1.125rem;
  display: none;
}

.accordion .single-acc-el.open .content {
  display: block;
}

.accordion .content p {
  line-height: 1.25;
  color: var(--grey-3);
}

/* -----------------------------------
==============================================================================
	# SICUREZZA
==============================================================================
----------------------------------- */

body.page-template-tmpl-sicurezza section#main {
  padding-top: 4.2rem;
  padding-bottom: 8rem;
}

body.page-template-tmpl-sicurezza section#main .intro {
  margin-bottom: 4.26rem;
}

body.page-template-tmpl-sicurezza section#main .container.narrow {
  max-width: 783px;
}

body.page-template-tmpl-sicurezza section#main .intro .page-title {
  margin-bottom: 2rem;
}

body.page-template-tmpl-sicurezza section#main .intro .page-title h1 {
  font-size: 2.57rem;
  line-height: 1.18;
  color: var(--accent);
}

body.page-template-tmpl-sicurezza section#main .intro .intro-text p {
  line-height: 1.25;
}

body.page-template-tmpl-sicurezza section#main .intro .intro-text p:not(:last-of-type) {
  margin-bottom: 1.5em;
}

body.page-template-tmpl-sicurezza section#main .documents .doc-table .row {
  display: grid;
  grid-template-columns: 2fr 5fr 5fr;
  grid-column-gap: 1.875rem;
  padding-top: 1.64rem;
  padding-bottom: 1.64rem;
  border-bottom: 2px solid rgba(112, 112, 112, 0.2);
}

body.page-template-tmpl-sicurezza section#main .documents .doc-table .row.title h3,
body.page-template-tmpl-sicurezza section#main .documents .doc-table .row.doc p {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.25;
  color: var(--grey-3);
}

body.page-template-tmpl-sicurezza section#main .documents .doc-table .row.title h3 {
  text-transform: uppercase;
  color: rgba(112, 112, 112, 0.5);
}

body.page-template-tmpl-sicurezza section#main .documents .doc-table .row.doc p a {
  color: var(--accent);
}

body.page-template-tmpl-sicurezza section#main .documents .doc-table .row.doc p a:hover {
  filter: brightness(0.75);
}

body.page-template-tmpl-sicurezza section#main .documents .doc-table .row .col {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  body.page-template-tmpl-sicurezza section#main .documents .doc-table .row.title {
    display: none;
  }

  body.page-template-tmpl-sicurezza section#main .documents .doc-table .row {
    grid-template-columns: 1fr;
    grid-row-gap: 0.65rem;
  }
}

/* -----------------------------------
==============================================================================
	# PARTNER
==============================================================================
----------------------------------- */

body.page-template-tmpl-partner section#main {
  margin-top: 4.35rem;
  margin-bottom: 4.35rem;
  position: relative;
}

body.page-template-tmpl-partner section#main .background-side {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 0.9375rem);
  height: 100%;
  background-color: var(--grey-1);
  border-top-left-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
}

body.page-template-tmpl-partner section#main .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.875rem;
}

body.page-template-tmpl-partner section#main .col.desc {
  padding: 2rem 12% 2rem 18%;
  display: flex;
  align-items: center;
}

body.page-template-tmpl-partner section#main .col.desc .titoletto {
  margin-bottom: 3.18rem;
}

body.page-template-tmpl-partner section#main .col.desc .titoletto h2 {
  font-size: 0.93rem;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--grey-4);
}

body.page-template-tmpl-partner section#main .col.desc .page-title {
  margin-bottom: 0.56rem;
  max-width: 80%;
}

body.page-template-tmpl-partner section#main .col.desc .page-title h1 {
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--accent);
  line-height: 1.18;
}

body.page-template-tmpl-partner section#main .col.desc .description p {
  line-height: 1.33;
  color: var(--grey-3);
}

body.page-template-tmpl-partner section#main .col.desc .description p:not(:last-of-type) {
  margin-bottom: 1.5em;
}

body.page-template-tmpl-partner section#main .col.form {
  padding: 16% 0 16% 17.5%;
}

@media (max-width: 768px) {
  body.page-template-tmpl-partner section#main .background-side {
    display: none;
  }

  body.page-template-tmpl-partner section#main .columns {
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
  }

  body.page-template-tmpl-partner section#main .col.desc,
  body.page-template-tmpl-partner section#main .col.form {
    padding: 0;
  }

  body.page-template-tmpl-partner section#main .col.desc .page-title h1 {
    font-size: 1.8rem;
  }

  body.page-template-tmpl-partner section#main .col.desc .description p {
    font-size: 1rem;
  }
}

body .iubenda-tp-btn[data-tp-float][data-tp-float="bottom-right"],
body .iubenda-tp-btn[data-tp-float][data-tp-float="top-right"] {
  left: 0 !important;
  right: auto !important;
}

@media (min-width: 768px) {
  body.home section#products .boxes .single-product .col.text .content .excerpt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 3.7rem;
  }
}

body .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999;
  -webkit-animation: fade 0.6s;
  -moz-animation: fade 0.6s;
  animation: fade 0.6s;
  overflow: auto;
  display: none;
}

body .popup-overlay .popup {
  opacity: 0.9;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
  right: 0;
  font-size: 1.25rem;
  margin: auto;
  width: 85%;
  min-width: 320px;
  max-width: 600px;
  position: absolute;
  padding: 4rem 3rem;
  border: 1px solid #383838;
  background: #fefefe;
  z-index: 1000;
  border-radius: 0.7rem;
}

body .popup-overlay .popup img {
  max-width: 20rem;
  margin: auto;
  margin-bottom: 2.1rem;
}

body .popup-overlay .popup .close {
  opacity: 1;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 32px;
  position: absolute;
  border: none;
  cursor: pointer;
  outline: none;
  color: var(--grey-4);
  border-radius: 0.6rem;
}

body .popup-overlay .popup .close:before {
  color: ;
  content: "X";
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
  transition: all 0.5s;
}

body.woocommerce-cart .ppc-button-wrapper,
body.single-product .ppc-button-wrapper {
  display: none;
}

body.single-product #ppcp-messages {
  margin-bottom: 2.5rem;
  margin-top: -1rem;
}

body.woocommerce-cart #ppcp-messages {
  margin-bottom: -0.2rem;
  margin-top: 2rem;
}

body.woocommerce-checkout #ppcp-messages {
  margin-top: 1.7rem;
}

body.single-product .logo-mepa {
  padding-top: 0;
  margin-top: -1.74rem;
  padding-bottom: 2.5rem;
  max-width: 12rem;
}

body #ppcp-messages iframe {
  width: 100%;
  height: 50px !important;
}

body .popup-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999;
  -webkit-animation: fade 0.6s;
  -moz-animation: fade 0.6s;
  animation: fade 0.6s;
  overflow: auto;
  display: none;
}

body .popup-form .popup {
  opacity: 0.9;
  top: 50%;
  transform: translatey(-50%);
  left: 0;
  right: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  margin: auto;
  width: 85%;
  min-width: 320px;
  max-width: 600px;
  position: absolute;
  padding: 4rem 3rem;
  border: 1px solid #383838;
  background: #fefefe;
  z-index: 1000;
  border-radius: 0.7rem;
}

body .popup-form .popup img {
  max-width: 20rem;
  margin: auto;
  margin-bottom: 2.1rem;
}

body .popup-form .popup .close {
  opacity: 1;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 32px;
  position: absolute;
  border: none;
  cursor: pointer;
  outline: none;
  color: var(--grey-4);
  border-radius: 0.6rem;
}

body .popup-form .popup .close:before {
  color: ;
  content: "X";
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
  transition: all 0.5s;
}

body.single-noleggio.noleggio-cat-pacchetto section#form .container #simple-contant-form .messages {
  bottom: 2rem;
}

@media only screen and (max-width: 767px) {
  body .popup-overlay .popup {
    font-size: 1rem;
  }

  body .popup-form .popup {
    font-size: 1rem;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#form .container #simple-contant-form input:not([type="submit"]) {
    width: 100%;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#form .container #simple-contant-form {
    padding: 3.5rem 1.5rem;
    margin-bottom: 4.5rem;
  }

  body.single-noleggio.noleggio-cat-pacchetto section#info {
    margin-bottom: 1.5rem;
  }
}

@media only screen and (min-width: 768px) {
  body > header .sub-voices .single-sub[data-voice="noleggio"] .single-col.big .content,
  body > header .sub-voices .single-sub[data-voice="barriere"] .single-col.big .content {
    padding-left: 1rem;
  }
}
