section.v-highlight-slide {
  padding-top: 120px;
  padding-bottom: 120px;
}
section.v-highlight-slide .swiper-slide {
    width: 400px;
}



/* --------------------------------------------------------
Style Sheet for Vetro Commerciale

version: 3.0
creation: 11.07.2022
last modified: 18.06.2024
author: Paolo Pizzuti
email: info@paolopizzuti.it
website: https://www.paolopizzuti.it
----------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --main-color: #2c4731;
    --main-dark-color: #151815;
    --sap-green: #367826;
    --sage-green: #698f5e;
    --forest-green: #1a3b1a;
    --olive-green: #93aa0c;
    --olive-green-light: rgba(147, 170, 12, .1);
    --lime-green: #c5c200;
    --background-color: #F7FAF9;

    --header-height: 70px;
    --global-transition-timing: .5s;
    --product-card-padding: 15px;
    --box-drop-shadow: 0 8px 25px rgba(45,71,50,.07);

    --swiper-pagination-color: #2c4731;
    --swiper-navigation-color: #fff;
}

.bg-dark-green {
  background-color: var(--main-color);
}
.bg-sap-green {
  background-color: var(--sap-green);
}
.bg-olive-green-light {
  background-color: var(--olive-green-light);
}
:where(.bg-dark-green, .bg-sap-green) * {
 color: white;
}
:where(.bg-dark-green, .bg-sap-green) .v-cta {
  border: 1px solid white;
  background-color: transparent !important;
}


* {
    font-family: 'Arvo', Helvetica, Arial, sans-serif !important;
    font-weight: normal;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    font-size: 14px;
    outline: 0;
}
/* STARTERS */
*, :after, :before {
    box-sizing: border-box;
}
.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
}
.clearfix:after {
    clear: both;
}
.noscroll {
    overflow: hidden;
}
.container {
    max-width: 1200px;
}
.iubenda-tp-btn {
    display: none !important;
}
body, html {
    background-color: var(--background-color);
    font-size: 14px;
    color: var(--main-color);
}
body.menuopen {
    overflow: hidden;
    touch-action: none;
}
ul {
    margin: 0;
}
a, a:hover, a:visited, a:active {
    color: inherit;
    text-decoration: none;
}
input, button, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 0;
    border-radius: 0;
}
h1,h2,h3,h4,h5,h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
}
h1 {
    font-size: 3.2rem;
}
h2 {
    font-size: 2.6rem;
}
h3 {
    font-size: 2.4rem;
}
p {
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 25px;
}
p:last-of-type {
    margin: 0;
}
p a {
    text-decoration: underline;
}
strong {
    font-weight: 600;
}
img {
    width: 100%;
    height: auto;
}
a.v-cta, button.v-cta {
    display: inline-block;
    padding: 10px 12px;
    max-width: 230px;
    width: 100%;
    height: 65px;
    margin-top: 30px;
    background-color: var(--main-color);
    color: white !important;
    font-size: 15px;
    text-align: left;
    text-transform: uppercase;
    background-image: url(../images/arrow-cta.svg);
    background-repeat: no-repeat;
    background-size: 14%;
    background-position: 92% 82%;
    cursor: pointer;
    transition: background-position var(--global-transition-timing);
}
a.v-cta:hover, button.v-cta:hover {
    background-position: 94% 82%;
}
.v-regular-padding {
    padding: 60px 0;
}
.v-medium-padding {
    padding: 100px 0;
}
.v-large-padding {
    padding: 150px 0;
}
.v-breadcrumbs {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}
.v-breadcrumbs:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--main-color);
    opacity: 0.1;
}
.v-breadcrumbs ul {
    font-size: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.v-breadcrumbs li {
    display: inline;
    font-size: 12px;
    opacity: .4;
    transition: opacity var(--global-transition-timing);
    flex-shrink: 0;
}
.v-breadcrumbs li:hover {
    opacity: 1;
}
.v-breadcrumbs li:last-child {
    opacity: 1;
}
.v-breadcrumbs li+li:before {
    padding: 8px;
    color: black;
    content: "—";
}
.v-breadcrumbs li a {
    text-decoration: none;
} {
    display: inline;
    font-size: 12px;
}
::-moz-selection { /* Code for Firefox */
    color: white;
    background: var(--main-color);
}
::selection {
    color: white;
    background: var(--main-color);
}
header.v-main-header {
    width: 100%;
    color: var(--main-color);
    background-color: var(--background-color);
    transition: background-color var(--global-transition-timing);
    position: sticky;
    top: 0;

}
header.v-main-header .v-header-inner {
    position: relative;
    /* padding-top: 20px; */
    /* padding-bottom: 20px; */
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header.v-main-header .v-header-inner:after {
    content:"";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--main-color);
    opacity: 0.1;
}
header.v-main-header .v-header-inner .v-logo {
    position: relative;
    display: block;
    flex-shrink: 1;
    width: 160px;
}
header.v-main-header .v-header-inner .v-logo img:nth-child(1) {
    opacity: 1;
    transition: opacity var(--global-transition-timing);
}
header.v-main-header .v-header-inner .v-logo img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity var(--global-transition-timing);
}
header.v-main-header .v-header-inner .v-header-nav {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
header.v-main-header .v-header-inner .v-header-nav > ul {
    margin-right: 10px;
}
header.v-main-header .v-header-inner .v-header-nav > ul > li {
    display: inline;
    position: relative;
}
header.v-main-header .v-header-inner .v-header-nav > ul > li > a {
    display: inline-block;
    position: relative;
    padding: 5px 15px;
    color: var(--main-color);
    font-weight: 500;
}
header.v-main-header .v-header-inner .v-header-nav > ul > li > a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--main-color);
    transition: width var(--global-transition-timing);
}
.v-float.scroll header.v-main-header .v-header-inner .v-header-nav > ul > li > a:before {
    background-color: var(--main-color);
}
header.v-main-header .v-header-inner .v-header-nav > ul > li.current a:before/*,
header.v-main-header .v-header-inner .v-header-nav li a:hover:before*/ {
    width: 20px;
}
/* SUBMENU */
header.v-main-header .v-header-inner .v-header-nav ul ul {
    position: absolute;
    top: calc(100% + 5px);
    min-width: 150px;
    background: #fff;
    padding: 25px;
    margin: 0;
    /* border: 1px solid #eee; */
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.3s;
    z-index: 10000;
    box-shadow: var(--box-drop-shadow);
}
header.v-main-header .v-header-inner .v-header-nav > ul > li:hover > a + ul {
    visibility: visible;
    opacity: 1;
}
header.v-main-header .v-header-inner .v-header-nav ul ul > li {
    margin-bottom: 12px;
}
header.v-main-header .v-header-inner .v-header-nav ul ul > li:last-of-type {
    margin: 0;
}
header.v-main-header .v-header-inner .v-header-nav ul ul > li a {
    display: block;
    font-weight: 600;
    color: var(--main-color) !important;
}
header.v-main-header .v-header-inner .v-header-nav ul ul > li a:hover {
    text-decoration: underline;
}

