/* ==========================================
   Html / Body
   ========================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Archia', sans-serif;
}

html {
    overflow-y: scroll;
}

body {
    overflow-y: hidden;
}

body.has-scroll {
    /*overflow-y: scroll;*/
}

@media (min-width: 992px) {
    html,
    body {
        overflow-y: hidden;
    }
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    z-index: 20000;
    display: flex;
    align-items: center;
}

/* ==========================================
   paddings
   ========================================== */

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

@media (min-width: 992px) {

    .px-lg-200 {
        padding-left: 200px;
        padding-right: 200px;
    }

}

@media (min-width: 992px) and (max-height: 900px) {

    .px-lg-200 {
        padding-left: 20px;
        padding-right: 20px;
    }

}

/* ==========================================
   Typography styles for headings (h1 to h6)
   ========================================== */

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color);
}

h1, .h1 {
    font-size: 48px;
    line-height: 64px;
}

@media (min-width: 768px) {
    h1, .h1 {
        /*font-size: 64px;*/
        /*line-height: 64px;*/
    }
}

@media (min-width: 1024px) {
    h1, .h1 {
        font-size: 80px;
        line-height: 96px;
    }
}

@media (min-width: 992px) and (max-height: 900px) {
    h1, .h1 {
        font-size: 48px;
        line-height: 64px;
    }
}

h2, .h2 {
    font-size: 36px;
    line-height: 48px;
}

@media (min-width: 768px) {
    h2, .h2 {
        /*font-size: 48px;*/
        /*line-height: 48px;*/
    }
}

@media (min-width: 1024px) {
    h2, .h2 {
        font-size: 64px;
        line-height: 80px;
    }
}

h3, .h3 {
    font-size: 28px;
    line-height: 36px;
}

@media (min-width: 768px) {
    h3, .h3 {
        /*font-size: 36px;*/
        /*line-height: 36px;*/
    }
}

@media (min-width: 1024px) {
    h3, .h3 {
        font-size: 48px;
        line-height: 64px;
    }
}

h4, .h4 {
    font-size: 24px;
    line-height: 32px;
}

@media (min-width: 768px) {
    h4, .h4 {
        /*font-size: 28px;*/
        /*line-height: 32px;*/
    }
}

@media (min-width: 1024px) {
    h4, .h4 {
        font-size: 32px;
        line-height: 48px;
    }
}

/* ==========================================
   Typography styles for p
   ========================================== */

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

p.text-bigger {
    font-size: 25px;
    line-height: 30px;
}

p.text-small {
    font-size: 12px;
    line-height: 18px;
}

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

@media (min-width: 768px) {
    p {
        /*font-size: 20px;*/
        /*line-height: 30px;*/
    }
}

@media (min-width: 992px) {
    p {
        font-size: 14px;
        line-height: 24px;
    }
}


/* ==========================================
   Buttons
   ========================================== */

.btn-link:link,
.btn-link:active,
.btn-link:visited {
    text-align: left;
    padding: 0;
    font-weight: 400;
    color: #000000 !important;
    text-transform: uppercase;
}

.btn-link:link,
.btn-link:active,
.btn-link:visited {
    font-size: 14px;
    line-height: 20px;
}

