*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, blockquote, th, td {
    margin: 0;
    padding: 0;
    direction: ltr;
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65vw;
    letter-spacing: 1pt;
    color: #000;
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
    transition: opacity 400ms ease-in-out;
}

@media screen and (max-width: 1200px) {
    body {
        font-size: 0.75vw;
    }
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 0.8vw;
    }
}

.loading * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

p {
    letter-spacing: 0;
    line-height: 2em;
}

.home p, .column p, .news-list p, .news-view p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
}

a {
    text-decoration: none;
    color: #000;
    outline: none;
    -webkit-transition: opacity 200ms ease-in-out;
    -moz-transition: opacity 200ms ease-in-out;
    -o-transition: opacity 200ms ease-in-out;
    -ms-transition: opacity 200ms ease-in-out;
    transition: opacity 200ms ease-in-out;
}

a img {
    opacity: 1;
    transition: all 0.4s ease-in-out;
    -webkit-backface-visibility: hidden;
}

a:hover, a:hover img, a:hover img.lazy.loading, a:hover img.lazy.loaded {
    opacity: 0.8;
    -webkit-backface-visibility: hidden;
}

.nolink>a {
    cursor: default;
    pointer-events: none;
}

img.lazy {
    transition: opacity 200ms ease-in-out;
    opacity: 0;
}

img.lazy.loading, img.lazy.loaded {
    opacity: 1;
}

.hidden {
    display: none !important;
}

.opaco {
    opacity: 0;
}

.disabled {
    pointer-events: none;
    cursor: default;
}

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

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

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

.vertical-center {
    display: table;
    width: 100%;
    height: 100%;
}

.vertical-center>div {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.left {
    float: left;
}

.right {
    float: right;
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border: 1px solid #6c757d;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.active .badge {
    background-color: #6c757d;
    color: #fff;
}

.clear:before,
.clear:after {
    content: " ";
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

.loading .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 100;
    display: none;
}

.loading .overlay {
    display: block;
}

.fadein {
    -webkit-transition: opacity 600ms ease-in;
    -moz-transition: opacity 600ms ease-in;
    -o-transition: opacity 600ms ease-in;
    -ms-transition: opacity 600ms ease-in;
    transition: opacity 600ms ease-in;
}

.autofadein {
    -webkit-animation: fadein 600ms ease-in;
    -moz-animation: fadein 600ms ease-in;
    -o-animation: fadein 600ms ease-in;
    animation: fadein 600ms ease-in;
}

.autofadeout {
    -webkit-animation: fadeout 600ms ease-out;
    -moz-animation: fadeout 600ms ease-out;
    -o-animation: fadeout 600ms ease-out;
    animation: fadeout 600ms ease-out;
}

@-webkit-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-o-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeout {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-moz-keyframes fadeout {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-o-keyframes fadeout {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeout {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.loader {
    position: fixed;
    top: 0;
    z-index: 200;
    width: 100vw;
    height: 100vh;
    z-index: 999;
}

.spinner {
    position: absolute;
    z-index: 200;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.spinner:before {
    content: 'Loading';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-top: -10px;
    margin-left: -10px;
}

.spinner:not(:required):before {
    content: '';
    border-radius: 50%;
    border-top: 2px solid #000 !important;
    border-right: 2px solid transparent;
    -webkit-animation: spinner .6s linear infinite;
    -moz-animation: spinner .6s linear infinite;
    -o-animation: spinner .6s linear infinite;
    animation: spinner .6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.progress {
    display: inline-block;
}

h1, h2, h3 {
    font-weight: normal;
    margin-bottom: 1em;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5em;
    line-height: 1em;
    margin: -2px;
}

h1.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    font-weight: 500;
    padding-bottom: 2em;
    text-transform: uppercase;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 400;
}

h3 {
    font-size: 2.3em;
    font-weight: 400;
}

.home h3, .page-prova-home h3 {
    font-size: 2.1em;
}

h2.big {
    font-size: 3.6em;
}

h4 {
    font-size: 1em;
    font-weight: 400;
}

h4.subtitle, h1.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 400;
    border-bottom: 1px solid #bb9c6e;
    display: inline-block;
    clear: both;
}

h2.title {
    margin-top: 1.5em;
    margin-bottom: 1em;
    display: block;
    clear: both;
}

h5 {
    font-family: sans-serif;
    word-spacing: normal;
    letter-spacing: normal;
    font-size: 0.85vw;
    font-weight: normal;
}

figure {
    margin: 0;
    padding: 0;
}

.small {
    font-weight: normal;
    font-size: 0.8em;
}

.full {
    width: 100%;
    height: auto;
    display: block;
}

.padding-top {
    padding-top: 4vh;
}

.padding-bottom {
    padding-bottom: 4vh;
}

.padding-left {
    padding-left: 4vw;
}

.padding-right {
    padding-right: 4vw;
}

.full-width {
    width: 100vw;
}

.full-height {
    height: 100vh;
    overflow: hidden;
}

.overflow-hidden {
    overflow: hidden;
}

.object-fit {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.max100 {
    max-width: 100%;
    height: auto;
    display: block;
}

.max70 {
    max-width: 100%;
    width: 70%;
    height: auto;
    display: block;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
    padding-bottom: 75%;
}

.embed-responsive-oggioni {
    padding-bottom: 32%;
}

.inline-block {
    display: inline-block;
}

.row {
    display: flex;
    margin: -6em -5em 3em -5em;
}

.column {
    flex: 1;
    padding: 6em 5em;
}

.column-full {
    min-width: 100%;
    max-width: 100%;
}

.column-half {
    min-width: 50%;
    max-width: 50%;
}

.column-onethird {
    min-width: 33.33%;
    max-width: 33.33%;
}

.column-twothirds {
    min-width: 66.66%;
    max-width: 66.66%;
}

.column-onefourth {
    min-width: 25%;
    max-width: 25%;
}

.column-threefourths {
    min-width: 75%;
    max-width: 75%;
}

.black, .black:before, .black:after {
    color: #242424 !important;
    border-color: #242424 !important;
}

.white, .white:before, .white:after {
    color: #fff !important;
    border-color: #fff !important;
}

.gray, .gray:before, .gray:after {
    color: #999 !important;
    border-color: #999 !important;
}

.lightgray, .lightgray:before, .lightgray:after {
    color: #dbdbdb !important;
    border-color: #dbdbdb !important;
}

.light {
    font-weight: 300;
}

.separator {
    padding: 0.5em;
}

.uppercase {
    text-transform: uppercase;
}

.square {
    position: relative;
    width: 100%;
}

.square:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.square>* {
    position: absolute;
    width: 100%;
    height: 100%;
}

picture.full img {
    width: 100%;
    height: auto;
}

.bg-white {
    background-color: #fff;
}

.reveal {
    -webkit-transition: transform 1s, opacity 1s;
    transition: transform 1s, opacity 1s;
    -o-transition: transform 1s, opacity 1s;
    -ms-transition: transform 1s, opacity 1s;
    -moz-transition: transform 1s, opacity 1s;
    opacity: 0;
    transform: matrix3d(1, 0, 0, 0, 0, 1, .208378, 0, 0, -.173648, .984808, 0, 0, 90, 0, 1);
}

.reveal.visible {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
    transform-origin: 50% 50% 0px;
}

.header-container {
    position: fixed;
    z-index: 1001;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    /* transition: all 400ms ease-in-out; */
}

.header {
    padding: 0.5vw 4vw 0.5vw 4vw;
    position: relative;
    /* transition: all 400ms ease-in-out; */
    display: flex;
    justify-content: space-between;
}

.header__logo {
    width: 9%;
    display: inline-block;
}

.header__logo svg {
    fill: #000;
    transition: fill 400ms ease-in-out;
}

.header__language {
    float: right;
    text-align: center;
    transition: all 400ms ease-in-out;
}

.header__menu {
    margin-top: 0.7vw;
}

.main-content {
    padding-top: 3vw;
}

.home .main-content {
    padding-top: 0;
}

.content {
    position: relative;
}

.menu {
    display: flex;
    justify-content: space-between;
}

.menu, .menu .sub-menu, .menu-footer, .menu-footer .sub-menu, .menu-product, .menu-product .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-link {
    padding-top: 0.2em;
    display: inline-block;
    border-bottom: 1px solid #bb9c6e;
}

.menu>li {
    text-transform: uppercase;
    text-align: left;
}

.menu>li:first-child {
    padding-left: 0;
}

.menu>li {
    color: #000;
}

.menu>li.current-menu-item {
    color: #000;
}

.menu>li>a {
    color: #000;
    display: inline-block;
}

.menu>li.current-menu-item>a, .menu>li.wpml-ls-current-language>a {
    color: #000;
}

.menu-container {
    background-color: #fff;
}

.menu-container.visible {
    opacity: 1;
}

#menu-main {
    width: 100%;
    display: flex;
    justify-content: center;
}

#menu-main.visible {
    max-height: 100%;
    padding: 1.5vw 4vw 0;
    opacity: 1;
    margin-top: 2vw;
}

#menu-main>li {
    padding: 1vw 1.5em 0.8vw 1.5em;
}

#menu-main>li>a {
    border-bottom: 1px solid transparent;
}

#menu-main li a {
    color: #000;
}

#menu-main li.gold a, .menu-collection li.gold a {
    color: #bb9c6e;
}