header.v-main-header .v-header-inner .v-header-nav .v-list,
header.v-main-header .v-header-inner .v-header-nav .v-hamburger {
    position: relative;
    width: var(--header-height);
    height: var(--header-height);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
header.v-main-header .v-header-inner .v-header-nav .v-search:before,
header.v-main-header .v-header-inner .v-header-nav .v-list:before,
header.v-main-header .v-header-inner .v-header-nav .v-hamburger:before {
    content:"";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: var(--main-color);
    opacity: 0.1;
}
header.v-main-header .v-header-inner .v-header-nav .v-list.v-active {
    background-color: var(--main-color);
    color: var(--background-color);
}
header.v-main-header .v-header-inner .v-header-nav .v-list.v-active svg path {
    fill: var(--background-color) !important;
}
header.v-main-header .v-header-inner .v-header-nav .v-list .v-notify {
    position: absolute;
    width: 280px;
    top: calc(100% + 10px);
    right: 10px;
    padding: 20px;
    background-color: white;
    color: black;
    box-shadow: 0 0 5px rgba(0,0,0,.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s;
    display: none;
}
header.v-main-header .v-header-inner .v-header-nav .v-list.v-active .v-notify {
    opacity: 1;
    pointer-events: all;
}
header.v-main-header .v-header-inner .v-header-nav .v-search {
    position: relative;
}
header.v-main-header .v-header-inner .v-header-nav .v-search svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    fill: var(--main-color);
    width: 20px;
}
header.v-main-header .v-header-inner .v-header-nav .v-search input {
    background-color: transparent;
    width: var(--header-height);
    height: var(--header-height);
    padding: 10px 20px;
    cursor: pointer;
    opacity: 0;
    transition: width .3s;
    color: var(--main-color);
}
.v-float header.v-main-header .v-header-inner .v-header-nav .v-search input {
    color: white;
}
.v-float header.v-main-header .v-header-inner .v-header-nav .v-search input::placeholder {
    color: white;
    opacity: .6;
}
header.v-main-header .v-header-inner .v-header-nav .v-search input::placeholder {
    color: var(--main-color);
    opacity: .4;
}
header.v-main-header .v-header-inner .v-header-nav .v-search input:focus {
    width: 200px;
    cursor: text;
    opacity: 1;
}
header.v-main-header .v-header-inner .v-header-nav.active ul {
    opacity: 0;
}
header.v-main-header .v-header-inner .v-header-nav .v-search input:focus + svg {
    opacity: 0;
}
header.v-main-header .v-header-inner .v-header-nav .v-list {
    width: auto;
    padding-left: 22px;
    padding-right: 22px;
    font-weight: 500;
    display: flex;
}
header.v-main-header .v-header-inner .v-header-nav .v-list .v-list-icon {
    margin-right: 5px;
    transform: translateY(-2px);
}
header.v-main-header .v-header-inner .v-header-nav .v-list .v-list-icon svg {
    width: 26px;
    fill: var(--main-color);
}
.v-float header.v-main-header {
    position: fixed !important;
    color: #fff;
    background-color: transparent;
}
.scroll header.v-main-header {
    color: var(--main-color);
    background-color: var(--background-color);
}
.scroll header.v-main-header .v-header-inner .v-header-nav > ul > li > a {
    color: var(--main-color);
}
.v-float header.v-main-header .v-header-inner .v-logo img:nth-child(1),.v-float.scroll header.v-main-header .v-header-inner .v-logo img:nth-child(2) {
    opacity: 0;
}
.v-float header.v-main-header .v-header-inner .v-logo img:nth-child(2),
.v-float.scroll header.v-main-header .v-header-inner .v-logo img:nth-child(1) {
    opacity: 1;
}
.v-float header.v-main-header .v-header-inner:after,
.v-float header.v-main-header .v-header-inner .v-header-nav .v-search:before,
.v-float header.v-main-header .v-header-inner .v-header-nav .v-list:before,
.v-float header.v-main-header .v-header-inner .v-header-nav .v-hamburger:before {
    background-color: white;
    opacity: .2;
}
.v-float.scroll header.v-main-header .v-header-inner:after,
.v-float.scroll header.v-main-header .v-header-inner .v-header-nav .v-search:before,
.v-float.scroll header.v-main-header .v-header-inner .v-header-nav .v-list:before,
.v-float.scroll header.v-main-header .v-header-inner .v-header-nav .v-hamburger:before {
    background-color: var(--main-color);
}
.v-float header.v-main-header .v-header-inner .v-header-nav li a {
    color: white;
}
.v-float header.v-main-header .v-header-inner .v-header-nav svg path {
    fill: #fff;
}
.v-float.scroll header.v-main-header .v-header-inner .v-header-nav svg path {
    fill: var(--main-color);
}
.v-float header.v-main-header .v-header-inner .v-header-nav li a:before {
    background-color: white;
}
.v-float header.v-main-header .hamburger .line {
    background-color: white;
}
section.v-home-intro {
    position: relative;
}
section.v-home-intro .container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}



section.v-home-intro-2024 {
  background-size: cover;
  background-position: center center;
}
section.v-home-intro-2024 .v-home-container {
  height: 100vh;
  display: flex;
  padding-top: 120px;
  padding-bottom: 120px;
  align-items: center;
  /* justify-content: center; */
}
section.v-home-intro-2024 .v-home-container h1 {
  /* color: white; */
  text-align: left;
  font-size: 4rem;
  /* transform: translateY(-300%); */
}

.v-scroll-anim {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: .5s;
    margin-top: 30px;
}
.v-scroll-anim.hide {
    opacity: 0;
}
.v-scroll-anim .v-line {
    position: relative;
    width: 2px;
    height: 50px;
    margin-top: 5px;
}
.v-scroll-anim .v-line:before {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    animation: anim 1.5s infinite;
    animation-timing-function: cubic-bezier(.5,0,0,1);
}