@media (min-width: 768px) {
    .btn-link:link,
    .btn-link:active,
    .btn-link:visited {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (min-width: 992px) {
    .btn-link:link,
    .btn-link:active,
    .btn-link:visited {
        font-size: 14px;
        line-height: 24px;
    }
}

.btn-link:hover {
    color: #000000;
}

.btn-white:link,
.btn-white:active,
.btn-white:visited {
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid #ffffff;
    text-transform: uppercase;
    border-radius: 0;
}

.btn-white:hover {
    color: #ffffff;
}

/* ==========================================
   Navbar
   ========================================== */

.navbar {
    z-index: 9999;
    --bs-navbar-padding-y: 30px;
}

.navbar .container-fluid {
    padding-left: 25px;
    padding-right: 25px;
}

@media (min-width: 992px) {
    .navbar .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.back-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    line-height: 30px;
    margin-top: 15px;
    text-shadow: 1px 1px 1px #000000;
}

.back-btn img {
    width: 13px;
    margin-right: 5px;
    filter: drop-shadow(1px 1px 1px #000000);
}

.icon-login {
    width:16px;
    filter: drop-shadow(1px 1px 1px #000000);
}

@media (min-width: 992px) {
    .back-btn {
        font-size: 16px;
    }

    .back-btn img {
        width: 26px;
        margin-right: 10px;
    }
}

/* =====================
   Lang selector
   ===================== */

.lang-selector {
    color: #ffffff;
    font-family: "Montserrat", serif;
    font-weight: 600;
    cursor: pointer;
    margin-right: 48px;
}

.lang-selector img {
    filter: drop-shadow(1px 1px 1px #000000);
}

.lang-selector span {
    text-shadow: 1px 1px 1px #000000;
}

/* =====================
   Header socials
   ===================== */

.header-socials ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.header-socials ul li {
    display: inline-block;
    margin-right: 13px;
}

.header-socials ul li img {
    filter: drop-shadow(1px 1px 1px #000000);
}

/* =====================
   Hamburger
   ===================== */

.hamburger {
    width: 21px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 14px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 10px;
}

.home-menu-btn img {
    width: 13px;
    filter: drop-shadow(1px 1px 1px #000000);
}

.home-menu-btn .open-menu {
    display: block;
}

.home-menu-btn .close-menu {
    display: none;
}

.home-menu-btn.open .open-menu {
    display: none;
}

.home-menu-btn.open .close-menu {
    display: block;
}

.home-menu .home-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.home-menu {
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    z-index: 15000;
    overflow-y: auto;
    height: 0;
    left: 0;
    bottom: 0;
}

.home-menu::-webkit-scrollbar {
    width: 4px; /* Larghezza della scrollbar */
}

.home-menu::-webkit-scrollbar-track {
    background: #f1f1f1; /* Colore del track della scrollbar */
    border-radius: 10px; /* Arrotondamento del track */
}

.home-menu::-webkit-scrollbar-thumb {
    background: #aaa; /* Colore del thumb della scrollbar */
    border-radius: 10px; /* Arrotondamento del thumb */
}

.home-menu::-webkit-scrollbar-thumb:hover {
    background: #888; /* Colore del thumb quando viene hoverato */
}

.home-menu.show {
    opacity: 1;
    height: auto;
    padding: 17px 46px 30px;
}

.admin-bar .home-menu {
    top: 140px;
}

.home-menu-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.home-menu-list li {
    min-width: 250px;
    border-bottom: 1px solid #000000;
}

.home-menu-list li + li {
    margin-top: 17px;
}

.home-menu-list a:link,
.home-menu-list a:active,
.home-menu-list a:visited {
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: #000000;
    text-decoration: none;
}

@media (min-width: 992px) {

    .home-menu {
        position: fixed;
        top: 109px;
        right: 50px;
        bottom: auto;
        left: auto;
        background-color: rgba(255, 255, 255, 0.7);
        padding: 17px 46px 30px;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        z-index: 15000;
        max-height: calc(100vh - 218px);
        overflow-y: auto;
        height: 0;
    }

    .home-menu-btn {
        margin-left: 24px;
    }

}


/* =====================
   Home menu
   ===================== */


/* =====================
   Desktop navbar right
   ===================== */

.search-btn {
    margin-right: 10px;
}

.search-btn img,
.share-btn img {
    filter: drop-shadow(1px 1px 1px #000000);
}

.navbar-icon,
.navbar-link {
    margin-right: 10px;
}

.navbar-link:link,
.navbar-link:active,
.navbar-link:visited {
    margin-right: 5px;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: #ffffff;
    text-shadow: 1px 1px 1px #000000;
}

.share-btn {
    margin-right: 10px;
}

@media (min-width: 992px) {

    .search-btn {
        margin-right: 25px;
    }

    .navbar-icon,
    .navbar-link:link,
    .navbar-link:active,
    .navbar-link:visited {
        margin-right: 25px;
    }

}

/* ==========================================
   Splash
   ========================================== */

.splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.splash.show {
    background-image: url('../img/splash-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000000;
    opacity: 1;
	z-index: 18000;
}

.splash-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Per il contenuto */
.splash-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px); /* Effetto leggero di movimento */
    transition: all 0.3s ease-in-out 0.2s; /* Ritardo di 0.2 secondi */
    max-width: 300px;
}

.splash.show .splash-content {
    opacity: 1;
    transform: translateY(0);
}

.splash-logo {
    max-width: 132px;
    margin-bottom: 90px;
}

.splash-select {
    width: 100%;
}

.splash-select h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.splash-select ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.splash-select li {
    padding: 10px 0;
    margin-bottom: 60px;
}

.splash-select li a:link,
.splash-select li a:active,
.splash-select li a:visited {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}

.lang-flag {
    width: 60px;
}

@media (min-width: 992px) {

    .splash-content {
        max-width: 370px;
    }

    .splash-logo {
        max-width: 207px;
        margin-bottom: 147px;
    }

    .splash-select h3 {
        font-size: 25px;
        line-height: 70px;
    }

    .splash-select ul {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

}

/* ==========================================
   Search
   ========================================== */

.overlay-search {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    transition: all 0.5s ease-in-out;
}

.overlay-search.show {
    background-color: #000000;
    opacity: 1;
    z-index: 17000;
}

.overlay-search-content {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out 0.2s;
    max-width: 300px;
}

.search.show .-content {
    opacity: 1;
    transform: translateY(0);
}

.search-close {
    margin-bottom: 46px;
    cursor: pointer;
}

.search-form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-form-container h1 {
    color: #ffffff;
    margin-bottom: 75px;
    font-family: "Montserrat", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
}

.search-form .input-group,
.search-form .input-group .input-group-text,
.search-form .input-group .form-control {
    background-color: transparent;
    border: 0;
    color: #ffffff;
    outline: none;
    box-shadow: none;
}

.search-input-icon {
    width: 25px;
}

.search-form .input-group {
    border-bottom: 1px solid #ffffff;
    margin-bottom: 67px;
    flex-wrap: nowrap;
}

.btn-search-submit {
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: underline;
    border: 0 !important;
}

.btn-search-submit:hover,
.btn-search-submit:active,
.btn-search-submit:disabled {
    border: 0;
}

.search-form-link {
    color: #ffffff;
    font-family: "Montserrat", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    text-decoration: underline;
    text-transform: uppercase;
}

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


@media (min-width: 992px) {

    .search-content {
        max-width: 700px;
    }


}

/* ==========================================
   Menu
   ========================================== */

.menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.menu.show {
    background-color: #000000;
    opacity: 1;
    z-index: 8000;
}

.menu-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px); /* Effetto leggero di movimento */
    transition: all 0.3s ease-in-out 0.2s; /* Ritardo di 0.2 secondi */
    justify-content: flex-end; /* Ancora gli elementi in basso */
}

.menu.show .menu-content {
    opacity: 1;
    transform: translateY(0);
}

.menu-close-btn {
    cursor: pointer;
    margin-bottom: 90px;
}

@media (min-width: 992px) {

    .menu-close-btn {
        margin-bottom: 105px;
    }
}

/* ==========================================
   Menu carousel
   ========================================== */

.menu-carousel {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1 1 100%;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
}

a.menu-carousel-item:link,
a.menu-carousel-item:active,
a.menu-carousel-item:visited{
    text-decoration: none;
}

.menu-carousel-item {
    position: relative;
    display: flex;
    height: 280px;
    flex: 1 0 32vw;
    min-width: 140px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.menu-carousel-item .text {
    z-index: 10;
}

.menu-carousel-item:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.menu-carousel-item h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    margin-bottom: 0;
}

.menu-carousel-item .show-more {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    text-align: center;
    text-decoration: underline;
}

@media (min-width: 992px) {

    .menu-carousel {
        overflow-x: visible;
        -webkit-overflow-scrolling: auto;
    }

    .menu-carousel-item {
        height: 360px;
        flex: 1 0 auto;
        aspect-ratio: 1/2;
    }

    .menu-carousel-item h3 {
        font-size: 18px;
        line-height: 22px;
    }

}

@media (min-width: 992px) and (max-height: 900px) {

    .menu-carousel-item {
        height: 250px;
        aspect-ratio: 3/4;
    }

    .menu-carousel-item h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .menu-close-btn {
        margin-bottom: 30px;
    }

}

/* ==========================================
   Scroll indicator
   ========================================== */

.scroll-indicator {
    bottom: 43px;
    z-index: 700;
}

.scroll-indicator p {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 31px;
    font-size: 12px;
    line-height: 14px;
}

.scroll-indicator p {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.scroll-indicator img {
    filter: drop-shadow(1px 1px 1px grey);
}

.scroll-indicator img.mouse {
    width: 30px;
}

.scroll-indicator img.arrows {
    width: 30px;
}

@media (min-width: 992px) {

    .scroll-indicator p {
        margin-bottom: 0;
        margin-right: 17px;
    }

    .scroll-indicator img.mouse {
        width: 12px;
        margin-right: 5px;
    }

    .scroll-indicator img.arrows {
        width: 30px;
    }


}

/* ==========================================
   Menu btn
   ========================================== */

.menu-btn {
    z-index: 2000;
}

.menu-btn .scroll-indicator p {
    margin-bottom: 0;
}

.menu-btn .scroll-indicator {
    margin-bottom: 16px;
}

.btn-menu {
    border: 2px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    width: 265px;
    height: 48px;
    border-radius: 0;
    backdrop-filter: blur(4px);
    position:relative;
    font-weight: 500;
    font-size: 12px;

    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.btn-menu:hover,
.btn-menu:active {
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
}

.btn-menu:after {
    content: "+";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    line-height: 20px;
    transition: transform 0.5s ease-in-out;
    text-shadow: none;
}

.btn-menu:hover:after {
    transform: translateY(-40%) rotate(180deg);
}

/* ==========================================
   Wechat btn
   ========================================== */

.wechat-btn {
    z-index: 2500;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.wechat-btn a:link,
.wechat-btn a:active,
.wechat-btn a:visited {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.wechat-btn a:before {
    background-image: url('../img/wechat-icon-square.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: drop-shadow(1px 1px 1px #000000);
}

@media (min-width: 992px) {

    .wechat-btn {
        bottom: 20px;
        right: 50px;
        width: 50px;
        height: 50px;
    }

}

/* ==========================================
   Home
   ========================================== */

.main {
    display: flex;
}

/* Hero Section */
.hero-section {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    /*z-index: 500;*/
}

.hero-logo {
    max-width: 50vw;
    top: 50%;
    left: 50%;
	z-index: 10555;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease-in-out;
}

.hero-logo img {
}

.has-scroll .hero-logo {
    max-width: 71px;
    top: 15px;
    transform: translate(-50%, 0);
    filter: drop-shadow(2px 2px 2px gray);
}

.admin-bar.has-scroll .hero-logo {
    top: 61px;
}

.home-intro-text {
    padding: 80px 60px;
}

.home-intro-text h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    margin-bottom: 10px;
}

.home-intro-text p {
    margin-bottom: 26px;
}

.home-video {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

@media (min-width: 768px) {
    .home-intro-text h3 {
        font-size: 25px;
        line-height: 30px;
    }
}


@media (min-width: 992px) {

    #scroll-container {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .main {
        width: fit-content;
    }

    .has-scroll .hero-logo {
        max-width: 130px;
        top: 39px;
    }

    .home-intro {
        min-width: 100vw;
    }

    .home-intro-bg {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        /*height: 100vh;*/
    }

    .home-intro-text {
        padding-left: min(200px, 6vw);
        padding-right: min(200px, 6vw);
    }

    .home-intro-text h3 {
        font-size: 20px;
        line-height: 24px;
    }

}

@media (min-width: 992px) and (max-height: 900px) {
    .has-scroll .hero-logo {
        max-width: 71px;
        top: 15px;
    }

}

/* ==========================================
   Horizontal scroll
   ========================================== */

.horizontal-scroll {
    display: flex;
    flex-wrap: nowrap;
    height: 100vh;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scroll-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    height: 100vh;
    width: 90vw;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.scroll-block .text {
    z-index: 10;
}

.scroll-block:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 5;
}

a.scroll-block:link,
a.scroll-block:active,
a.scroll-block:visited {
    color: #ffffff;
    text-align: center;
    text-decoration: none;
}

a.scroll-block:link h3,
a.scroll-block:active h3,
a.scroll-block:visited h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
    text-decoration: none;
}

.scroll-block .show-more {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-decoration: underline;
    text-transform: uppercase;
}

@media (min-width: 768px) {

    .scroll-block {
        width: calc(100vh / 27 * 16);
        aspect-ratio: 16/27;
    }

}

@media (min-width: 992px) {

    .horizontal-scroll {
        overflow-x: visible;
        -webkit-overflow-scrolling: auto;
    }

}

@media (min-width: 992px) and (max-height: 900px) {

    a.scroll-block:link h3,
    a.scroll-block:active h3,
    a.scroll-block:visited h3 {
        font-size: 30px;
        line-height: 38px;
    }

    .scroll-block .show-more {
        font-size: 13px;
        line-height: 16px;
    }

}

/* ==========================================
   Footer
   ========================================== */

.footer {
    position: relative;
    padding: 160px 42px 44px;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    background-color: #e3e3e3;
}

.footer.vertical-scroll {
    padding: 160px 0;
    min-height: auto;
}

.home .footer {
    padding-bottom: 31px;
}

@media (min-width: 992px) {

    .footer {
        min-width: 70vw;
        padding-bottom: 150px;
    }

    .home .footer {
        padding-bottom: 150px;
    }

    .menu-footer-menu-container {
        display: flex;
        justify-content: end;
    }

    .footer-bottom-row {
    }

    .footer-content-scroll {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 200px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .footer-content-scroll::-webkit-scrollbar {
        width: 4px; /* Larghezza della scrollbar */
    }

    .footer-content-scroll::-webkit-scrollbar-track {
        background: #f1f1f1; /* Colore del track della scrollbar */
        border-radius: 10px; /* Arrotondamento del track */
    }

    .footer-content-scroll::-webkit-scrollbar-thumb {
        background: #aaa; /* Colore del thumb della scrollbar */
        border-radius: 10px; /* Arrotondamento del thumb */
    }

    .footer-content-scroll::-webkit-scrollbar-thumb:hover {
        background: #888; /* Colore del thumb quando viene hoverato */
    }


}

@media (min-width: 992px) and (max-height: 900px) {

    .footer {
        padding-top: 90px;
    }
}



.footer-address {
    margin-bottom: 25px;
}

.footer-address strong {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
}

.footer-address-small strong {
    font-size: 13px;
    line-height: 16px;
}

.footer-address p {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    text-align: left;
}


.footer-address a:link,
.footer-address a:active,
.footer-address a:visited {
    color: #000000;
}

ul.footer-menu {
    list-style-type: none;
    padding-left: 0;
    display: table;
    margin-bottom: 32px;
}

.footer-menu li {
    padding-left: 5px;
    padding-right: 10px;
    border-bottom: 1px solid #000000;
}

.footer-menu a:link,
.footer-menu a:active,
.footer-menu a:visited {
    color: #000000;
    text-decoration: none;
}

.footer-shortcode {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* =====================
   Footer socials
   ===================== */

.footer-socials h3 {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.footer-socials ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 23px;
}

.footer-socials li {
    display: inline-block;
    margin-right: 16px;
    margin-bottom: 16px;
}

a.footer-privacy-link:link,
a.footer-privacy-link:active,
a.footer-privacy-link:visited {
    color: #000000;
    text-decoration: none;
}

@media (min-width: 992px) {

    .footer-socials {
        margin-bottom: 0;
    }

    .footer-socials ul {
        margin-bottom: 10px;
    }

    .footer-socials li {
        margin-right: 5px;
        margin-bottom: 0;
    }

    .footer-socials li img {
        width: 16px;
        height: 16px;
    }

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

@media (min-width: 992px) and (max-height: 900px) {

    .footer {
        min-width: 100vw;
    }

    .footer-socials ul {
        margin-bottom: 0;
    }

    .footer-socials li {
        margin-bottom: 0;
    }

    ul.footer-menu {
        display: block;
        column-count: 2;
    }

    ul.footer-menu li a:link,
    ul.footer-menu li a:active,
    ul.footer-menu li a:visited {
        font-size: 13px;
    }

    .footer-privacy-link {
        font-size: 12px;
    }

}

/* ==========================================
   Post footer
   ========================================== */

.post-footer {

}

@media (min-width: 992px) {
    .post-footer {
        height: 100vh;
        min-width: 30vw;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

}

/* ==========================================
    Sezioni
   ========================================== */

section:focus {
    outline: none;
}

.section {
    display: flex;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section h1 {
    color: #ffffff;
    font-weight: 600;
    text-align: left;
}

.section.bg-white h1,
.section.bg-white h2,
.section.bg-white h3,
.section.bg-white h4,
.section.bg-white h5,
.section.bg-white h6,
.section.bg-white p,
.section.bg-white a:link,
.section.bg-white a:active,
.section.bg-white a:visited {
    color: #000000;
}

.section-40,
.section-50,
.section-60,
.section-70,
.section-80,
.section-100 {
    width: 100vw;
}

.section-dvh-100 {
    min-height: 100vh;
    height: 100vh;
}

.section-dvh-50 {
    min-height: 466px;
    height: 50vh;
}

.section.bg-white {
    background-color: #ffffff;
    color: #000000;
}

.section.bg-black {
    background-color: #000000;
    color: #ffffff;
}

section.bg-black,
section.bg-black h1,
section.bg-black .h1,
section.bg-black h2,
section.bg-black .h2,
section.bg-black h3,
section.bg-black .h3,
section.bg-black h4,
section.bg-black .h4,
section.bg-black h5,
section.bg-black .h5,
section.bg-black h6,
section.bg-black .h6,
section.bg-black p {
    color: #ffffff;
}

.section-bg-img {
    color: #ffffff;
}

.section-square .section-content {
    padding-top: 110px;
    padding-bottom: 110px;
}

.section-w-40 .section-content {
    padding-top: 110px;
    padding-bottom: 110px;
}

.section-content {
    padding-left: 50px;
    padding-right: 50px;
    text-align: left;
}

.section-content a:link,
.section-content a:active,
.section-content a:visited {
    color: #ffffff;
    text-decoration: underline;
    text-transform: uppercase;
}

@media (min-width: 992px) {

    .section-square {
        min-width: 100vh;
        max-height: 100vh;
    }

    .section-square .section-content {
        padding-left: min(168px, 5vw);
        padding-right: min(168px, 5vw);
    }

    .section-w-40 .section-content {
        height: 100vh;
    }

    .section-40,
    .section-50,
    .section-60,
    .section-70,
    .section-80,
    .section-100 {
        width: auto;
        /*height: 100vh;*/
    }

    .section-40 {
        min-width: 40vw;
    }

    .section-w-40 {
        width: 40vw;
    }

    .section-50 {
        min-width: 50vw;
    }

    .section-60 {
        min-width: 60vw;
    }

    .section-70 {
        min-width: 70vw;
    }

    .section-80 {
        min-width: 80vw;
    }

    .section-100 {
        min-width: 100vw;
    }

}

@media (min-width: 992px) and (max-height: 900px) {

    .section-square .section-content {
        padding-top: 60px;
        padding-bottom: 100px;
    }

}

/* ==========================================
    Section intro
   ========================================== */

.section-intro {
    justify-content: center;
    align-items: center;
}

.section-intro h1 {
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 20px;
    max-width: 90vw;
}

.section-intro img {
    max-width: 438px;
    aspect-ratio: 2/3;
    object-fit: cover;
    margin-bottom: 20px;
}

@media (min-width: 992px) {

    .section-intro {
        justify-content: flex-start;
    }

    .section-intro.section-60 {
        min-width: 100vw;
    }

    .section-intro .section-content {
        padding-left: 140px;
    }

    .section-intro h1 {
        /*margin-left: -220px;*/
        transform: translateX(-200px);
        /*text-shadow: 1px 1px 1px #000000;*/
        max-width: none;
    }

    .section-intro h1 {
        font-size: 60px;
        line-height: 70px;
        text-align: left;
    }

    .section-intro img {
        margin-bottom: 0;
        /*max-height: 50vh;*/
    }

    .section-intro .image-container {
        min-width: 438px;
        /*height: 600px;*/
        /*min-width: 300px;*/
        aspect-ratio: 73/100;
        position: relative;
        display: block;
    }

    .section-intro .image-container img {
        display: block;
        margin-bottom: 0;
        /*max-height: 50vh;*/
        width: 100%;
        object-fit: cover;
    }

    .section-intro .image-container:before  {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        pointer-events: none;
        z-index: 1;
    }

    .section-intro h1 {
        z-index: 2;
    }

    .section-intro-content-scroll {
        max-height: 45vh;
        overflow-y: auto;
    }

    .section-intro-content-scroll::-webkit-scrollbar {
        width: 4px; /* Larghezza della scrollbar */
    }

    .section-intro-content-scroll::-webkit-scrollbar-track {
        background: #f1f1f1; /* Colore del track della scrollbar */
        border-radius: 10px; /* Arrotondamento del track */
    }

    .section-intro-content-scroll::-webkit-scrollbar-thumb {
        background: #aaa; /* Colore del thumb della scrollbar */
        border-radius: 10px; /* Arrotondamento del thumb */
    }

    .section-intro-content-scroll::-webkit-scrollbar-thumb:hover {
        background: #888; /* Colore del thumb quando viene hoverato */
    }


}

@media (min-width: 1200px) {

    .section-intro.section-60 {
        min-width: calc(240px + 60vw);
    }

    .section-intro h1 {
        font-size: 60px;
    }

}

@media (min-width: 1400px) {

    .section-intro.section-60 {
        min-width: 40vw;
    }

    .section-intro h1 {
        font-size: 60px;
    }

}

@media (min-width: 992px) and (max-height: 900px) {

    .section-intro .image-container {
        min-width: 250px;
        max-width: 250px;
    }

    .section-intro h1 {
        font-size: 40px;
        line-height: 48px;
    }

}


/* ==========================================
    Section video
   ========================================== */

.section-video {
    position: relative;
}

.section-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.section-video .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.section-video.play .btn-play {
    display: none;
}

/* ==========================================
    Carousel scroll
   ========================================== */

.section-carousel {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-left: 50px;
    padding-bottom: 50px;
}

.carousel-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.carousel-scroll-item {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: min(calc(100vw - 100px), 600px);
    max-width: min(calc(100vw - 100px), 600px);
}

.carousel-scroll-item .title {
    padding-left: 20px;
    padding-right: 20px;
}


.gallery-item {
    width: 100%;
    display: block;
    position: relative;
}

.carousel-scroll-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 45px;
}

.carousel-scroll-item a:link,
.carousel-scroll-item a:active,
.carousel-scroll-item a:visited {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    text-transform: uppercase;
}

@media (min-width: 992px) {

    .section-carousel {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-right: 50px;
    }

    .carousel-scroll-item {
        width: auto;
    }

    .carousel-scroll-item img {
        aspect-ratio: 3/2;
        margin-bottom: 10px;
    }

}

@media (min-width: 992px) and (max-height: 900px) {

    .carousel-scroll-item {
        min-width: 300px;
        max-width: 300px;
    }

}

/* ==========================================
    List search
   ========================================== */

.list-search {
    width: 100%;
    padding-right: 50px;
}

.list-search .list-search-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.list-search-form .input-group,
.list-search-form .input-group .input-group-text,
.list-search-form .input-group .form-control {
    background-color: transparent;
    border: 0;
    color: #ffffff;
    outline: none;
    box-shadow: none;
}

.list-search .search-input-icon {
    width: 25px;
}

.list-search .input-group {
    border-bottom: 1px solid #ffffff;
    margin-bottom: 10px;
}

.list-search .btn-search-submit {
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: underline;
}

.list-search .pagination li {
    display: inline-block;
    padding: 5px;
}

.list-search .pagination li a:link,
.list-search .pagination li a:active,
.list-search .pagination li a:visited {
    color: #ffffff;
    text-decoration: none;
}

.bg-white .list-search .pagination li a:link,
.bg-white .list-search .pagination li a:active,
.bg-white .list-search .pagination li a:visited {
    color: #000000;
}


.list-search .pagination li.active a:link,
.list-search .pagination li.active a:active,
.list-search .pagination li.active a:visited {
    font-weight: 700;
}

@media (min-width: 992px) {

    .section-carousel {
        position: relative;
    }

    .list-search {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: start;
        align-items: start;
        padding-left: 600px;
    }

    .list-search-sticky {
        position: sticky;
        left: 50%;
        transform: translateX(-50%);
    }

    .list-search-form {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        margin-bottom: 58px;
    }

    .list-search-form .input-group {
        width: 600px;
    }

}

@media (min-width: 992px) and (max-height: 900px) {
    .list-search-form {
        margin-bottom: 0;
    }
}

/* ==========================================
    Carousel scroll history items
   ========================================== */

.carousel-scroll-history-item {
    display: flex;
    flex-direction: column;
    min-width: calc(100vw - 100px);
    max-width: 500px;
    aspect-ratio: 5/9;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.carousel-scroll-history-item h3 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.carousel-scroll-history-item a:link,
.carousel-scroll-history-item a:active,
.carousel-scroll-history-item a:visited {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    text-decoration: underline;
    text-transform: uppercase;
}

@media (min-width: 450px) {

    .carousel-scroll-history-item {
        min-width: 350px;
        width: 350px;
    }

}

@media (min-width: 992px) {

    .carousel-scroll-history-item {
        min-width: 500px;
        width: 500px;
        max-height: calc(100vh - 320px)
    }

}

/* ==========================================
    Section Hero
   ========================================== */

.section-hero {
    position: relative;
}

.section-hero:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.section-content {
    z-index: 10;
}

.section-hero h1 {
    margin-bottom: 25px;
    /*text-shadow: 1px 1px 1px #000000;*/
}

.section-hero .section-content p {
    color: #ffffff;
    /*text-shadow: 1px 1px 1px #000000;*/
}

/* ==========================================
    Collezioni category
   ========================================== */

.collezioni-category h1 {
    /*font-size: 40px;        */
}

.loghi-collezioni {
    margin-bottom: 23px;

    .logo-collezione {
        width: 50px;
    }
}


/* ==========================================
    Carousel scroll collection subcategory items
   ========================================== */

.carousel-scroll-collection-item {
    display: flex;
    flex-direction: column;
    min-width: calc(100vw - 100px);
    max-width: 350px;
    aspect-ratio: 7/13;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    position: relative;
    cursor: pointer;
}

a.carousel-scroll-collection-item:link,
a.carousel-scroll-collection-item:active,
a.carousel-scroll-collection-item:visited {
    color: #ffffff;
    /*text-shadow: 1px 1px 1px #000000;*/
    text-decoration: none;
}

.carousel-scroll-collection-item:hover:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.carousel-scroll-collection-item h3 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    /*text-shadow: 1px 1px 1px #000000;*/
    z-index: 2;
}

.carousel-scroll-collection-item .show-more {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    /*text-shadow: 1px 1px 1px #000000;*/
    text-decoration: underline;
    text-transform: uppercase;
    z-index: 2;
}

@media (min-width: 450px) {

    .carousel-scroll-collection-item {
        min-width: 350px;
        width: 350px;
    }

}

@media (min-width: 992px) {

    .carousel-scroll-collection-item {
        min-width: 350px;
        width: 350px;
        margin-right: 30px;
        max-height: calc(100vh - 320px);
        padding: 0 10px;
    }

}

/* ==========================================
    Carousel scroll collection detail items
   ========================================== */

.carousel-scroll-detail-item {
    position: relative;
    aspect-ratio: 3/4;
    /*margin-right: 30px;*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*min-width: 192px;*/
    cursor: pointer;
    min-height: 100px;
}

.carousel-scroll-detail-item:last-of-type {
    margin-right: 0;
}

.detail-item-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 14px;
    background-color: rgba(0, 0, 0, 0.5);

}

.detail-item-controls > * {
    margin-right: 11px;
}

.detail-item-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    min-height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-item-title h3 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #ffffff !important;
    margin-bottom: 0;
}

@media (min-width: 450px) {

    .carousel-scroll-detail-item {
    }

}

@media (min-width: 992px) {

    .carousel-scroll-detail-item {
    }

}

@media (min-width: 992px) and (max-height: 900px) {

    .carousel-scroll-detail-item {
        max-height: 300px;
    }

}

/* ==========================================
    Modals
   ========================================== */

.modal-backdrop.show {
    opacity: 0.9;
}

.modal {
    z-index: 15000;
}

.modal .btn-close {
    opacity: 1;
    box-shadow: none;
}

.modal-content {
    border-radius: 0;
    border: 0;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: 0;
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}

.modal-image-container {
    position: relative;
    margin-bottom: 38px;
    min-height: 600px;
}

.modal-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
}

.modal-actions .action-wishlist {
    margin-right: 24px;
}

.modal-actions .btn-wishlist img {
    width: 25px;
    height: 25px;
}

.modal-actions .btn-form:link,
.modal-actions .btn-form:active,
.modal-actions .btn-form:visited {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
}

.modal-sample-request-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10%;
}

.modal-sample-request-form .sample-request-form {
    width: 100%;
}

.btn-close-sample-request-form {
    position: absolute;
    top: 10px;
    right: 10px;
}

.modal-sample-request-form .sample-form-title {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 18px;
}

.modal-sample-request-form .choices  {
    margin-bottom: 50px;
}

.modal-sample-request-form .choices .form-group {
    margin-bottom: 18px;
}

.modal-sample-request-form .choices .form-group input[type="checkbox"] {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.modal-sample-request-form .choices .form-group label {
    position: relative;
    cursor: pointer;
    color: #ffffff;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    font-size: 14px;
}

.modal-sample-request-form .choices .form-group label::before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #ffffff;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05), inset 0 -15px 10px -12px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05), inset 0 -15px 10px -12px rgba(0, 0, 0, .05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 12px;
    margin-bottom: 5px;
}

.modal-sample-request-form .choices .form-group input:checked + label::after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal-sample-request-form .btn-submit {
    width: 100%;
    border: 1px solid #000000;
    border-radius: 0;
    padding: 15px 50px;
    color: #ffffff;
    background-color: #000000;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 400;
}

.modal-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.modal-text h1,
.modal-text h2,
.modal-text h3,
.modal-text h4,
.modal-text h5,
.modal-text h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
}

.modal-loghi {
    margin-bottom: 10px;
}

.modal-loghi img {
    max-height: 60px;
    width: auto;
    margin-right: 10px;
}

.modal-extra,
.modal-body p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}

.modal-extra {
    margin-bottom: 10px;
}

.modal-content:hover .modal-prev-btn,
.modal-content:hover .modal-next-btn {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.modal-prev-btn {
    display: none;
    left: 30px;
    transform: translate(-50%, -50%);
}

.modal-next-btn {
    display: none;
    right: 30px;
    transform: translate(0, -50%);
}

.modal-prev-btn::before,
.modal-next-btn::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-width: 2px;
    border-style: solid;
    border-color: #000000;
    transform: rotate(45deg);
}

.modal-prev-btn::before {
    border-right: none;
    border-top: none;
}

.modal-next-btn::before {
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
}

.modal-link {
    margin-bottom: 17px;
    margin-right: 10px;
}

.modal-link:link,
.modal-link:active,
.modal-link:visited {
    color: #000000;
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 8px;
}

.modal-link .modal-download-icon {
    margin-right: 7px;
}

@media (max-width: 991px) {

    .modal-image-container {
        /*background: none !important;*/
    }

}

@media (min-width: 992px) {

    .modal-body .btn-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .modal-image-container {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        margin-bottom: 0;
        aspect-ratio: 1/1.5;
    }

    .modal-text-container {
        max-height: calc(585px - 3rem) ;
        overflow-y: auto;
    }

    .modal-text-container::-webkit-scrollbar {
        width: 4px; /* Larghezza della scrollbar */
    }

    .modal-text-container::-webkit-scrollbar-track {
        background: #f1f1f1; /* Colore del track della scrollbar */
        border-radius: 10px; /* Arrotondamento del track */
    }

    .modal-text-container::-webkit-scrollbar-thumb {
        background: #aaa; /* Colore del thumb della scrollbar */
        border-radius: 10px; /* Arrotondamento del thumb */
    }

    .modal-text-container::-webkit-scrollbar-thumb:hover {
        background: #888; /* Colore del thumb quando viene hoverato */
    }

}

@media (min-width: 992px) and (max-height: 900px) {

    .modal-image-container {
         aspect-ratio: auto;
    }

    .modal-text-container {
        min-height: 400px;
        max-height: calc(100vh - 300px) ;
        overflow-y: auto;
    }

}

/* ==========================================
    Legend
   ========================================== */

.legend {
    margin-top: 30px;
}

.legend-list {
    list-style-type: none;
    padding-left: 0;
}

.legend-list li p {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
}

.legend-list li p strong{
    font-weight: 600;
}

.legend-letter,
.legend-square {
    position: relative;
    padding-left: 24px;
}

.legend-square:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
}

.orange_square:before {
    background-color: #ee7323;
}

.blue_square:before {
    background-color: #0095db;
}

.green_square:before {
    background-color: #52ae32;
}

.legend-letter:before {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
}

.mw_square:before {
    content: "MW";
}

.s_square:before {
    content: "S";
}

.t_square:before {
    content: "T";
}

.z_square:before {
    content: "Z";
}

.b_square:before {
    content: "B";
}

/* ==========================================
    Section container
   ========================================== */

.section-container {
    padding: 170px 50px;
}

@media (min-width: 992px) {

    .section-container {
        padding: 200px 100px;
    }

}

@media (min-width: 992px) and (max-height: 900px) {

    .section-container {
        padding: 100px;
    }

}

/* ==========================================
    Contacts
   ========================================== */

.bg-contatti {
    background-image: url("../img/mappa_tabu.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
}

.contacts-menu {
    background-color: #000000;
    color: #ffffff;
}

.contacts-intro {
    margin-bottom: 45px;
}

.contacts-menu h1 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 17px;
}

.continents-list,
.countries-list {
    padding-left: 0;
}

.continents-list li,
.countries-list li {
    list-style-type: none;
}

.countries-list {
    padding-left: 26px;
}

.continents-list > li,
.countries-list > li {
    margin-bottom: 17px;
}

.continents-list > li a:link,
.continents-list > li a:active,
.continents-list > li a:visited,
.countries-list > li a:link,
.countries-list > li a:active,
.countries-list > li a:visited {
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}

.continents-list > li a:hover,
.countries-list > li a:hover {
    text-decoration: underline;
}

.continents-list .countries-list {
    margin-top: 17px;
    display: none;
}

.continents-item.open > a:link,
.continents-item.open > a:active,
.continents-item.open > a:visited,
.continents-item.open > li a:link,
.continents-item.open > li a:active,
.continents-item.open > li a:visited {
    text-decoration: underline;
}

.open .countries-list {
    display: block;
}

.continent-link.active,
.country-link.active {
    text-decoration: underline !important;
}


@media (min-width: 992px) {

    .bg-contatti {
        background-image: url("../img/mappa_tabu.png");
        background-repeat: no-repeat;
        background-position: left 50vh;
        background-size: auto;
    }

    .contacts-menu {
        width: fit-content;

    }

    .section-container-contatti {
        padding-top: 0;
        padding-bottom: 0;
    }

    .continents-list {
        margin-right: 190px;
    }

    .countries-list {
        column-count: 1;
        column-gap: 100px;
    }

    .countries-list li {
        break-inside: avoid;
    }

    .countries-list:has(li:nth-child(n+6)) {
        column-count: 2;
    }
    
    .countries-list:has(li:nth-child(n+11)) {
        column-count: 3;
    }

    .continents-list > li,
    .countries-list > li {
        margin-bottom: 18px;
    }

}

@media (min-width: 992px) and (max-height: 600px) {

    .page-template-template-contatti h1,
    .page-template-template-contatti .h1 {
        font-size: 30px;
        line-height: 30px;
    }

}

@media (min-width: 992px) and (max-height: 900px) {

    .contacts-intro {
        margin-bottom: 15px;
    }

    .countries-list:has(li:nth-child(n+11)) {
        column-count: 4;
    }

    .continents-list > li,
    .countries-list > li {
        margin-bottom: 10px;
    }

}


/* ==========================================
    contacts single reseller
   ========================================== */

.single_reseller {
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
}

.single_reseller img {
    max-width: 120px;
    margin-bottom: 14px;
}

.single_reseller h4 {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
    line-height: 18px;
}

.single_reseller p {
    margin-bottom: 0;
    font-size: 14px;
}

.single_reseller p a:link,
.single_reseller p a:active,
.single_reseller p a:visited {
    color: #000000;
}

@media (min-width: 992px) {

    .single_reseller {
        flex-direction: row;
        align-items: center;
        gap: 38px;
    }

}

/* ==========================================
    contactsModal
   ========================================== */

#contactsModal .btn-close-contacts-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background-image: url('../img/contacts/contacts-modal-close.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

#contactsModal .modal-body {
    padding-left: 50px;
    padding-right: 50px;
}

/* ==========================================
    area stampa download
   ========================================== */

.area-stampa-intro {
    margin-bottom: 60px;
}

.area-stampa-download {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ffffff;
}

.area-stampa-download .text-container {
    margin-bottom: 22px;
}

.area-stampa-download .text-container p {
    margin-bottom: 0;
}

@media (min-width: 992px) {

    .area-stampa-download {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .area-stampa-download .text-container {
        margin-bottom: 0;
    }

}

/* ==========================================
    area riservata formRequest
   ========================================== */

#formRequest .modal-header {
    border-bottom: 1px solid #000000;
    padding: 21px 80px 24px 40px;
}

#formRequest .modal-title {
    text-transform: none;
    margin-bottom: 0;
}

#formRequest .btn-close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background-image: url('../img/contacts/contacts-modal-close.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

#formRequest .modal-body {
    padding: 80px 40px 40px;
}


/* ==========================================
    Form
   ========================================== */

.wpcf7-form-control-wrap {
    display: inline-block;
    width: 100%;
}

.wpcf7-text {
    width: 100%;
    border: 1px solid #000000;
    border-radius: 0;
    padding: 8px;
    margin-bottom: 13px;
}

.wpcf7-submit {
    border: 1px solid #000000;
    border-radius: 0;
    padding: 15px 50px;
    text-transform: uppercase;
    color: #000000;
    background-color: #ffffff;
    font-size: 16px;
}

.wpcf7-list-item-label {
    padding-left: 15px;
    font-size: 12px;
    line-height: 14px;
}

.wpcf7-form label {
    line-height: 14px;
}

.wpcf7-select {
    width: 100%;
    border: 1px solid #000000;
    border-radius: 0;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #ffffff;
}

.wpcf7-textarea {
    width: 100%;
    border: 1px solid #000000;
    border-radius: 0;
    padding: 15px;
}

/* ==========================================
    Casa Tabu
   ========================================== */

.form-casa-tabu {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.vertical-scroll .form-casa-tabu {
    min-height: auto;
}

.form-casa-tabu h2 {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 33px;
}

.form-casa-tabu p {
    margin-bottom: 0;
}

.form-casa-tabu p.intro-txt {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 39px;
    text-transform: uppercase;
}

.wpcf7-text,
.wpcf7-select,
.wpcf7-textarea {
    margin-bottom: 0;
}

.wpcf7-form-control-wrap {
    margin-bottom: 13px;
}

.form-casa-tabu .wpcf7-submit {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    margin-top: 15px;
}

@media (min-width: 992px) {
    .form-casa-tabu {
        min-height: auto;
        height: 100vh;
        padding-top: 0;
        padding-bottom: 0;
    }

    .vertical-scroll .form-casa-tabu {
        height: auto;
    }


}

/* ==========================================
    certificazioni
   ========================================== */

.certificazioni-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 30px;
    padding-bottom: 110px;
}

.certificazioni-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.certificazioni-item img {
    margin-bottom: 22px;
}

.certificazioni-item a:link h3,
.certificazioni-item a:active h3,
.certificazioni-item a:visited h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: underline;
    text-transform: uppercase;
}

.certificazioni-item.not-hover {
    filter: grayscale(100%) brightness(50%);
}

@media (min-width: 992px) {
    .certificazioni-list {
        flex-direction: row;
        padding-bottom: 0;
    }

    .certificazioni-item {
        min-width: 245px;
    }

}

/* ==========================================
    sostenibilita
   ========================================== */

.sostenibilita-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 170px;
}

.sostenibilita .section-40 {
    height: auto;
    min-height: auto;
}

.sostenibilita-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.sostenibilita-item img {
    max-width: 100px;
    margin-bottom: 27px;
}

.sostenibilita-item h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
    text-transform: uppercase;
}