#menu-main>li:hover>a, #menu-main>li:active>a, #menu-main>li.current-menu-item>a, #menu-main>li.current-menu-ancestor>a, #menu-main>li.featured>a, .menu-product>li.current-menu-item>a {
    border-bottom: 1px solid #bb9c6e;
}

.tax-collection #menu-main>li.menu-item-object-product>a {
    border-bottom: 1px solid transparent;
}

#menu-main li a:hover {
    color: #bb9c6e;
}

#menu-main .megamenu, .product-menu .megamenu {
    width: calc(100% - 8vw + 1px);
    position: absolute;
    z-index: 5;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    border-top: 1px solid #eee;
    background-color: #fff;
    margin-top: 1.8vw;
    padding-bottom: 0.5vw;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms ease-in-out;
}

#menu-main .megamenu .megamenu, .product-menu .megamenu {
    width: 100%;
    margin-top: 2.8vw;
}

#menu-main li.aligned .megamenu {
    z-index: 4;
    width: 100vw;
    left: 0;
    transform: none;
    margin-left: 0;
    border-top: none;
    background-color: transparent;
}

.megamenu-background {
    width: calc(100% - 8vw + 1px);
    height: 10em;
    position: absolute;
    z-index: 3;
    top: calc(1vw + 1em + 1px);
    left: 50%;
    transform: translate(-50%, calc(1vw + 1em));
    border-top: 1px solid #eee;
    background-color: #fff;
    margin-top: 1.8vw;
    padding-bottom: 0.5vw;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms ease-in-out;
}

.megamenu-background.active, .megamenu-background.visible {
    opacity: 1;
    visibility: visible;
}

#menu-main li.aligned .megamenu .sub-menu {
    text-align: left;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 100%;
    column-count: 1;
    font-size: 0.9em;
}

#menu-main li.aligned .megamenu .sub-menu li .sub-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    column-count: 1;
    padding: 0;
    font-size: 1em;
}

