/*!
Theme Name: FM Carpenteria Theme
Author: Digitalia SRL
Description: WordPress Custom Theme
Version: 1.0
*/

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #293D8B;
    --secondary: #393939;
    --tertiary: #DD7700;
    --quaternary: #DD7700;
    --white: #fff;
    --black: #000;

    --border-radius: 10px;

    --font-primary: "Canela", sans-serif;
    --font-secondary: "Inter", sans-serif;

    --item-margin: 20px;
    --item-margin-xs: 10px;

    --space-xxs: 10px;
    --space-xs: 20px;
    --space-sm: 40px;
    --space-md: 60px;
    --space-lg: 80px;
    --space-xl: 100px;
    --space-xxl: 160px;
}

@font-face {
    font-family: "Futura";
    src: url("font/futura-medium.ttf");
}

body { font-weight: 300;
    font-family: 'Inter', sans-serif;
    color: #393939;
    background-color: #fff;
}

/*CONTENITORI*/

.container { min-width: 1200px; }

.subcontainer { width: 100%;
    padding: 50px 10%;
    margin: 0 auto; }

.flex { display: flex; }

.flexcenter { align-items: center;
    justify-content: center; }

.row { flex-direction: row; }

.column { flex-direction: column; }

.wrap { flex-wrap: wrap; }

.space-between { justify-content: space-between; }

.justifycenter { justify-content: center; }

.alignstart { align-items: flex-start; }

.aligncenter { align-items: center; }

.alignend { align-items: flex-end; }

.justifystart { justify-content: flex-start; }

.justifyend { justify-content: flex-end; }

.obj-cover { object-fit: cover; }

.obj-contain { object-fit: contain; }

.m0a { margin: 0 auto; }

.mla { margin-left: auto; }

.mra { margin-right: auto; }

.mta { margin-top: auto; }

.mba { margin-bottom: auto; }

.wh25 { width: 25%; }

.wh33 { width: 33.33333%; }

.wh40 { width: 40%; }

.wh50 { width: 50%; }

.wh60 { width: 60%; }

.wh100 { width: 100%; }

.wh25 { width: 25%; }

.wh75 { width: 75%; }

.wh66 { width: 66.66666%; }

.wh8 { width: 8.33333%; }

.wh16 { width: 16.66666%; }

.wh83 { width: 83.33333%; }

.wh90 { width: 90%; }

.light { font-weight: 300; }

.semibold { font-weight: 600; }

.uppercase { text-transform: uppercase; }

.center { text-align: center; }

.right { text-align: right; }

.left { text-align: left; }

a { text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer; }

.vh100 { height: 100vh; }

.vh50 { height: 50vh; }

.h100 { height: 100%; }

.h50 { height: 50%; }

/* Divisori */

/* Divisori */

.space-xxs { padding: var(--space-xxs); }

.space-xs { padding: var(--space-xs); }

.space-sm { padding: var(--space-sm); }

.space-md, .space { padding: var(--space-md); }

.space-lg { padding: var(--space-lg); }

.space-xl { padding: var(--space-xl); }

.space-xxl { padding: var(--space-xxl); }

.p-xxs { padding: var(--space-xxs); }

.p-xs { padding: var(--space-xs); }

.p-sm { padding: var(--space-sm); }

.p-md { padding: var(--space-md); }

.p-lg { padding: var(--space-lg); }

.p-xl { padding: var(--space-xl); }

.p-xxl { padding: var(--space-xxl); }

.py-xxs { padding-top: var(--space-xxs);
    padding-bottom: var(--space-xxs); }

.py-xs { padding-top: var(--space-xs);
    padding-bottom: var(--space-xs); }

.py-sm { padding-top: var(--space-sm);
    padding-bottom: var(--space-sm); }

.py-md { padding-top: var(--space-md);
    padding-bottom: var(--space-md); }

.py-lg { padding-top: var(--space-lg);
    padding-bottom: var(--space-lg); }

.py-xl { padding-top: var(--space-xl);
    padding-bottom: var(--space-xl); }

.py-xxl { padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl); }

.px-xs {
    padding-right: var(--space-xs);
    padding-left: var(--space-xs);
}

