@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@100;200;400;500;700&display=swap");

@font-face {
    font-family: Miller Banner;
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/MillerBanner-Light.woff2") format("woff2");
}

@font-face {
    font-family: Miller Banner;
    font-weight: 300;
    font-style: italic;
    font-display: swap;
    src: url("../fonts/MillerBanner-LightItalic.woff2") format("woff2");
}

@font-face {
    font-family: Miller Banner;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/MillerBanner-Roman.woff2") format("woff2");
}

@font-face {
    font-family: Miller Banner;
    font-weight: 400;
    font-style: italic;
    font-display: swap;
    src: url("../fonts/MillerBanner-RomanItalic.woff2") format("woff2");
}

@font-face {
    font-family: Miller Banner;
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/MillerBanner-Semibold.woff2") format("woff2");
}

@font-face {
    font-family: Miller Banner;
    font-weight: 600;
    font-style: italic;
    font-display: swap;
    src: url("../fonts/MillerBanner-SemiboldItalic.woff2") format("woff2");
}

@font-face {
    font-family: Miller Banner;
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/MillerBanner-Bold.woff2") format("woff2");
}

@font-face {
    font-family: Miller Banner;
    font-weight: 700;
    font-style: italic;
    font-display: swap;
    src: url("../fonts/MillerBanner-BoldItalic.woff2") format("woff2");
}

@font-face {
    font-family: Miller Banner;
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/MillerBanner-Black.woff2") format("woff2");
}

@font-face {
    font-family: Miller Banner;
    font-weight: 800;
    font-style: italic;
    font-display: swap;
    src: url("../fonts/MillerBanner-BlackItalic.woff2") format("woff2");
}

:root {
    --text-color: #000d14;
    --main_color_text: #ff8eb9;
}

h1,
h2,
h3,
h4,
h5,
h6,
header {
    font-family: "Playfair Display", serif;
}

img:not(header img) {
    width: 100%;
}

footer ul {
    list-style: initial !important;
}

.lh-18 {
    line-height: 18px;
}

.font-italic {
    font-family: "Miller Banner", serif;
    font-style: italic;
}

body,
p {
    font-family: "DM Sans", sans-serif;
}

body:not(.page-home):not(.mobile) main {
    margin-top: 90px;
}

body.page-home footer {
    margin-top: 0px !important;
}

body.modal-open {
    padding-right: 0px !important;
}

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

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

h2 {
    font-size: 55px;
    line-height: 60px;
}

h3 {
    font-size: 45px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 20px;
}

.fs-30 p {
    font-size: 30px;
}

.bg-secondary {
    background-color: #f5f4f4 !important;
}

a {
    text-decoration: none !important;
}

.icon-social {
    width: 20px;
    height: 20px;
}

.invert {
    filter: brightness(0) invert(1);
}

header {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 999;
    position: fixed;
    top: 0px;
    transition: all 0.2s ease-in-out;
}

.page-home header {
    box-shadow: none;
    top: 20px;
}

header.sticky {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    top: 0px;
}

.navbar {
    height: 90px;
    font-size: 15px;
    transition: height 0.2s ease-in-out;
    background-color: white;
}

.logo img {
    height: 50px;
}

header.sticky .navbar {
    height: 70px !important;
}

header.sticky .logo {
    display: block !important;
}

.page-home .navbar {
    background-color: transparent;
}

header .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

header .banner {
    transition: all 0.2s ease-in-out;
}

.scrolled .banner {
    display: none !important;
}

:not(.mobile).scrolled .navbar {
    height: 75px;
}

header .navbar .nav-link {
    color: var(--text-color) !important;
}

.page-home:not(.mobile) header:not(.sticky) .navbar *:not(.dropdown) .nav-link {
    color: white !important;
}

.page-home header .navbar .navbar-toggler {
    color: var(--text-color) !important;
    padding: 0px;
}

header .navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 10px;
}

header .dropdown-menu {
    border-radius: 10px;
    padding: 5px;
}

header .dropdown-menu .nav-item {
    border-bottom: 1px solid #ececec;
    font-size: 14px;
    font-family: "DM Sans";
    text-wrap: nowrap;
}

header .dropdown-menu .nav-item a {
    border-radius: 5px;
}

.nav-item:hover > a,
.nav-item.active > a {
    background-color: var(--main_color);
    color: #383838 !important;
}