#menu-main li.aligned .megamenu .sub-menu li {
    position: relative;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 1.7em;
    font-size: 1em;
    padding-top: 0;
}

#menu-main li.aligned>.megamenu>.sub-menu {
    padding-top: 1vw;
}

#menu-main li.aligned>.megamenu>.sub-menu>li {
    padding-top: 1em;
}

#menu-main li.aligned>.megamenu .sub-menu li>a {
    flex-basis: 13em;
}

#menu-main li.aligned .megamenu .sub-menu li .sub-menu li>a {
    color: #000;
}

#menu-main li.aligned .megamenu .sub-menu li .megamenu {
    position: relative;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    margin: 0;
    width: auto;
    border-top: none;
    padding-bottom: 0;
}

/* .product-menu .current-menu-item .megamenu {
    opacity: 1;
    visibility: visible;
} */

#menu-main>li:hover>.megamenu, #menu-main>li>.megamenu>ul>li:hover>.megamenu, .menu-product>li:hover>.megamenu, #menu-main li.aligned>.megamenu .sub-menu li:hover>.megamenu, #menu-main>li.aligned.current-menu-parent>.megamenu, #menu-main>li.aligned.current-menu-ancestor>.megamenu, #menu-main>li.aligned.current-menu-parent>.megamenu>.sub-menu>li.current-menu-item>.megamenu, #menu-main>li.aligned.current-menu-ancestor>.megamenu>.sub-menu>li.current-menu-parent>.megamenu {
    opacity: 1;
    visibility: visible;
}

#menu-main .sub-menu {
    margin: 0 auto;
    max-width: 45%;
    column-count: 3;
    padding: 1vw 0;
}

#menu-main .columns4 .sub-menu {
    column-count: 4;
    max-width: 45%;
    padding: 1vw 0 1vw 4vw;
}

#menu-main .columns5 .sub-menu {
    column-count: 5;
    max-width: 50%;
    padding: 1vw 0 1vw 4vw;
}

#menu-main .columns6 .sub-menu {
    column-count: 6;
    max-width: 80%;
    padding: 1vw 0 1vw 4vw;
}

#menu-main .sub-menu li {
    text-transform: uppercase;
    text-align: center;
    font-size: 0.9em;
    padding-top: 1em;
    white-space: nowrap;
}

#menu-main .columns4 .sub-menu li, #menu-main .columns5 .sub-menu li, #menu-main .columns6 .sub-menu li {
    text-align: left;
}

#menu-main li.aligned {
    position: relative;
}

#menu-lang {
    margin-top: 0.2em;
    margin-left: 2em;
}

#menu-lang>li {
    padding: 0 0 0 1em;
}

#menu-lang>li.wpml-ls-current-language>a, #menu-lang>li>a:hover, #menu-lang>li>a:active {
    border-bottom: 1px solid #bb9c6e;
}

.product-menu {
    width: 100%;
    display: block;
    border-top: 1px solid #eee;
    background-color: #fff;
    margin-top: -0.5vw;
    padding: 0 4vw 0.5vw 4vw;
    transition: all 200ms ease-in-out;
}

.product-menu>.menu-product {
    margin: 0 auto;
    max-width: 80%;
    column-count: 6;
    padding: 1vw 0 1vw 4vw;
}

.product-menu>.menu-product.menu-collection {
    column-count: 3;
    max-width: 45%;
    padding: 1vw 0 1vw 4vw;
}

.product-menu>.menu-product.menu-collection .columns5 .sub-menu {
    column-count: 5;
    max-width: 50%;
    padding: 1vw 0 1vw 4vw;
    margin: 0 auto;
}

.product-menu>.menu-product.menu-collection .columns3 .sub-menu {
    column-count: 3;
    max-width: 45%;
    padding: 1vw 0;
    margin: 0 auto;
}

.product-menu>.menu-product.menu-collection .sub-menu li {
    text-align: left;
}

.product-menu>.menu-product.menu-company {
    column-count: 3;
    max-width: 45%;
    padding: 1vw 0;
}

.product-menu>.menu-product>li {
    text-transform: uppercase;
    text-align: left;
    font-size: 0.9em;
    padding-top: 1em;
    white-space: nowrap;
}

.product-menu>.menu-product>li .sub-menu>li {
    text-transform: uppercase;
    text-align: left;
    font-size: 0.9em;
    padding-top: 1em;
    white-space: nowrap;
}

.product-menu>.menu-product.menu-company>li {
    text-align: center;
    margin-bottom: 0.5em;
}

