/* ======================= IMPORT FONT ======================= */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");

/* ======================= VARIABILI BASE ======================= */
:root {
  --font-site: "DM Sans", sans-serif;
  --font-title: "EB Garamond", serif;
  --color-white: #fafafa;
  --color-black: #030303;
  --color-black-light: #333333;
  --color-grey: #333333;
  --color-grey-1: #9b9b9b;
  --font-size: 18px;
  --font-size-button: 16px;
  --line-height: 1.5rem;
  --border-radius: 24px;
  --border-radius-none: 0px;
}

/* ======================= RESET ======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ======================= HTML E BODY ======================= */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  background-color: var(--color-white);
  font-family: var(--font-site);
}

p {
  font-family: var(--font-site);
  font-size: var(--font-size);
  color: var(--color-black);
}

h2 {
  font-family: var(--font-title);
  font-size: 36px !important;
  line-height: 2rem !important;
}

@media (max-width: 540px) {
  h2 {
    font-size: 28px !important;
  }

  .h2 {
    font-size: 26px !important;
  }

  .h2-section-4 {
    font-size: 24px !important;
  }

  .title-contatto {
    font-size: 28px !important;
    line-height: 1.2;
  }
}

h3 {
  font-family: var(--font-title);
  font-size: 32px !important;
  color: var(--color-white);
  line-height: 2rem !important;
}

@media (max-width: 540px) {
  h3 {
    font-size: 24px !important;
  }
}

h4 {
  font-family: var(--font-site);
  font-size: var(--font-size);
  color: #6e6e6e !important;
  font-weight: 400;
}

@media (max-width: 540px) {
  h4 {
    font-size: 18px !important;
  }
}

h5 {
  font-family: var(--font-title);
  font-size: 24px !important;
  line-height: 2rem !important;
  color: var(--color-white);
}

/* ======================= CURSORE PERSONALIZZATO 
#cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: white;
  mix-blend-mode: difference;
  transition: transform 0.08s ease;
}

@media (max-width: 1100px) {
  #cursor {
    display: none;
  }
}

======================= */

/* ======================= BUTTON ======================= */
button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-none);
  background: var(--color-black);
  color: var(--color-white);
  cursor: pointer;
}

button p {
  margin: 0;
  font-size: var(--font-site);
  font-weight: 500;
  color: var(--color-white);
}

a {
  text-decoration: none !important;
}

button:hover {
  background-color: var(--color-black-light) !important;
}

.button-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-none);
  background-color: var(--color-white);
  color: var(--color-black) !important;
  cursor: pointer;
}

.button-white p {
  margin: 0;
  font-size: var(--font-site) !important;
  font-weight: 500;
  color: var(--color-black) !important;
}

.button-white:hover {
  background-color: #fff !important;
  color: var(--color-black) !important;
}

/* ======================= HEADER BASE ======================= */
.site-header {
  position: fixed;
  top: 0;
  z-index: 1050;
  width: 100%;
}