section .v-background {
    position: relative;
    height: 100vh;
    max-height: 900px;
    background-size: cover;
    display: flex;
    align-items: center;
    z-index: 10;
}
section .v-background h1 {
    color: white;
    font-weight: 700;
    font-size: 3.8rem;
    margin-bottom: 40px;
}
section .v-background p {
    color: white;
    font-size: 16px;
    max-width: 500px;
}
#canvas-basic {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
header.v-main-header {
    z-index: 10000;
}
header.v-main-header .v-hamburger {
    display: none !important;
    cursor: pointer;
}
header.v-main-header .hamburger {
    height: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header.v-main-header .hamburger .line,
.v-float.scroll header.v-main-header .hamburger .line {
    width: 30px;
    height: 2px;
    background-color: var(--main-color);
    transform-origin: 69% 50%;
    transition-duration: .2s;
}
body.menuopen header.v-main-header .hamburger {
    position: relative;
    z-index: 10000;
    transform: translateX(-2px);
    transition: transform .2s;
}
body.menuopen header.v-main-header .hamburger .line {
    /* background-color: #fff; */
}
body.menuopen header.v-main-header .hamburger .line.line1 {
    transform: rotate(-45deg);
}
body.menuopen header.v-main-header .hamburger .line.line2 {
    transform: rotate(45deg);
}
header.v-main-header .v-mobile-nav {
    display: none;
}
section.v-home-steps {
    background-color: var(--main-color);
}
section.v-home-steps * {
    color: white;
}
section.v-home-steps .v-title {
    text-align: center;
    margin-bottom: 100px;
}
section.v-home-steps .v-title h2 {
    font-size: 40px;
}
section.v-home-steps .v-title p {
    font-size: 16px;
}
section.v-home-steps .v-scroller {
    /* height: 100vh; */
}
section.v-home-steps .v-scroller .v-step {
    padding: 50px 100px;
    /* margin-bottom: 70px; */
    opacity: .2;
    transition: opacity 1s;
    /* position: absolute; */
    /* height: 50vh; */
}
section.v-home-steps .v-scroller .v-step.active {
    opacity: 1;
}
section.v-home-steps .v-scroller .v-step:last-of-type {
    margin-bottom: 0;
}
section.v-home-steps .v-scroller .v-step.active {
    opacity: 1;
}
section.v-home-steps .v-scroller .v-step p {
    font-size: 14px;
}


section.v-image-text .row {
  --bs-gutter-x: 8rem; /* Cambia la dimensione del gutter orizzontale */
  --bs-gutter-y: 8rem; /* Cambia la dimensione del gutter verticale (se necessario) */
}
section.v-image-text-1 .text {
  padding-top: 40px;
}
section.v-image-text-1.v-reverse .row {
  flex-direction: row-reverse;
}
section.v-image-text-2 .text {
  margin-bottom: 80px;
}
section.v-image-text-3 .text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 80px;
}
section.v-focus {
  background-position: center center;
  background-size: cover;
}
section.v-focus .text {
  max-width: 980px;
}

.v-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.v-video video {
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* z-index: -1; */
}

.v-focus-slide {
  margin-top: 80px;
}
.v-focus-slide .swiper-slide {
  overflow: hidden;
}
.v-focus-slide .v-slide-content {
  width: 100%;
  height: 520px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.v-focus-slide .v-slide-content:before {
  content:"";
  position: absolute;
  left: 0;
  top: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,0));
  z-index: 2;
}
/* .v-focus-slide .v-slide-content .small-title {
  position: relative;
  z-index: 10;
} */
.v-focus-slide .v-slide-content .title {
  position: relative;
  z-index: 10;
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  width: 80%;
}
.v-focus-slide .v-slide-content .title .argument {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.v-focus-slide .v-slide-content a.v-cta {
  position: relative;
  z-index: 11;
  align-self: flex-end;
  background-color: white;
  background-image: url(../images/arrow-next.svg);
  background-size: 50%;
  background-position: center center;
  margin-top: 0;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-focus-slide .v-slide-content img {
  position: absolute;
  object-fit: cover;
  object-position: center center;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}
.v-focus-slide .swiper-pagination {
  position: relative;
  bottom: unset;
  padding: 24px 0;
}
.v-focus-slide .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

section.v-full-image-text {
  background-size: cover;
  background-position: center center;
}
section.v-full-image-text * {
  color: white;
}
section.v-full-image-text a.v-cta {
  background-color: transparent;
  border: 1px solid white;
}



section .v-video {
    margin-top: 50px;
}
section .v-video video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
section.v-category .v-products-list .v-product-card .v-product-image:before {
    padding-top: 70% !important;
}
section.v-category .v-products-list .v-product-card .v-product-image img {
    width: 100% !important;
    height: 100% !important;
}
section.v-category .v-products-list .v-product-card .v-product-title {
    margin-bottom: 0 !important;
}
section.v-category .v-products-list .v-product-card .v-product-title h4 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-right: 0 !important;
}
section.v-products .v-active-filter {
    padding-bottom: 35px;
}
section.v-products .v-active-filter h3 {
    font-size: 14px;
    margin-bottom: 5px;
}
section.v-products .v-active-filter .v-active-filter-list {
    display: flex;
    align-items: center;
}
section.v-products .v-active-filter ul {
    font-size: 0;
    margin-right: 10px;
    /* margin-bottom: 5px; */
}
section.v-products .v-active-filter li {
    display: inline-block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 300;
    border: 1px solid #999;
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-right: 4px;
    margin-bottom: 4px;
    min-width: 150px;
}
section.v-products .v-active-filter li:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url(../images/delete-btn.svg);
    background-size: contain;
    margin-left: 8px;
    opacity: .7;
}
section.v-products .v-active-filter li .v-label {
    font-size: .7rem;
}
section.v-products .v-active-filter li .v-cat {
    color: #222;
}
section.v-products .v-active-filter .v-filter-reset {
    /* margin-left: 16px; */
    font-size: 12px;
    color: #555;
    text-decoration: underline;
    padding: 5px 0;
    cursor: pointer;
}
section.v-products .v-products-container {
    display: flex;
}
section.v-products aside.v-filter {
    width: 360px;
    padding-right: 20px;
    /* position: sticky;
    top: 100px; */
    align-self: flex-start;
}
section.v-products h6 {
    font-size: 14px;
    color: var(--main-dark-color);
    margin-bottom: 10px;
}
section.v-products aside.v-filter .v-cat-filter {
    margin-bottom: 25px;
}