.footer {
    border-top: 1px solid #eee;
    padding-top: 6vh;
    background-color: #8b8682;    
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.menu-footer>li {
    flex: 1;
    margin-left: 6em;
}

.menu-footer>li:first-child, .menu-footer>li:nth-child(7) {
    margin-left: 0;
}

.menu-footer>li>a {
    font-family: 'Playfair Display', serif;
    font-size: 1.3em;
    padding: 1em 0.5em;
    color: #fff;
}

.menu-footer>li>a:hover, .menu-footer>li>a:active {
    opacity: 1;
}

.menu-footer>li>ul {
    border-top: 1px solid #c0c0c0;
    margin-top: 1.5em !important;
    padding-top: 0.5em !important;
}

.menu-footer>li>ul>li {
    margin-top: 1em;
}

.menu-footer>li>ul>li>a {
    padding: 1em 0.5em;
    color: #fff;
}

.menu-footer>li.mute>a {
    color: #8b8682;
}

.menu-footer li.nolink a:hover, .menu-footer li.nolink a:active {
    opacity: 1;
}

.footer-credits {
    border-top: 1px solid #c0c0c0;
    padding-top: 3em;
    margin-top: 10vh;
    position: relative;
}

.footer-credits__logo {
    width: 14%;
    display: inline-block;
}

.footer-credits__logo a {
    margin-bottom: -1.4em;
}

.footer-credits__copyright {
    color: #fff;
    display: inline-block;
    float: left;
}

.footer-credits__copyright span:last-child {
    margin-left: 1vw;
}

.footer-credits__copyright a {
    color: #fff;
}

.footer-credits__copyright a:hover {
    opacity: 0.8;
}

.menu-credits {
    display: inline-block;
    float: right;
}

.menu-credits>li {
    padding: 0 0 0 1vw;
    display: inline-block;
}

.menu-credits>li>a {
    color: #fff;
}

.scrollTop {
    position: absolute;
    bottom: 6em;
    right: -2em;
    transform: rotate(90deg);
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.content-top {
    margin-top: 9vw;
}

.content-boxed {
    padding: 6vh 4vw;
}

.content-boxed-mini {
    padding: 0 25vw;
}

.content-flex {
    display: flex;
    flex-wrap: wrap;
}

.content-flex>div {
    flex-basis: 50%;
    flex-grow: 2;
    flex-shrink: 1;
    text-align: left;
    padding-bottom: 1.5em;
}

.content-flex>div:nth-child(odd) {
    padding-right: 1.5em;
}

.content-flex>div:nth-child(even) {
    padding-left: 1.5em;
}

.content-superboxed {
    padding: 6vh 8vw;
}

.video-cover {
    height: calc(100vh - 18vw);
    width: 100%;
    object-fit: cover;
}

.image-cover {
    max-height: calc(100vh - 14vw);
}

.image-cover img {
    height: calc(100vh - 14vw);
    width: 100%;
    object-fit: cover;
}

.home-arrow {
    position: absolute;
    bottom: 6vw;
    left: 50%;
    margin-left: -7px;
    z-index: 2;
    opacity: 0;
    animation-name: arrowdown;
    animation-duration: 2000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    animation-delay: 2000ms;
}

@-webkit-keyframes arrowdown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        opacity: 0;
    }

    33% {
        opacity: 1;
    }

    66% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate3d(0, 30px, 0);
        opacity: 0
    }
}

.home-social {
    position: absolute;
    z-index: 7;
    right: 4vw;
    bottom: 0;
}

.home-social a {
    display: inline-block;
    margin-right: 1em;
}

.home-social a:last-child {
    margin-right: 0;
}

.home-social a span {
    font-size: 1.5em;
}

.home-agenda__titolo {
    text-align: left;
    padding: 7vw 19vw;
}

.home-agenda__titolo h1 {
    margin-top: 0.3em;
}

.home-agenda__testo {
    padding: 0 12vw 7vw 12vw;
    display: flex;
    align-items: flex-start;
}

.home-agenda__testo1 {
    flex: 1;
    padding-right: 6vw;
}

.home-agenda__testo2 {
    flex: 1;
    padding-left: 6vw;
}

.home-readmore {
    color: #989898;
    display: inline-block;
    margin-top: 1.6em;
}

section#collezione1 {
    margin-bottom: 4vw;
}

figure.home-reveal {
    position: relative;
}

figure.home-reveal img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

figure.home-reveal figcaption {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 400ms ease-in-out;
    opacity: 0;
}

figure.home-reveal figcaption h1 {
    margin: 1em 0 0.5em 0;
}

figure.home-reveal:hover figcaption {
    opacity: 1;
}

.home-articoli {
    display: flex;
    margin-top: 4vw;
}

.home-articoli__item {
    flex: 1;
}

.home-articoli__item:first-child {
    padding-right: 6vw;
}

.home-articoli__item:last-child {
    padding-left: 6vw;
}

.home-articoli__item img {
    margin-bottom: 3em;
}

.home-articoli__item__tags span {
    border-bottom: 1px solid #bb9c6e;
    display: inline-block;
}

.home-articoli__item h3 {
    margin-top: 1em;
    margin-bottom: 1.4em;
}

.home-azienda {
    margin-bottom: 6vw;
}

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

section.category-splash {
    position: relative;
}

section.category-splash .home-arrow {
    bottom: 12vw;
}

section.product, section.category-splash, .tax-collection .content>div.content-boxed {
    padding-top: 0;
}

.product__slideshow li>img, section.category-splash>img, .row:first-child .column>img, .news-view .image img {
    height: calc(100vh - 16vw) !important;
    width: auto !important;
    margin: 0 auto 4em auto;
}

section.category-splash>video {
    height: calc(100vh - 16vw) !important;
    width: 100%;
    margin: 0 auto 4em auto;
    object-fit: contain;
}

.product__slideshow li img {
    margin-bottom: 4em;
}

.product__slideshow li .flex-caption {
    position: absolute;
    z-index: 98;
    bottom: 1.5em;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
}

.home .product__slideshow li .flex-caption, .page-prova-home .product__slideshow li .flex-caption {
    position: absolute;
    z-index: 98;
    top: 50%;
    left: 50%;
    bottom: auto;
    margin-bottom: 4em;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: #fff;
}

.home .product__slideshow li .flex-caption a, .page-prova-home .product__slideshow li .flex-caption a {
    color: #fff;
}

figure.home-figure {
    position: relative;
}

figure.home-figure figcaption {
    position: absolute;
    z-index: 98;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: #fff;
}

figure.home-figure figcaption a {
    color: #fff;
}

.product__socialshare {
    position: absolute;
    z-index: 98;
    right: 0;
    bottom: 1.5em;
}

.product__socialshare>span, .product__socialshare a {
    display: inline-block;
    margin-right: 1.2em;
}