/* ======================= GLASS FULL-WIDTH ======================= */
.glass {
  width: 100%;
  background: rgba(250, 250, 250, 0.4);
  backdrop-filter: blur(6px) saturate(180%);
  -webkit-backdrop-filter: blur(6px) saturate(180%);
  border-radius: 0;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.header-bar {
  padding: 0.3rem 1.5rem;
}

@media (max-width: 640px) {
  .header-bar {
    padding: 0.3rem 1.5rem;
  }
}

/* ======================= LOGO ======================= */
.logo {
  width: 5rem;
  height: 2rem;
  overflow: hidden;
  display: inline-block;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-sm {
  width: 5rem;
  height: 2rem;
  overflow: hidden;
}

.logo-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ======================= MENU DESKTOP ======================= */
.desktop-menu .nav-link {
  color: var(--color-grey) !important;
  font-weight: 400;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

/* ======================= HAMBURGER ICON ======================= */
.navbar-toggler {
  border: none;
  background: none;
}

.navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
  background-image: url("lorenzo-gramaccia-artista-visivo-img/linee-hamburgher.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* ======================= OFFCANVAS FULL SCREEN ======================= */
.offcanvas-glass {
  --bs-offcanvas-width: 100vw;
  --bs-offcanvas-bg: var(--color-white);
  position: fixed;
  inset: 0;
  height: 100svh;
  border-radius: 0;
  color: var(--color-black-light);
  overflow: hidden;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.offcanvas-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  pointer-events: none;
}

.offcanvas-glass .offcanvas-header,
.offcanvas-glass .offcanvas-body {
  position: relative;
  z-index: 1;
}

.offcanvas-glass .offcanvas-header {
  padding: 0.3rem 1.5rem;
}

.offcanvas-glass .offcanvas-body {
  padding: 2rem 1rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.offcanvas-glass .nav-link {
  color: var(--color-black) !important;
  opacity: 0.95;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
}

.offcanvas-glass .nav-link:hover {
  opacity: 1;
}

.offcanvas-body .nav-link {
  opacity: 0;
  transform: translateY(20px);
}

/* ======================= CLOSE BUTTON ======================= */
.btn-close.btn-close-white {
  color: var(--color-black) !important;
}

.btn-close.btn-close-white:hover {
  opacity: 1;
}

/* ======================= RESPONSIVE FONT ======================= */
@media (max-width: 640px) {
  .fs-4 {
    font-size: calc(1.275rem + 2vw) !important;
  }
}

/* ======================= FOCUS STATES ======================= */
:focus,
:focus-visible,
.btn:focus,
.navbar-toggler:focus,
.nav-link:focus,
.btn-close:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

.noscroll {
  overflow: hidden !important;
  height: 100% !important;
}

/* ===================================================================== 
======================= HOMEPAGE LORENZO ===============================
======================================================================== */

/* ===================================================================== 
======================= HERO SECTION ===============================
======================================================================== */

.hero-section {
  position: relative;
}

.hero {
  height: 100vh;
  margin: 0;
  position: relative;
  width: 100%;
}

.hero-frame {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame .hero-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  will-change: transform, width, height;
}

.container-fluid {
  --bs-gutter-x: 0rem !important;
  padding: 0 !important;
  margin: 0 !important;
}

.container-mobile {
  padding: 0 !important;
  margin: 0 !important;
}

/* ======================= BOX HERO ======================= */

.box-colonne-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.box-title {
  width: 100%;
  text-align: center;
}

/* ======================= TITOLI HERO ======================= */

h1 {
  font-size: 80px;
  letter-spacing: -2px;
  font-weight: 300;
  font-family: var(--font-title);
  line-height: 6rem;
  color: var(--color-white);
  margin: 0;
}

/* ======================= MEDIA QUERY HERO ======================= */

@media (max-width: 1100px) {
  .hero,
  .hero-frame {
    height: 90vh;
  }
}

@media (max-width: 1025px) {
  h1 {
    font-size: 160px;
    letter-spacing: -10px;
    line-height: 10rem;
  }
}

@media (max-width: 821px) {
  h1 {
    font-size: 140px;
    letter-spacing: -8px;
    line-height: 8rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 120px;
    letter-spacing: -14px;
    line-height: 8rem;
  }
}

@media (max-width: 575.98px) {
  .hero,
  .hero-frame {
    height: 100vh;
  }

  .hero-frame .hero-img {
    object-position: center;
  }
}

@media (max-width: 541px) {
  h1 {
    font-size: 100px;
    letter-spacing: -3px;
    line-height: 7rem;
  }

  .box-title {
    margin-bottom: 10%;
  }
}

@media (max-width: 440px) {
  .hero,
  .hero-frame {
    height: 90vh;
  }

  .hero-frame .hero-img {
    width: 130%;
    height: 130%;
  }

  h1 {
    font-size: 40px;
    letter-spacing: -3px;
    line-height: 4rem;
  }
}

@media (max-width: 390px) {
  .hero,
  .hero-frame {
    height: 90vh;
  }

  .hero-frame .hero-img {
    width: 140%;
    height: 140%;
  }
}

/* ======================= SECTION 2 ======================= */
.section-2 {
  padding-bottom: 2%;
}

.h2 {
  max-width: 530px;
  margin: 0 auto;
}

.box-text-1 {
  color: var(--color-grey);
  max-width: 766px;
  margin: 0 auto;
}

/* ======================= SECTION 3 ======================= */
.section3 {
  height: 300vh;
  background: transparent;
  color: var(--color-white);
  position: relative;
}

@media (min-width: 1580px) {
  .section3 {
    height: 250vh;
  }
}

.section3 .final-block {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  height: 90vh;
  width: 90%;

  border-radius: var(--border-radius-none);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: center;
  padding-bottom: 15%;
  background-image: url("lorenzo-gramaccia-artista-visivo-img/test2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 1580px) {
  .section3 .final-block {
    height: 80vh;
    padding-bottom: 10%;
  }
}

@media (max-width: 540px) {
  .section3 .final-block {
    background-image: none !important;
    background-color: var(--color-black);
  }
}

.section3 .final-block p {
  color: var(--color-white);
  font-size: var(--font-size);
  max-width: 700px;
  line-height: 1.6;
  padding: 0 20px;
}

.section3 .title {
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 10;
  text-align: center;
}

@media (min-width: 1580px) {
  .section3 .title {
    top: 400px;
  }
}

.container-random {
  position: absolute;
  border-radius: var(--border-radius-none);
  opacity: 0.9;
}

.item-1 {
  background-image: url("lorenzo-gramaccia-artista-visivo-img/1.webp");
}
.item-2 {
  background-image: url("lorenzo-gramaccia-artista-visivo-img/2.webp");
}
.item-3 {
  background-image: url("lorenzo-gramaccia-artista-visivo-img/3.webp");
}
.item-4 {
  background-image: url("lorenzo-gramaccia-artista-visivo-img/4.webp");
}
.item-5 {
  background-image: url("lorenzo-gramaccia-artista-visivo-img/5.webp");
}
.item-6 {
  background-image: url("lorenzo-gramaccia-artista-visivo-img/6.webp");
}
.item-7 {
  background-image: url("lorenzo-gramaccia-artista-visivo-img/7.webp");
}
.item-8 {
  background-image: url("lorenzo-gramaccia-artista-visivo-img/8.webp");
}
.item-9 {
  background-image: url("lorenzo-gramaccia-artista-visivo-img/9.webp");
}
.item-10 {
  background-image: url("lorenzo-gramaccia-artista-visivo-img/10.webp");
}
.item-11 {
  background-image: url("lorenzo-gramaccia-artista-visivo-img/11.webp");
}

/* ======================= BREAKPOINT 1024px ======================= */
@media (max-width: 1025px) {
  .section3 {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    padding-bottom: 8rem;
  }

  .section3 .title {
    position: relative;
    top: 600px;
    left: auto;
    transform: none;
    margin-bottom: 4rem;
    text-align: center;
  }

  .item-1,
  .item-2,
  .item-4 {
    background-position: center;
    background-size: cover;
  }

  .item-3,
  .item-5,
  .item-6,
  .item-7,
  .item-8,
  .item-9,
  .item-10,
  .item-11 {
    display: none !important;
  }

  .section3 .container-random {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 500px !important;
    height: 500px !important;

    background-size: cover;
    background-position: center;
  }

  .section3 .container-random + .container-random {
    margin-top: 3rem;
  }

  .section3 .final-block {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    height: 50vh;
    width: 90%;
  }
}

@media (max-width: 768px) {
  .section3 .title {
    top: 500px;
  }

  .section3 .final-block {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    height: 60vh;
  }
}

@media (max-width: 540px) {
  .section3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0 2rem 0;
    margin-top: 4rem;
  }

  .section3 .title {
    position: static; /* torna nel normale flusso del documento */
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 0rem;
    text-align: center;
  }

  .item-1,
  .item-2,
  .item-4 {
    display: inline;
  }

  .item-3,
  .item-5,
  .item-6,
  .item-7,
  .item-8,
  .item-9,
  .item-10,
  .item-11 {
    display: none !important;
  }

  .section3 .container-random {
    position: relative;
    width: 90vw;
    height: 90vw;
    max-width: 340px;
    max-height: 340px;
    background-size: cover;
    background-position: center;
    transform: none !important; /* ferma qualsiasi animazione residua */
  }

  .section3 .final-block {
    height: 100%;
    margin-top: 2rem;
    width: 92%;

    padding-bottom: 3rem;
    background-color: transparent;
  }
}

@media (max-width: 400px) {
  .section3 .final-block {
    height: 100%;
    margin-top: 2rem;
    width: 92%;
    border-radius: 24px;
    padding-bottom: 2rem;
  }
}

/* ======================= SECTION 6 ======================= */
.h2-section-6 {
  color: var(--color-black) !important;
}
.section-6 {
  background-color: var(--color-white);
  padding-top: 10%;
  position: relative;
  z-index: 1;
}

.img-section-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.img-section-6 img {
  width: 400px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius-none);
}

@media (max-width: 540px) {
  .section-6 {
    padding-top: 20%;
  }

  .img-section-6 img {
    width: 350px;
  }
}

/* =========================================================================== 
================================== PAGINA LORENZO=============================
============================================================================= */
.glass-about {
  width: 100%;
  background: var(--color-white);
}

.subnav-wrapper {
  position: fixed;
  top: 46px;
  width: 100%;
  z-index: 999;
  height: auto;
  display: flex;
  align-items: end;
  padding: 40px 10px 20px 10px;
  background-color: var(--color-white);
}

@media (max-width: 820px) {
  .subnav-wrapper {
    top: 40px;
  }
}

.subnav {
  display: flex;
  gap: 40px;
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  max-width: 1240px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.subnav::-webkit-scrollbar {
  display: none;
}

.subnav-link {
  position: relative;
  padding-bottom: 10px;
  font-size: 15px;
  text-decoration: none;
  color: #9b9b9b;
  transition: color 0.25s ease;
}

.subnav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--color-black);
}

.subnav-link.active {
  color: var(--color-black);
  font-weight: 500;
}

.subnav-link:hover {
  color: var(--color-black);
  font-weight: 500;
}

.subnav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--color-black);
}

/* ======================= HERO ======================= */

.hero-about {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
  border-radius: var(--border-radius-none);
  margin-top: 3rem;
}

@media (max-width: 820px) {
  .hero-about {
    height: 350px;
  }
}

@media (max-width: 540px) {
  .hero-about {
    height: 100%;
    object-fit: contain;
  }
}

.box-container-bio {
  max-width: 920px;
  margin: 0 auto;
}

/* ======================= SECTION 1 ======================= */
.dark {
  background-color: #1f1f1f;
}

.grey-light {
  background-color: #f5f5f5;
}

.container-section-1 {
  max-width: 920px;
  margin: 0 auto;
}

.border-section-1 {
  border-bottom: 1px solid #9b9b9b;
  opacity: 0.6;
}

.title-section-1 {
  color: var(--color-black);
}

.img-section-1-about {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}

.button-tutte-le-mostre {
  color: var(--color-black) !important;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 0.3rem;
}

.button-tutte-le-mostre:hover {
  color: var(--color-black-light) !important;
  border-bottom: 1px solid var(--color-black-light);
  padding-bottom: 0.3rem;
}

/* ======================= SECTION 2 ======================= */
.border-section-2 {
  border-bottom: 1px solid black;
}

/* ======================= SECTION 3 ======================= */
.title-section-3 {
  color: var(--color-black);
}
.slider-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.asymmetric-slider {
  position: relative;
  width: 100%;
  max-width: 920px;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 0.5rem;
  transition: transform 0.7s ease;
}

.card {
  flex: 0 0 24%;
  overflow: hidden;
  border: none;
  background-color: var(--color-white);
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  transition: all 0.7s ease;
  height: 620px;
}

.card.hero {
  flex: 0 0 50%;
}

.image-wrapper {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-none);
  object-fit: cover;
  transition: all 0.6s ease;
}

