body {
  font-family: "Be Vietnam Pro", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.8rem;
}

header {
  width: 100%;
  position: fixed;
  z-index: 1;
}

/* color */

:root {
  --Black: #000000;
  --White: #FFFFFF;
  --Red: #E41D18;
  --Grey: #F2F2F2;
  --LightYellow: #FFF8DC;
  --LightOrange: #FFE5CC;
  --LightBrown: #E5CDB3;
}

/*
::-moz-selection {
  color: var(--Black);
  background: var(--LightBlue);
}

::selection {
  color: var(--Black);
  background: var(--LightBlue);
}
*/

/* section */

section {
  padding: 9rem 0;
}

@media (max-width:991px) {
  section {
    padding: 6rem 0;
  }
}

/* font */

h1 {
  color: var(--White);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.80);
  font-family: "Be Vietnam Pro";
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

h2 {
  color: var(--Black);
  font-family: "Dream Orphans";
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 2.5rem;
}

h2.red {
  color: var(--Red);
}

h3 {
  color: var(--Black);
  font-family: "Be Vietnam Pro";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2.5rem;
}

h4 {
  color: var(--LightBlue);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

p {
  color: var(--Black);
  font-family: "Be Vietnam Pro";
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

p .b,
p .strong {
  font-weight: 600;
}

.g-0 {
  padding-left: 0;
  padding-right: 0;
}

/* buttons */

a.black {
  color: var(--White);
  font-family: "Be Vietnam Pro";
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 2rem;
  background-color: var(--Black);
  padding: 0.8rem 1.9rem;
  margin-top: 5rem;
  display: inline-block;
}

a.black:hover {
  color: var(--Red);
  background-color: var(--Grey);
}

button.btn {
  color: var(--White);
  font-family: "Be Vietnam Pro";
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 2rem;
  background-color: var(--Black);
  padding: 0.8rem 1.9rem;
  margin-top: 5rem;
  display: inline-block;
}

button.btn:hover {
  color: var(--Red);
  background-color: var(--Grey);
}

/* card */

.card.horizontal {
  border: none;
  border-radius: unset;
  width: 100%;
  background-color: var(--LightYellow);
}

.card.horizontal .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-grow: 1;
  flex: 1 1 0;
  aspect-ratio: 688/493;
  width: 688px;
}

.card.horizontal .card-body {
  padding: 7rem;
  flex-grow: 1;
  flex: 1 1 0;
}


.card.product {
  border: none;
  border-radius: 0;
  margin-top: 2rem;
}

.card.product .card-body {
  text-align: center;
  padding: 2rem 4.5rem;
}

@media (max-width: 1199px) {
  .card.product .card-body {
    padding: 1.5rem 0.5rem;
  }
}

.card.product img {
  aspect-ratio: 332 / 307;
  width: 100%;
  object-fit: contain;
  height: 307px;
}

@media (max-width:991px) {
  .card.product img {
    aspect-ratio: 1/1;
    height: auto;
  }
}

.card.product .card-body .tag {
  color: var(--Black);
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}

.card.product .card-body h3 {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .card.product .card-body h3 {
    font-size: 2rem;
  }
}

.card.article {
  border: none;
  border-radius: 0;
  margin-top: 2rem;
  width: 100%;
}

.card.article img {
  aspect-ratio: 331/229;
  object-fit: cover;
  width: 100%;
}

.card.article .card-body {
  padding: 3rem;
  background-color: var(--Grey);
}

.card.article .card-body .date,
.card.article .card-body .a {
  color: var(--Black);
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}


/* filter */

section.filter-section {
  padding: 0 !important;
  margin-bottom: -12rem;
}

.filter-scroll {
  flex-wrap: nowrap;
  overflow-y: hidden;
  overflow-x: scroll;
  justify-content: left !important;
}

.filter-scroll>a,
.filter-scroll>a {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: fit-content;
}

.filter-title {
  color: var(--Black);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.filter {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.filter a.square {
  border-radius: 0.4rem;
  border: 0.05rem solid var(--Black);
  color: var(--Black);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0.7rem 2rem;
  margin-bottom: 5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter a.square:hover {
  background-color: var(--Grey);
  border: 0.05rem solid var(--Grey);
  cursor: pointer;
}

.filter a.square.selected {
  background-color: var(--Black);
  color: var(--White);
}

/* pagination */

.pagination {
  margin: 0;
}

.pagination .page-item .page-link {
  color: var(--Black);
  background-color: var(--White);
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  margin: 0 0.5rem;
}

.pagination .page-item.active .page-link {
  color: var(--White);
  background-color: var(--Black);
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.page-item:last-child .page-link {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

/* form */

form {
  margin-top: 4rem;
}

.form-control {
  color: var(--Black);
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 2.5rem;
  padding: 1rem 1.4rem;
  border: none;
  background-color: var(--Grey);
}

.form-check {
  display: flex;
  align-items: center;
}

.form-check-input {
  margin: 0 0.5rem 0 0;
  border-radius: 0;
}

.form-check-label {
  color: var(--Black);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.form-control:focus {
  border-color: var(--BlueNeon);
  box-shadow: 0px 0px 21px -8px rgba(255, 229, 204, 1);
}

.form-control::placeholder {
  color: var(--Black);
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: var(--Black);
}

textarea {
  resize: none;
}

/* carousel */

.carousel-logo .slick-track {
  align-items: center;
  display: flex;
}

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

.carousel-logo img {
  height: 110px;
  width: 100%;
  aspect-ratio: 250/110;
  object-fit: contain;
  object-position: center;
}

/* navbar */

.navbar {
  background-color: var(--White);
  font-style: normal;
  z-index: 10;
  padding: 0;
  position: relative;
  height: 150px;
}

.navbar img {
  aspect-ratio: 126/169;
  width: 100%;
  object-fit: cover;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.navbar li {
  display: inline-block;
  margin: 0;
}

.navbar ul li a {
  margin: 0 1.2rem;
  color: var(--Black);
  font-family: "Be Vietnam Pro";
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  text-decoration: none;
}

.navbar ul li a.logo-nav {
  position: relative;
  top: 5rem;
  transform: translateY(-20%);
}

.navbar ul li a.active,
.navbar ul li a:hover {
  color: var(--Red);
}

.navbar.nav-sticky {
  height: 120px;
}

.nav-sticky img {
  aspect-ratio: 188/90;
  width: 188px;
  object-fit: cover;
}

.navbar.nav-sticky ul {
  justify-content: end;
}

.navbar>.container {
  display: block;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  /* Assicurati che abbia un colore di sfondo */
  opacity: 1;
  visibility: visible;
}



/* navbar mobile */

.responsive-mobile-menu .title-collection {
  color: var(--Black);
  font-weight: 600;
  font-style: normal;
  font-family: "Dream Orphans";
  font-size: 3rem;
  text-align: left;
  margin-bottom: 4rem;
}

.responsive-mobile-menu ul {
  list-style: none;
  padding: 0;
}

.responsive-mobile-menu .language ul {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
}

.responsive-mobile-menu ul li a {
  font-size: 2rem;
  padding: 1rem 0;
  color: var(--Black);
  font-style: normal;
  font-weight: 400;
  display: block;
  text-decoration: none;
}

.responsive-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 100%;
  background-color: var(--White);
  padding: 8rem 4rem 8rem 4rem;
  z-index: 999999;
  height: 100%;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: all .3s ease-in;
}

.responsive-mobile-menu.active {
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition: all .3s ease-in-out;
}

.close-menu {
  position: absolute;
  top: 5%;
  right: 7%;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-menu img {
  width: 2rem;
}

.open-menu {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  background-image: url(/image/black_hamburger.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.nav-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  height: 100px;
  background-color: var(--White);
}

.nav-mobile .logo-nav img {
  aspect-ratio: 188/90;
  width: 188px;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .nav-mobile {
    display: none
  }
}

@media (max-width: 1199px) {

  .navbar,
  .navbar.nav-sticky {
    display: none !important;
  }
}

/* footer */

footer {
  padding: 15rem 0 1rem 0;
}

footer .inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7rem;
  margin-bottom: 4rem;
}

footer .inline hr {
  width: 100%;
  color: var(--Black);
  background-color: var(--Black);
  border: 0;
  opacity: 1;
}

footer .inline img {
  aspect-ratio: 120/160;
  object-fit: cover;
  width: 12rem;
}

footer .title {
  color: var(--Black);
  font-family: "Be Vietnam Pro";
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 1.5rem;
}

footer p {
  line-height: 2.8rem;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li a {
  color: var(--Black);
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

footer ul li a:hover {
  color: var(--Red);
}

footer .privacy {
  margin-top: 9rem;
  text-align: center;
}

@media (max-width:991px) {

  footer {
    padding: 7rem 0 1rem 0;
  }
}


/* section-1 */

.section-1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40rem 0 25rem 0;
  margin-bottom: 5rem;
  position: relative;
}

.section-1 .shadow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background: rgba(57, 0, 0, 0.10);
  box-shadow: none !important;
}

@media (max-width:991px) {

  .section-1 {
    padding: 20rem 0 10rem 0;
  }
}

/* section-2 */

.section-2 h2 {
  color: var(--Red);
  text-align: center;
  margin-bottom: 4rem;
}

.section-2 .inline {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-top: 2rem;
}

.section-2 .inline img {
  aspect-ratio: 1/1;
  width: 68px;
  margin: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.section-2 .text-center p {
  margin-top: 5rem;
}

@media (max-width:991px) {

  .section-2 .text-center p {
    margin-top: 3rem;
  }
}

/* section-3 */

.section-3 img {
  aspect-ratio: 688/493;
  width: 100%;
  height: 493px;
  object-fit: cover;
}

.section-3 .block {
  padding: 7rem;
  height: 493px;
}

.section-3 .yellow {
  background-color: var(--LightYellow);
}

.section-3 .brown {
  background-color: var(--LightBrown);
}

.section-3 .orange {
  background-color: var(--LightOrange);
}

@media (max-width:991px) {

  .section-3 {
    padding: 4rem 0;
  }


  .section-3 .block {
    height: auto;
    padding: 3rem 2rem;
  }

  .section-3 img {
    height: 300px;
  }
}

/* section-4 */

.section-4 img {
  aspect-ratio: 160/216;
  width: 160px;
  object-fit: cover;
  margin: auto;
}

.section-4 .italic {
  color: var(--Black);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 200;
  line-height: normal;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 13rem;
}

.section-4 h2,
.section-4 h3,
.section-4 p {
  text-align: center;
}

/* section-5 */

.section-5 .timeline {
  margin-top: 7rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4rem;
}

.section-5 .timeline .col-12 {
  position: relative;
}

.section-5 .timeline .col-12:before {
  content: "";
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid var(--Red);
  border-radius: 50%;
  display: inline-block;
  line-height: 5rem;
  margin: 1.5rem auto 0 auto;
  background-color: var(--Red);
}


.section-5 .timeline .col-12:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background-color: var(--Grey);
  top: 2.5rem;
  left: 0;
  z-index: -999;
}

.section-5 .timeline .date {
  color: var(--Black);
  font-size: 2rem;
  font-weight: 500;
  margin-top: 2rem;
}

.section-5 .timeline .black {
  color: var(--Black);
  font-size: 1.5rem;
  font-weight: 275;
  margin-top: 1rem;
}

.section-5 .timeline .red {
  color: var(--Red);
  font-size: 2rem;
  font-weight: 500;
}

/* section-6 */

.section-6 {
  padding: 22rem 0 0 0;
}

.section-6 nav .breadcrumb-item {
  color: var(--Black);
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-6 nav .breadcrumb-item a {
  cursor: pointer;

}

.section-6 .breadcrumb-item+.breadcrumb-item::before,
.section-6 .breadcrumb-item.active {
  color: var(--Black);
}

/* section-7 */

.section-7 {
  padding: 26rem 0 9rem 0;
}

.section-7 img {
  aspect-ratio: 799/599;
  width: 100%;
  object-fit: contain;
}

.section-7 p.mini {
  font-size: 1.4rem;
  font-style: italic;
  margin-top: 3rem;
}

/* section-8 */

.section-8 h3 {
  text-align: center;
  margin-bottom: 6rem;
}

.section-8 img {
  aspect-ratio: 203/113;
  height: 113px;
  object-fit: contain;
}

/* section-9 */

.section-9 {
  padding: 30rem 0 9rem 0;
}

.section-9 h2,
.section-9 h3,
.section-9 p {
  text-align: center;
}

/* section-10 */

.section-10 {
  padding-top: 0;
}

.section-10 .date {
  color: var(--Black);
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3rem;
}

.section-10 h3 {
  margin-bottom: 2rem;
}

.section-10 p {
  line-height: 2.5rem;
  margin-bottom: 2rem;
}

.section-10 ul,
.section-10 ol {
  margin-bottom: 2rem;
}

.section-10 li {
  line-height: 2.5rem;
}

/* responsive */

@media (max-width:991px) {

  .desktop-col,
  .desktop-row {
    display: none !important;
  }
}

@media (min-width:992px) {

  .mobile-row,
  .mobile-col {
    display: none;
  }
}