header .dropdown-menu .nav-item:last-child {
    border-bottom: 0px;
}

body.page-home:not(.mobile) header .logo {
    display: none;
}

header .offcanvas {
    flex-grow: 0 !important;
}

#splash {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100vw - 40px);
    height: calc(100vh - 40px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #e9eaee;
    margin: 20px;
}

#splash .container img {
    width: 350px;
    max-width: 50%;
}

#splash .container {
    z-index: 100;
}

#splash::before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: linear-gradient(to top right, var(--main_color), transparent);
    opacity: 0.5;
    position: absolute;
    z-index: 2;
    filter: blur(1px);
}

#splash video {
    width: 100%;
    height: 100%;
    overflow: hidden;
    left: 0px;
    top: 0px;
    position: absolute;
    object-fit: cover;
    /*filter: brightness(0.5);*/
    z-index: 1;
}

#splash .slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    left: 0px;
    top: 0px;
    position: absolute;
    z-index: 99;
}

#splash .slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#splash .slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    color: white;
    font-size: 60px;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
#splash .slider .slick-arrow:hover {
    opacity: 1;
}

#splash .slider .arrow_left {
    left: 20px;
}

#splash .slider .arrow_right {
    right: 20px;
}

#splash .slider .slick-dots {
    z-index: 100 !important;
}

#splash h1 {
    font-family: "Miller Banner", serif;
    font-style: italic;
    font-size: 60px;
    font-weight: 100;
    line-height: 75px;
    text-shadow: rgba(0, 0, 0, 0.8) 0px 0px 8px;
}

#splash p {
    font-family: "Miller Banner", serif;
    font-size: 20px;
    line-height: 25px;
    text-shadow: rgba(0, 0, 0, 0.8) 0px 0px 8px;
}

#splash .container {
    max-width: 960px;
    position: relative;
    z-index: 100;
}

.site-btn {
    background-color: var(--main_color);
    padding: 10px 25px;
    border: 1px solid var(--main_color);
    border-radius: 25px;
    transition: all 0.3s ease;
    text-wrap: nowrap;
}

.site-btn *,
.site-btn {
    color: #383838 !important;
    fill: #383838 !important;
}

.site-btn:hover {
    background-color: #fff;
}

.site-btn.outline {
    background-color: #fff;
    padding: 10px 25px;
    color: var(--main_color_text);
    border: 1px solid var(--main_color);
}

.site-btn.outline:hover {
    background-color: var(--main_color);
    color: #fff;
}

nav .banner a.site-outline-sm-btn,
.site-outline-sm-btn {
    color: var(--main_color_text) !important;
    padding: 0px 10px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-wrap: nowrap;
    font-size: 14px;
}

/*.bg-salmon {
    background-color: var(--main_color) !important;
    border: 1px solid var(--main_color) !important;
}

.bg-salmon * {
    color: #383838 !important;
    fill: #383838 !important;
}

.bg-salmon:hover {
    background-color: white !important;
}*/

footer {
    background-color: var(--main_color);
    color: #383838 !important;
}

footer a,
footer span {
    color: #383838 !important;
    font-weight: 200;
    font-size: 14px;
}

footer .footer-brand {
    filter: brightness(0);
}

.slider-home {
    border-radius: 20px;
    margin: 0px 30px;
    width: calc(100% - 60px);
    overflow: hidden;
    margin-bottom: 0px !important;
    height: 600px;
}

.slider-home .slider-box {
    position: relative;
    width: 100%;
}

.slider-home picture::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.slider-home .slider-box picture {
    height: 600px;
    overflow: hidden;
}

.slider-home .slider-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}

.slider-home .slider-box .slider-text {
    position: absolute;
    left: 100px;
    color: #fff;
    top: 20%;
    width: 40%;
}

.slider-home .slider-box .slider-text h1 {
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0px;
    line-height: 1.5;
}

.slider-home .slider-box .slider-text h1::before {
    content: "";
    display: block;
    width: 2px;
    height: 70%;
    background-color: var(--main_color);
    position: absolute;
    left: -20px;
}

.slider-home .slider-box .slider-text p {
    padding-top: 20px;
    margin: 0px;
}

.slider-home .slider-box .slider-text a {
    font-size: 15px;
}