.card {
  --bs-card-border-radius: 0px !important;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.overlay-text {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin: 1rem;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-text::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: white;
}

.overlay-text::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: white;

  transform: rotate(90deg);
}

.overlay-text:hover {
  background: var(--color-black);
  transform: scale(1.05);
}

.card-content {
  padding: 1rem;
  display: flex;
  max-width: 350px;
  flex-direction: column;
  gap: 0rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.h4-section-3 {
  color: var(--color-black) !important;
  font-weight: 500;
}

.p-section-3 {
  color: var(--color-black) !important;
}

.card.hero .overlay {
  pointer-events: none;
}

.card.hero .card-content {
  opacity: 1;
  transform: translateY(0);
}

.controls {
  position: absolute;
  bottom: 20%;
  right: 5%;
  display: flex;
  gap: 10px;
}

.button-slider {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;

  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  transition: 0.25s ease;
  font-size: 0;
}

.button-slider::before {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  display: block;
}

#prev::before {
  transform: rotate(135deg);
}

#next::before {
  transform: rotate(-45deg);
}

.button-slider:hover {
  transform: scale(1.02);
}

@media (max-width: 1025px) {
  .asymmetric-slider {
    position: relative;
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
  }
}
@media (max-width: 820px) {
  .slider-section {
    padding: 0;
  }

  .asymmetric-slider {
    width: 90%;
    max-width: 100%;
    overflow: hidden;
  }

  .slider-track {
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .card {
    flex: 0 0 100% !important;

    background: transparent;
    color: white;
  }

  .image-wrapper {
    height: 450px;
  }

  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-content {
    opacity: 1 !important;
    transform: none !important;
    padding: 1.5rem;
  }

  .controls {
    bottom: 10%;
  }

  .overlay-text {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin: 3rem;
    cursor: pointer;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .overlay-text::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
  }

  .overlay-text::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;

    transform: rotate(90deg);
  }
}

