/********** Template CSS **********/
@font-face {
  font-family: 'Dolce Vita';
  src: url('../fonts/Dolce Vita.ttf') format('truetype'); /* oppure .woff, .woff2, ecc. */
  /* aggiungi altre varianti del font se necessario (bold, italic, ecc.) */
}
@font-face {
  font-family: 'Dolce Vita Light';
  src: url('../fonts/Dolce Vita Light.ttf') format('truetype'); /* oppure .woff, .woff2, ecc. */
  /* aggiungi altre varianti del font se necessario (bold, italic, ecc.) */
}
@font-face {
  font-family: 'Dolce Vita Bold';
  src: url('../fonts/Dolce Vita Heavy Bold.ttf') format('truetype'); /* oppure .woff, .woff2, ecc. */
  /* aggiungi altre varianti del font se necessario (bold, italic, ecc.) */
}
/*Graphik Font*/
@font-face {
  font-family: 'Graphik Regular';
  src: url('../graphik/Graphik-Regular.ttf') format('truetype'); /* oppure .woff, .woff2, ecc. */
  /* aggiungi altre varianti del font se necessario (bold, italic, ecc.) */
}
@font-face {
  font-family: 'Graphik Medium';
  src: url('../graphik/Graphik-Medium.ttf') format('truetype'); /* oppure .woff, .woff2, ecc. */
  /* aggiungi altre varianti del font se necessario (bold, italic, ecc.) */
}
@font-face {
  font-family: 'Graphik Semibold';
  src: url('../graphik/Graphik-Semibold.ttf') format('truetype'); /* oppure .woff, .woff2, ecc. */
  /* aggiungi altre varianti del font se necessario (bold, italic, ecc.) */
}
@font-face {
  font-family: 'Graphik Bold';
  src: url('../graphik/Graphik-Bold.ttf') format('truetype'); /* oppure .woff, .woff2, ecc. */
  /* aggiungi altre varianti del font se necessario (bold, italic, ecc.) */
}
@font-face {
  font-family: 'Graphik Black';
  src: url('../graphik/Graphik-Black.ttf') format('truetype'); /* oppure .woff, .woff2, ecc. */
  /* aggiungi altre varianti del font se necessario (bold, italic, ecc.) */
}
@font-face {
  font-family: 'Graphik Super';
  src: url('../graphik/Graphik-Super.ttf') format('truetype'); /* oppure .woff, .woff2, ecc. */
  /* aggiungi altre varianti del font se necessario (bold, italic, ecc.) */
}
/*General CSS Style*/
:root {
    --primary: #bd9c5f;
    --secondary: #F65005;
    --light: #F7F8FC;
    --dark: #111111;
}
.top-bar small {
    color: #FFF;
}
.top-bar .text-body {
    color: #FFF !important;
}
.bg-white.shadow .navbar .navbar-nav .nav-link {
    color: #000;
}
.espressino_coffee {
    height: 52px;
}
.naturte_logo {
    height: 62px;
}
.borscino-logo {
    height: 63px;
}
.yobreak_logo {
    height: 38px;
}
.sorbetti_logo {
    height: 63px;
}
.crema_al_mascarpone {
    height: 76px;
}
.features_svg {
    height: 90px;
}
.display-2 {
    color: #FFF;
    font-size: 64px;
    text-shadow: 1px 1px 2px #000000;
    font-family: "Dolce Vita Light",serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 9px;
    bottom: 9px;
    z-index: 99;
    background-color: #99680f;
    border-color: #FFF;
    width: 55px !important;
    height: 55px !important;
}
.back-to-top:hover {
    border-color: #FFF;
}
.back-to-top:focus {
    background-color: #923746;
    border-color: #FFF;
}
.img_logo {
    width: 175px;
}
.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.row_marchi {
    width: 100%;
    display: inline-block;
}
.marchi_partners {
    width: 31%;
    margin: 0px 5px;
    float: left;
}
.row_marchi .marchi_partners:nth-child(1) img {
    height: 22px;
    margin-top: 44px;
}
.row_marchi .marchi_partners:nth-child(2) img {
    height: 70px;
    margin-top: 20px;
}
.row_marchi .marchi_partners:nth-child(3) img {
    height: 110px;
}
.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}