.slider-home .slider-box .slider-text .site-btn {
    margin-top: 30px;
    display: inline-block;
}

.slick-dots {
    bottom: 30px !important;
}

.slick-dots li {
    margin: 0px !important;
}

.slick-dots li button::before {
    font-size: 10px !important;
    color: #fff !important;
    opacity: 1 !important;
}

.slick-dots li.slick-active button::before {
    font-size: 15px !important;
}

.slick-slide > .slider-text h1 {
    top: 50px;
}

.slick-slide > .slider-text div {
    top: 80px;
}

.slick-slide > .slider-text a {
    top: 100px;
}

.slick-slide > .slider-text > * {
    transition: 1.2s ease-in-out;
    opacity: 0;
    position: relative;
}

.slick-slide.slick-active > .slider-text > * {
    opacity: 1;
    top: 0px;
    left: 0px;
}

.rounded-img {
    border-radius: 10px;
    overflow: hidden;
}

.border-left {
    display: flex !important;
    align-items: flex-start;
    position: relative;
    flex-direction: column;
    justify-content: center;
}

.border-left::before {
    content: "";
    display: block;
    width: 2px;
    height: 70%;
    background-color: var(--main_color);
    position: absolute;
    left: -20px;
}

.border-bottom {
    display: flex !important;
    align-items: center;
    position: relative;
    justify-content: center;
    border-bottom: 0px !important;
}

.border-bottom::after {
    content: "";
    display: block;
    height: 2px;
    background-color: var(--main_color);
    position: absolute;
    width: 10%;
    bottom: -10px;
}

.product-card {
    border: 1px solid var(--main_color);
    border-radius: 20px;
    padding: 20px;
    max-width: 290px;
    margin: 10px;
}

.product-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: center;
}

.product-card p {
    text-align: left !important;
}

.product-card .site-btn {
    display: block;
    border-radius: 10px;
}

.no-btn .product-card .show-more,
.product-card .learn-more {
    display: none;
}

.no-btn .product-card .learn-more {
    display: block;
}

.page-home .ordina-online {
    border-bottom: 1px solid var(--main_color);
    border-top: 0px;
}

.page-home .product-card p {
    height: 150px;
}

.ordina-online {
    position: relative;
    overflow: hidden;
    height: 350px;
    border-top: 1px solid var(--main_color);
}

.ordina-online img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-width: 50%;
    background-color: #e9eaee;
    object-fit: cover;
}

.ordina-online .w-50 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 100px;
}

iframe {
    width: 100%;
}

.news .slider-news,
.video {
    height: 250px;
}

.news .news__item {
    padding: 0px 10px;
}

.news .news__item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.news a {
    color: var(--text-color);
    font-weight: bold;
}

.rotate-icon {
    display: inline-block;
    transition: transform 0.9s ease;
}

.news a:hover .rotate-icon {
    transform: rotate(180deg);
}

.slider-news .slick-dots {
    display: none !important;
}

.top-page {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    position: relative;
    padding-bottom: 40px;
}

.top-page::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.top-page .content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: end;
    color: #fff;
    z-index: 2;
}

.breadcrumb__links {
    font-size: 16px;
    text-transform: capitalize;
}

.breadcrumb__links a::after {
    content: " > ";
    font-size: 12px;
    color: #fff;
    padding: 0px 3px;
}

.breadcrumb__links span,
.breadcrumb__links a {
    color: #fff;
}