.product__socialshare a:last-child {
    margin-right: 0;
}

.product__socialshare a span {
    font-size: 1.5em;
}

.product-list {
    margin-top: 0;
    padding-top: 2vh;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0 6em;
    margin-top: -6em;
    ;
    margin-bottom: 4em;
}

.tax-c .product-grid, .post-type-archive-product .product-grid {
    margin-top: 0;
}

.single .product-grid {
    margin-top: 0;
    margin-bottom: 0;
}

.product-grid__item {
    display: inline-block;
    padding: 1em;
    width: 33%;
    position: relative;
    vertical-align: bottom;
    align-self: baseline;
}

.single .product-grid__item {
    width: 50%;
    padding: 2em 0;
}

.product-grid__item h4.title {
    text-align: center;
    text-transform: uppercase;
    margin-top: 2em;
    font-size: 1em;
}

.product__varianti {
    border-top: 1px solid #eee;
    padding-bottom: 2vw;
}

.product__varianti .product-grid__item {
    width: 25%;
}

.product-reverse .product__varianti .product-grid__item {
    width: 40%;
    padding: 4em;
}

.product__download {
    padding-bottom: 4em;
    margin-bottom: 4em;
    border-bottom: 1px solid #eee;
}

.product__finiture .product-grid {
    justify-content: flex-start;
}

.product__finiture .product-grid__item {
    vertical-align: top;
    align-self: flex-start;
}

.product__finiture__titolo {
    text-align: left;
    padding-left: 6em;
}

.product__finiture__disclosure {
    text-align: left;
    padding-left: 6em;
}

.product__finiture__disclosure span {
    font-size: 0.8em;
}

.finiture-grid {
    display: flex;
    flex-wrap: wrap;
    padding-top: 2em;
}

.finiture-grid__item {
    max-width: 18%;
    min-width: 18%;
    margin-bottom: 3%;
    margin-right: 6%;
    font-size: 0.85em;
}

.finiture-grid__item:nth-child(4n) {
    margin-right: 0;
}

.product__finiture .product-grid__item h4 {
    text-decoration: underline;
}

.grid-mosaic {
    margin: 4em 0;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
    -webkit-column-width: 50%;
    -moz-column-width: 50%;
    column-width: 50%;
}

.grid-mosaic__item {
    margin-bottom: 2rem;
}

.grid-mosaic__item a picture {
    position: relative;
    width: 100%;
    height: auto;
    display: inline-block;
}

.grid-mosaic__item img {
    width: 100%;
    height: auto;
    display: block;
}

.product__other {
    border-top: 1px solid #eee;
}

.collezione__slider {
    position: relative;
    text-align: center;
    padding: 3em 6em;
    margin: 0 10em;
}

.collezione__slider__immagine {
    padding: 0 3em;
}

.correlati__titolo {
    text-align: left;
    padding-left: 6em;
}

.correlati__slider {
    position: relative;
    text-align: center;
    padding: 3em 6em;
    xmargin: 0 10em;
}

.correlati__slider__immagine {
    padding: 0 3em;
    border-right: 1px solid #eee;
    display: inline-block;
    vertical-align: bottom;
}

.correlati__slider>div>ul>li:last-child>.correlati__slider__immagine {
    border-right: none;
}

.correlati__slider .flex-direction-nav a {
    margin: -30px 0 0;
}

.correlati__slider__immagine h5 {
    font-family: 'Montserrat', sans-serif;
}

.flex-direction-nav .flex-disabled {
    opacity: 1 !important;
    filter: alpha(opacity=10);
    cursor: pointer;
}

.contatti {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.contatti__item {
    min-width: 46%;
    max-width: 46%;
}

.contatti__item .indirizzo {
    display: inline-block;
    line-height: 2.5em;
    margin-top: 1em;
    margin-right: 4vw;
    vertical-align: top;
}

.contatti__item .indirizzo:last-child {
    margin-right: 0;
}

.contatti__item .map {
    margin-top: 3em;
}

.contatti__item .map a {
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.contatti__item .map a img {
    width: 100%;
    height: 100%;
    visibility: hidden;
}

span.wpcf7-list-item {
    margin-left: 0 !important;
}

input[type="text"], input[type="number"], input[type="email"], input[type="password"], textarea, select, option {
    padding: 0.6em 1.2em;
    font-size: 1.2em;
    background: #eee;
    border: none;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

input[type="checkbox"] {
    width: 1.2em;
    height: 1.2em;
}

.button, .button a, input[type="submit"] {
    font-size: 1em;
    background: none;
    padding: 1em 3.5em;
    border: 2px solid #000;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    width: auto;
    transition: all 200ms ease-in-out;
}

.button:active, .button a:active, input[type="submit"]:active {
    background: #000;
    color: #fff;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    border: 2px solid #ccc;
}

.news-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.news-list__item {
    flex: 1;
    min-width: 50%;
    max-width: 50%;
    padding: 0 4vw 4vw 4vw;
}

.news-list__item .image {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
}

.news-list__item .image figure {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}

.news-list__item .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news-list__item h5, .news-view h5 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 2.5em;
    margin-bottom: 1.5em;
    text-transform: uppercase;
}

.news-view h3 {
    margin-bottom: 1.5em;
}

.news-view {
    margin-bottom: 6vw;
}

.news-view .image {
    text-align: center;
}

.news-view .content {
    padding: 0 24vw;
    text-align: left;
}

.news-nav {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.news-nav-previous, .news-nav-next {
    font-size: 3em;
    display: inline-block;
    padding: 0 1em;
}

.ar-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.ar-list__item {
    flex: 1;
    min-width: 25%;
    max-width: 25%;
    padding: 0 2vw 4vw 2vw;
}

.ar-list__item h4 {
    margin-top: 2.5em;
    margin-bottom: 1.5em;
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
}

.ar-list__item a {
    border-bottom: 1px solid #bb9c6e;
    display: inline-block;
}

.post-password-form {
    min-height: 40vh;
    text-align: center;
}

.post-password-form p {
    margin-bottom: 2em;
}

.post-password-form input[type="password"] {
    width: auto;
}

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

.breadcrumbs-wrapper {
    padding: 6vh 4vw 0;
}

.tax-c .breadcrumbs-wrapper, .tax-collection .breadcrumbs-wrapper, .single-product .breadcrumbs-wrapper {
    padding-bottom: 4vh;
}

#breadcrumbs {
    text-transform: uppercase;
    font-size: 0.8em;
}

#breadcrumbs a {
    border-bottom: 1px solid #bb9c6e
}

#breadcrumbs .current {
    font-weight: 500;
}