.pb-xxs { padding-bottom: var(--space-xxs); }

.pb-xs { padding-bottom: var(--space-xs); }

.pb-sm { padding-bottom: var(--space-sm); }

.pb-md { padding-bottom: var(--space-md); }

.pb-lg { padding-bottom: var(--space-lg); }

.pb-xl { padding-bottom: var(--space-xl); }

.pb-xxl { padding-bottom: var(--space-xxl); }

.pt-xxs { padding-top: var(--space-xxs); }

.pt-xs { padding-top: var(--space-xs); }

.pt-sm { padding-top: var(--space-sm); }

.pt-md { padding-top: var(--space-md); }

.pt-lg { padding-top: var(--space-lg); }

.pt-xl { padding-top: var(--space-xl); }

.pt-xxl { padding-top: var(--space-xxl); }

.space-extra-sm { padding: 5px; }

.space-sm { padding: 10px; }

.space { padding: 20px; }

.space-big { padding: 40px; }

.space-bigger { padding: 60px; }

.padding-1 { padding: 10px; }

.padding-2 { padding: 20px; }

.padding-3 { padding: 30px; }

.padding-4 { padding: 40px; }

li { list-style: none; }

.p-rel { position: relative; }

.p-abs { position: absolute; }

.bgcenter { background-size: cover;
    background-position: center; }

/*TITOLI e PARAGRAFI*/

h1 { font-family: 'Futura', sans-serif;
    font-size: 60px;
    line-height: 60px; }

h2 { font-family: 'Futura', sans-serif;
    font-size: 33px;
    line-height: 35px;
    text-transform: uppercase; }

h3 { font-family: 'Futura', sans-serif;
    font-size: 25px;
    line-height: 25px;
    text-transform: uppercase; }

p.small { font-size: 15px;
    line-height: 25px; }

p { font-size: 20px;
    line-height: 30px; }

p.big { font-size: 25px;
    line-height: 35px; }

/*COLORI*/

.primary { color: var(--primary); }

.bg-primary { background-color: var(--primary); }

.secondary { color: var(--secondary); }

.bg-secondary { background-color: var(--secondary); }

.tertiary { color: var(--tertiary); }

.bg-tertiary { background-color: var(--tertiary); }

.white { color: var(--white); }

.bg-white { background-color: var(--white); }

/* Pulsanti */

.button {
    background: var(--quaternary);
    color: var(--white);
    border: 1px solid var(--quaternary);
    display: inline-block;
    border-radius: 5px;
    overflow: hidden;
    font-size: 14px;
    padding: 5px 60px;
    position: relative;
    text-decoration: none;
    width: max-content;
    height: max-content;
    transition: 0.4s ease;
    z-index: 1;
}

.button:before, .button:after {
    background: var(--white);
    transition: 0.3s ease;
    content: "";
    position: absolute;
    z-index: -1;
}

.button:hover { color: var(--quaternary);
    transition: 0.3s ease; }

.button:before {
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
}
.button:hover:before {
    bottom: 0;
}

.bg-primary .button { background: var(--white);
    color: var(--primary);
    border: 1px solid var(--white); }

.bg-primary .button:hover { color: var(--white); }

.bg-primary .button:before, .bg-primary .button:after { background: var(--primary); }

/*GO TOP*/

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    z-index: 11;
    cursor: pointer;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: var(--white);
    margin: 0;
    position: relative;
    left: 16px;
    top: 14px;
    font-size: 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: var(--secondary);
}
#return-to-top:hover i {
    color: var(--white);
    top: 5px;
}

/* Animation Fade In Down */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.5s;
}

.fadeInDownCustom {
    -webkit-animation-name: fadeInDownSmall;
    animation-name: fadeInDownSmall;
}
@-webkit-keyframes fadeInDownSmall {
    0% {opacity: 0;-webkit-transform: translateY(-20px);}
    100% {opacity: 1;-webkit-transform: translateY(0);}
}
@-moz-keyframes fadeInDownSmall {
    0% {opacity: 0;-moz-transform: translateY(-20px);}
    100% {opacity: 1;-moz-transform: translateY(0);}
}
@-o-keyframes fadeInDownSmall {
    0% {opacity: 0;-o-transform: translateY(-20px);}
    100% {opacity: 1;-o-transform: translateY(0);}
}
@keyframes fadeInDownSmall {
    0% {opacity: 0;transform: translateY(-20px);}
    100% {opacity: 1;transform: translateY(0);}
}