.about_section p {
    text-align: justify;
    border-left: 5px solid #FFF;
    white-space: pre-line;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
.lbl_new {
    background-color: #F44336;
    color: #FFF;
    position: absolute;
    top: 7px;
    left: 7px;
    padding: 3px 14px;
    font-weight: bold;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-secondary {
    color: #000;
}
.btn.btn-secondary:hover, .btn.btn-outline-secondary:hover {
    color: #FFF;
}
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.display-5 {
    font-size: 41px;
}
/*** Navbar ***/
.fixed-top {
    transition: .5s;
    /* background-color: rgb(255 255 255 / 70%); */
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #FFF;
    font-weight: 500;
    outline: none;
    font-family: "Graphik Regular", sans-serif;
    text-transform: uppercase;
    font-size: .875rem;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFF;
    font-weight: 900;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 120px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

/*.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #99680f;
}*/

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
}


/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}
.bg_concorso .btn.btn-lg {
    background-color: #99680f;
    color: #FFF;
}
.bg_concorso .btn.btn-lg:hover {
    background-color: #000;
    color: #FFF;
}
.img_logo_concorso {
    height: 61px;
    margin-bottom: 50px;
}
.subtitle_con {
    color: #000;
    font-weight: bold;
}
.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-bottom: 4px solid #d5d5d4;
}
.product-item img {
    transition: .5s;
    border-bottom: 1px solid #dfd4d4;
}
.product-item:hover img {
    transform: scale(1.1);
}
.product-item:hover .fascia_b_box {
    /*background-color: #874541;*/
    color: #be9d60;
    font-weight: bold;
    border-top: 1px solid #be9d60 !important;
}
.product-item:hover {
    border-bottom: 4px solid #be9d60;
}

.product-item small a:hover {
    color: var(--primary) !important;
}
.bg_concorso {
    background: url(../img/bg_gusta_e_vinci_2025.jpg) center center repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: bottom;
}
.bg_concorso h1.display-5 {
    text-shadow: 1px 1px 2px #ffffff;
    /*font-family: Helvetica, Arial, sans-serif;*/
    font-optical-sizing: auto;
    font-weight: normal;
    /* font-style: italic; */
    font-size: 41px;
    color: #ab8729;
    font-family: "Graphik Bold", sans-serif;
}
.bg_slogan {
    background: url(../img/slogan_aziendale_.jpg) center top repeat;
    background-size: cover;
    background-repeat: no-repeat;
}
.bg_slogan h1.display-5 {
    text-shadow: 1px 1px 2px #FFF;
    font-family: Helvetica, Arial, sans-serif;
    /* font-optical-sizing: auto; */
    /* font-weight: 500; */
    /* font-style: italic; */
    /* font-size: 45px; */
    color: #bd9c5f;
    font-family: "Graphik Bold", sans-serif;
}
.gicafe_png {
    height: 63px;
}
.emicake_logo {
    height: 94px;
}
.oltre_il {
    display: block;
    height: 87px;
}
.grayscale-image {
  filter: grayscale(100%); /* Rende l'immagine in bianco e nero */
  transition: filter 0.3s ease-in-out; /* Aggiunge una transizione fluida */
}
.grayscale-image:hover {
  filter: grayscale(0%); /* Rimuove il filtro all'hover, mostrando i colori */
}
.brands_carousel .owl-item {
    display: flex;
    align-items: center; /* Centra verticalmente gli elementi figli */
    height: 80px;
}
.gicafe img {
    height: 30px;
    width: auto !important;
}
.borscino img {
    height: 55px;
    width: auto !important;
}
.naturte img {
    height: 41px;
    width: auto !important;
}
.naturcioc img {
    height: 57px;
    width: auto !important;
}
.emicake img {
    height: 48px;
    width: auto !important;
}
.espressino_freddo img {
    height: 40px;
    width: auto !important;
}
.blog_section {
    padding-top: 87px;
    padding-bottom: 87px;
}
.blog_section .col-lg-4.col-md-6 {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.blog_section a.lh-base {
    text-align: justify;
    border-left: 5px solid #FFF;
    white-space: pre-line;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    font-family: 'Graphik Regular';
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5rem;
}
/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
    border: 1px solid #FFF;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFF !important;
    border: 1px solid #FFF;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #000 !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i.fa.fa-quote-left {
    color: #8e3646 !important;
    text-shadow: 1px 1px 2px #000000;
}
.testimonial-carousel .owl-item.center .testimonial-item i.fa.fa-star {
    color: #ffb129 !important;
    text-shadow: 1px 1px 2px #000000;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
    background-color: #FFF;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
    background-color: #aa9a7c;
    min-height: 730px;
}
.footer p {
    color: #FFF;
}
.footer .social_ft {
    color: #3b2805;
    border-color: #F7F8FC;
    background-color: #FFF;
}
.footer .social_ft:hover {
    color: #F7F8FC;
    background-color: #000;
    border-color: #F7F8FC;
}
.footer .fa-ul {
    color: #FFF;
    margin-left: 21px;
}
.email_footer {
    color: #FFF !important;
}
.email_footer:hover {
    color: #FFF !important;
    text-decoration: underline;
}
.footer .fs-about p {
    color: #787878;
    font-weight: normal;
    font-style: normal;
    line-height: 1.5;
    margin-top: 14px;
    padding-left: 15px;
    text-align: justify;
    border-left: 5px solid #FFF;
    white-space: pre-line;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}