.category-description, .product-description {
    padding: 0 20vw 3em 20vw;
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    line-height: 1.7em;
}

/* MOBILE MENU HAMBURGER TOGGLE */
.menu-toggle {
    position: absolute;
    right: 24px;
    z-index: 999;
    cursor: pointer;
    padding-top: 24px;
    width: 24px;
    height: 30px;
    display: none;
}

.menu-toggle span, .menu-toggle span:before, .menu-toggle span:after {
    -webkit-transition: all 200ms cubic-bezier(0.305, 0.1, 0.485, 0.87);
    -moz-transition: all 200ms cubic-bezier(0.305, 0.1, 0.485, 0.87);
    -o-transition: all 200ms cubic-bezier(0.305, 0.1, 0.485, 0.87);
    transition: all 200ms cubic-bezier(0.305, 0.1, 0.485, 0.87);
}

.menu-toggle span:before {
    top: -7px;
}

.menu-toggle span:after {
    top: 5px;
}

.menu-toggle span, .menu-toggle span:before, .menu-toggle span:after {
    cursor: pointer;
    border-radius: 0;
    height: 2px;
    width: 24px;
    position: relative;
    display: block;
    background-color: #000;
    content: '';
}

.black .menu-toggle span, .black .menu-toggle span:before, .black .menu-toggle span:after {
    background-color: #000;
}

.white .menu-toggle span, .white .menu-toggle span:before, .white .menu-toggle span:after, .menu-mobile-open .menu-toggle span, .menu-mobile-open .menu-toggle span:before, .menu-mobile-open .menu-toggle span:after {
    background-color: #fff;
}

.menu-toggle.close span {
    background-color: transparent;
    top: 0;
}

.menu-toggle.close span:before {
    top: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.menu-toggle.close span:after {
    top: -2px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

/***************************/

.menu-mobile-container {
    display: none;
}

.mobile-only {
    display: none;
}

.search-button-close {
    position: absolute;
    top: 33px;
    right: 40px;
}

@media screen and (max-width: 768px) {
    .search-button-close {
        right: 30px;
    }
}

.search-button svg {
    display: none;
}

.search-button-close {
    width: 30px;
}

.overlay {
    position: fixed;
    z-index: 901;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    transition: all 400ms ease-in-out;
    visibility: hidden;
    opacity: 0;
    color: #000;
}

.overlay-logo {
    padding: 1.5vw 4vw 0.5vw 4vw
}

.search-overlay {
    background-color: #8b8682 !important;
}

.search-overlay.active {
    visibility: visible;
    opacity: 1;
}

#searchform {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
}

.search__input {
    font-size: 3vw;
    line-height: 1;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    padding: 0.05em 0;
    color: #000 !important;
    border: none;
    border-bottom: 2px solid;
    background-color: #fff !important;
    outline: none;
}

.search__input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    opacity: 0.3;
    color: #000;
}

.search__input::-moz-placeholder {
    opacity: 0.3;
    /* Mozilla Firefox 19+ */
    color: #000;
}

.search__input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    opacity: 0.3;
    color: #000;
}

.search__input::-webkit-search-cancel-button, .search__input::-webkit-search-decoration {
    -webkit-appearance: none;
}

.search__input::-ms-clear {
    display: none;
}

.search__info {
    margin-top: 1em;
}

.tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5em;
}

.tags__item {
    display: inline-block;
    padding: 0.5em;
    font-size: 0.85em;
}

.tags__item::after {
    content: '|';
    display: inline-block;
    margin-left: 0.8em;
}

.tags__item:last-child:after {
    display: none;
}

section.product__contact {
    border-top: 1px solid #eee;
}

.product-contact {
    display: inline-block;
    padding: 1.2em 2.2em;
    font-family: sans-serif;
    font-size: 1.5em;
    color: #8b8682;
    text-transform: uppercase;
    border: 1px solid #8b8682;
}

.product__contact-form {
    margin: 0 auto;
    width: 40vw;
    display: none;
}

.product__contact-form div.wpcf7 p {
    text-align: left;
}

.page-template-default .content-boxed>.row:nth-child(2) {
    margin-top: -4em;
}

/* LANDING */

@media (min-width: 1024px) {
    .landing1 section.nomargin {
        margin-top: -4rem;
    }
}

.landing p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
}

.landing-column-special {
    padding-top: 0;
    margin-top: -3rem;
}

.landing1 .bkg-gray {
    background-color: rgba(217, 217, 217, 0.15);
}

.landing1 a.flex-prev:before {
    left: 0;
}

.landing1 a.flex-next:before {
    right: 0;
}

.landing1 .content-flex {
    align-items: center;
}

.landing-button, .landing1 .wpcf7-submit, .landing button {
    font-size: 0.85vw;
    padding: 1em 2em;
    border: 2px solid #000;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    width: auto;
    transition: all 200ms ease-in-out;
    background-color: #000;
    color: #fff;
}