@media (max-width: 540px) {
  .card {
    height: 670px;
  }
  .image-wrapper {
    height: 450px;
  }

  .controls {
    bottom: 5%;
  }

  .overlay-text {
    margin: 2rem;
  }
}

@media (max-width: 400px) {
  .card {
    height: 690px;
  }

  .controls {
    bottom: 7%;
  }
}

/* MODALE  */
.modal-opera {
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: var(--border-radius-none);
  overflow: hidden;
  max-height: 80vh;
}

.modal-opera .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-opera .modal-body {
  overflow-y: auto;
  padding: 1rem;
}

.modal-img {
  width: 100%;
  border-radius: var(--border-radius-none);
  object-fit: cover;
  height: 400px;
}

.btn-close-white {
  filter: invert(0);
}

.modal-title {
  font-family: var(--font-title);
  color: var(--color-black) !important;
}

.text-modale {
  font-size: 14px !important;
}

.text-modale-1 {
  font-size: 16px !important;
}

.modal-opera .btn-close:hover {
  background-color: transparent !important;
  opacity: 1;
}

.modal-opera .btn-close:focus {
  background-color: transparent !important;
  box-shadow: none;
  opacity: 1;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.8) !important;
  z-index: 1040 !important;
}

.modal {
  z-index: 1050 !important;
}