/* End Animation Fade In Down */

/* Overlay */

.overlay {
    top: 0;
    background-color: rgba(0,0,0,0.6);
    bottom: 0;
    left: 0;
    z-index: 10;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s linear;
    margin: auto; }

.overlay-sm {
    background-color: rgba(0,0,0,0.3); }

.overlay-hover { opacity: 0;
    transition: all 0.3s linear; }

.overlay-hover-container:hover .overlay-hover { opacity: 1;
    transition: all 0.3s linear; }

/* Header */

.header-menu {
    position: fixed;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    height: 70px;
    background-color: transparent;
    z-index: 11;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.header-menu .menu-items li a { color: var(--white);
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.07em;
    font-size: 14px; }

.header-menu.sticky {
    height: 60px;
    background: var(--white);
}

.header-menu.sticky .menu-items li a, .header-menu.sticky .contacts a, .header-menu.sticky .contacts i {
    color: var(--primary);
}

.header-menu .menu-items ul { display: flex; }

.header-menu .menu-items li {
    padding: 0 15px 0 15px;
}

.logo {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7476%) hue-rotate(185deg) brightness(107%) contrast(96%);
    transition: unset;
}

.header-menu.sticky .logo {
    filter: unset;
}

li.current-menu-item, .post-type-archive-prodotti li#menu-item-46, .post-type-archive-arredi li#menu-item-45 { position: relative; }

li.current-menu-item::after, .post-type-archive-arredi li.menu-item-45::after, .post-type-archive-prodotti li.menu-item-46::after { content: "";
    top: 23px;
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--quaternary);
    transform: translateX(-50%);
    left: 50%; }

.header-menu .menu-items li a { transition: all 0.2s linear; }

.contacts a, .contacts i {
    color: var(--white);
}

.header-menu .menu-items li a:hover { color: var(--quaternary);
    transition: all 0.2s linear; }

.header-menu .menu-items li.current-menu-item a { color: var(--white); }

.header-menu.sticky .menu-items li.current-menu-item a { color: var(--primary); }

.img-product { width: 100%;
    object-fit: cover;
    height: 420px; }

.box h2 { padding-right: 30px; }

/* Responsive */

.none-desktop { display: none; }

.none-sm { display: flex; }

/* Elements */

#slideshow,
#slideshow .splide__track,
#slideshow .splide__list,
#slideshow .splide__slide {
    height: 100vh !important;
}