.pagination__option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.pagination__option a {
    border: 1px solid var(--main_color);
    color: var(--main_color_text);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination__option a.active,
.pagination__option a:hover {
    color: #fff;
    background-color: var(--main_color);
}

.pagination__option a.disabled {
    color: #fff;
    background-color: #e1e1e1;
    border-color: #e1e1e1;
    cursor: not-allowed;
}

.image-quad {
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

.lb-close {
    position: absolute;
    top: 0px;
    right: 25px;
}

.lightbox {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
}

.lightbox .lb-image {
    border: 0px !important;
}

.bg-rounded {
    padding: 10px;
    background-color: var(--main_color);
    color: #fff;
    border: 1px solid var(--main_color);
    border-radius: 50%;
    font-size: 20px !important;
    margin-bottom: 10px;
}

a {
    color: var(--text-color);
}

.llm {
    border-radius: 20px;
}

.desktop .scroll-fade > div {
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition:
        opacity 0.6s ease-out,
        transform 1.2s ease-out;
    will-change: opacity, visibility;
}

/* bottom to top*/
.desktop .scroll-fade.fade-bt > div {
    transform: translateY(20vh);
}

.desktop .scroll-fade > .reached {
    opacity: 1;
    transform: none !important;
    visibility: visible;
}

.content-503 {
    margin-top: initial !important;
}

.content-503 img {
    width: 300px;
}

.max-h-500 {
    max-height: 500px;
}

.layer-youtube,
.layer-youtube button {
    border-radius: 10px;
    overflow: hidden;
}

.flag {
    overflow: hidden;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

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

/* #cta-shop {
    background: linear-gradient(89.99deg, #0c5e85 6.84%, #053c56 98.39%);
} */

#cta-shop {
    overflow: hidden;
    position: relative;
}

/*#cta-shop .donut {
    filter: brightness(0.5);
    position: absolute;
    top: 0;
    max-width: 330px;
    left: 0;
    height: initial;
    width: initial;
    transform: translate(-50%, -50%);
}*/

#cta-shop .donut {
    filter: brightness(0.5);
    position: absolute;
    bottom: 0;
    max-width: 600px;
    right: 0;
    height: initial;
    width: initial;
    transform: translate(35%, 35%);
}

#cta-shop-gallery > div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

#cta-shop-gallery > div > div {
    display: inline-flex;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

#cta-shop-gallery a {
    position: relative;
}

#cta-shop-gallery img,
#cta-shop-gallery video {
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#cta-shop-gallery video {
    aspect-ratio: 16/9;
}

#grid-servizi {
    display: flex !important;
}

.box-servizi {
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #e9eaee;
    width: 25%;
}

.box-servizi > div {
    padding: 40px;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    left: 0px;
    transition: all 0.3s ease-in-out;
    z-index: 100;
    background: transparent;
}

.box-servizi img,
.wrapper-servizi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

.box-servizi h6 {
    color: white;
    font-weight: 600;
    position: absolute;
    top: 0;
    transition: all 0.3s ease-in-out;
    font-size: 25px;
    transform: translateY(-60px);
    text-shadow: rgba(0, 0, 0, 0.8) 0px 0px 8px;
}

.wrapper-servizi h6 {
    position: relative !important;
    transform: initial !important;
    top: initial !important;
    color: #383838 !important;
}

.box-servizi h2,
.wrapper-servizi h2 {
    font-size: 40px;
    line-height: 45px;
}

.box-servizi p,
.wrapper-servizi p {
    margin-top: 30px;
    margin-bottom: 50px;
}

.box-servizi:hover > div {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.9);
}

.box-servizi:hover h6 {
    top: initial;
    position: relative;
    color: var(--main_color_text);
    transform: translateY(0);
    display: none;
}

/*.box-servizi::before,
#cta-shop-gallery > div > div::before {
    content: " ";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: linear-gradient(to top right, var(--main_color), transparent);
    opacity: 0.5;
    position: absolute;
    z-index: 2;
    filter: blur(1px);
    transition: all 0.3s ease-in-out;
}*/

.wrapper-servizi {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
}

.wrapper-servizi h6 {
    color: var(--main_color_text);
    margin-bottom: 10px;
    top: 0px;
    position: relative;
}

.wrapper-servizi p {
    margin: 0px;
    margin-bottom: 20px;
}

.wrapper-servizi picture {
    aspect-ratio: 1;
    object-fit: cover;
    width: 400px;
    height: 100%;
    overflow: hidden;
}

#cta-shop-gallery a:hover::before {
    opacity: 0;
}

.modal_video {
    position: fixed !important;
    padding-right: initial !important;
    width: 100vw !important;
    height: 100vh !important;
}

.modal_video .modal-content {
    background: black;
}

.modal_video iframe,
.modal_video video {
    height: 100%;
    top: 0;
}

.modal-backdrop {
    height: 100%;
}

.hero100 {
    height: 100vh;
}