body.modal-open {
  overflow: hidden !important;
}

.link-modale {
  color: var(--color-black) !important;
}

.link-modale:hover {
  text-decoration: underline;
}

/* ======================= SECTION 4 ======================= */

.main-contain {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.left-contain {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-contain {
  width: 70%;
}

.img-section-4-about {
  width: 100%;
  height: 900px;
  object-fit: cover;
}

.mobile-img {
  display: none;
}

.hidden-text {
  display: none;
}

.show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  color: var(--color-grey);
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  font-size: 1em;
  padding: 0;
}

.show-more .icon {
  display: inline-block;
  transition: transform 0.7s ease;
  font-size: 24px;
}

.icon {
  margin-bottom: 2px;
}

.show-more.active .icon {
  transform: rotate(405deg);
}

@media (max-width: 820px) {
  .main-contain {
    display: flex;
    gap: 0px;
    align-items: flex-start;
    flex-direction: column;
  }

  .left-contain {
    width: 100%;
  }

  .right-contain {
    width: 100%;
  }

  .desktop-img {
    display: none;
  }

  .mobile-img {
    display: block;
  }

  .img-section-4-about {
    width: 50%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 540px) {
  .img-section-4-about {
    width: 90%;
  }
}

/* ======================= SECTION 6 ======================= */
.title-section-6 {
  color: var(--color-black);
}

.strong-light {
  color: #030303;
}

.text-section-6 {
  color: #9b9b9b;
}

.img-section-6-about {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius-none) !important;
  display: block;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 3/4;
}

@media (max-width: 540px) {
  .img-section-6-about {
    width: 100%;
    height: 100%;
    object-position: center;
    border-radius: 0;
    display: block;
    margin: 0 auto;
  }
}

/* ======================= SECTION 8 ======================= */
.grey {
  background-color: #f5f5f7;
}

/* ======================= SECTION 9 ======================= */

.img-section-9-about {
  width: 40%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  display: block;
  margin: 0 auto;
}

@media (max-width: 540px) {
  .img-section-9-about {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    display: block;
    margin: 0 auto;
  }
}

/* ====================================================================== 
=========================== PAGINA DELLE OPERE============================
=========================================================================*/

/* ======================= SOVRAESPOSIZIONE ======================= */
.data {
  font-size: 14px;
}

.opere-titolo {
  font-size: 44px !important;
  font-weight: 400 !important;
  letter-spacing: -2px !important;
}

.box-testo-opere {
  max-width: 630px;
  margin: 0 auto;
}

.intro-opere {
  color: var(--color-grey-1);
}

#cssportal-grid {
  display: grid;
  grid-template-rows: repeat(7, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 auto;
  height: 100%;
  max-width: 820px;
}

.box-opere {
  border-radius: var(--border-radius-none);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.box-opere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.overlay-opera {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  padding-bottom: 30px;
}

.plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: var(--color-white);
  font-weight: 300;
}

.overlay-opera .text-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: baseline;
}

.titolo-hover {
  font-size: 20px !important;
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
  text-align: center;
  font-family: var(--font-title);
}

.anno-hover {
  font-size: 16px;
  color: var(--color-white);
  margin: 0;
  text-align: center;
}

.info-mobile {
  display: none;
}

@media (min-width: 1025px) {
  .box-opere:hover img {
    transform: scale(1.15);
  }

  .box-opere:hover .overlay-opera {
    opacity: 1;
  }

  .box-opere.clickable {
    cursor: pointer;
  }

  .box-opere:not(.clickable) {
    cursor: default;
  }
}

#div-opere-2023-1 {
  grid-area: 1 / 1 / 2 / 3;
  height: 300px;
}
#div-opere-2023-2 {
  grid-area: 1 / 3 / 2 / 5;
  height: 300px;
}
#div-opere-2023-3 {
  grid-area: 2 / 1 / 3 / 2;
  height: 300px;
}
#div-opere-2023-4 {
  grid-area: 2 / 2 / 3 / 5;
  height: 300px;
}
#div-opere-2023-5 {
  grid-area: 3 / 1 / 4 / 3;
  height: 300px;
}
#div-opere-2023-6 {
  grid-area: 3 / 3 / 4 / 5;
  height: 300px;
}
#div-opere-2023-7 {
  grid-area: 4 / 1 / 5 / 2;
  height: 300px;
}
#div-opere-2023-8 {
  grid-area: 4 / 2 / 5 / 4;
  height: 300px;
}
#div-opere-2023-9 {
  grid-area: 4 / 4 / 5 / 5;
  height: 300px;
}
#div-opere-2023-10 {
  grid-area: 5 / 1 / 6 / 3;
  height: 300px;
}
#div-opere-2023-11 {
  grid-area: 5 / 3 / 6 / 5;
  height: 300px;
}
#div-opere-2023-12 {
  grid-area: 6 / 1 / 7 / 5;
  height: 300px;
}
#div-opere-2023-13 {
  grid-area: 7 / 1 / 8 / 3;
  height: 300px;
}
#div-opere-2023-14 {
  grid-area: 7 / 3 / 8 / 5;
  height: 300px;
}

