/* =========================== NAVBAR =========================== */
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --body-font: "Albert Sans", sans-serif;
  --body-color: white;
  --text-color: black;
  --section-black: #151515;
  --text-white-su-black: #f5f1e6;
  --small-text: 16px;
  --big-text: 24px;
  --medium-text: 20px;
}

/* =========================== RESET & BASE =========================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  background-color: var(--body-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--body-font);
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--body-font);
  font-size: var(--small-text);
  border: none;
  outline: none;
}

h1 {
  font-size: var(--big-text);
  line-height: 1.4;
  font-family: var(--body-font);
}

h2 {
  font-size: var(--medium-text);
  line-height: 1.4;
  font-family: var(--body-font);
}

h3 {
  font-size: var(--small-text);
  line-height: 1.4;
  font-family: var(--body-font);
}

h4 {
  font-size: 14px;
  line-height: 1.4;
  font-family: var(--body-font);
}

p {
  font-family: var(--small-text);
  line-height: 1.4;
  font-weight: 300;
}

@media (min-width: 1500px) {
  .container {
    max-width: 1420px !important;
  }
}

@media (min-width: 1800px) {
  .container {
    max-width: 1620px !important;
  }
}

/* =========================== NAVBAR =========================== */
.cc-navbar {
  transition: transform 0.35s ease;
}

.cc-navbar--hidden {
  transform: translateY(-100%);
}

.cc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--body-color);
  padding: 20px;
}

.cc-navbar .navbar-brand {
  font-size: var(--small-text);
  font-weight: 200;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--text-color);
  padding: 0;
}

.cc-navbar .cc-logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  line-height: 1;
}

.cc-navbar .cc-logo-center img {
  height: 32px;
  width: auto;
  display: block;
}

.cc-nav-desktop {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

@media (min-width: 1024px) {
  .cc-nav-desktop {
    display: flex !important;
  }
}

.cc-nav-desktop .nav-link {
  font-size: var(--small-text);
  font-weight: 200;
  letter-spacing: 0px;
  color: var(--text-color);
  padding: 0;
  margin-left: 36px;
}

.cc-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none !important;
  box-shadow: none !important;
}

@media (min-width: 1024px) {
  .cc-hamburger {
    display: none;
  }
}

@media (max-width: 1024px) {
  .cc-logo-center {
    display: none;
  }
}

.cc-hamburger .cc-bar {
  display: block;
  width: 26px;
  height: 1px;
  background-color: var(--text-color);
}

.cc-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--body-color);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 16px 20px 0;

  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.cc-mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.cc-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-shrink: 0;
}

.cc-mobile-name {
  font-size: var(--small-text);
  font-weight: 200;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--text-color);
}

.cc-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--medium-text);
  color: var(--text-color);
  font-weight: 200;
  line-height: 1;
  padding: 0;
  outline: none !important;
  box-shadow: none !important;
}

.cc-mobile-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 16px;
  flex-shrink: 0;
}

.cc-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  flex: 1;
  padding-bottom: 10vh;
  padding-left: 5%;
  gap: 20px;
}

.cc-mobile-nav a {
  font-size: var(--big-text);
  font-weight: 200;
  letter-spacing: 0.02em;
  color: var(--text-color);
  transition: opacity 0.2s ease;
}

.cc-mobile-nav a:hover {
  opacity: 0.45;
}

/* =========================== HERO SECTION =========================== */

.img-hero {
  width: 100%;
  height: 450px;
  object-position: center;
  object-fit: cover;
  margin-top: 9rem;
  padding: 0 !important;
}

.box-hero {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 3% 0;
}

.box-1-hero {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.box-hero-2 {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.title-h2-hero {
  max-width: 400px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .img-hero {
    width: 100%;
    height: 350px;
    margin-top: 6rem;
  }

  .box-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 5% 0;
  }

  .box-1-hero {
    height: auto;
  }

  .box-hero-2 {
    margin-top: 2rem;
    height: auto;
    max-width: 500px;
    align-self: flex-start;
  }

  .title-h2-hero {
    max-width: 500px;
    text-transform: uppercase;
  }
}

@media (max-width: 540px) {
  .img-hero {
    height: 300px;
  }

  .box-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10% 0;
  }

  .box-hero-2 {
    margin-top: 16px;
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
  }
}

/* ===========================  SECTION 1=========================== */
.section-1 {
  padding-top: 10%;
}

.box-section-1 {
  display: flex;
  flex-direction: row;
  height: 700px;
}

.img-box-1-section1 {
  height: 400px;
  width: auto;
}

.img-box-2-section-1 {
  height: 700px;
  width: 100%;
}

.p-section-1 {
  max-width: 500px;
  text-align: justify;
}