section.v-products aside.v-filter .v-search .v-search-field {
    display: flex;
}
section.v-products aside.v-filter .v-search .v-search-field button {
    padding: 5px 12px;
    cursor: pointer;
    background-color: var(--main-color);
    color: white;
}
section.v-products aside.v-filter .v-search input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d7e5d7;
    background-color: transparent;
    transition: border .3s;
    color: var(--main-color);
    font-weight: 400;
}
section.v-products aside.v-filter .v-search input:focus {
    border: 1px solid var(--sage-green);
}
section.v-products aside.v-filter li {
    font-size: 14px;
    margin-bottom: 2px;
    display: list-item;
}
section.v-products aside.v-filter ul li ul {
    margin: 5px 0 10px 15px;
}
section.v-products aside.v-filter input[type=checkbox] {
    position: relative;
    width: 16px;
    height: 16px;
    background-color: #d7e5d7;
    margin-right: 4px;
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: middle;
    transition: background-color .2s;
    cursor: pointer;
    outline: 1px solid #d7e5d7;
}
section.v-products aside.v-filter input[type=checkbox]:checked {
    background-image: url(../images/check-light.svg);
    background-size: 60% 60%;
    background-color: var(--main-color);
    outline: 1px solid var(--olive-green);
    /* border: 1px solid rgba(44, 71, 49, .05); */
}
section.v-products aside.v-filter input[type=checkbox]:checked + label {
    /* font-weight: 400; */
}
section.v-products aside.v-filter input[type=checkbox]:disabled,
section.v-products aside.v-filter input[type=checkbox]:disabled + label {
    opacity: .3;
    cursor: no-drop;
}
section.v-products aside.v-filter label {
    margin: 0;
    padding: 0;
    cursor: pointer;
    line-height: 1.2;
    vertical-align: middle;
    display: inline-block !important;
    font-weight: 300;
}
section.v-products aside.v-filter .v-cat-image ul {
    /* display: flex; */
    font-size: 0;
}
section.v-products aside.v-filter .v-cat-image li {
    display: inline-block;
    width: 33.333333%;
    padding-right: 8px;
    margin-bottom: 8px;
}
section.v-products aside.v-filter .v-cat-image label {
    text-align: center;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
}
section.v-products aside.v-filter .v-cat-image label img {
    margin-bottom: 5px;
    border: 2px solid transparent;
    transition: border .2s;
}

section.v-products aside.v-filter .v-cat-image input[type=checkbox] {
    display: none;
}
section.v-products aside.v-filter .v-cat-image input[type=checkbox]:checked + label {
    font-weight: 600;
}
section.v-products aside.v-filter .v-cat-image input[type=checkbox]:checked + label img {
    border: 2px solid rgba(44, 71, 49, .6);
}
section.v-products aside.v-filter .v-clear-filter {
    /* border: 1px solid rgb(210, 46, 46); */
    color: rgb(210, 46, 46);
    display: inline-block;
    padding: 4px 8px;
    cursor: pointer;
    background-color: rgb(210, 46, 46);
    color: white;
    transition: opacity .2s;
}
section.v-products aside.v-filter .v-clear-filter:hover {
    opacity: .8;
}
section.v-products aside.v-filter .v-filter-buttons {
    display: none;
}

section.v-products .v-products-list {
    /* display: flex; */
    position: relative;
}
section.v-products .v-products-list .v-warning {
    position: relative !important;
    z-index: 100;
    font-size: 18px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 30px 0;
}
section.v-products .v-products-list .v-warning img {
    width: 70px;
    margin-bottom: 20px;
    opacity: .6;
}
section.v-products .v-products-list .v-product-card {
    margin-bottom: 30px;
}
section.v-products .v-products-list .v-product-card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: white;
    height: 100%;
    padding: var(--product-card-padding);
}
section.v-category .v-products-list .v-product-card-content {
    padding: 0;
}
section.v-products .v-products-list .v-product-card h4 {
    font-size: 12px;
    font-weight: 400;
}
section.v-products .v-products-list .v-product-card .v-product-image {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 1px;
    font-size: 0;
}
section.v-products .v-products-list .v-product-card .v-product-image:before {
    content:"";
    display: block;
    padding-top: 125%;
}
section.v-products .v-products-list .v-product-card .v-product-image img {
    /* position: absolute;
    top: 0;
    left: 50%;
    top: 50%;
    height: 70%;
    transform: translateX(-50%) translateY(-50%);
    width: auto;*/
    left: 50%;
    top: 50%;
    height: 70%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    object-fit: contain;
    width: 80%;
    height: 80%;
}
section.v-products .v-products-list .v-product-card .v-product-title {
    flex: 1 1 auto;
    margin-bottom: 20px;
    min-height: 40px;
}
section.v-products .v-products-list .v-product-card .v-product-title h4 {
    margin: 0;
    margin-right: 30px;
}
section.v-products .v-products-list .v-product-card .v-product-colors {
    position: absolute;
    right: var(--product-card-padding);
    top: var(--product-card-padding);
}
section.v-products .v-products-list .v-product-card .v-product-colors li {
    width: 16px;
    height: 16px;
    background-color: red;
    border-radius: 100%;
    margin-top: 2px;
    border: 1px solid rgba(80, 80, 80, 0.2);
}
section.v-products .v-products-list .v-product-card .v-product-add {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    /* text-decoration: underline; */
}
section.v-products .v-products-list .v-product-card .v-product-add:hover {
    text-decoration: underline;
}
section.v-products .v-products-list .v-filter-mobile {
    display: none;
    top: 200px;
    left: 0;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--forest-green);
    cursor: pointer;
}
section.v-products .v-products-list .v-filter-mobile .v-filter-button {
    display: flex;
    justify-content: center;
    align-items: center;
}
section.v-products .v-products-list .v-filter-mobile .v-filter-button img {
    width: 20px;
    height: auto;
    margin-right: 10px;
}
section.v-products .v-pagination {
    font-size: 0;
    text-align: center;
    padding: 50px 0;
}
section.v-products .v-pagination a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    background-color: var(--sage-green);
    color: white;
    font-size: 16px;
    font-weight: 300;
    margin: 0 1px;
    transition: opacity .2s;
}
section.v-products .v-pagination a.active {
    background-color: var(--main-color);
    opacity: 1;
}
section.v-products .v-pagination a:hover {
    opacity: .9;
}
section.v-products .v-pagination a.active:hover {
    opacity: 1;
}