.toggle-opere-text {
  display: none;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  cursor: pointer;
  color: var(--color-black);
  transition: opacity 0.3s;
}

.toggle-opere-text:hover {
  opacity: 0.7;
}

.toggle-opere-text .arrow {
  display: inline-block;
  width: 12px;
  height: 8px;
  margin-left: 8px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.toggle-opere-text .arrow.rotate {
  transform: rotate(180deg);
}

@media (max-width: 1024px) {
  #cssportal-grid {
    display: block !important;
  }

  .box-opere {
    width: 100%;
    height: auto !important;
    margin-bottom: 20px;
    display: block;
  }

  .box-opere img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .overlay-opera {
    display: none !important;
  }

  .info-mobile {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    padding: 12px 0;
    background-color: transparent;
  }

  .titolo-mobile {
    font-size: 18px !important;
    font-weight: 500;
    color: var(--color-black);
    margin: 0;
  }

  .anno-mobile {
    font-size: 16px;
    color: var(--color-black);
    margin: 0;
  }

  .box-opere.clickable .info-mobile::after {
    content: "+";
    font-size: 20px;
    color: var(--color-black);
    margin-left: 5px;
  }

  #cssportal-grid .extra {
    display: none !important;
  }

  .toggle-opere-text {
    display: block;
  }

  .box-opere.clickable {
    cursor: pointer;
  }
}

@media (max-width: 520px) {
  .opere-titolo {
    font-size: 34px !important;
  }

  .box-opere img {
    height: 250px;
  }

  .box-opere {
    margin-bottom: 18px;
  }
}

/* ======================= ECLISSI======================= */
#cssportal-grid-1 {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 auto;
  height: 100%;
  max-width: 820px;
}

#div-opere-1 {
  grid-area: 1/1/2/2;
  height: 300px;
}
#div-opere-2 {
  grid-area: 1 / 2 / 2 / 5;
  height: 300px;
}
#div-opere-3 {
  grid-area: 2/1/3/2;
  height: 300px;
}
#div-opere-4 {
  grid-area: 2 / 2 / 3 / 4;
  height: 300px;
}
#div-opere-5 {
  grid-area: 2/4/3/5;
  height: 300px;
}
#div-opere-6 {
  grid-area: 3 / 1 / 4 / 5;
  height: 300px;
}
#div-opere-7 {
  grid-area: 4/1/5/2;
  height: 300px;
}
#div-opere-8 {
  grid-area: 4 / 2 / 5 / 4;
  height: 300px;
}
#div-opere-9 {
  grid-area: 4/4/5/5;
  height: 300px;
}

@media (max-width: 1024px) {
  #cssportal-grid-1 {
    display: block !important;
  }

  #cssportal-grid-1 .box-opere {
    width: 100%;
    height: auto !important;
    margin-bottom: 20px;
    display: block;
  }

  #cssportal-grid-1 .box-opere img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  #cssportal-grid-1 .extra {
    display: none !important;
  }
}

@media (max-width: 520px) {
  #cssportal-grid-1 .box-opere img {
    height: 250px;
  }

  #cssportal-grid-1 .box-opere {
    margin-bottom: 18px;
  }
}

/* ======================= SEDIMENTAZIONI ======================= */
#cssportal-grid-2 {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 auto;
  height: 100%;
  max-width: 820px;
}

#div-opere-2020-1 {
  grid-area: 1 / 1 / 2 / 5;
  height: 500px;
}

#div-opere-2020-2 {
  grid-area: 2 / 1 / 3 / 3;
  height: 500px;
}

#div-opere-2020-3 {
  grid-area: 2 / 3 / 3 / 5;
  height: 500px;
}

#div-opere-2020-4 {
  grid-area: 3 / 1 / 4 / 5;
  height: 500px;
}

@media (min-width: 1025px) {
  #cssportal-grid-2 .box-opere:hover img {
    transform: scale(1.15);
  }

  #cssportal-grid-2 .box-opere:hover .overlay-opera {
    opacity: 1;
  }

  #cssportal-grid-2 .box-opere.clickable {
    cursor: pointer;
  }

  #cssportal-grid-2 .box-opere:not(.clickable) {
    cursor: default;
  }
}