.sostenibilita-item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

@media (min-width: 992px) {

    .sostenibilita-list {
        flex-direction: row;
    }

    .sostenibilita-item {
        width: 650px;
    }

    .sostenibilita-item img {
        max-width: 500px;
    }

}

@media (min-width: 992px) and (max-height: 900px) {

    .sostenibilita-item img {
        max-width: 100px;
    }

}


/* ==========================================
    Login
   ========================================== */

.form-login {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.form-login h2 {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 33px;
}

.form-login p {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 39px;
    text-transform: uppercase;
}

.login-form-control-wrap {
    display: inline-block;
    width: 100%;
}

.form-login .input-text {
    width: 100%;
    border: 1px solid #000000;
    border-radius: 0;
    padding: 12px;
    margin-bottom: 15px;
}

.form-login .input-text,
.form-login .input-select,
.form-login .input-textarea {
    margin-bottom: 23px;
}

.form-login .input-submit {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
}

@media (min-width: 992px) {
    .form-login {
        min-height: auto;
        height: 100vh;
        padding-top: 0;
        padding-bottom: 0;
    }

}

/* ==========================================
    Swal
   ========================================== */

.swal2-container {
    z-index: 20000;
}

.swal2-popup {
    border-radius: 0;
}

.swal2-styled.swal2-confirm {
    border-radius: 0;
    background-color: #000000;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
}

.swal2-styled:focus {
    outline: 0;
    box-shadow: none;
}

.swal2-footer a:link,
.swal2-footer a:active,
.swal2-footer a:visited {
    color: #000000;
}

.swal2-close {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    justify-content: center;
    width: 23px;
    height: 23px;
    padding: 0;
    overflow: hidden;
    transition: color .1s ease-out;
    border: none;
    border-radius: 0;
    outline: initial;
    background: 0 0;
    color: #000;
    font-family: serif;
    font-size: 23px;
    line-height: 23px;
    cursor: pointer;
}

.swal2-close:hover {
    transform: none;
    background: 0 0;
    color: #000;
}

.swal2-title {
    position: relative;
    max-width: 100%;
    margin: 0 0 .4em;
    padding: 0;
    color: #000000;
    text-align: center;
    word-wrap: break-word;
    font-family: 'Archia', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
}

.popup-share-btns {
    margin-top: 70px;
    margin-bottom: 70px;
}

.share-title {
    margin-bottom: 30px;
    color: #000000;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
}

.share-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.share-btns + .share-btns {
    margin-top: 21px;
}

.share-icon {
    display: block;
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.share-icon.instagram {
    background-image: url("../img/share-icons/instagram.png");
}
.share-icon.linkedin {
    background-image: url("../img/share-icons/linkedin.png");
}
.share-icon.facebook {
    background-image: url("../img/share-icons/facebook.png");
}
.share-icon.whatsapp {
    background-image: url("../img/share-icons/whatsapp.png");
}
.share-icon.wechat {
    background-image: url("../img/share-icons/wechat.png");
}
.share-icon.link {
    background-image: url("../img/share-icons/link.png");
}

.swal-button {
    background-color: #000000 !important;
    color: white !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 32px !important;
    line-height: 20px !important;
}

/* ==========================================
    Typeahead
   ========================================== */

.twitter-typeahead {
    width: 100%;
}

.twitter-typeahead .form-control {
    margin-top: 10px;
}

.typeahead,
.tt-query,
.tt-hint {
    width: 100%;
    /*height: 43px;*/
}

.typeahead {
    background-color: #fff;
}

.tt-menu {
    padding: 8px 51px;
    background-color: rgba(91, 91, 89, 0.9);

    max-height: 500px;
    overflow-y: scroll;

    left: -49px !important;
    width: calc(100% + 153px) !important;
}

/* Nascondere la scrollbar (solo Chrome, Edge, Safari) */
.tt-menu::-webkit-scrollbar {
    display: none;
}

/* Per Firefox */
.tt-menu {
    scrollbar-width: none; /* Nasconde la scrollbar */
}


.tt-suggestion {
    padding: 5px 10px;
    text-align: left;
    font-size: 14px;
}

.tt-suggestion:hover {
    cursor: pointer;
    color: #fff;
    /*background-color: #0098db;*/
}

.tt-suggestion.tt-cursor {
    color: #fff;
    /*background-color: #0098db;*/

}

.tt-suggestion p {
    margin: 0;
}

/* ==========================================
    Vertical scroll
   ========================================== */

.vertical-scroll {

    .navbar {
        min-height: 129px;
    }

    .section-hero {
        h1 {
            text-align: center;
        }

        p {
            text-align: center;
            font-weight: 600;
            font-size: 25px;
        }

    }
}

/* ==========================================
    PWA notification
   ========================================== */

.pwa-notification {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    padding: 25px 20px;
    background-color: #000000;
    color: #ffffff;
    text-align: left;
    z-index: 10000;

    .pwa-notification-close-btn {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 20px;
        height: 20px;
        background-color: #ffffff;
        border-radius: 50%;
    }

    .pwa-notification-close-btn:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        border-left: 1px solid #000000;
        transform: translate(-50%, -50%) rotate(45deg);
        height: 12px;
    }

    .pwa-notification-close-btn:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        border-left: 1px solid #000000;
        transform: translate(-50%, -50%) rotate(-45deg);
        height: 12px;
    }

}