.title-section {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.container-boxed { margin: 0 100px;
    height: calc(100vh - 50px); }

.wh100-boxed { width: calc(100% - 200px); }

.padding-right-10 { padding-right: 10%; }

.padding-left-10 { padding-left: 10%; }

.padding-right { padding-right: 50px; }

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

.padding-bottom { padding-bottom: 50px; }

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

.circle { width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 1px solid var(--tertiary);
}

.circle-ecologia { width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 1px solid var(--primary); }

.circle img { width: 30px; }

.circle-ecologia img { width: 70px; }

.border-bottom { border-bottom: 1px solid var(--white);
    margin-bottom: 20px; }

.p-rel-container { top: 0;
    left: -20px; }

.side-title { left: -50px;
    top: 50px;
    width: 100px; }

.side-title-2 { left: 100px;
    top: 50px;
    width: 100px; }

.p-rel-top { top: 150px; }

.wh90 { width: 90%; }

.circle-link { border: 1px solid var(--white);
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; }

.overlay-hover-container:hover .circle-link { background-color: var(--white);
    transition: all 0.3s ease;
    cursor: pointer; }

.overlay-hover-container:hover .circle-link i { transform: rotate(-45deg);
    transition: all 0.3s ease;
    color: var(--tertiary); }

.circle-link i { font-size: 25px;
    transition: all 0.3s ease; }

.img-hover-container { overflow: hidden; }

.img-hover-container .img-hover { transform: scale(1.05);
    transition: all 0.2s linear; }

.img-hover-container .img-hover:hover { transform: scale(1);
    transition: all 0.2s linear; }

.product-box { width: calc(50% - 10px);
    height: 600px; }

.box-carpenteria { min-height: 500px;
    margin-bottom: 50px; }

.box-carpenteria-container .box-carpenteria:nth-child(odd) { flex-direction: row; }

.box-carpenteria-container .box-carpenteria:nth-child(even) { flex-direction: row-reverse; }

.line::after { content: "";
    height: 1px;
    display: flex;
    margin: 0 auto;
    background-color: var(--primary);
    width: calc(100% - 20%); }

.logo { height: 50px;
    left: 100px;
    object-fit: contain; }

.line-horizontal { content: "";
    position: relative;
    display: flex;
    height: 1px;
    width: calc(100% + 7vw);
    left: -10vw;
    margin-top: 10px;
    box-sizing: content-box;
    background: var(--tertiary); }

.line-horizontal-2 { content: "";
    position: relative;
    display: flex;
    height: 1px;
    width: calc(100% + 7vw);
    left: -10vw;
    margin-top: 10px;
    box-sizing: content-box;
    background: var(--primary); }

.line-horizontal-3 { width: calc(10% + 7vw);
    top: 13px; }

.img-rel-1 { top: -90px; }

.img-rel-2 { top: -120px;
    width: calc(100% - 10vw);
    left: 0;
    margin-bottom: -70px; }

.overlay-primary { background: rgba(15,30,92,0.67); }

.padding-right-sm { padding-right: 30px; }

.bg-mid { background: linear-gradient(to bottom, #293D8B 60%, #fff 40%);
    background-repeat: no-repeat; }

.p-rel-top-meno { top: -140px; }

.product-img-1::before { width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    content: "";
    border: 1px solid var(--tertiary);
    left: -20px;
    top: -20px;
}

.img-hover-slide-1, .img-hover-slide-2 { transform: unset;
    transition: all 0.2s ease-in-out; }

.img-hover-slide-1:hover { transform: translate(-19px, -19px);
    transition: all 0.2s ease-in-out; }

.img-hover-slide-2:hover { transform: translate(19px, -19px);
    transition: all 0.2s ease-in-out; }

.product-img-2::before { width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    content: "";
    border: 1px solid var(--tertiary);
    right: -20px;
    top: -20px; }

.padding-left-big { padding-left: 100px; }

.contact i { font-size: 18px;
    padding-top: 5px; }

.wh50vw { width: 50vw; }

.tax-tipologia-prodotto h2 { font-size: 25px;
    line-height: 30px; }

/* Masonry */

.masonry {
    column-count: 3;
    column-gap: var(--space-sm, 2rem);
    width: 100%;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: var(--space-sm, 2rem);
    break-inside: avoid;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry {
        column-count: 1;
    }
}

/* Form */

.main-contact input[type="text"], .main-contact input[type="email"], .main-contact input[type="tel"] { width: calc(50% - 5px);
    border: 1px solid var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #BCC2D8;
    margin-bottom: 10px;
    padding: 10px 15px;
    transition: all 0.2s linear;
    border-radius: 5px; }

.main-contact input[type="text"]:focus, .main-contact input[type="email"]:focus, .main-contact input[type="tel"]:focus, .main-contact textarea:focus { outline: none;
    transition: all 0.2s linear;
    color: var(--primary); }

.main-contact textarea { width: 100%;
    border: 1px solid var(--primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #BCC2D8;
    margin-bottom: 10px;
    padding: 10px 15px;
    height: 150px;
    resize: none;
    border-radius: 5px; }

.main-contact input[type="submit"] { background: var(--quaternary);
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    border: 1px solid var(--quaternary);
    border-radius: 5px;
    font-size: 15px;
    padding: 5px 80px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s linear; }

.main-contact input[type="submit"]:hover { background: transparent;
    color: var(--quaternary);
    transition: all 0.2s linear; }

.margin-form { margin-left: 10px; }

.wpcf7-list-item { margin: unset !important; }

.wpcf7-list-item-label { font-size: 15px !important; }

/* CTA Buttons */

.buttons-cta-container { position: fixed;
    top: 70vh;
    overflow: hidden;
    padding: 10px 0;
    right: 0;
    z-index: 999; }

.buttons-cta { position: relative;
    background: var(--primary);
    border-radius: 10px 0 0 10px;
    color: var(--white);
    display: flex;
    width: 100%;
    font-size: 15px;
    padding: 12px 30px 12px 0;
    right: -90px; }

.buttons-cta:hover { right: 0;
    transition: all 0.2s ease-in-out; }

.buttons-cta i { padding: 0 25px; }

/* End CTA Buttons */

.cmplz-placeholder-parent { width: 100%; }

#menu-gdpr {
    flex-direction: column;
}

#menu-gdpr a { color: var(--white); }

/* Footer */

.line-vertical::after { content: "";
    height: 170px;
    display: flex;
    margin: 20px auto;
    background-color: var(--white);
    width: 1px; }

/* End Footer */

.page-template-contatti #breadcrumbs { padding-left: unset; }

#breadcrumbs { text-align: left;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: #fff;
    position: relative;
    font-size: 15px;
    line-height: 25px;
    padding-bottom: 50px;
    margin-right: auto;
    padding-left: 50px;
    padding-top: 10px; }

#breadcrumbs a { color: #fff; }


/*RESPONSIVE TABLET*/
@media only screen and (min-width: 768px) and (max-width: 1100px) {

    .container { min-width: 768px; }

    .subcontainer { width: 100%;
        padding: 30px 10%;
        margin: 0 auto; }

    .space-extra-sm { padding: 4px; }

    .space-sm { padding: 7px; }

    .space { padding: 10px; }

    .space-big { padding: 30px; }

    .none-tablet { display: none; }

    .none-sm { display: flex; }

    .t-col { flex-direction: column; }

    .t-center { align-items: center;
        justify-content: center; }

    .wht50 { width: 50%; }

    .wht100 { width: 100%; }

    h1 { font-size: 40px;
        line-height: 40px; }

    h2 { font-size: 30px;
        line-height: 30px;}

    h3 { font-size: 22px;
        line-height: 22px; }

    .container-boxed { margin: 0; }

    .wh100-boxed { width: 100%; }

    .p-rel-top { top: 70px; }

    .product-box { height: 400px; }

    .overlay-hover { opacity: 1; }

    .header-menu .menu-items li {
        padding: 0 7px 0 7px;
    }

    .header-menu .menu-items li a { font-size: 12px; }

    p.big { font-size: 20px;
        line-height: 30px; }

    .img-rel-1 { top: -60px; }

    .bg-mid { background: linear-gradient(to bottom, #293D8B 30%, #fff 30%); }

    .button { padding: 5px 40px; }

    .p-rel-top-meno { top: -100px; }


}

/*RESPONSIVE MOBILE*/

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

    .container { min-width: 319px; }

    .subcontainer { width: 100%;
        padding: 20px 10%;
        margin: 0 auto; }

    .sm-col { flex-direction: column; }

    .whs100 { width: 100%; }

    .whs20 { width: 20%; }

    .whs50 { width: 50%; }

    .whs80 { width: 80%; }

    .whs90 { width: 90%; }

    .space-extra-sm { padding: 3px; }

    .space-sm { padding: 8px; }

    .space { padding: 11px; }

    .space-big { padding: 25px; }

    .space-bigger { padding: 45px; }

    .one { order: 1; }

    .two { order: 2; }

    .three { order: 3; }

    .four { order: 4; }

    .five { order: 5; }

    .six { order: 6; }

    .none-desktop { display: flex; }

    .none-sm { display: none; }

    .h-sm { height: unset; }

    h1 { font-size: 30px;
        line-height: 30px; }

    h2 { font-size: 25px;
        line-height: 25px; }

    h3 { font-size: 20px;
        line-height: 20px; }

    p.small { font-size: 14px;
        line-height: 23px; }

    p { font-size: 18px;
        line-height: 26px; }

    p.big { font-size: 18px;
        line-height: 25px; }

    .p-rel-top { top: 0; }

    .product-box { width: 100%;
        height: 400px; }

    .box-carpenteria-container .box-carpenteria:nth-child(2n+1) { flex-direction: column; }

    .box-carpenteria-container .box-carpenteria:nth-child(2n) { flex-direction: column; }

    .img-sm { height: 100%; }

    .box-carpenteria-container .padding-4 { padding: 40px 0; }

    .container-boxed { margin: 0; }

    .wh100-boxed { width: 100%; }

    .overlay-hover { opacity: 1; }

    .box-carpenteria { margin-bottom: 30px; }

    .logo { height: 30px;
        object-fit: contain;
        left: 10%;
        top: 20px;
        z-index: 99; }

    .button { padding: 5px 40px; }

    .img-rel-1 { top: -40px; }

    .img-rel-2 { position: static;
        width: 100%;
        margin-bottom: 0; }

    .padding-right-sm { padding: 0; }

    .line-horizontal-3 { width: 40px; }

    .bg-mid .padding-3 { padding: 30px 0 0 0; }

    .bg-mid { background: linear-gradient(to bottom, #293D8B 40%, #fff 40%); }

    .p-rel-top-meno { top: 0; }

    .box { align-items: center; }

    .product-sm { width: 100%;
        align-items: center;
        justify-content: center;
        padding: 30px 0; }

    .product-sm .padding-left-big, .product-sm .padding-left { padding-left: 25px; }

    .padding-ecologia-sm.padding-3 { padding: 0 10%; }

    .img-product { height: 300px; }

    /* Footer */

    .line-vertical::after { height: 70px; }

    /* End Footer */

    /* Menu Mobile */

    .header-menu { display: none; }

    .menu-mobile {
        background-color: rgba(41, 61, 139, 0.8);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        z-index: 99;
    }
    .menu-mobile ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        position: absolute;
        left: 50%;
        top: 170px;
        transition: all 0.3s ease-in-out;
        transform: translateX(-50%);
    }
    .menu-mobile ul li {
        transform: translateY(50px);
        opacity: 0;
    }
    .menu-mobile ul li a {
        display: block;
        font-size: 2em;
        text-decoration: none;
        padding: 10px 0;
        text-align: center;
        color: #fff;
        font-weight: bold;
        transition: all 0.2s ease-in-out;
        font-family: "Futura";
    }
    .menu-mobile ul li a:hover {
        color: var(--tertiary);
    }

    .toggle-btn {
        display: block;
        position: fixed;
        z-index: 100;
        right: 10%;
        top: 20px;
        cursor: pointer;
    }
    .toggle-btn .bar {
        width: 30px;
        height: 2px;
        margin: 7px auto;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
    }
    .toggle-btn .bar:nth-child(2) {
        width: 20px;
    }

    #toggle:checked ~ .menu-mobile {
        opacity: 1;
        visibility: visible;
    }
    #toggle:checked ~ .menu-mobile ul {
        top: 70px;
    }
    #toggle:checked ~ .menu-mobile ul li {
        transform: translateY(0px);
        opacity: 1;
    }
    #toggle:checked ~ .menu-mobile ul li:nth-child(1) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
    }
    #toggle:checked ~ .menu-mobile ul li:nth-child(2) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
    }
    #toggle:checked ~ .menu-mobile ul li:nth-child(3) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
    }
    #toggle:checked ~ .menu-mobile ul li:nth-child(4) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
    }
    #toggle:checked ~ .menu-mobile ul li:nth-child(5) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.5s;
    }
    #toggle:checked ~ .menu-mobile ul li:nth-child(6) {
        transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.6s;
    }
    #toggle:checked + label.toggle-btn .bar {
        background-color: var(--white);
    }
    #toggle:checked + label.toggle-btn .bar:nth-child(2) {
        transform: translateX(50px);
        opacity: 0;
    }
    #toggle:checked + label.toggle-btn .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    #toggle:checked + label.toggle-btn .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    li.current-menu-item::after, .post-type-archive-arredi li#menu-item-43::after, .post-type-archive-prodotti li#menu-item-44::after { top: 45px;
        width: 8px;
        height: 8px;
        background: var(--white); }

}