@media (max-width: 1024px) {
  #cssportal-grid-2 {
    display: block !important;
  }

  #cssportal-grid-2 .box-opere {
    width: 100%;
    height: auto !important;
    margin-bottom: 20px;
    display: block;
  }

  #cssportal-grid-2 .box-opere img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  #cssportal-grid-2 .overlay-opera {
    display: none !important;
  }

  #cssportal-grid-2 .info-mobile {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    padding: 12px 0;
    background-color: transparent;
  }

  #cssportal-grid-2 .titolo-mobile {
    font-size: 18px !important;
    font-weight: 500;
    color: var(--color-black);
    margin: 0;
  }

  #cssportal-grid-2 .anno-mobile {
    font-size: 16px;
    color: var(--color-black);
    margin: 0;
  }

  #cssportal-grid-2 .box-opere.clickable .info-mobile::after {
    content: "+";
    font-size: 20px;
    color: var(--color-black);
    margin-left: 5px;
  }

  #cssportal-grid-2 .box-opere.clickable {
    cursor: pointer;
  }
}

@media (max-width: 520px) {
  #cssportal-grid-2 .box-opere img {
    height: 250px;
  }

  #cssportal-grid-2 .box-opere {
    margin-bottom: 18px;
  }
}

/* ======================= FINAL SECTION ======================= */
.black {
  background-color: #1d1d1d;
}

#p-light {
  color: var(--color-grey-1);
}

#p-white {
  color: var(--color-white);
}

/* =========================================================================== 
================================== PAGINA OPERA=============================
============================================================================= */

/* ======================= HERO SECTION ======================= */
.hero-opera {
  height: 850px;
  display: flex;
  align-items: end;
  justify-content: start;
  position: relative;
}

.box-title-hero-opera {
  min-height: 200px;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0.5rem;
  z-index: 10;
  position: relative;
  padding-bottom: 120px;
}

.title-opera-lorenzo {
  font-size: 80px;
  color: #030303 !important;
  line-height: 80px;
  letter-spacing: -5px;
}

.text-hero-opera {
  color: var(--color-black-light) !important;
}

.img-opera-hero {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 600px;
  z-index: 1;
}

.img-opera-hero-orizzontale {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: auto;
  z-index: 1;
}

.img-opera-hero-quadrata {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 850px;
  height: auto;
  z-index: 1;
}