.landing-form {
    font-family: 'Montserrat', sans-serif;
}

.landing-form1 {
    padding-right: 5em;
}

.landing-form2 {
    margin: 0 auto;
    max-width: 40vw;
}

.landing-form h3 {
    font-size: 1.5em;
}

.landing-form label, .landing-form input, .landing-form select, .landing-form p, .landing-form textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}

.landing-form textarea {
    height: 70px;
}

.landing .padding-top0 {
    padding-top: 0;
}

.landing .footer {
    padding-bottom: 18vh;
}

/*   */

.stickybar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 3vh 8vw;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
}

.stickybar button {
    background-color: #fff;
    color: #000;
    font-size: 1.3em;
    padding: 1.3em 3em;
}

.stickybar-sx {
    flex: 1.2;
    font-size: 1em;
    padding-left: 4rem;
}

.stickybar-dx {
    flex: 0.8;
}

.stickybar-dx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-social .xiaohongshu,
.product__socialshare .xiaohongshu {
    background-image: url('../images/xiaohongshu.png');
    background-repeat: no-repeat;    
    background-size: 37px 13px;
    width: 37px;
    height: 13px;
    display: inline-block;
}

.menu-footer .xiaohongshu {
    display: inline-block;
}

.menu-footer .xiaohongshu a {
    background-image: url('../images/xiaohongshu_white.png');
    background-repeat: no-repeat;    
    background-size: 28px 10px;
    width: 28px;
    height: 10px;
    display: inline-block;
    text-indent: -9000px;
    padding: 0;
}

.reference-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -2em;
}

.reference-grid__item {
    flex-basis: 33%;
    padding: 2em;
}

.reference-grid__item img {
    width: 100%;
    height: auto;
    display: block;    
}

.reference-grid__item h4 {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    font-size: 1em;
    text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
    .stickybar button {
        padding: 1em 2em;
    }
    
    .stickybar-dx {
        margin-right: 0;
    }
}

/* MOBILE */