@media (min-width: 1800px) {
  .box-section-1 {
    display: flex;
    flex-direction: row;
    height: 900px;
  }

  .img-box-1-section1 {
    height: 600px;
    width: auto;
  }

  .img-box-2-section-1 {
    height: 900px;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .section-1 {
    padding-top: 20%;
  }

  .box-section-1 {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .box-1-section-1,
  .box-2-section-1 {
    width: 100%;
    align-self: stretch;
  }

  .img-box-1-section1 {
    height: 100%;
    width: auto;
    margin: 0 auto;
  }

  .box-2-section-1 {
    margin-top: 1rem;
  }

  .p-section-1 {
    max-width: 100%;
    text-align: justify;
  }

  .img-box-2-section-1 {
    height: auto;
    width: 100%;
  }
}

@media (max-width: 540px) {
  .section-1 {
    padding-top: 10%;
  }

  .box-section-1 {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .box-1-section-1,
  .box-2-section-1 {
    width: 100%;
    align-self: stretch;
  }

  .img-box-1-section1 {
    height: 300px;
    width: auto;
    margin: 0 auto;
    padding: 0 0.5rem;
  }

  .box-2-section-1 {
    margin-top: 1rem;
  }

  .p-section-1 {
    max-width: 100%;
    text-align: justify;
  }
}

/* ===========================  SECTION 2=========================== */
.section-2 {
  padding-top: 10%;
}

.box-section-2 {
  display: flex;
  flex-direction: row;
  padding-left: 20px;
}

@media (min-width: 1280px) {
  .box-2-section-2 .row {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.box-1-section-2 {
  width: 50%;
  padding-right: 20px;
}

.box-2-section-2 {
  width: 50%;
  max-width: 500px;
  margin-left: auto;
}

.img-box-1-section-2 {
  height: 700px;
  width: auto;
}

.img-box-2-section-2 {
  width: 500px;
  height: auto;
  display: block;
  margin-left: auto;
}

.p-section-2 {
  max-width: 500px;
  text-align: justify;
}

.p-section-2:last-child {
  margin-bottom: 0;
}

@media (min-width: 1800px) {
  .box-section-2 {
    display: flex;
    flex-direction: row;
    padding-left: 20px;
  }

  .box-1-section-2 {
    width: 50%;
    padding-right: 20px;
  }

  .box-2-section-2 {
    width: 50%;
    max-width: 650px;
    margin-left: auto;
  }

  .img-box-1-section-2 {
    height: 800px;
    width: auto;
  }

  .img-box-2-section-2 {
    width: 650px;
    height: auto;
    display: block;
    margin-left: auto;
  }

  .p-section-2 {
    max-width: 500px;
    text-align: justify;
  }
}

@media (max-width: 1024px) {
  .section-2 {
    padding-top: 20%;
  }

  .box-section-2 {
    gap: 1rem;
    padding-left: 10px;
    flex-direction: column;
  }

  .box-1-section-2,
  .box-2-section-2 {
    width: 100%;
    align-self: stretch;
    padding-right: 0;
    margin-left: 0;
    max-width: 100%;
  }

  .img-box-1-section-2 {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .img-box-2-section-2 {
    width: auto;
    height: 100%;
    margin-left: 0;
  }
}

@media (max-width: 540px) {
  .box-section-2 {
    gap: 1rem;
    padding-left: 10px;
    flex-direction: column;
  }

  .box-1-section-2,
  .box-2-section-2 {
    width: 100%;
    align-self: stretch;
    padding-right: 0;
    margin-left: 0;
    max-width: 100%;
  }

  .img-box-1-section-2 {
    width: 100%;
    height: 550px;
    object-fit: cover;
  }

  .img-box-2-section-2 {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
}

/* ===========================  SECTION 3=========================== */
.section-3 {
  padding-top: 10%;
}

.img-section-3 {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 600px;
}

@media (max-width: 1024px) {
  .section-3 {
    padding-top: 20%;
  }

  .img-section-3 {
    height: 400px;
  }
}

@media (max-width: 540px) {
  .section-3 {
    padding-top: 20%;
  }
  .img-section-3 {
    height: 500px;
  }
}

/* ===========================  SECTION 4=========================== */
.section-4 {
  margin-top: 10%;
  padding-top: 10%;
  padding-bottom: 10%;
  background-color: var(--section-black);
}

.box-section-4 {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.box-1-section-4 {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.box-1-section-4 h4 {
  color: var(--text-white-su-black);
}

.box-1-section-4 h2 {
  color: var(--text-white-su-black);
}

.box-2-section-4 {
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.title-h2-section-4 {
  max-width: 400px;
  text-transform: uppercase;
}

.p-section-4 {
  color: var(--text-white-su-black);
  text-align: justify;
}

.cta-white {
  color: var(--text-white-su-black);
  text-decoration: underline;
}

.arrow-button-white {
  filter: invert(1);
  width: 22px;
  height: auto;
  transform: rotate(-90deg);
  margin-bottom: 1rem;
}

.box-gallery-section-4 {
  padding-top: 10%;
}

#carouselExampleFade {
  position: relative;
}

.carousel-control-prev,
.carousel-control-next {
  top: auto;
  bottom: -60px;
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 50%;
  opacity: 1;
  padding: 10px;
}

.carousel-control-prev {
  left: auto;
  right: 60px;
}

.carousel-control-next {
  right: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-item {
  position: relative;
}

.label-overlay {
  position: absolute;
  top: 60%;
  left: 35%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.label-overlay .dot {
  position: relative;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-overlay .dot .inner {
  width: 18px;
  height: 18px;
  background: var(--text-white-su-black);
  border-radius: 50%;
}

.label-overlay .text {
  color: var(--text-white-su-black);
  font-size: var(--small-text);
  font-weight: 500;
}

.label-legno {
  top: 35%;
  left: 75%;
}

.label-calce {
  top: 25%;
  left: 55%;
}

.label-luce {
  top: 30%;
  left: 35%;
}

.label-metallo {
  top: 65%;
  left: 45%;
}

.modal-custom {
  background: rgba(0, 0, 0, 0.3);
}

.custom-modal-content {
  background: var(--text-white-su-black);
  border-radius: 30px;
  padding: 20px;
  border: none;
  position: relative;
  max-width: 400px;
}

.modal-image img {
  width: auto;
  height: 250px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

.custom-body {
  padding: 20px 10px 10px;
}

.custom-body h3 {
  font-size: var(--medium-text);
  font-weight: 500;
  margin-bottom: 20px;
}

.custom-body p {
  font-size: var(--small-text);
  color: var(--text-color);
}

.custom-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--text-white-su-black);
  border: 1px solid #000;
  font-size: var(--medium-text);
  z-index: 10;
  color: var(--text-color) !important;
}

@media (max-width: 1024px) {
  .section-4 {
    margin-top: 20%;
    padding-top: 10%;
    padding-bottom: 10%;
    background-color: var(--section-black);
  }

  .box-section-4 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .box-2-section-4 {
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
    height: 100%;
  }

  .box-gallery-section-4 {
    padding-top: 5%;
  }
}

@media (max-width: 540px) {
  .section-4 {
    margin-top: 23%;
    padding-bottom: 25%;
    background-color: var(--section-black);
  }

  .box-section-4 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10% 2%;
  }

  .box-2-section-4 {
    margin-top: 16px;
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
  }

  #carouselExampleFade .carousel-item {
    height: 400px; /* aumenta altezza */
  }

  #carouselExampleFade .carousel-item img {
    height: 100%;
    object-fit: cover; /* evita deformazioni */
  }

  .custom-modal-content {
    border-radius: 20px;
    padding: 15px;
  }

  .label-legno {
    top: 35%;
    left: 65%;
  }

  .label-luce {
    top: 30%;
    left: 15%;
  }
}

/* ===========================  SECTION 5=========================== */
.section-5 {
  padding-top: 10%;
}

@media (max-width: 1024px) {
  .section-5 {
    padding-top: 20%;
  }

  .img-box-2-section-5 {
    object-fit: contain !important;
  }
}

@media (max-width: 540px) {
  .section-5 {
    padding-top: 20%;
  }
}

/* ===========================  SECTION 6=========================== */
.section-6 {
  padding-top: 10%;
}

.section-slider {
  overflow: hidden;
}

.splide__track {
  overflow: visible !important;
}

.splide__list {
  height: 500px;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cc-arrow {
  width: 36px;
  height: 36px;
  background-color: white !important;
  border: 1px solid black !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px !important;
  box-shadow: none !important;
}

.cc-arrow img {
  width: 12px;
  height: auto;
  display: block;
}

.splide__arrow--prev {
  left: 30px !important;
}

.splide__arrow--next {
  right: 30px !important;
}

.splide__pagination {
  display: none !important;
}

@media (max-width: 1024px) {
  .section-6 {
    padding-top: 20%;
  }

  .splide__slide img {
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 726px) {
  .splide__track {
    overflow: hidden !important;
  }

  .splide__slide {
    display: flex;
    justify-content: center;
  }

  .splide__slide img {
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 540px) {
  .section-6 {
    padding-top: 20%;
  }

  .splide__arrow--prev {
    left: 15px !important;
  }

  .splide__arrow--next {
    right: 15px !important;
  }

  .cc-arrow img {
    width: 8px;
    height: auto;
    display: block;
  }

  .cc-arrow {
    width: 28px;
    height: 28px;
  }
}

/* ===========================  SECTION 7=========================== */
.section-7 {
  padding-top: 10%;
}

.box-section-7 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.img-section-7 {
  height: 700px;
  width: auto;
  object-position: center;
  object-fit: cover;
}
.box-2-section-7 {
  max-width: 420px;
  margin: 0 auto;
  text-align: justify;
}

@media (min-width: 1800px) {
  .img-section-7 {
    height: 900px;
  }

  .box-2-section-7 {
    max-width: 620px !important;
    margin: 0 auto;
    text-align: justify;
  }
}

@media (max-width: 1024px) {
  .section-7 {
    padding-top: 20%;
  }

  .box-section-7 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 3%;
  }

  .img-section-7 {
    width: 100%;
    height: 350px;
  }

  .box-2-section-7-a {
    width: 100% !important;
    max-width: 100% !important;
    align-self: stretch;
    padding: 0 15px;
    margin-top: 1rem;
  }
}

@media (max-width: 540px) {
  .section-7 {
    padding-top: 20%;
  }

  .box-section-7 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .img-section-7 {
    width: 100%;
    height: 350px;
  }

  .box-2-section-7 {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    padding: 0 15px;
    margin-top: 1rem;
  }
}

/* ===========================  SECTION 8=========================== */
.section-8 {
  padding-top: 10%;
}

.box-section-8 {
  display: flex;
  flex-direction: row;
  padding-left: 20px;
}

.box-1-section-8 {
  width: 50%;
  padding-right: 20px;
}

.box-2-section-8 {
  width: 50%;
  max-width: 500px;
  margin-left: auto;
}

.img-box-1-section8 {
  height: auto;
  width: 400px;
}

.img-box-2-section-8 {
  width: 700px;
  height: auto;
  display: block;
  margin-left: auto;
}

.cc-accordion {
  width: 100%;
}

.cc-accordion-item {
  border-top: 1px solid black;
}

.cc-accordion-item:first-child {
  border-top: 0;
}

.cc-accordion-item:last-child {
  border-bottom: 1px solid black;
}

.cc-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--small-text);
  font-weight: 600;
  color: var(--text-color);
  text-align: left;
}

.cc-accordion-arrow {
  width: 22px;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cc-accordion-item.is-open .cc-accordion-arrow {
  transform: rotate(90deg);
}

.cc-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0;
}

.cc-accordion-item.is-open .cc-accordion-body {
  max-height: 300px;
}

.cc-accordion-body p {
  font-size: var(--small-text);
  font-weight: 300;
  line-height: 1.4;
}

.button {
  text-decoration: underline;
  gap: 8px;
}

.arrow-button {
  width: 22px;
  height: auto;
  transform: rotate(-90deg);
  margin-bottom: 1rem;
}

@media (min-width: 1800px) {
  .box-section-8 {
    display: flex;
    flex-direction: row;
    padding-left: 20px;
  }

  .box-1-section-8 {
    width: 50%;
    padding-right: 20px;
  }

  .box-2-section-8 {
    width: 50%;
    max-width: 650px;
    margin-left: auto;
  }

  .img-box-1-section8 {
    height: 300px;
    width: auto;
  }

  .img-box-2-section-8 {
    width: 900px;
    height: auto;
    display: block;
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .section-8 {
    padding-top: 20%;
  }

  .box-section-8 {
    gap: 1rem;
    flex-direction: column;
  }

  .box-1-section-8,
  .box-2-section-8 {
    width: 100%;
    align-self: stretch;
  }

  .img-box-1-section8 {
    height: auto;
    width: 50%;
    margin: 0;
    padding: 0 0.5rem;
  }

  .box-2-section-8 {
    width: 100%;
    max-width: 100%;
  }

  .img-box-2-section-8 {
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
  }
}

@media (max-width: 540px) {
  .section-8 {
    padding-top: 20%;
  }

  .box-section-8 {
    gap: 1rem;
    flex-direction: column;
  }

  .box-1-section-8,
  .box-2-section-8 {
    width: 100%;
    align-self: stretch;
  }

  .img-box-1-section8 {
    height: auto;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
  }
}

/* ===========================  SECTION 9=========================== */
.section-9 {
  padding-top: 10%;
}

.box-section-9 {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.box-1-section-9 {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.box-2-section-9 {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: justify;
}

.title-h2-section-9 {
  max-width: 400px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .section-9 {
    padding-top: 20%;
  }

  .box-section-9 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 15px;
  }

  .box-1-section-9 {
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .box-2-section-9 {
    margin-top: 0.5rem;
    height: auto;
  }
}

@media (max-width: 540px) {
  .section-9 {
    padding-top: 20%;
  }

  .box-section-9 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 15px;
  }

  .box-1-section-9 {
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .box-2-section-9 {
    margin-top: 0.5rem;
  }
}

/* ================================================================ */
/* =========================== CHI SONO =========================== */
/* ================================================================ */

.img-hero-chi-sono {
  width: 100%;
  height: 450px;
  object-position: center;
  object-fit: cover;
  padding: 0 !important;
  margin-top: 3rem;
}

.box-hero-chi-sono {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin-top: 8rem;
}

.box-1-hero-chi-sono {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.box-hero-2-chi-sono {
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.title-h2-hero-chi-sono {
  max-width: 400px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .img-hero-chi-sono {
    height: 300px;
  }

  .box-hero-chi-sono {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .box-1-hero-chi-sono {
    height: 100%;
  }

  .box-hero-2-chi-sono {
    margin-top: 36px;
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
    height: auto;
  }

  .img-hero-chi-sono {
    margin-top: 2rem;
  }
}

@media (max-width: 540px) {
  .img-hero-chi-sono {
    height: 300px;
  }

  .box-hero-chi-sono {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 7rem;
  }

  .box-hero-2-chi-sono {
    margin-top: 16px;
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .img-hero-chi-sono {
    margin-top: 2rem;
  }
}

/* =========================== FRASE =========================== */
.frase {
  padding: 10% 0 0 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}

.frase p {
  font-weight: 600;
  font-size: var(--small-text);
}

@media (max-width: 1024px) {
  .frase {
    padding: 20% 2% 0 2%;
  }
}

/* =========================== SECTION 1 =========================== */
.section-1-chi-sono {
  padding-top: 10%;
}

#splide-storia .splide__track {
  overflow: hidden !important;
}

#splide-storia .splide__slide img {
  height: 600px;
}

.cc-storia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 0 5rem;
}

.cc-storia-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.cc-storia-blocco {
  margin-top: 2rem;
}

.cc-storia-text {
  max-width: 440px;
  margin: 0 auto;
}

.cc-storia-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5rem 0;
}

.cc-storia-prev,
.cc-storia-next {
  width: 26px;
  height: 26px;
  background: none;
  border: 1px solid black;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}

.arrow-slider-chi-sono {
  width: 8px;
}

@media (max-width: 1024px) {
  .section-1-chi-sono {
    padding-top: 20%;
  }

  .cc-storia-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 2rem;
  }

  .cc-storia-text {
    max-width: 100%;
  }

  .cc-storia-img img,
  #splide-storia .splide__slide img {
    height: 400px;
  }

  .cc-storia-nav {
    padding: 0.5rem 1.5rem 0;
  }
}

@media (max-width: 540px) {
  .section-1-chi-sono {
    padding-top: 20%;
  }

  .cc-storia-img {
    display: none;
  }

  #splide-storia .splide__slide {
    height: auto !important;
  }

  .cc-storia-inner {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 0;
  }
}
/* =========================== SECTION 2 =========================== */

.img-box-1-section-2-chi-sono {
  height: auto;
  width: 400px;
}

@media (min-width: 1280px) {
  .section-2-chi-sono .box-1-section-1 .row {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .section-2-chi-sono .box-1-section-1 .row .col-12:last-child {
    margin-top: auto !important;
  }

  .section-2-chi-sono .box-2-section-1 {
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .section-2-chi-sono {
    padding-top: 20% !important;
  }

  .img-box-1-section-2-chi-sono {
    height: auto;
    width: 60%;
  }

  .img-box-2-section-2-chi-sono {
    height: 100% !important;
    object-fit: contain !important;
  }
}

strong {
  font-weight: 600;
}

@media (max-width: 540px) {
  .section-2-chi-sono {
    padding-top: 20% !important;
  }

  .img-box-1-section-2-chi-sono {
    height: auto;
    width: 100%;
  }
}

/* =========================== SECTION 3 =========================== */

.img-section-3-chi-sono {
  height: 500px;
  width: auto;
  object-position: center;
  object-fit: cover;
}

@media (min-width: 1800px) {
  .img-section-3-chi-sono {
    height: 700px;
  }
}

@media (max-width: 1024px) {
  .img-section-3-chi-sono {
    width: 50%;
  }

  .box-2-section-7 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: justify;
  }

  .frase-last-chi-sono {
    padding-bottom: 10% !important;
  }
}

@media (max-width: 540px) {
  .img-section-3-chi-sono {
    width: 100%;
    height: 350px;
  }

  .box-2-section-7 {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    padding: 0 4px;
    margin-top: 1rem;
  }
}

/* ================================================================ */
/* =========================== PROGETTI =========================== */
/* ================================================================ */
.hero-section-progetti {
  margin-top: 8rem;
}

.container-progetti {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1500px) {
  .container-progetti {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 1800px) {
  .container-progetti {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
}

.img-hero-progetti {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.container-text-hero {
  display: flex;
  flex-direction: row;
  gap: 5rem;
}

.box-1-progetti-hero {
  width: 50%;
}

.box-2-progetti-hero {
  width: 46%;
}

.text-hero-progetti-box-2 {
  border-top: 1px solid var(--text-color);
  display: flex;
  align-items: center;
  min-height: 1rem;
}

.text-hero-progetti-box-2 p {
  margin: 0 !important;
  padding: 0 !important;
}

.text-hero-progetti-box-2 a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text-hero-progetti-box-2 a .arrow-button {
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .hero-section-progetti {
    margin-top: 6rem;
  }

  .container-text-hero {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.2rem;
  }

  .box-1-progetti-hero {
    width: 100%;
    padding: 0;
  }

  .box-2-progetti-hero {
    width: 99%;
    margin: 0 auto;
    padding: 0;
  }

  .text-hero-progetti-box-2 {
    min-height: 3.3rem;
  }
}

/* =========================== SECTION 1 =========================== */
.section-progetti-1 {
  padding-top: 10%;
}

@media (max-width: 540px) {
  .section-progetti-1 {
    padding-top: 20%;
  }
}

.container-section1-progetti {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: start;
  gap: 4rem;
  height: 600px;
}

.img-section-1-progetti {
  object-fit: cover;
  object-position: center;
  height: 600px;
  width: auto;
}

.box-section-1-progetti {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  max-width: 560px;
}

.box-2-section-1-progetti {
  border-top: 1px solid var(--text-color);
  width: 100%;
}

@media (min-width: 1800px) {
  .container-section1-progetti {
    gap: 6rem;
    height: 900px;
  }

  .img-section-1-progetti {
    height: 900px;
  }
}

@media (min-width: 1600px) {
  .container-section1-progetti {
    gap: 5rem;
    height: 700px;
  }

  .img-section-1-progetti {
    height: 700px;
  }
}

@media (max-width: 1024px) {
  .section-progetti-1 {
    padding-top: 20%;
  }

  .container-section1-progetti {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 1.5rem;
  }

  .img-section-1-progetti {
    width: 100%;
    height: 350px;
  }

  .box-section-1-progetti {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

/* =========================== SECTION 2 =========================== */
.section-progetti-2 {
  padding-top: 10%;
}

@media (max-width: 1024px) {
  .section-progetti-2 {
    padding-top: 20%;
  }
}

/* =========================== SECTION 3 =========================== */
.section-progetti-3 {
  padding-top: 10%;
}

@media (max-width: 1024px) {
  .section-progetti-3 {
    padding-top: 20%;
  }
}

.container-section3-progetti {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 4rem;
  height: 600px;
}

.img-section-3-progetti {
  object-fit: cover;
  object-position: center;
  height: 600px;
  width: auto;
}

.box-section-3-progetti {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  max-width: 560px;
}

.box-2-section-3-progetti {
  border-top: 1px solid var(--text-color);
  width: 100%;
}

@media (min-width: 1800px) {
  .container-section3-progetti {
    gap: 6rem;
    height: 900px;
  }
  .img-section-3-progetti {
    height: 900px;
  }
}

@media (min-width: 1600px) {
  .container-section3-progetti {
    gap: 5rem;
    height: 700px;
  }
  .img-section-3-progetti {
    height: 700px;
  }
}

@media (max-width: 1024px) {
  .section-progetti-3 {
    padding-top: 20%;
  }

  .container-section3-progetti {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 1.5rem;
  }

  .img-section-3-progetti {
    width: 100%;
    height: 350px;
    order: 1;
  }

  .box-section-3-progetti {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    order: 2;
  }
}

/* =========================== SECTION 4 =========================== */
.section-progetti-4 {
  padding-top: 10%;
}

@media (max-width: 1024px) {
  .section-progetti-4 {
    padding-top: 20%;
  }
}

/* ================================================================ */
/* =========================== CONTATTI=========================== */
/* ================================================================ */
/* HERO CONTATTI */
.hero-contatti {
  margin-top: 10rem;
  padding-bottom: 5%;
}

.box-hero-contatti {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: flex-start;
}

.box-1-hero-contatti {
  width: 50%;
}

.box-2-hero-contatti {
  width: 50%;
}

.box-info-contatti {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.links-contatti {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.link-contatto {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--text-color);
  font-size: var(--small-text);
}

.link-contatto:last-child {
  border-bottom: 1px solid var(--text-color);
}

.section-img-contatti {
  padding-top: 10%;
}

.box-img-contatti {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 2rem;
}

.img-contatti-1 {
  width: 50%;
  height: 700px;
  object-fit: cover;
}

.img-contatti-2 {
  width: 30%;
  height: 500px;
  object-fit: cover;
  margin-left: auto;
}

@media (min-width: 1800px) {
  .img-contatti-1 {
    width: 50%;
    height: 900px;
    object-fit: cover;
  }

  .img-contatti-2 {
    width: 30%;
    height: 700px;
    object-fit: cover;
    margin-left: auto;
  }
}

.section-mappa-contatti {
  padding-top: 10%;
}

.section-mappa-contatti iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.cc-footer-contatti {
  margin-top: 0 !important;
}

@media (max-width: 1024px) {
  .box-hero-contatti {
    flex-direction: column;
    gap: 2rem;
  }

  .box-1-hero-contatti,
  .box-2-hero-contatti {
    width: 100%;
  }

  .box-img-contatti {
    flex-direction: column;
  }

  .img-contatti-1,
  .img-contatti-2 {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 540px) {
  .hero-contatti {
    margin-top: 6rem;
  }

  .section-img-contatti {
    padding-top: 20%;
  }

  .box-info-contatti {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-mappa-contatti {
    padding-top: 20%;
  }

  .section-mappa-contatti iframe {
    width: 100%;
    height: 350px;
    display: block;
  }
}

/* ================================================================ */
/* =========================== IL METODO =========================== */
/* ================================================================ */
.box-hero-2-metodo {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .box-hero-2-metodo {
    margin-top: 16px;
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
    height: auto;
  }
}

/* =========================== SECTION 1 =========================== */
.section-1-metodo {
  padding-top: 10%;
}

.container-box-section-1-metodo {
  display: flex;
  flex-direction: row;
  height: 600px;
  gap: 4rem;
  align-items: end;
}

.box-1-section-1-metodo {
  width: 60%;
}

.text-section-1-metodo {
  max-width: 640px;
}

.box-2-section-1-metodo {
  width: 40%;
}

.img-section-1-metodo {
  object-fit: cover;
  object-position: center;
  height: 600px;
  width: auto;
  margin-left: auto;
}

.cc-fasi-list {
  max-width: 730px;
}

@media (min-width: 1800px) {
  .container-box-section-1-metodo {
    height: 800px;
  }

  .img-section-1-metodo {
    height: 800px;
  }

  .box-2-section-1-metodo {
    width: 50%;
  }

  .text-section-1-metodo {
    max-width: 840px;
  }
  .cc-fasi-list {
    max-width: 840px;
  }
}

.cc-fase-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--text-color);
}

.cc-fase-item:first-child {
  border-top: 1px solid var(--text-color);
}

.cc-fase-titolo {
  font-weight: 600;
  font-size: var(--small-text);
  min-width: 160px;
  flex-shrink: 0;
}

.cc-fase-testo {
  margin: 0;
  font-weight: 300;
  font-size: var(--small-text);
}

@media (max-width: 1024px) {
  .section-1-metodo {
    padding-top: 20%;
  }

  .container-box-section-1-metodo {
    flex-direction: column;
    height: auto;
    gap: 4rem;
    align-items: flex-start;
  }

  .box-1-section-1-metodo {
    width: 100%;
  }

  .box-2-section-1-metodo {
    width: 100%;
  }

  .img-section-1-metodo {
    width: 100%;
    height: 350px;
    margin-left: 0;
    object-fit: contain;
  }

  .text-section-1-metodo {
    max-width: 100%;
  }

  .cc-fasi-list {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .section-1-metodo {
    padding-top: 20%;
  }

  .cc-fase-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .img-section-1-metodo {
    width: 100%;
    height: auto;
    margin-left: 0;
    object-fit: cover;
  }
}

/* =========================== SECTION 2 =========================== */
.section-2-metodo {
  padding-top: 10%;
}

.container-box-section-2-metodo {
  display: flex;
  flex-direction: row;
  height: 600px;
  gap: 4rem;
  align-items: flex-end;
}

.box-img-section-2-metodo {
  width: 40%;
}

.img-section-2-metodo {
  object-fit: cover;
  object-position: center;
  height: 600px;
  width: auto;
}

.box-text-section-2-metodo {
  width: 60%;
}

.text-section-2-metodo {
  max-width: 640px;
}

@media (min-width: 1800px) {
  .container-box-section-2-metodo {
    height: 800px;
  }

  .img-section-2-metodo {
    height: 800px;
  }

  .box-img-section-2-metodo {
    width: 50%;
  }

  .text-section-2-metodo {
    max-width: 840px;
  }
}

@media (max-width: 1024px) {
  .section-2-metodo {
    padding-top: 20%;
  }

  .container-box-section-2-metodo {
    flex-direction: column;
    height: auto;
    gap: 4rem;
    align-items: flex-start;
  }

  .box-img-section-2-metodo {
    width: 100%;
    order: 2;
  }

  .box-text-section-2-metodo {
    width: 100%;
    order: 1;
  }

  .img-section-2-metodo {
    width: 100%;
    height: 350px;
    margin-left: 0;
  }

  .text-section-2-metodo {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .section-2-metodo {
    padding-top: 20%;
  }

  .img-section-2-metodo {
    height: 280px;
  }
}

/* =========================== SECTION 4 =========================== */
@media (max-width: 1024px) {
  .img-box-1-section-4-metodo {
    width: 100% !important;
  }

  .img-box-2-section-4-metodo {
    height: 100% !important;
  }
}
/* =========================== SECTION 5 =========================== */
.section-5-metodo {
  padding-top: 10%;
}

.cc-faq-list {
  max-width: 840px;
}

@media (min-width: 1800px) {
  .cc-faq-list {
    max-width: 1200px;
  }
}

.cc-faq-item {
  border-bottom: 1px solid var(--text-color);
  cursor: pointer;
}

.cc-faq-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.cc-faq-domanda {
  font-size: var(--small-text);
  font-weight: 600;
  max-width: 90%;
}

.cc-faq-arrow {
  width: 24px;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cc-faq-item.is-open .cc-faq-arrow {
  transform: rotate(90deg);
}

.cc-faq-risposta {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.cc-faq-item.is-open .cc-faq-risposta {
  max-height: 500px;
  padding-bottom: 1.2rem;
}

.cc-faq-risposta p {
  font-size: var(--small-text);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .section-5-metodo {
    padding-top: 20%;
  }

  .cc-faq-domanda {
    max-width: 85%;
  }
}

/* =========================== SECTION 6 =========================== */
.section-6-metodo {
  padding-top: 10%;
}

.container-6-metodo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.img-section-6-metodo {
  width: 60%;
  height: auto;
  object-fit: cover;
  display: block;
}

.quote-section-6-metodo {
  width: 60%;
  text-align: left;
  font-style: italic;
  font-weight: 500;
  font-size: var(--small-text);
  margin-top: 1rem;
  padding: 0;
}

@media (max-width: 1024px) {
  .section-6-metodo {
    padding-top: 20%;
  }

  .img-section-6-metodo {
    width: 75%;
  }

  .quote-section-6-metodo {
    width: 75%;
  }
}

@media (max-width: 540px) {
  .section-6-metodo {
    padding-top: 20%;
  }

  .img-section-6-metodo {
    width: 100%;
  }

  .quote-section-6-metodo {
    width: 100%;
    padding: 0 1rem;
    text-align: center;
  }
}

/* =========================== SECTION 6 =========================== */
.section-7-metodo {
  padding-top: 10%;
}

@media (max-width: 1024px) {
  .section-7-metodo {
    padding-top: 20%;
  }
}

/* ================================================================ */
/* =========================== PROGETTO =========================== */
/* ================================================================ */
.hero-progetto {
  margin-top: 8rem;
}

.img-hero-progetto {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 400px;
}

@media (min-width: 1600px) {
  .img-hero-progetto {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 820px) {
  .img-hero-progetto {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 540px) {
  .hero-progetto {
    margin-top: 6rem;
  }

  .img-hero-progetto {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
  }

  .box-hero-progetto {
    width: calc(50% - 8px); /* 8px per un piccolo gap visivo */
    margin-bottom: 8px;
    text-align: center;
  }
}

/* =========================== SECTION 1 =========================== */

.box-progetto-section-2 {
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: justify;
}

@media (max-width: 1024px) {
  .box-progetto-section-2 {
    height: auto;
  }
}

@media (max-width: 820px) {
  .section-9 {
    padding-top: 20%;
  }

  .box-progetto-section-2 {
    margin-top: 2rem;
    height: auto;
    max-width: 500px;
    align-self: flex-end;
  }
}

@media (max-width: 540px) {
  .box-progetto-section-2 {
    margin-top: 0.5rem;
  }
}

@media (max-width: 540px) {
  .section-9 {
    padding-top: 20%;
  }
}
/* =========================== SECTION 8 =========================== */
.section-8-progetto {
  padding-top: 0% !important;
}

.img-section-8-progetto {
  height: 500px;
  width: auto;
  object-position: center;
  object-fit: cover;
}

.mini-img-progetto {
  width: 300px;
}

@media (min-width: 1800px) {
  .img-section-8-progetto {
    height: 700px;
  }

  .mini-img-progetto {
    width: 500px;
  }
}

@media (max-width: 1024px) {
  .img-section-8-progetto {
    width: 50%;
  }

  .section-8-progetto {
    padding-top: 20% !important;
  }
}

@media (max-width: 820px) {
  .img-section-8-progetto {
    width: 100%;
    height: 300px;
    object-fit: cover;
    align-self: flex-start;
  }
}

@media (max-width: 540px) {
  .section-8-progetto {
    padding-top: 20% !important;
  }

  .img-section-8-progetto {
    width: 100%;
    height: 350px;
  }
}
/* ================================================================ */
/* =========================== FOOTER =========================== */
/* ================================================================ */

.cc-footer {
  background-color: var(--section-black);
  padding: 7% 5%;
  margin-top: 10%;
}

.cc-footer__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.cc-footer__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-footer__logo {
  height: auto;
  width: 40px;
}

.cc-footer__name {
  font-size: var(--small-text);
  font-weight: 200;
  color: var(--text-white-su-black);
  margin: 0;
}

.cc-footer__icons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.img-logo-icon {
  height: 18px !important;
  width: 18px !important;
  filter: invert(1);
}

.cc-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.cc-footer__nav {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.cc-footer__nav a {
  font-size: var(--small-text);
  font-weight: 300;
  color: var(--text-white-su-black);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.cc-footer__nav-1 a {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-white-su-black);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.cc-footer__nav a:hover {
  opacity: 1;
}

.cc-footer__quote {
  font-size: 14px;
  font-weight: 200;
  font-style: italic;
  color: var(--text-white-su-black);
  text-align: left;
  line-height: 1.4;
  margin: 0;
}

.cc-footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-top: 10px;
  margin-bottom: 10px;
}

.cc-footer__credits {
  margin-top: 60px;
  text-align: center;
}

.cc-footer__credits_1 {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 200 !important;
  color: var(--text-white-su-black);
}

.cc-footer__credits p {
  font-size: 14px;
  font-weight: 200;
  color: var(--text-white-su-black) !important;
  margin: 0;
}

@media (max-width: 820px) {
  .cc-footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .cc-footer__right {
    align-items: flex-start;
  }

  .cc-footer__nav {
    flex-wrap: wrap;
    gap: 20px;
  }

  .cc-footer__quote {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .cc-footer__nav {
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================== LEGAL PAGE STYLES =========================== */

.legal-page {
  padding: 120px 0 80px;
  background-color: var(--body-color);
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-header h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text-color);
}

.legal-date {
  font-size: var(--small-text);
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section-title {
  margin: 80px 0 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.policy-section-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-section-title h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--text-color);
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h3 {
  font-size: var(--medium-text);
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-color);
}

.legal-section h4 {
  font-size: var(--small-text);
  font-weight: 500;
  margin: 24px 0 12px;
  color: var(--text-color);
}

.legal-section p {
  font-size: var(--small-text);
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-color);
  font-weight: 300;
}

.legal-section ul {
  margin: 16px 0 24px 0;
  padding-left: 0;
}

.legal-section ul li {
  font-size: var(--small-text);
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-weight: 300;
}

.legal-section ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-color);
}

.legal-section a {
  color: var(--text-color);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.legal-section a:hover {
  opacity: 0.6;
}

.legal-section strong {
  font-weight: 500;
}

/* =========================== RESPONSIVE =========================== */

@media (max-width: 768px) {
  .legal-page {
    padding: 80px 0 60px;
  }

  .legal-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .legal-header h1 {
    font-size: 32px;
  }

  .policy-section-title {
    margin: 60px 0 30px;
    padding-top: 30px;
  }

  .policy-section-title h2 {
    font-size: 24px;
  }

  .legal-section {
    margin-bottom: 36px;
  }

  .legal-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .legal-section h4 {
    font-size: 16px;
    margin: 20px 0 10px;
  }

  .legal-section p,
  .legal-section ul li {
    font-size: 15px;
    line-height: 1.6;
  }

  .legal-section ul {
    margin: 12px 0 20px 0;
  }

  .legal-section ul li {
    padding-left: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding: 60px 0 40px;
  }

  .legal-header h1 {
    font-size: 28px;
  }

  .legal-date {
    font-size: 14px;
  }

  .policy-section-title {
    margin: 50px 0 25px;
  }

  .policy-section-title h2 {
    font-size: 22px;
  }

  .legal-section p,
  .legal-section ul li {
    font-size: 14px;
  }
}