.button-dettagli {
  background-color: transparent !important;
  border: none;
  color: var(--color-black-light) !important;
  padding: 0 !important;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-bottom: 1px solid var(--color-black-light);
  padding-bottom: 2px !important;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.button-dettagli:hover {
  background-color: transparent !important;
}

.arrow-container {
  display: flex;
  align-items: center;
  line-height: 1;
}

.arrow-dettagli {
  width: 10px;
  height: auto;
  transition: transform 0.3s ease;
}

.button-dettagli.active .arrow-dettagli {
  transform: rotate(180deg);
}

.dettagli-content {
  position: absolute;
  bottom: 0;
  left: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
  margin-top: 0;
}

.dettagli-content.active {
  max-height: 150px;
  opacity: 1;
}

.dettagli-paragraph {
  color: var(--color-black-light);
}

@media (max-width: 1199px) {
  .hero-opera {
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 3rem;
  }

  .img-opera-hero {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 1;
    width: auto;
    height: 600px;
    z-index: 1;
  }

  .img-opera-hero-orizzontale {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 1;
    width: 600px;
    height: auto;
    z-index: 1;
  }

  .img-opera-hero-quadrata {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 1;
    width: 650px;
    height: auto;
    z-index: 1;
  }

  .box-title-hero-opera {
    position: relative;
    height: auto;
    min-height: auto;
    max-width: 100%;
    align-items: center;
    text-align: center;
    order: 2;
    z-index: 10;
    padding-bottom: 0;
  }

  .dettagli-content {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 0.5rem;
  }

  .title-opera-lorenzo {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -3px;
  }
}

@media (max-width: 767px) {
  .hero-opera {
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .title-opera-lorenzo {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -2px;
  }
}

@media (max-width: 479px) {
  .hero-opera {
    gap: 0.5rem;
  }

  .title-opera-lorenzo {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1px;
  }

  .img-opera-hero {
    width: auto;
    height: 450px;
  }

  .img-opera-hero-orizzontale {
    width: 400px;
    height: auto;
  }

  .img-opera-hero-quadrata {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 1;
    width: 600px;
    height: auto;
    z-index: 1;
  }
}

.button-opera {
  margin: 15rem 0;
  background-color: transparent !important;
  color: var(--color-black-light) !important;
  border-bottom: 1px solid var(--color-black-light);
  font-weight: 500;
  padding: 0.3rem 0.3rem;
}

.button-opera:hover {
  background-color: transparent !important;
}

.button-opera-up {
  margin: 1.5rem 0 12rem 0;
  background-color: transparent !important;
  color: var(--color-black-light) !important;
  border-bottom: 1px solid var(--color-black-light);
  font-weight: 500;
  padding: 0.3rem 0.3rem;
}

.button-opera-up:hover {
  background-color: transparent !important;
}

@media (max-width: 479px) {
  .button-opera-up {
    margin: 7rem 0 10rem 0;
    background-color: transparent !important;
    color: var(--color-black-light) !important;
    border-bottom: 1px solid var(--color-black-light);
    font-weight: 500;
    padding: 0.3rem 0.3rem;
  }

  .button-opera-up:hover {
    background-color: transparent !important;
  }
}

/* =======================  SECTION 1 ======================= */
.box-section-1-opera {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 810px;
  margin: 0 auto;
}

.box-section-1-opera p:nth-child(1) {
  opacity: 1;
}

.box-section-1-opera p:nth-child(2) {
  opacity: 0.7;
}

.box-section-1-opera p:nth-child(3) {
  opacity: 0.4;
}

.box-section-1-opera p:nth-child(4) {
  opacity: 0.2;
}

/* =======================  SECTION 2 ======================= */

.img-section-2-opera {
  width: 100%;
  height: 450px;
  object-position: center;
  object-fit: cover;
}

/* =======================  SECTION 4 ======================= */

.slide-empty {
  background: transparent;
}

.splide__slide {
  height: 550px;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splide__track {
  cursor: grab;
}

.splide__track:active {
  cursor: grabbing;
}

.splide__pagination {
  position: relative;
  bottom: -50px !important;
  margin-top: 1.5rem;
  padding: 0;
}

.splide__pagination__page {
  background: var(--color-grey-1) !important;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
  margin: 0 4px;
  cursor: pointer;
}

.splide__pagination__page.is-active {
  background: var(--color-black) !important;
  transform: scale(1.3);
}

@media (min-width: 1200px) {
  .splide__pagination__page:first-child {
    display: none;
  }
}

@media (max-width: 768px) {
  .splide__slide {
    height: 450px;
  }

  .splide__list {
    align-items: center;
  }

  .splide__pagination {
    margin-top: 1rem;
  }
}

/* ======================================================================= 
=========================== CONTATTO ====================================
======================================================================== */

.title-contatto {
  margin-top: 3rem;
  color: var(--color-black) !important;
  font-size: 36px !important;
}

@media (max-width: 540px) {
  .title-contatto {
    margin-top: 3rem;
  }
}

.text-email {
  color: #6e6e6e !important;
  font-size: 18px !important;
}

.contact-form {
  width: 100%;
}

.form-group {
  position: relative;
  margin-bottom: 0;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--color-black);
  background-color: transparent;
  font-family: var(--font-site);
  font-size: 18px;
  color: #6e6e6e;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--color-black);
}

.form-label {
  position: absolute;
  left: 0;
  top: 12px;
  font-family: var(--font-site);
  font-size: 18px;
  color: #6e6e6e;
  pointer-events: none;
  transition: opacity 0.2s ease;
  opacity: 1;
}

.form-label.hidden {
  opacity: 0;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
  cursor: pointer;
}

.form-select::-ms-expand {
  display: none;
}

.form-textarea {
  resize: none;
  padding-top: 12px;
}

.btn-submit {
  background-color: var(--color-black);
  color: var(--color-white);
  border: none;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-site);
  font-size: 16px;
  border-radius: var(--border-radius-none);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--color-black-light);
}

.email-contatto {
  color: #6e6e6e !important;
  font-size: 18px !important;
}

@media (max-width: 768px) {
  .contact-form {
    margin-top: 40px;
  }
}

/* ======================================================================== 
============================== PRIVACY =======================================
=========================================================================== */

.h1-privacy {
  color: var(--color-black-light);
}

.subtitle-cookies {
  color: var(--color-black-light);
}
/* ======================================================================== 
============================== FOOTER =======================================
=========================================================================== */
.footer {
  background-color: #1d1d1d;
  color: var(--color-white);
}

.footer-size {
  max-width: 1100px;
}

.footer-link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 15px;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-link-privacy {
  color: var(--color-white);
  text-decoration: none;
  font-size: 12px !important;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-menu li {
  margin-bottom: 0.4rem;
}

.social-icon {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.newsletter-input {
  border-radius: var(--border-radius-none);
  padding: 0.3rem 0.6rem;
  border: none !important;
  width: 70%;
}

.newsletter-btn {
  border-radius: var(--border-radius-none);
  padding: 0.3rem 1rem;
  background: var(--color-grey);
  color: var(--color-white);
  border: none;
}

.footer-logo {
  width: 120px;
}

.footer-text {
  font-size: 14px;
  color: var(--color-white);
}

.small {
  color: var(--color-white);
}

.link-footer {
  color: var(--color-white);
  text-decoration: underline !important;
  font-size: 12px;
}

.border-top {
  color: #6c6c6c !important;
}

@media (max-width: 1024px) {
  .newsletter-input {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-size {
    max-width: 330px;
  }
}