@media screen and (max-width: 1023px) {

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    body {
        font-size: 12px;
    }

    .header {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .content-boxed, .content-superboxed {
        overflow: hidden;
        padding: 6vw 20px;
    }

    .breadcrumbs-wrapper {
        padding: 6vh 20px;
    }

    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .header__logo {
        width: 30vw;
        max-width: 280px;
        min-width: 120px;
        height: auto;
    }

    .header__menu {
        display: none;
    }

    .main-content {
        padding-top: 22vw !important;
    }

    .menu-toggle {
        display: block;
    }

    .menu-container {
        display: block;
        position: fixed;
        z-index: 998;
        top: 0;
        bottom: 0;
        right: 0;
        width: 240px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        opacity: 0;
        padding: 90px 15px 0 15px;
        overflow-y: auto;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

    .menu-container.reveal {
        opacity: 0.9;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }

    #menu-main {
        width: 100%;
        display: block;
        padding-left: 20px;
        float: none;
    }

    #menu-main>li {
        float: none;
        display: block;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
        margin-bottom: 1.5em;
        color: #fff;
    }

    #menu-main li a {
        color: #fff;
    }

    #menu-main .megamenu {
        position: static;
        display: none;
        transform: none;
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        width: auto;
        opacity: 1;
        visibility: visible;
        transition: all 400ms ease-in-out;
    }

    /* 	#menu-main > li.active > .megamenu, #menu-main > li.current-menu-item > .megamenu {
		display: block;
	} */

    #menu-main>li.active>.megamenu {
        display: block;
    }

    #menu-main .sub-menu {
        column-count: 1 !important;
        max-width: 100% !important;
        padding: 1em 0 0 1em !important;
    }

    #menu-main .sub-menu li {
        margin-bottom: 1em;
        text-align: left;
    }

    #menu-lang {
        margin: 6em 0;
        padding-left: 20px;
    }

    #menu-lang>li {
        display: inline-block;
        padding: 0 0 0 1em;
    }

    #menu-lang>li:first-child {
        padding-left: 0;
    }

    #menu-lang>li>a {
        color: #fff;
    }

    .mobile-body-overlay {
        display: none;
        width: 100vw;
        height: 100vh;
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000;
        opacity: 0;
    }

    .menu-mobile-open .mobile-body-overlay {
        display: block;
        z-index: 997;
    }

    body.menu-mobile-open {
        overflow-y: hidden;
    }

    .product-menu-mobile {
        padding: 0 20px;
        margin-bottom: 1.5em;
    }

    .product-menu-mobile .select2-selection {
        border-radius: 0;
        outline: none;
    }

    .product-menu-mobile .select2-container .select2-selection--single {
        height: 38px;
    }

    .product-menu-mobile .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 36px;
    }

    .product-menu-mobile .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 38px;
    }

    .content-top {
        margin-top: 10vh;
    }

    .content-flex {
        display: block;
    }

    .content-flex>div {
        padding: 1.5em 0;
    }

    .content-flex>div {
        flex-basis: 100%;
        flex: 1;
    }

    .full-height {
        height: auto;
    }

    .video-cover {
        display: inline-block;
        position: static;
        transform: none;
        width: 100%;
        min-width: 100%;
        min-height: 0;
        height: auto;
    }

    h1 {
        font-size: 3em;
    }

    .home-social {
        position: static;
        text-align: center;
        margin-top: 1em;
        margin-right: 0;
    }

    .home-arrow {
        display: none;
    }

    .home-agenda__titolo, .home-agenda__testo {
        padding: 2em 20px;
        display: block;
    }

    .home-agenda__testo1, .home-agenda__testo2 {
        padding: 0;
    }

    .home-agenda__testo1 {
        margin-bottom: 4em;
    }

    .home-collezioni {
        padding-left: 20px;
        padding-right: 20px;
    }

    figure.home-reveal img {
        opacity: 1;
        width: 100%;
        height: auto;
    }

    figure.home-reveal figcaption {
        opacity: 1;
        text-align: center;
    }

    .home-articoli {
        display: block;
    }

    .home-articoli__item {
        margin-bottom: 4em;
    }

    .home-articoli__item:first-child {
        padding-right: 0;
    }

    .home-articoli__item:last-child {
        padding-left: 0;
    }

    .scrollTop {
        display: none;
    }

    .footer {
        padding-top: 0;        
    }

    .menu-footer {
        display: block;
    }

    .menu-footer>li {
        margin: 0 0 2em 0;
    }

    .menu-credits>li {
        padding: 0;
    }

    .footer-credits {
        margin-top: 0;
    }

    .footer-credits__copyright span:last-child {
        margin-left: 0;
        clear: both;
        display: block;
    }

    .footer-credits__copyright {
        margin-bottom: 1em;
    }

    .product-grid {
        padding: 6vw 0;
    }

    .product-grid__item {
        padding: 0;
        width: 50%;
    }

    .product__slideshow li img, section.category-splash img, .row:first-child .column img, section.category-splash video {
        width: 100% !important;
        height: auto !important;
    }

    .product__varianti .product-grid__item {
        width: 100%;
    }

    .product-reverse .product__varianti .product-grid__item {
        width: 100%;
        padding: 0;
    }

    .product__finiture .product-grid__item {
        width: 100%;
    }

    .finiture-grid__item {
        max-width: 47%;
        min-width: 47%;
    }

    .product__finiture__disclosure {
        padding-left: 0;
    }

    .correlati__slider__immagine {
        padding: 0;
        border-right: none;
    }

    .product__socialshare {
        width: 100%;
        text-align: center;
        bottom: -1em;
        position: static;
        padding: 2em 0;
    }

    .contatti {
        display: block;
    }

    .contatti__item {
        min-width: 100%;
        max-width: 100%
    }

    .contatti__item:last-child {
        margin: 6em 0;
    }

    .contatti .wpcf7 {
        margin-top: -4em;
    }

    .contatti__item .map a {
        background-image: none;
        width: 100%;
        height: auto;
    }

    .contatti__item .map a img {
        width: 100%;
        height: auto;
        visibility: visible;
    }

    .row {
        margin: -2em -1.2em 0 -1.2em;
        display: block;
    }

    .row>.column {
        min-width: 100%;
        max-width: 100%;
        padding: 2em 1.2em;
    }

    .row>.column>div {
        padding: 0 !important;
    }

    .news-list {
        display: block;
    }

    .news-list__item {
        min-width: 100%;
        max-width: 100%;
        padding: 0 0 4vw 0;
    }

    .news-view .image img {
        width: 100% !important;
        height: auto !important;
    }

    .news-view .content {
        padding: 0;
    }

    .ar-list {
        display: block;
    }

    .ar-list__item {
        min-width: 100%;
        max-width: 100%;
        padding: 0 0 4vw 0;
    }

    .category-description, .product-description {
        padding: 0 0 0 0;
    }

    .single .product h1.title {
        margin-top: 4rem;
    }

    .overlay-logo {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }

    #searchform {
        width: 70%;
        min-width: 250px;
    }

    .search__input {
        font-size: 5vw;
    }

    .search-button-close {
        position: absolute;
        top: 60%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }

    figcaption h2 {
        line-height: 1em;
    }

    .product__contact-form {
        width: 100%;
    }

    .content-flex>div:nth-child(odd) {
        padding-right: 0;
    }

    .content-flex>div:nth-child(even) {
        padding-left: 0;
    }

    .megamenu-background {
        display: none !important;
    }

    /* .landing .content-superboxed {
        padding: 0 20px;
    } */

    .landing .padding-left,
    .landing .padding-right {
        padding: 0;
    }

    .landing-form2 {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .landing .content-flex {
        display: flex;
        flex-direction: column;
        ;
    }

    .landing .order-mobile-1 {
        order: 1;
    }

    .landing .order-mobile-2 {
        order: 2;
    }

    .landing .column-half,
    .landing .column-onethird,
    .landing .column-twothirds {
        min-width: 100%;
        max-width: 100%;
    }

    .landing .column {
        padding: 2em 0;
    }

    .landing .padding-mobile-top0 {
        padding-top: 0;
    }

    .landing-form label, .landing-form input, .landing-form select, .landing-form p, .landing-form textarea {
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
    }

    .landing h4 {
        font-size: 1rem;
        line-height: 1.5em;
    }

    .landing-form1 {
        padding-bottom: 0 !important;
    }

    .landing #menu-item-100 {
        border-top: 1px solid #c0c0c0;
        padding-top: 2em;
        text-align: left;
    }

    .landing-button, .landing1 .wpcf7-submit, .landing button, h5 {
        font-size: 1rem;
    }

    .landing .footer {
        padding-bottom: 15vh;
    }

    .stickybar {
        justify-content: center;
    }

    .stickybar-sx {
        display: none;
    }

    .stickybar-dx {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }

    .stickybar button {
        border: 0;
        font-size: 12px;
        padding: 10px;
    }

    .stickybar button:first-child {
        margin-right: 15px;
        margin-left: 10px;
    }

    .stickybar button:last-child {
        margin-left: 15px;
        margin-right: 10px;
    }

    .reference-grid__item {
        flex-basis: 100%;
    }

}

/***************************/



/* font*/

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