﻿/*VARIABILI--------------------------------------------------------------*/
:root {
  --orange: #ff8f00;
  --blue: #043474;
  --white: #FFFFFF;
  --gray: #5e5e5e;
  --black: black;
  --red: #ff5252;
  --brown: #301600;
  --light-brown: #563e05;
  --text: #343434;
  --text-secondary: #575757;
  --placeholder: #BFBFBF;
  --header-font-size: var(--text);
  --font-family: "Montserrat", sans-serif;
  --font-family-secondary: "Roboto", sans-serif;
  --titoloBlogSize: 39px;
  --textFontSize: clamp(10px, 4vw, 16px);
  /* Minimo 12px, massimo 24px, scalando con il 4% della larghezza */
  --font-size-h1: 40px;
  --font-size-h2: 32px;
  --font-size-h3: 22px;
  --font-size-h4: 16px;
  --font-size-prodotto: 15px;
  --titoloDettaglioProdotto: 20px;
  --titolo-slide: 120px;
  --line-height-h1: 40px;
  --line-height-h2: 32px;
}
.socialLink {
  display: flex;
  width: 32px;
  height: 32px;
  background-color: orange;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.socialLink img {
  width: auto;
  height: 20px;
  margin: auto;
}
.tooltipRisorsaDiv {
  display: inline-block;
  margin: 0 !important;
  position: relative;
  /* Mantieni position relative per il posizionamento del tooltip */
  font-family: inherit !important;
  /* Eredita il font-family dall'elemento genitore */
  font-size: inherit !important;
  /* Eredita anche la dimensione del font */
  font-weight: inherit !important;
  /* Eredita il peso del font */
  line-height: inherit !important;
  /* Eredita l'altezza della linea */
  color: inherit !important;
  cursor: pointer;
  z-index: 3;
}
.tooltipRisorsaDiv:hover {
  z-index: 100;
}
.pallino {
  background-color: var(--red);
  border-radius: 5px;
  padding: 5px;
  font-size: 9px;
  width: 10px;
  display: block;
  text-align: center;
  cursor: pointer;
  color: var(--white);
  position: absolute;
  top: -21px;
  z-index: 1;
}
.tooltipRisorsaTesti {
  position: absolute !important;
  top: -26px !important;
  left: 0 !important;
  border-radius: 5px;
  padding: 10px 5px !important;
  /*background-color: var(--red);*/
  background-color: var(--red);
  color: var(--white);
  font-weight: 400 !important;
  text-transform: none !important;
  font-family: var(--font-family) !important;
  font-size: 9px !important;
  letter-spacing: 1px !important;
  line-height: 1 !important;
  margin: 0 !important;
  display: none;
  width: max-content !important;
  transform: unset !important;
  z-index: 10;
}
.tooltipRisorsaTesti b {
  font-size: 9px !important;
  display: unset !important;
  margin-top: unset !important;
  margin-bottom: unset !important;
}
.appearanceNone {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.transition03 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bgCenterCover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.absoluteCenter {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-50%);
}
.cursor-pointer {
  cursor: pointer;
}
/*GENERALE--------------------------------------------------------------------------------------------------------*/
body {
  font-family: var(--font-family);
  line-height: 1;
  color: var(--text);
  font-weight: 400;
  width: 100%;
  overflow-x: hidden !important;
  background-color: var(--white);
  line-height: 1.5;
}
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 10px;
}
#debug {
  position: fixed;
  bottom: 0px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.68);
  color: var(--white);
  padding: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 10pt;
  display: block;
  z-index: 9;
}
.clear {
  clear: both;
}
.fancybox-container {
  z-index: 99999999 !important;
}
h1 {
  color: var(--text-secondary);
  font-family: var(--font-family);
  line-height: var(--line-height-h1);
  font-size: var(--font-size-h1);
  font-weight: 600;
  letter-spacing: 6.7px;
  text-transform: uppercase;
}
h2 {
  color: var(--text-secondary);
  font-family: var(--font-family);
  line-height: var(--line-height-h2);
  font-size: var(--font-size-h2);
  font-weight: 600;
  letter-spacing: 6.7px;
  text-transform: uppercase;
}
h3 {
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-weight: 600;
  line-height: var(--font-size-h3);
}
h4 {
  color: var(--text);
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 20px;
}
.displayFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.displayFlexColumn {
  display: flex;
  flex-direction: column;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
}
.div40 {
  width: 40%;
}
.div50 {
  width: 50%;
}
.div60 {
  width: 60%;
}
.textJustify {
  text-align: left;
}
a {
  text-decoration: none;
  color: inherit;
}
p {
  font-family: var(--font-family);
  font-size: var(--textFontSize);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 1.1px;
  text-align: left;
}
.positionRelative {
  position: relative;
}
img {
  height: auto;
  width: 100%;
}
button {
  box-shadow: none;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--font-family);
}
button:hover {
  cursor: pointer;
}
/*POPUP SCELTA LINGUA--------------------------------------------------------------------------------------------------------*/
.popupLingua {
  background-color: var(--blue);
  position: sticky;
  top: 0;
  animation: slideDown 1s forwards;
  z-index: 10000;
  padding: 15px;
  width: 100%;
  font-size: 14px;
  box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.08), 0px 0px 0px 0 rgba(0, 0, 0, 0);
  box-sizing: border-box;
}
.popupLingua .container {
  display: flex;
  margin: auto;
  height: 100%;
}
.popupLingua.up {
  /* animation: slideUp 0.8s forwards;
        top: -105px;*/
  display: none;
}
.popupLingua p {
  color: var(--white);
  margin: 0;
  text-align: center;
  font-size: 13px;
}
.popupLingua a {
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-family);
  text-decoration: underline;
}
.popupLingua .displayFlexColumn {
  gap: 10px;
}
.popupLingua .displayFlex {
  justify-content: center;
}
.popupLingua .close {
  text-align: center;
  padding-top: 5px;
  max-width: fit-content;
  margin: auto;
}
.popupLingua .close button {
  background-color: var(--blue);
  font-size: 13px;
  color: var(--white);
}
@keyframes slideUp {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*HEADER-------------------------------------------------------------------------------------------------------*/
header {
  color: var(--blue);
  text-transform: uppercase;
  font-size: var(--header-font-size);
  font-weight: 600;
  height: 85px;
  position: relative;
  /* margin-bottom: -9%;*/
  z-index: 3;
  background-color: var(--white);
  animation: slideDown 0.8s ease-out;
  box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.08), 0px 0px 0px 0 rgba(0, 0, 0, 0);
  z-index: 10;
}
header .container {
  display: flex;
  margin: auto;
  height: 100%;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 69%;
}
header nav span {
  display: flex;
  margin: 0 18px;
  font-family: var(--font-family);
}
header nav a {
  color: var(--blue);
  text-decoration: none;
  font-family: var(--font-family);
}
header .logo {
  align-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
header .logo img {
  width: 100%;
  height: auto;
  max-width: 105px;
}
header .mondo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .mondo img {
  max-width: 32px;
}
header .mondo a {
  height: 33px;
}
header .displayFlex {
  margin: 25px 18px;
}
header .displayFlex span {
  margin: 0 5px 0 0;
}
header i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 7px;
  height: 25px;
}
.prodottiClick {
  position: relative;
  margin: 0 18px !important;
  padding: 25px 0;
}
/*menu prodotti*/
.desktop.menuProdotti {
  background-color: var(--blue);
  position: absolute;
  top: 60px;
  width: 100%;
  box-sizing: border-box;
  display: none;
  z-index: 6;
  flex-direction: column;
  font-size: 13px;
  font-weight: 400;
}
.desktop.menuProdotti.open {
  min-width: 190px;
  display: flex;
}
.desktop.menuProdotti a {
  padding: 13px 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  color: var(--blue);
}
.desktop.menuProdotti a:hover {
  background-color: var(--white);
  color: var(--blue);
  transition: all 0.3s;
}
.desktop.menuProdotti a {
  color: var(--white);
}
.prodottiClick:hover .menuProdotti {
  display: flex;
  min-width: 190px;
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hamburger {
  position: absolute;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 999999;
  top: 32px;
  right: 85px;
  display: none;
}
.hamburger span {
  background-color: var(--blue);
  position: absolute;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition-duration: 0.3s;
  width: 100%;
  height: 3px;
  transition-duration: 500ms;
  left: 0;
  text-align: left;
}
.hamburger span:nth-child(2) {
  top: 9px;
  opacity: 1;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.open {
  z-index: 10;
}
.hamburger.open span {
  background-color: var(--blue);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}
/*menu verticale mobile*/
.menuVerticale {
  position: relative;
  background-color: var(--blue);
  width: 100%;
  box-sizing: border-box;
  z-index: 6;
  flex-direction: column;
  color: var(--white);
}
.menuVerticale a,
.menuVerticale span {
  font-family: var(--font-family);
  font-weight: 500;
  cursor: pointer;
}
.menuVerticale.container {
  height: fit-content;
  padding: 2em;
  font-weight: 500;
  gap: 10px;
  display: none;
}
.menuVerticale.open {
  width: 100%;
  overflow-y: auto;
  display: flex;
}
.menuVerticale.open span:hover,
.menuVerticale.open a:hover {
  color: var(--blue);
}
.menuVerticale .displayFlex {
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
}
.menuVerticale .displayFlex:hover {
  color: var(--blue);
}
.menuVerticale .menuProdotti {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: none;
  z-index: 6;
  flex-direction: column;
  color: var(--white);
  font-size: 11px;
  padding: 0px 10px;
  gap: 15px;
  font-weight: 400;
}
.menuVerticale .menuProdotti.open {
  width: 100%;
  overflow-y: auto;
  display: flex;
}
.menuVerticale .menuProdotti.open:has(.tooltipRisorsaDiv) {
  overflow-y: unset;
}
.menuVerticale .menuProdotti a {
  position: relative;
  width: 100%;
}
.menuVerticale .menuProdotti a:hover {
  color: var(--blue);
}
/*sliderHome*/
.contSliderHome {
  height: 810px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -85px;
  background-color: #000000;
}
.contSliderHome .headerOverlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.69929979) 0%, rgba(0, 0, 0, 0) 59%);
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  top: 0;
}
.contSliderHome .contImg {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contSliderHome .testoSlider {
  font-family: var(--font-family);
  color: var(--white);
  z-index: 3;
  font-size: var(--titolo-slide);
  font-weight: 700;
  letter-spacing: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-50%);
  animation: testoUp 1s ease-out;
  text-transform: uppercase;
  width: 90%;
}
.contSliderHome .slick-list,
.contSliderHome .slick-track {
  height: 100%;
}
.contSliderHome .slick-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.contSliderHome .slick-dots {
  bottom: 10px;
}
.contSliderHome .slick-dots li button:before {
  color: var(--white);
  opacity: 0.2;
}
.contSliderHome .slick-dots li.slick-active button:before {
  color: var(--white);
  opacity: 1;
  border: 0;
}
.contSliderHome .slick-next:before {
  right: 50px;
  top: 50%;
  z-index: 9999;
  color: var(--white);
}
@keyframes testoUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}
/*CONTENUTO PAGINA---------------------------------------------------------------------------------------*/
.marginPagina {
  /* margin-top:85px;*/
}
/*CHI SIAMO----------------------------------------------------------------------------------------------*/
.chiSiamo {
  margin-top: 50px;
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0em 5em 10em 5em;
}
.chiSiamo .container {
  display: flex;
  position: relative;
}
.chiSiamo h1 {
  text-align: center;
}
.chiSiamo .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0em 2em 2em 2em;
  max-width: 255px;
}
.chiSiamo .logo img {
  width: 100%;
  max-width: 100%;
}
.chiSiamo img {
  width: 100%;
  max-width: 555px;
  height: auto;
}
.ourStory {
  margin-top: 6rem;
  margin-bottom: 1rem;
}
.ourStory .displayFlex {
  align-items: flex-start;
  gap: 20px;
}
.ourStory .positionRelative {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ourStory img.imgBack {
  position: absolute;
  top: -70px;
  z-index: 2;
  max-width: 240px;
  width: 100%;
  height: auto;
  left: 20px;
}
.ourStory p {
  margin: 0;
}
.ourStory.treMarie img.imgBack {
  z-index: 2;
  max-width: 240px;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-50%);
}
.fotoStoriche {
  max-width: 1720px;
  margin: auto;
}
.fotoStoriche img {
  width: 50%;
  max-width: 800px;
  filter: brightness(65%) contrast(126%) saturate(145%) blur(0px) hue-rotate(33deg);
  transition-duration: 0.8s;
}
.fotoStoriche img:hover {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}
/*HISTORY---------------------------------------------------------------------------------------------------------*/
.history .displayFlex {
  align-items: flex-start;
  padding-bottom: 130px;
}
.history img {
  max-width: 580px;
}
.history h2 {
  margin: 0rem 0rem 2rem 0rem;
}
.history .testo {
  padding: 8rem 1rem 1rem 1rem;
}
.history .imgWidth100 {
  width: 100%;
  height: 380px;
  background-image: url('/gfx/wafferslide.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.history.treMarie img {
  border-radius: 15px;
}
/*PHILOSOPHY-----------------------------------------------------------------------------------------------------*/
.philosophy .displayFlex {
  padding-bottom: 0;
}
.philosophy .imgWidth100 {
  width: 100%;
  height: 240px;
  background-image: url('/gfx/philosophy/crackers.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.philosophy .imgWidth100 .container {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.philosophy .imgWidth100 img {
  position: absolute;
  left: 30px;
  z-index: 2;
  max-width: 490px;
  width: 100%;
  height: auto;
}
/*COMPANY----------------------------------------------------------------------------------------------------------*/
.company {
  margin-top: 85px;
}
.company .displayFlex {
  align-items: center;
}
.company .div50.img {
  display: block;
  text-align: center;
}
.company img {
  width: 60%;
  max-width: 305px;
  object-position: center center;
}
.company .testo {
  padding: 10px;
}
/*TREMARIE--------------------------------------------------------------------------------------------------------*/
.treMarie .imgWidth100 {
  width: 100%;
  height: 300px;
  background-image: url('/gfx/tre_marie/tre_marie_ancora_uno.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin-bottom: 150px;
}
.treMarie .imgWidth100 img {
  position: absolute;
  left: 30px;
  z-index: 2;
  max-width: 220px !important;
  width: 100%;
  height: auto;
}
.treMarie .imgWidth100 .container {
  position: relative;
}
.treMarie .imgWidth100 .container img {
  max-width: 220px;
  position: absolute;
  top: 135px;
  left: 100px;
}
.treMarie .imgWidth100 .container img:nth-child(2) {
  position: absolute;
}
.treMarie p {
  margin-bottom: 10px;
}
.treMarie .displayFlex {
  align-items: center;
  gap: 35px;
}
.treMarie .testo {
  padding: 0;
}
.treMarie#bakery .displayFlex {
  gap: 80px;
}
.treMarie#milan img {
  max-width: 300px;
  border-radius: 10px;
}
.treMarie#today img {
  max-width: 500px;
}
.treMarie#today .displayFlex {
  padding-bottom: 0;
}
.treMarie .div50.img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.treMarie .div50.img.pastry img {
  height: 550px;
}
/*BLOG------------------------------------------------------------------------------------------------------------*/
.blog {
  margin-top: -85px;
}
.blog.displayFlex {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
.blog .imgWidth100 {
  width: 100%;
  height: 300px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 160px;
  position: relative;
}
.blog .imgWidth100 .headerOverlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.69929979) 0%, rgba(0, 0, 0, 0) 59%);
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  top: 0;
}
.blog.prodotto .imgWidth100 {
  width: 100%;
  height: 300px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
}
.blog.prodotto .imgWidth100 .headerOverlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.2) 59%);
  width: 100%;
  height: calc(100% - 85px);
  z-index: 2;
  display: block;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  top: 0px;
}
.blog.prodotto .imgWidth100 h1 {
  position: relative;
  z-index: 3;
}
.blog.prodotto .tooltipRisorsaDiv {
  top: 150px;
}
.blog.languages .tooltipRisorsaDiv {
  top: 150px;
}
.blog.languages .imgWidth100 .tooltipRisorsaDiv {
  top: 0;
}
.blog h1 {
  color: var(--white);
  font-size: var(--titoloBlogSize);
  font-weight: 500;
  letter-spacing: 8.5px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 3;
  margin-top: 45px;
}
.blog .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}
.blog .imgCard {
  width: 100%;
}
.blog .imgCard img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  object-fit: cover;
  height: 350px;
}
.blog .textCard {
  padding: 20px;
  height: 105px;
  overflow: hidden;
}
.blog .textCard:has(.tooltipRisorsaDiv) {
  overflow: unset;
}
.blog .textCard span,
.blog .textCard p {
  text-align: center;
  margin: 0;
}
.blog .textCard span.descrizCard {
  line-height: 1.5em;
  font-size: 14px;
  font-family: var(--font-family) secondary;
  margin-top: 10px;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog .textCard span.descrizCard:has(.tooltipRisorsaDiv) {
  overflow: unset;
}
.blog .textCard .titoloCard {
  font-weight: 600;
  letter-spacing: 1.6px;
  font-size: 21px;
  color: var(--blue);
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog .textCard .titoloCard:has(.tooltipRisorsaDiv) {
  overflow: unset;
}
.blog .badge {
  position: absolute;
  color: var(--white);
  font-size: 10px;
  padding: 10px;
  border-radius: 15px;
  font-size: 12px;
  text-transform: uppercase;
  padding: 3px 15px;
  border-radius: 26px;
  margin: 20px;
  right: 0;
}
.blog .categoria {
  color: var(--white);
  font-size: 10px;
  padding: 10px;
  border-radius: 15px;
  font-size: 12px;
  text-transform: uppercase;
  padding: 3px 15px;
  border-radius: 26px;
}
/*DETTAGLIO BLOG------------------------------------------------------------------------------------------------------------*/
.dettaglioBlog .imgWidth100 {
  width: 100%;
  height: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  margin-bottom: 0px;
  position: relative;
}
.dettaglioBlog .imgWidth100 .displayFlex {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  position: relative;
  z-index: 3;
}
.dettaglioBlog .imgWidth100 .displayFlex h1,
.dettaglioBlog .imgWidth100 .displayFlex h5,
.dettaglioBlog .imgWidth100 .displayFlex span {
  background-color: #ffffff54;
  padding: 10px;
  border-radius: 5px;
}
.dettaglioBlog .imgWidth100 .headerOverlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.2) 59%);
  width: 100%;
  height: calc(100% - 85px);
  z-index: 2;
  display: block;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  top: 0px;
}
.dettaglioBlog .container {
  margin-top: -100px;
  position: relative;
  z-index: 5;
}
.dettaglioBlog .contRicetta {
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
  padding: 3em;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
  font-family: var(--font-family) secondary;
  line-height: 1.5em;
  font-size: var(--textFontSize);
  margin-top: 10px;
  letter-spacing: 0;
  text-align: left;
}
.dettaglioBlog h1 {
  color: var(--blue);
  font-size: var(--titoloBlogSize);
  letter-spacing: 0;
  font-weight: 600;
  text-transform: none;
  line-height: 1;
}
.dettaglioBlog h5,
.dettaglioBlog span {
  color: var(--blue);
  font-size: var(--textFontSize);
  font-weight: 400;
}
.dettaglioBlog h6 {
  color: var(--white);
  font-size: var(--textFontSize);
  font-weight: 400;
}
.dettaglioBlog img {
  margin: 20px 0 20px 0;
  width: 100%;
  object-fit: cover;
}
.dettaglioBlog .bottoniSocial {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}
.dettaglioBlog .bottoniSocial a {
  flex-grow: 1;
  max-width: 250px;
  min-width: 150px;
}
.dettaglioBlog .bottoniSocial > div {
  padding: 10px;
  border-radius: 0.5em;
  display: flex;
  align-items: center;
}
.dettaglioBlog .bottoniSocial i {
  color: var(--white);
  padding: 10px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  height: 45px;
  min-width: 45px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dettaglioBlog .bottoniSocial span {
  color: var(--white);
  font-size: var(--textFontSize);
  font-weight: 700;
  padding: 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 100%;
  height: 45px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.dettaglioBlog .bottoniSocial .facebook {
  display: flex;
}
.dettaglioBlog .bottoniSocial .facebook span {
  background-color: #36528b;
}
.dettaglioBlog .bottoniSocial .facebook i {
  background-color: #3b5998;
}
.dettaglioBlog .bottoniSocial .twitter {
  display: flex;
}
.dettaglioBlog .bottoniSocial .twitter span {
  background-color: black;
}
.dettaglioBlog .bottoniSocial .twitter i {
  background-color: #171515;
}
.dettaglioBlog .bottoniSocial .email {
  display: flex;
}
.dettaglioBlog .bottoniSocial .email span {
  background-color: #b72619;
}
.dettaglioBlog .bottoniSocial .email i {
  background-color: #cf2d1f;
}
.dettaglioBlog .bottoniSocial .printer {
  display: flex;
}
.dettaglioBlog .bottoniSocial .printer span {
  background-color: #696969;
}
.dettaglioBlog .bottoniSocial .printer i {
  background-color: #808080;
}
.dettaglioBlog .bottoniSocial .social img {
  height: 25px;
  width: auto;
}
.dettaglioBlog .bottoniSocial .social i {
  padding: 0;
}
.dettaglioBlog .bottoniSocial .social img {
  height: 35px;
  width: auto;
}
.didascalia {
  font-family: var(--font-family) secondary;
  margin: 0 20px 20px 0;
  font-size: 12px;
}
/*PRODOTTO------------------------------------------------------------------------------------------------------------*/
.prodotto {
  text-align: center;
}
.prodotto .contProdotti {
  margin-bottom: 80px;
  margin-top: 0px;
}
.prodotto .prodotti {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.prodotto .prodotti .displayFlexColumn {
  row-gap: 35px;
  min-width: 175px;
  max-width: 250px;
  transition: all 0.3s ease;
  /* Animazione fluida per il passaggio */
}
.prodotto .prodotti .displayFlexColumn img {
  transition: transform 0.3s ease;
  /* Transizione per ingrandire l'immagine */
}
.prodotto .prodotti .displayFlexColumn h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--brown);
  text-transform: uppercase;
  height: 65px;
  font-family: var(--font-family);
  transition: font-weight 0.3s ease;
  /* Transizione per il cambiamento del font */
}
.prodotto .prodotti .displayFlexColumn:hover img {
  transform: scale(1.1);
  /* Ingrandimento dell'immagine */
}
.prodotto .prodotti .displayFlexColumn:hover h3 {
  font-weight: 600;
  /* Cambia il peso del font a 600 */
}
.prodotto h1 {
  color: var(--text-secondary);
  font-size: var(--titoloBlogSize);
  font-weight: 600;
  letter-spacing: 8.5px;
  margin: 40px 0;
}
.prodotto h2 {
  padding: 90px 0 65px 0;
}
.prodotto p {
  text-align: center;
}
.prodotto .imgWidth100 {
  width: 100%;
  height: 380px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 6em;
}
/*DETTAGLIO PRODOTTO---------------------------------------------------------------------------------------------------------*/
.dettaglioProdotto {
  text-align: center;
}
.dettaglioProdotto p {
  text-align: center;
}
.dettaglioProdotto h1 {
  text-transform: uppercase;
  padding: 3rem;
}
.dettaglioProdotto .titoloPagina h2 {
  font-size: 100%;
  color: var(--text);
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 20px;
  text-transform: unset;
  letter-spacing: unset;
}
.dettaglioProdotto h3 {
  font-size: var(--titoloDettaglioProdotto);
  font-weight: 500;
  color: var(--light-brown);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px;
  /*background-image: url('/gfx/background_dettaglioProdotto.jpg');
        background-repeat: no-repeat;
        background-position: center;*/
  margin: auto;
  background-size: cover;
  line-height: 1;
}
.dettaglioProdotto .fotoProdotto {
  /* background-image: url('/gfx/background_dettaglioProdotto.jpg');
        background-repeat: no-repeat;*/
  width: 410px;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dettaglioProdotto .fotoProdotto img {
  max-height: 80%;
  max-width: 80%;
  width: unset;
}
.dettaglioProdotto label,
.dettaglioProdotto .contGridLabel {
  font-family: var(--font-family);
  font-size: var(--textFontSize);
  color: var(--light-brown);
  font-weight: 400;
  padding: 15px;
  margin: 0 auto;
  border: 1px solid var(--brown);
  margin-bottom: 0px;
  display: block;
  width: fit-content;
}
.dettaglioProdotto .contProdotti {
  padding-top: 5rem;
}
.dettaglioProdotto .contProdotti:has(.nazioni) {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.dettaglioProdotto .contProdotti .displayFlex {
  align-items: center;
  margin-bottom: 110px;
  gap: 50px;
}
.dettaglioProdotto .contProdotti .displayFlex.nazioni {
  display: inline-flex;
}
.dettaglioProdotto .contProdotti .displayFlex.nazioni .titolo {
  height: 50px;
}
.dettaglioProdotto .contProdotti .displayFlex.nazioni .displayFlexColumn {
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
.dettaglioProdotto .contProdotti .displayFlex.nazioni img {
  max-width: 350px;
}
.dettaglioProdotto .contProdotti .displayFlexColumn {
  min-width: 50%;
  max-width: 550px;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
.dettaglioProdotto .contProdotti .displayFlexColumn span {
  color: var(--gray);
  font-family: var(--font-family);
  font-size: var(--font-size-prodotto);
  font-weight: 500;
}
.dettaglioProdotto .descrizone {
  padding: 30px;
  line-height: 25px;
  border: 1px solid #f7f7f7;
  text-align: center;
}
.dettaglioProdotto .descrizone span {
  color: var(--gray);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
}
.dettaglioProdotto .contGridProdotti {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  max-width: 570px;
}
.dettaglioProdotto .contGridProdotti span {
  font-family: var(--font-family);
  font-weight: 600;
}
.dettaglioProdotto .contGridProdotti .gridProdotto {
  display: grid;
  border-right: 1px solid var(--brown);
  border-bottom: 1px solid var(--brown);
  width: max-content;
  /*griglie con 4 figli*/
  /*griglie con un solo figlio*/
  /*griglie con 3figli o multipli di 3*/
  /*griglie con 2figli o multipli di 2*/
  /*griglie con 2figli o multipli di 2*/
}
.dettaglioProdotto .contGridProdotti .gridProdotto .cell {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  border-top: 1px solid var(--brown);
  border-left: 1px solid var(--brown);
}
.dettaglioProdotto .contGridProdotti .gridProdotto:has(:nth-child(4)) {
  grid-template-columns: repeat(4, minmax(90px, 117px));
}
.dettaglioProdotto .contGridProdotti .gridProdotto.grid-single-child {
  grid-template-columns: repeat(1, minmax(90px, 220px));
  margin: auto;
}
.dettaglioProdotto .contGridProdotti .gridProdotto.grid-single-child .cell {
  border: 1px solid #b5b5b5;
}
.dettaglioProdotto .contGridProdotti .gridProdotto.grid-single-child .cell img {
  width: 70px;
  margin: auto;
}
.dettaglioProdotto .contGridProdotti .gridProdotto.grid-three-or-multiple {
  grid-template-columns: repeat(3, minmax(90px, 155px));
}
.dettaglioProdotto .contGridProdotti .gridProdotto.grid-two-or-multiple {
  grid-template-columns: repeat(2, minmax(90px, 155px));
}
.dettaglioProdotto .contGridProdotti .gridProdotto.grid-four-or-multiple {
  grid-template-columns: repeat(4, minmax(90px, 155px));
}
.dettaglioProdotto .contGridProdotti .gridProdotto.noBorder {
  border: 0px;
}
.dettaglioProdotto .contGridProdotti .tableProdotto {
  border-right: 1px solid var(--brown);
  border-bottom: 1px solid var(--brown);
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.dettaglioProdotto .contGridProdotti .tableProdotto .cell {
  padding: 10px;
  width: 100px;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  color: var(--brown);
  border-top: 1px solid var(--brown);
  border-left: 1px solid var(--brown);
  word-wrap: break-word;
  /* Fa andare a capo il testo lungo */
  flex-grow: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  height: 135px;
}
.dettaglioProdotto .contGridProdotti .tableProdotto .cell img {
  width: 90px;
  margin: auto;
  display: block;
}
.dettaglioProdotto .contGridProdotti .tableProdotto .cell span {
  font-family: var(--font-family);
  text-align: center;
  width: 100%;
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
}
.dettaglioProdotto .contGridProdotti .tableProdotto .cell h5 {
  color: var(--brown);
  font-size: 13px;
  text-transform: none;
  letter-spacing: normal;
}
/*LANGUAGES---------------------------------------------------------------------------------------------------------*/
.languages h1 {
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 85px;
  margin-top: 160px;
}
.languages span {
  display: block;
  font-family: var(--font-family);
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 6.7px;
  padding-bottom: 80px;
  font-size: var(--font-size-h4);
  margin-top: 160px;
}
.languages .imgWidth100 {
  width: 100%;
  height: 480px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin-bottom: 0;
}
.languages .container {
  position: relative;
  height: 100%;
  width: 100%;
}
.languages .container img {
  width: 110px;
  max-width: unset;
  position: absolute;
  top: -40px;
  left: 0;
}
.languages .displayFlex {
  flex-wrap: wrap;
  align-items: flex-start;
  row-gap: 30px;
}
.languages .displayFlexColumn {
  width: 25%;
  justify-content: center;
  align-items: center;
}
.languages img {
  max-width: 45px;
  margin-bottom: 2rem;
}
.languages a {
  text-transform: uppercase;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--blue);
}
.languages p {
  color: var(--text);
  font-family: var(--font-family) secondary;
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.languages p.nazione {
  color: var(--blue);
  text-transform: uppercase;
}
/*FOOTER  --------------------------------------------------------------------------------------------------------*/
footer {
  /* max-width: 720px;*/
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: var(--text);
  font-weight: 600;
  margin-top: 100px;
}
footer .displayFlex {
  justify-content: center;
  gap: 10px;
  align-items: center;
}
footer img {
  width: 125px;
  margin-bottom: 20px;
}
footer i {
  background-color: var(--orange);
  border-radius: 50%;
  padding: 8px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer i:before {
  color: var(--blue);
  font-size: 15px;
}
.footerInfo {
  padding: 40px 0em 25px 0;
  font-size: 12px;
}
.animated {
  animation-duration: 1.25s;
}
/*RICHIESTA --------------------------------------------------------------------------------------------------------*/
.privacy {
  font-size: 13px;
  margin-top: 10px;
}
.informativa {
  height: 150px;
  width: 98%;
  margin: 0 1%;
  display: inline-block;
  box-sizing: border-box;
  padding: 15px;
  background-color: var(--black);
  line-height: 1.5;
}
.informativa .informativaContainer {
  height: 120px;
  overflow-y: scroll;
  width: 100%;
  text-align: justify !important;
  padding-right: 15px;
  box-sizing: border-box;
}
.informativa .informativaContainer::-webkit-scrollbar-track {
  border-radius: 11px;
  background-color: var(--black);
}
.informativa .informativaContainer::-webkit-scrollbar {
  width: 7px;
  background-color: var(--black);
  border-radius: 11px;
}
.informativa .informativaContainer::-webkit-scrollbar-thumb {
  border-radius: 11px;
  background-color: var(--black);
}
.informativa h3 {
  font-size: 13px;
  color: var(--black);
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}
.informativa p {
  font-size: 13px;
}
.informativa b {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
}
.informativa a {
  color: var(--black);
}
.informativa a:hover {
  color: var(--black);
}
/*PRIVACY COOKIE--------------------------------------------------------------------------------------------------------*/
.cookiePage {
  margin-top: 30px;
}
.cookiePage a {
  font-weight: 500;
  font-family: var(--font-family);
  font-size: 14px;
}
.cookiePage p {
  letter-spacing: normal;
  font-size: 14px;
}
.cookiePage table {
  border: 1px solid var(--text);
  border-collapse: collapse;
  margin: 10px 0;
}
.cookiePage table th {
  padding: 10px;
  border: 1px solid var(--text);
  border-collapse: collapse;
  font-size: 12px;
  font-family: var(--font-family);
  font-weight: 600;
}
.cookiePage table td {
  padding: 10px;
  border: 1px solid var(--text);
  border-collapse: collapse;
  font-size: 12px;
  font-family: var(--font-family);
}
.cookiePage ol {
  list-style-type: decimal;
  margin-left: 16px;
}
.cookiePage ol li {
  font-family: var(--font-family);
  letter-spacing: normal;
  font-size: 14px;
  margin-bottom: 0 !important;
}
.cookiePage ol li::marker {
  font-weight: 600;
}
.cookiePage ul {
  list-style-type: disc;
  margin-left: 16px;
  font-family: var(--font-family);
}
.cookiePage ul li {
  font-family: var(--font-family);
}
.cookiePage ul p {
  margin: 0 !important;
  font-family: var(--font-family);
}
.privacy_info {
  text-align: left !important;
  display: none;
  font-size: 13px;
  line-height: 20px;
  width: 70%;
  padding: 90px !important;
}
.privacy_info h3 {
  font-size: 33px !important;
  margin-bottom: 15px;
}
.privacy_info strong {
  font-size: 13px !important;
}
.privacy_info b {
  font-size: 19px;
  display: block;
  margin-bottom: 10px;
  margin-top: 20px;
}
.privacy_info a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
}
.bannerCookie {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background-color: var(--white);
  padding: 15px 2%;
  z-index: 99999 !important;
  font-size: 12px;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
  -webkit-box-shadow: 0px -26px 44px -5px #0000002e;
  -moz-box-shadow: 0px -26px 44px -5px #0000002e;
  box-shadow: 0px -26px 44px -5px #0000002e;
}
.bannerCookie label {
  font-family: var(--font-family);
  font-size: 12px;
  color: var(--black);
}
.bannerCookie a {
  color: var(--black);
  font-weight: bold;
  font-family: var(--font-family);
  font-size: 12px;
}
#cookieSelectionContainerBanner {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  gap: 10px;
}
.containerCookieSelection {
  display: flex;
  align-items: center;
}
.containerCookieSelection input {
  margin: 0 5px 0 0;
}
.buttonCookieContainer {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.buttonCookieContainer .bannerCookieClose {
  background-color: var(--blue);
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  padding: 10px;
  border-radius: 5px;
}
.buttonCookieContainer .bannerCookieClose:hover {
  cursor: pointer;
}
/*CONTENUTO INVERTITO datalist DX a SX-----------------------------------------------------------------------------------------*/
.invertito {
  direction: rtl !important;
  text-align: initial !important;
}
.invertito header .displayFlex span {
  margin: 0 0 0 5px;
}
.invertito .hamburger {
  right: unset;
  left: 85px;
}
.invertito .dettaglioBlog .contRicetta {
  text-align: initial !important;
}
.invertito .dettaglioBlog .bottoniSocial i {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.invertito .dettaglioBlog .bottoniSocial span {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.contacts {
  text-align: center;
}
.contacts h2 {
  font-size: 1.17em;
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-weight: 600;
  line-height: var(--font-size-h3);
  letter-spacing: unset;
}
.contacts .imgWidth100 {
  margin-bottom: 60px !important;
}
.contacts p {
  text-align: center;
}
.contacts p a {
  font-family: var(--font-family);
  font-size: var(--textFontSize);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 1.1px;
}
.contacts p a:hover {
  color: #043474;
}
.contacts-header-container {
  background-color: #000000;
}