/* PAGINA PRODOTTO */
section.v-product-page .v-single-product-container {
    display: flex;
}
section.v-product-page .v-product-image {
    position: relative;
    width: 50%;
    padding: 150px 50px;
    background-color: white;
    text-align: center;
    /* min-height: 60vh; */
    max-height: 100vh;
}
section.v-product-page .v-product-image:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 300%;
    background-color: white;
    right: 100%;
}
section.v-product-page .v-product-image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.v-back {
    background-color: rgba(0,0,0,.08);
    padding: 8px 16px;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.v-back svg {
    fill: rgba( var(--main-color), .4);;
    width: 7px;
    margin-right: 10px;
}
section.v-product-page .v-back {
    position: absolute;
    top: 50px;
    left: 0;
    color: #5e6760;
    cursor: pointer;
    transition: background-color .1s, color .1s;
}
section.v-product-page .v-back svg {
    fill: #5e6760;
    transition: fill .1s;
}
section.v-product-page .v-back:hover {
    background-color: var(--main-color);
    color: white;
}
section.v-product-page .v-back:hover svg {
    fill: white;
}
section.v-product-page .v-product-sheet {
    padding: 100px 50px;
    width: 50%;
}
section.v-product-page .v-product-sheet h1 {
    font-size: 28px;
    font-weight: 700;
}
section.v-product-page .v-product-sheet .p-color {
    margin-top: -25px;
    color: #777;
    font-weight: 300;
}
section.v-product-page .v-product-sheet .v-product-title {
    margin-bottom: 30px;
}
section.v-product-page .v-product-sheet .v-product-row {
    margin-bottom: 30px;
}
section.v-product-page .v-product-sheet .v-product-row:last-of-type {
    margin: 0;
}
section.v-product-page .v-product-sheet h4 {
    margin-bottom: 18px;
    font-size: 18px;
}
section.v-product-page .v-product-sheet .v-product-list p {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}
section.v-product-page .v-product-sheet .v-product-list li {
    font-size: 18px;
    padding: 2px 0;
}
section.v-product-page .v-product-colors ul {
    font-size: 0;
}
section.v-product-page .v-product-colors input[type=checkbox] {
    display: inline-block;
    margin-right: 5px;
    font-size: 0;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: red;
    cursor: pointer;
    border: 1px solid rgba(80,80,80,.2);
}
section.v-product-page .v-product-colors input[type=checkbox]:checked:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -5px;
    top: -5px;
    right: -5px;
    border: 2px solid var(--sage-green);
    border-radius: 100%;
}
section.v-product-page .v-product-colors ul {
    font-size: 0;
}
section.v-product-page .v-product-colors li {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}
section.v-product-page .v-product-colors li:nth-child(3) {
}
section.v-product-page .v-product-colors li a {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    background-color: white;
    padding: 5px;
}
section.v-product-page .v-product-colors li a img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
section.v-product-page .v-product-colors li a .v-color {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #698f5e;
    border-radius: 100%;
    z-index: 10;
    top: 8px;
    right: 8px;
    border: 1px solid rgba(80, 80, 80, 0.2);
    /* transform: translate(-50%, 50%); */
}
/* section.v-product-page .v-product-colors li.selected a .v-color:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -5px;
  top: -5px;
  right: -5px;
  border: 1px solid var(--sage-green);
  border-radius: 100%;
} */
section.v-product-page .v-product-colors li a:hover {
    outline: 2px solid #ccc;
}
section.v-product-page .v-product-colors li.selected a {
    outline: 2px solid var(--sage-green);
}
section.v-product-page .v-product-colors li.p-disabled {
    opacity: .5;
}
section.v-product-page .v-product-colors li.p-disabled a {
    cursor: not-allowed;
    outline: 2px solid #ccc;
}
section.v-product-page .v-product-cta a.v-cta {
    background-image: url(../images/plus-cta.svg);
    background-size: 8%;
    background-position: 95% 82%;
}
section.v-products .v-products-related .v-title {
    text-align: center;
    margin-bottom: 50px;
}
.v-float .v-services-guide {
    width: 460px;
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.v-services-guide {
    margin-top: 50px;
}
.v-services-guide ul {
    font-size: 0;
}
.v-services-guide li {
    position: relative;
    width: 33.3333333%;
    display: inline-block;
    padding: 1px;
    font-size: 0;
    background-color: #4e7f57;
}
.v-services-guide li:nth-child(2),
.v-services-guide li:nth-child(2):after {
    background-color: #3f6646;
}
.v-services-guide li:nth-child(3) {
    background-color: var(--main-color);
}
.v-services-guide li:before {
    content:"";
    display: block;
    padding-top: 100%;
}
.v-services-guide li:after {
    content:"";
    display: block;
    position: absolute;
    clip-path: polygon(0 100%, 0 0, 50% 50%);
    height: 40px;
    width: 30px;
    top: 50%;
    right: -29px;
    transform: translateY(-50%);
    background-color: #4e7f57;
    z-index: 1;
}
.v-services-guide li:last-of-type:after {
    content: none;
}
.v-services-guide li .v-service-content {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 15px;
}
.v-services-guide li .v-service-content img {
    width: 40%;
    margin-bottom: 3px;
}
.v-services-guide li .v-service-content .v-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}
.v-services-guide li .v-service-content p {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    color: white;
    margin: 0;
}
.v-services-page .v-services-guide {
    position: relative;
    max-width: 576px;
    z-index: 9;
}