@media (min-width: 768px) {
    .pwa-notification {
        display: none;
    }
}

/* ==========================================
    News detail
   ========================================== */

.single-post {
    background-color: #000000;
}

.news-hero {
    aspect-ratio: 3.5/2;
    object-fit: cover;
}

@media (min-width: 992px) {

    .news-hero {
        aspect-ratio: 3/1;
    }

    .single-post-section {
        .content {
            p {
                font-size: 16px;
                line-height: 22px;
            }
        }
    }

}


/* ==========================================
    News gallery
   ========================================== */

.gallery-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 25px;
}

.gallery-scroll-item {
    position: relative;
    display: flex;
    flex-direction: row;
    /*min-width: min(calc(100vw - 100px), 600px);*/
    /*max-width: min(calc(100vw - 100px), 600px);*/

    flex: 0 0 calc(100% - 50px);
}

.gallery-scroll-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 45px;
}

@media (min-width: 992px) {

    .gallery-scroll {
        display: flex;
        flex-wrap: wrap;
        overflow-x: auto;
        gap: 33px;
        justify-content: center;
    }


    .gallery-scroll-item {
        min-width: unset;
        max-width: none;
        /*flex: 0 0 33.333%;*/
        flex: 0 0 calc((100% / 3) - 22px);
    }

    .gallery-scroll-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: 0;
    }

}

/* ==========================================
    Template catalogo
   ========================================== */

.page-template-template-catalogo {
    background-color: #000000;
}