.footer .site-btn {
    font-size: 15px;
    color: #000 !important;
    background: #FFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    width: 138px;
    line-height: 32px;
    border-color: #99680f;
}
.footer .site-btn:hover {
    background-color: #000;
    color: #FFF !important;
    text-decoration: none !important;
}
.footer .site-btn i {
    margin-right: 14px;
    font-size: 18px;
}
.footer p.descr_ft {
    text-align: justify;
    white-space: pre-line;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFF;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #FFF;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
/*Copyright*/
.copyright {
  background: #796c54;
  padding: 20px 0 20px;
  /*margin-top: 40px;*/
  line-height: 0px;
  border-top: 1px solid rgb(255 255 255 / 30%);
}

.copyright__text {
  margin-bottom: 0;
  font-size: 13px;
  color: #c7bdbd !important;
  /* line-height: 19px; */
}
.copyright__text i {
  color: #f08632;
}
.copyright__text a {
  color: #c7bdbd;
}
.copyright__text a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.copyright__widget {
  text-align: right;
}
.copyright__widget ul li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
.copyright__widget ul li:after {
  position: absolute;
  right: -18px;
  top: 0;
  content: "|";
  color: #888888;
}
.copyright__widget ul li:last-child {
  margin-right: 0;
}
.copyright__widget ul li:last-child:after {
  display: none;
}
.copyright__widget ul li a {
  font-size: 14px;
  color: #bdb8b8;
}

.copyright__widget ul li a:hover {
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
}
/*DIRECT CONTACT*/
.tel_btn {
    background: #f71317;
    height: 55px;
    width: 55px;
    left: 9px;
    bottom: 77px;
    color: #fff;
    font-size: 34px;
    text-align: center;
    border-radius: 50%;
    line-height: 46px;
    border: 2px solid transparent;
    position: fixed;
    z-index: 99;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.tel_btn i {
  font-size: 28px;
}
.tel_btn:hover {
    color: #FFF;
}
#whatsapp_chat a i {
    
}
#whatsapp_chat a {
  cursor: pointer;
  background: #25d366;
  height: 55px;
  width: 55px;
  color: #fff;
  font-size: 34px;
  text-align: center;
  border-radius: 50%;
  line-height: 53px;
  border: 2px solid transparent;
  position: fixed;
  left: 9px;
  z-index: 99;
  bottom: 9px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
#whatsapp_chat img {
    height: 55px;
}
.analytics-count {
    display: none;
}
.form-wa, .home-content__button {
    display: none;
}
.flag_img {
    width: 27px;
}