.hero {
    height: 30vh;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero,
.hero100 {
    transition: all 0.3s ease-in-out;
    border-radius: 0px;
}

.scrolled .hero100,
.scrolled .hero {
    margin-left: 3em;
    margin-right: 3em;
    margin-top: 3em;
    border-radius: 20px;
}

.hero picture {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

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

.hero::after {
    content: " ";
    background: linear-gradient(to top right, var(--main_color), transparent);
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero .hero-desc {
    z-index: 20;
    color: white;
    margin: 0 auto;
    position: relative;
    height: 100%;
    display: flex !important;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

body:not(.page-home) .hero * {
    color: #383838 !important;
}

.servizio {
    display: flex;
}

.servizio h2 {
    margin-bottom: 30px;
}

.read-more {
    cursor: pointer;
    color: #7a7a7a;
    font-size: 14px;
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 5px;
}

.punteggio_star .star,
#form_feedback .star {
    font-size: 32px;
}

.star {
    color: #ccc;
    transition: color 0.2s ease-in-out;
}

.star:hover ~ .star {
    color: gold;
}

.main_punteggio .punteggio_star .star,
#form_feedback .star {
    cursor: pointer;
}

.star.star-full,
#form_feedback .star:hover {
    color: #ffc107;
}

.card-feedback {
    border: 1px solid var(--main_color2);
    border-radius: 30px;
    padding: 20px;
}

.card-feedback .star {
    font-size: 20px !important;
}

.slider-feedback .arrow_right {
    right: -20px;
    top: 50%;
    position: absolute;
    z-index: 9;
    transform: translateY(-50%);
}

.slider-feedback .arrow_left {
    left: -20px;
    top: 50%;
    position: absolute;
    z-index: 9;
    transform: translateY(-50%);
}

.contact-icons i,
.contact-icons .icon {
    height: 30px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.form_wrapper {
    margin-bottom: -3em;
}

.gallery img {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 900px) {
    header .ordinaonline-btn span {
        display: none;
    }

    body:not(.mobile) main {
        margin-top: 103px;
    }

    body.page-home main {
        margin-top: 0;
    }

    h2 {
        font-size: 40px;
        line-height: 45px;
    }

    header {
        position: sticky !important;
        top: 0px !important;
    }

    header .navbar {
        height: 70px;
        background: white !important;
        top: 0px !important;
    }

    header .navbar-nav {
        margin-top: 20px;
        gap: 0px;
    }

    .logo img {
        height: 40px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item .site-btn {
        margin-top: 20px;
        display: block;
        text-align: center;
    }

    .dropdown li {
        justify-content: start;
    }

    .dropdown-toggle::after {
        content: none;
    }

    .dropdown .dropdown-toggle::before {
        font-family: "Material Symbols Outlined";
        content: "chevron_right";
        color: #cccccc;
        position: absolute;
        right: 0;
    }

    .dropdown-menu {
        border: 0px;
        border-radius: 0px;
        padding: 0px;
    }

    .dropdown-menu .nav-item {
        display: flex;
        padding-left: 15px;
        border-bottom: 1px solid #ececec;
        font-size: 14px;
        font-family: "DM Sans";
    }

    .dropdown-menu .nav-item:last-child {
        border-bottom: 0px;
    }

    .dropdown-menu .nav-item a {
        padding: 2px 0px;
    }

    header .dropdown-menu .nav-item:hover a {
        color: var(--main_color) !important;
        background-color: #fff;
    }

    .offcanvas {
        width: 80% !important;
    }

    .offcanvas .btn-close {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    main .container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    main > .py-10 {
        padding-top: 2em !important;
        padding-bottom: 2em !important;
    }

    #splash .slider img {
        height: calc(80vh - 40px);
    }

    .slider-home .slider-box picture {
        height: 500px;
    }

    .slider-home .slider-box .slider-text {
        left: 50px;
        width: 65%;
        top: 15%;
    }

    .slider-home .slider-box .slider-text h1::before {
        left: -25px;
    }

    h1 {
        font-size: 40px;
    }

    .slider-home h1 {
        font-size: 35px;
    }

    .slider-home .slider-box .slider-text p {
        padding-top: 10px;
    }

    .slider-home.container {
        padding: 0px !important;
    }

    .slick-arrow {
        display: none !important;
    }

    #splash {
        height: calc(80vh - 40px);
    }

    #splash .container img {
        display: none;
    }

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

    .border-left {
        padding-left: 20px;
    }

    .border-left::before {
        left: 0px;
    }

    .product-card {
        max-width: 100%;
        margin: 10px 0px;
    }

    .border-bottom::after {
        width: 25%;
    }

    .slider-news .slick-dots {
        display: initial !important;
    }

    .slider-news .slick-dots li button::before {
        color: var(--main_color) !important;
    }

    .slider-news .slick-dots {
        bottom: initial !important;
    }

    .ordina-online {
        background-color: var(--main_color);
        padding: 40px 0px;
        height: 400px;
    }

    .ordina-online div {
        position: absolute !important;
        top: 15px;
        z-index: 9;
    }

    .ordina-online img {
        max-width: 100%;
        width: 100%;
        height: 100%;
        overflow: hidden;
        opacity: 0.2;
    }

    .ordina-online .w-50 {
        width: 90% !important;
    }

    .top-page {
        height: 200px;
    }

    footer ul {
        list-style: none !important;
    }

    #grid-servizi {
        display: block !important;
    }

    .box-servizi {
        overflow: initial !important;
        margin-bottom: 30px;
        width: 100%;
    }

    .box-servizi > div {
        padding: 20px;
        bottom: 0;
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.9);
        position: relative;
    }

    .box-servizi h6 {
        top: initial;
        position: relative;
        color: var(--main_color_text);
        transform: translateY(0);
    }

    .box-servizi h2 {
        font-size: 35px;
        line-height: 35px;
    }

    #cta-shop .box {
        padding: 25px;
        margin: 20px;
    }

    #cta-shop-gallery > div > div {
        height: initial;
        width: 100%;
    }

    .wrapper-servizi {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .form-container {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .gallery {
        grid-template-columns: auto auto;
        display: grid !important;
    }
}

/* PAGINE MENU */
.menu table {
    border-collapse: collapse;
    border: 1px solid rgba(0, 87, 128, 0.2) !important;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    text-align: left;
}

.menu table tr,
.menu table tr td {
    border: 0 !important;
}

.menu table td,
.menu table th {
    color: var(--main_color_text);
    font-size: 15px;
    font-weight: 500;
}

.menu table thead {
    border-bottom: 1px solid rgba(0, 87, 128, 0.2) !important;
}

.menu table td[colspan="3"] {
    width: 85%;
    border-right: 1px solid rgba(0, 87, 128, 0.2) !important;
    padding: 6px 60px;
}

.menu table td:not(table td[colspan="3"]),
.menu table th:not(table th[colspan="3"]) {
    padding: 6px 20px;
}

.menu tr:first-child td {
    padding-top: 40px !important;
}

.menu tr:last-child td {
    padding-bottom: 40px !important;
}

.menu h4 {
    display: block;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--main_color_text);
    background-color: rgb(174 201 119);
    height: fit-content;
    padding: 20px 4px;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.menu table i {
    font-weight: 500;
    font-size: 13px;
    color: #fff !important;
    padding: 7px 25px;
    background: rgb(174 201 119);
    clip-path: polygon(115% 17%, 98% 18%, 82% 80%, 70% 86%, 0% 91%, 12% 25%);
}

.menu h2 {
    color: #fff;
    text-transform: uppercase;
    margin: 0 auto;
    padding-top: 130px;
    padding-bottom: 20px;
    max-width: 550px;
    background-color: var(--main_color_text);
    margin-bottom: 0 !important;
}

.table-badged-container {
    display: flex !important;
    justify-content: center;
    gap: 0;
    overflow: auto;
    margin: 40px auto;
    width: 100%;
    max-width: 599px;
}

.table-badged-container table {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    .menu table,
    .menu .table-badged-container {
        max-width: 100%;
    }

    .menu table td[colspan="3"],
    .menu table th[colspan="3"] {
        width: 70%;
        padding: 4px 20px;
    }

    .menu table td,
    .menu table th {
        font-size: 14px;
    }

    .menu table td:not(table td[colspan="3"]),
    .menu table th:not(table th[colspan="3"]) {
        padding: 4px 20px;
    }

    .menu h4 {
        writing-mode: horizontal-tb;
        width: fit-content;
        padding: 4px 20px;
    }

    .menu .table-badged-container {
        flex-direction: column;
    }

    .menu tr:first-child td {
        padding-top: 20px !important;
    }

    .menu tr:last-child td {
        padding-bottom: 20px !important;
    }
}

/* PAGINE MENU */