/* PAGINA CARRELLO */
section.v-cart-page .v-cart-products {

}
section.v-cart-page .v-back {
    margin-bottom: 50px;
    background-color: white;
    color: #95a297;
    transition: background-color .1s, color .1s;
}
section.v-cart-page .v-back svg {
    fill: #95a297;
    transition: fill .1s;
}
section.v-cart-page .v-back:hover {
    background-color: var(--main-color);
    color: white;
}
section.v-cart-page .v-back:hover svg {
    fill: white;
}
section.v-cart-page .v-cart-product-row {
    background-color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
section.v-cart-page .v-cart-product-row:last-of-type {
    margin: 0;
}
section.v-cart-page .v-cart-product-row .v-product-image {
    width: 100px;
    height: 100px;
    text-align: center;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.v-cart-page .v-cart-product-row .v-product-image img {
    object-fit: contain;
    width: 80%;
    height: 80%;
}
section.v-cart-page .v-cart-product-row .v-product-description {
    flex: 1;
}
section.v-cart-page .v-cart-product-row .v-product-description .v-name {
    font-weight: 700;
}
section.v-cart-page .v-cart-product-row .v-product-description .v-color {
    font-size: 12px;
    font-weight: 500;
    color: var(--main-dark-color);
    opacity: .4;
}
section.v-cart-page .v-cart-product-row .v-product-description .v-add-notes {
    cursor: pointer;
    font-size: 12px;
    margin-top: 8px;
    font-weight: 500;
    /* text-decoration: underline; */
}

section.v-cart-page .v-cart-product-row .v-product-description .v-add-notes:before {
    content: "+ ";
    display: inline;
}
section.v-cart-page .v-cart-product-row.open .v-product-description .v-add-notes {

}
section.v-cart-page .v-cart-product-row.open .v-product-description .v-add-notes:before {
    content: "− ";
}
section.v-cart-page .v-cart-product-row .v-product-delete a {
    display: block;
    padding: 5px;
    margin: 0 10px;
}
section.v-cart-page .v-cart-product-row .v-product-delete img {
    width: 14px;
    height: auto;
}
section.v-cart-page .v-cart-product-row .v-product-note {
    width: 100%;
    height: 0;
    flex-basis: 100%;
    margin-top: 0px;
    overflow: hidden;
    opacity: 0;
    transition: height .3s, opacity .3s, margin-top .3s;
}
section.v-cart-page .v-cart-product-row.open .v-product-note {
    height: 100px;
    opacity: 1;
    margin-top: 10px;
}
section.v-cart-page .v-cart-product-row .v-product-note textarea {
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    color: #444;
    font-size: 12px;
}
section.v-cart-page .v-cart-products .v-product-cta {
    text-align: right;
}
section.v-cart-page .v-cart-products .v-product-cta .v-cta {
    background-image: url(../images/plus-cta.svg);
    background-size: 8%;
    background-position: 95% 82%;
    margin-top: 0;
}
section.v-cart-page .v-checkout {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
section.v-cart-page .v-checkout .v-title {
    margin-bottom: 25px;
}
section.v-cart-page .v-checkout .v-title h2 {
    font-size: 22px;
}
.v-data-form {
    background-color: white;
    padding: 40px;
    padding-bottom: 25px;
    box-shadow: var(--box-drop-shadow);
}
.v-data-form .v-field {
    position: relative;
    margin-bottom: 20px;
}
.v-data-form div[class^='col-'] {
    padding-right: 5px !important;
    padding-left: 5px !important;
}
.v-data-form input[type=text],
.v-data-form input[type=tel],
.v-data-form input[type=email],
.v-data-form select,
.v-data-form textarea {
    width: 100%;
    height: 50px;
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid #eee;
}
.v-data-form textarea {
    height: 200px;
    padding: 10px;
}
.v-data-form input[type=radio] {
    display: none;
}
.v-data-form input[type=radio] + label {
    width: 100px;
    height: 50px;
    padding: 5px 10px;
    border: 1px solid #eee;
    font-size: 14px;
    cursor: pointer;
    display: inline;
}
.v-data-form input[type=radio]:checked + label {
    background-color: var(--main-color);
    color: white;
    display: inline;
}
.v-data-form option {
    color: black;
}
.v-data-form input {
    color: var(--main-dark-color);
}
.v-data-form input::placeholder,
.v-data-form textarea::placeholder,
.v-data-form select {
    color: #ccc;
}
.v-data-form .v-field.v-select:before {
    content:"";
    display: block;
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 28px;
    top: 18px;
    opacity: .5;
}
.v-data-form .v-field.v-select select {
    cursor: pointer;
}
.v-data-form .v-field.v-check {
    display: flex;
}
.v-data-form .v-field.v-check input[type=checkbox] {
    width: 16px;
    height: 16px;
    background-color: #eee;
    flex-shrink: 0;
    margin-right: 5px;
    cursor: pointer;
}
.v-data-form .v-field.v-check input[type=checkbox]:checked {
    background-image: url(../images/check.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 65%;
}
.v-data-form .v-field.v-check label {
    color: #999;
    font-size: 10px;
    cursor: pointer;
}
.v-data-form .v-field.v-check label a {
    font-weight: 600;
    text-decoration: underline;
}
.v-data-form .v-field a.v-back {
    font-size: 12px;
    padding: 0;
    margin: 0;
    display: flex;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-start;
}
.v-data-form .v-field a.v-back:hover {
    background-color: unset;
    color: inherit;
}
.v-data-form .v-field a.v-cta, .v-data-form .v-field button.v-cta {
    margin: 0;
    max-width: 160px;
    height: 55px;
    float: right;
}
.v-data-form .v-field .text-danger {
    color: #cc1919;
    display: block;
    margin-top: 5px;
    font-size: 12px;
}
section.v-thankyou-page .v-thankyou-content {
    max-width: 700px;
    width: 100%;
    background-color: white;
    margin: 0 auto;
    box-shadow: var(--box-drop-shadow);
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
section.v-thankyou-page .v-thankyou-content img {
    width: 90px;
    margin-bottom: 30px;
}
section.v-thankyou-page .v-thankyou-content h1 {
    margin-bottom: 10px;
}
section.v-thankyou-page .v-thankyou-content p {
    font-size: 18px;
    color: #777;
    text-align: center;
    font-weight: 300;
}
section.v-thankyou-page .v-thankyou-content .v-cta {
    margin-top: 50px;
    background-image: url(../images/arrow-back-cta.svg);
}
section.v-thankyou-page .v-thankyou-content .v-cta:hover {
    background-position: 88% 82%;
}
section.v-services-page .v-services-container {

}
section.v-services-page .v-services-menu {
    padding-top: 30px;
    padding-bottom: 30px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    position: sticky;
    top: var(--header-height);
    background-color: var(--background-color);
    z-index: 10;
}
section.v-services-page .v-services-menu::-webkit-scrollbar {
    display: none;
}
section.v-services-page .v-services-menu ul {
    display: inline-block;
}
section.v-services-page .v-services-menu li {
    display: inline-block;
}
section.v-services-page .v-services-menu li a {
    display: inline-block;
    border: 2px solid var(--main-color);
    padding: 12px 20px;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
    /* opacity: .3; */
    transition: opacity .3s;
}
/* section.v-services-page .v-services-menu li a:hover,
section.v-services-page .v-services-menu li.current a {
  opacity: 1;
} */
section.v-services-page .v-service-slider {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    margin-bottom: 100px;
}
section.v-services-page .v-service-slider .swiper .swiper-wrapper {
}
section.v-services-page .v-service-slider .swiper-slide {
    margin-right: 10px;
    height: 280px;
    width: unset;
    overflow: hidden;
}
section.v-services-page .v-service-slider#tipologie .swiper-slide {
    height: 200px;
}
section.v-services-page .v-service-slider.v-small .swiper-slide {
    height: 200px;
}
section.v-services-page .v-service-slider .swiper-slide:last-of-type {
    margin-right: 0;
}
section.v-services-page .v-service-slider .swiper-slide img {
    transition: transform .3s;
    height: 100%;
    width: auto;
}
section.v-services-page .v-service-slider .swiper-slide a.v-pop {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    transform: translateY(70px);
    transition: transform .3s;
    pointer-events: none;
    z-index: 100;
    cursor: pointer;
}
section.v-services-page .v-service-slider .swiper-slide a.v-pop span {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    z-index: 100;
    width: 100%;
    height: 70px;
    background-color: var(--sage-green);
}
section.v-services-page .v-service-slider .swiper-slide:hover a.v-pop {
    transform: translateY(0);
    pointer-events: all;
}
section.v-services-page .v-service-slider .swiper-slide:hover img {
    transform: translateY(-20px);
}
section.v-services-page .v-service-slider .swiper-slide.v-static:hover img {
    transform: none;
}
section.v-services-page .v-service-slider .swiper-slide.v-nolink:hover a.v-pop {
    pointer-events: none !important;
    cursor: default;
}
section.v-services-page .v-service-slider .swiper-pagination-progressbar {
    position: relative;
    top: unset;
    margin-top: 20px;
    margin-bottom: 20px;
}
section.v-services-page .v-service-slider .swiper-button-next,
section.v-services-page .v-service-slider .swiper-button-prev {
    position: relative;
    opacity: 1;
    width: unset;
    height: unset;
    padding: 4px 14px;
    margin: 0;
    display: inline-block;
    padding: 0;
    left: unset;
    right: unset;
}
section.v-services-page .v-service-slider .swiper-button-next:after,
section.v-services-page .v-service-slider .swiper-button-prev:after {
    content:"";
    display: block;
    background-image: url(../images/arrow-next.svg);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center center;
    width: 80px;
    height: 36px;
    background-color: white;
    box-shadow: var(--box-drop-shadow);
}
section.v-services-page .v-service-slider .swiper-button-prev:after {
    background-image: url(../images/arrow-prev.svg);
}
section.v-services-page .v-service-slider .swiper-button-next.swiper-button-disabled,
section.v-services-page .v-service-slider .swiper-button-prev.swiper-button-disabled {
    opacity: .3;
}
section.v-services-page .v-service-slider#dichiarazione .pdf-download a {
    width: 220px;
    display: block;
}
section.v-services-page .video-content {
    margin-bottom: 50px;
}
section.v-services-page .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
section.v-services-page .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section.v-services-page .video-content .video-title {
    padding-top: 20px;
    /* padding-bottom: 30px; */
}
section.v-services-page .video-content .video-title h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}
section.v-services-page .video-content .video-title p {
    font-size: 14px;
    color: #666;
}
section.v-contact {

}
section.v-contact .v-address {
    color: #777;
}
section.v-contact .v-address h1 {
    margin-bottom: 50px;
    color: var(--main-color);
}
section.v-contact .v-address h6 {
    color: var(--main-color);
    margin-bottom: 15px;
}
section.v-contact .v-address [class^='col-'] {
    margin-bottom: 40px;
    font-weight: 300;
}
section.v-contact .v-map {
    height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.v-contact .v-map iframe {
    width: 100%;
    height: 100%;
}
section.v-contact .v-data-form {
    max-width: 650px;
    /* margin: 100px auto 0 auto; */
    margin-top: 100px;
}
section.v-contact .v-data-form .v-title {
    margin-bottom: 50px;
}
section.v-contact .v-data-form .v-title h2 {
    color: var(--main-color);
    font-size: 26px;
}
section.v-contact .v-data-form .v-title p {
    font-size: 16px;
}
section.v-contact .v-map img {
}

section.v-highlight-slide {
  padding-top: 120px;
  padding-bottom: 120px;
}
section.v-highlight-slide .swiper-slide {
    width: 400px;
}



footer {
    background-color: var(--main-color);
}
body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1;
}
.v-footer {
    background-color: transparent;
    padding-top: 30px;
    padding-bottom: 30px;
    color: white;
    font-size: 12px;
}
.v-footer .v-logo {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}
.v-footer .v-logo img {
    width: 150px;
    display: block;
    margin-bottom: 15px;
}
.v-footer .v-footer-col {
    line-height: 1.8;
    font-size: 12px;
    font-weight: 300;
}
.v-footer .v-footer-col a:hover {
    text-decoration: underline;
}
.v-footer .v-footer-col h6 {
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 12px;
}
.animated {
    opacity: 0;
    transform: translateY(30px);
    transition-duration: .8s;
}
.animated.active {
    opacity: 1;
    transform: translateY(0);
}
.animated.active:nth-child(2) {
    transition-delay: .3s;
}
.animated.active:nth-child(3) {
    transition-delay: .6s;
}
.animated.active:nth-child(4) {
    transition-delay: .9s;
}
.fadeIn {
    opacity: 0;
    transition-duration: 1.5s;
}
.fadeIn.active {
    opacity: 1;
    transition-delay: .3s;
}

@media screen and (max-width: 880px) {
    header.v-main-header .v-header-inner .v-header-nav li a {
        padding: 5px 10px;
    }
}
@media screen and (max-width: 768px) {
    header.v-main-header .v-header-inner .v-header-nav ul {
        display: none;
    }
    header.v-main-header .v-header-inner .v-header-nav .v-hamburger {
        display: flex !important;
    }
    header.v-main-header .v-mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100vw - var(--header-height) + 1px);
        height: 100vh;
        background-color: var(--main-color);
        z-index: 100000;
        padding: 35px;
        overflow-y: scroll;
        transform: translateX(-100%);
        box-shadow: 0 0 50px rgba(0,0,0,0);
        transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
    }
    body.menuopen header.v-main-header .v-mobile-nav {
        box-shadow: 0 0 50px rgba(0,0,0,.3);
        transform: translateX(0);
    }
    header.v-main-header .v-mobile-nav input {
        width: 100%;
        padding: 12px;
        background-color: transparent;
        border: 1px solid rgba(255,255,255,.3);
        margin-bottom: 20px;
        color: white;
        font-size: 16px;
        transition: border var(--global-transition-timing);
    }
    header.v-main-header .v-mobile-nav input:focus {
        border: 1px solid rgba(255,255,255,.8);
    }
    header.v-main-header .v-mobile-nav ul > li {
        margin-bottom: 10px;
    }
    header.v-main-header .v-mobile-nav ul > li > a {
        font-size: 30px;
        color: white;
        display: inline-block;
        padding: 5px;
    }
    header.v-main-header .v-mobile-nav ul ul {
        padding-left: 20px;
        border-left: 2px solid white;
        margin-left: 25px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    header.v-main-header .v-mobile-nav ul ul:before {
    }
    section .v-background h1 {
        font-size: 7vw;
    }
    section.v-products .v-products-list .v-filter-mobile {
        display: block;
    }
    section.v-products aside.v-filter {
        background: var(--background-color);
        position: fixed;
        z-index: 10000;
        padding: 30px 30px 140px 30px;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        overflow-y: scroll !important;
        display: flex;
        visibility: hidden;
        opacity: 0;
        transition: opacity var(--global-transition-timing);
    }
    section.v-products aside.v-filter.active {
        visibility: visible;
        opacity: 1;
    }
    section.v-products aside.v-filter .v-product-filter {
        height: 100vh;
    }
    section.v-products aside.v-filter .v-filter-buttons {
        display: flex;
        align-items: center;
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0;
        background: var(--background-color);
        box-shadow: 0 -5px 30px rgba(0,0,0,.05);
        padding: 15px;
    }
    section.v-products aside.v-filter .v-filter-buttons .v-fb {
        width: 100%;
        color: var(--forest-green);
        padding: 12px 36px;
        border: 1px solid var(--forest-green);
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
    }
    section.v-products aside.v-filter .v-filter-buttons .v-fb.v-close {
        margin-right: 7.5px;
        font-weight: 400;
    }
    section.v-products aside.v-filter .v-filter-buttons .v-fb.v-apply {
        margin-left: 7.5px;
        background-color: var(--forest-green);
        color: white;
    }
    section.v-products aside.v-filter .v-cat-image li {
        width: 25%;
    }
    section.v-product-page .v-product-image {
        max-height: 70vh;
    }


}
@media screen and (max-width: 576px) {
    .v-regular-padding,
    .v-medium-padding,
    .v-large-padding {
        padding: 30px 0;
    }
    header.v-main-header .v-header-inner .v-header-nav .v-search {
        display: none;
    }
    header.v-main-header .v-header-inner .v-header-nav .v-list {
        padding-left: 14px;
        padding-right: 14px;
    }
    section .v-background {

    }
    .v-float .v-services-guide {
        position: relative;
        width: 100%;
        bottom: unset;
        right: unset;
        margin-top: 70px;
        margin-bottom: 15px;
    }
    section.v-product-page .v-single-product-container {
        display: block;
    }
    section.v-home-steps .v-scroller .v-step {
        padding: 50px;
    }
    section.v-product-page .v-product-image,
    section.v-product-page .v-product-sheet {
        width: 100%;
    }
    section.v-product-page .v-product-image {
        padding: 150px 50px 80px 50px;
    }
    section.v-product-page .v-product-sheet {
        padding: 30px 0;
    }
    section.v-products .v-products-related .v-title h2 {
        font-size: 26px;
    }
    section.v-product-page .v-product-image {
        max-height: unset;
    }
    section.v-product-page .v-product-image img {
        max-height: 40vh;
    }
}
@media screen and (max-width: 414px) {
    header.v-main-header .v-header-inner .v-logo img {
        width: 120px;
    }
    section .v-background {
        min-height: unset !important;
        height: unset;
        display: block;
    }
    section .v-background .container {
        padding-top: 140px;
        padding-bottom: 40px;
    }
    section .v-background h1 {
        font-size: 7.5vw;
    }
    .v-float .v-services-guide {
        margin-top: 0;
        margin-bottom: 0;
    }
    .v-scroll-anim {
        position: relative;
        bottom: unset;
        left: unset;
        margin-top: 25px;
        max-width: fit-content;
    }
    .v-services-guide li .v-service-content {
        padding: 8px;
    }
    .v-services-guide li .v-service-content .v-title {
        font-size: 14px;
    }
    .v-services-guide li .v-service-content p {
        font-size: 9px;
    }
    section.v-home-steps .v-scroller .v-step {
        padding: 30px;
    }
    section.v-category .v-products-list .v-product-card .v-product-title h4 {
        font-size: 14px !important;
    }
    section.v-products .v-active-filter .v-active-filter-list {
        display: block;
    }
    section.v-products .v-active-filter li {
        font-size: 14px;
        padding: 8px 12px;
    }
    section.v-products .v-active-filter li:after {
        width: 9px;
        height: 9px;
    }
    section.v-products .v-products-list .v-product-card {
        margin-bottom: 20px;
    }
    section.v-products .v-products-list .v-product-card .v-product-title {
        margin-bottom: 10px;
    }
    section.v-products .v-products-list .v-product-card .v-product-title h4 {
        margin: 0;
        font-size: 10px;
    }
    section.v-products .v-products-list .v-product-card .v-product-add {
        font-size: 3vw;
    }
    section.v-cart-page .v-cart-products {
        margin-bottom: 50px;
    }
    section.v-cart-page .v-checkout .v-title h2 {
        font-size: 7vw;
    }
    .v-breadcrumbs li {
        font-size: 10px;
    }
    .v-breadcrumbs li+li:before {
        padding: 8px 4px;
        content: "-";
    }
    .v-breadcrumbs li:last-of-type {
        width: auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    .v-data-form {
        padding: 40px 15px;
    }
    .v-data-form .v-field a.v-cta, .v-data-form .v-field button.v-cta {
        max-width: unset;
        height: 80px;
    }
    .v-footer .v-footer-col {
        margin-bottom: 25px;
    }
    .v-footer .v-footer-col h6 {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 375px) {

}
@media screen and (max-width: 320px) {

    header.v-main-header .v-header-inner .v-header-nav .v-list {
        display: none;
    }
}

.sadsgfdh {
    display: none;
}

/* DEBUG */
/* * { outline: 2px dotted red }
* * { outline: 2px dotted green }
* * * { outline: 2px dotted orange }
* * * * { outline: 2px dotted blue }
* * * * * { outline: 1px solid red }
* * * * * * { outline: 1px solid green }
* * * * * * * { outline: 1px solid orange }
* * * * * * * * { outline: 1px solid blue } */
