@import url("https://fonts.googleapis.com/css2?family=Give+You+Glory&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  /* Colors */
  --body-color: #ece8e5;
  --section-color: #e6dccf;
  --dark-brown: #453728;
  --medium-brown: #e6dccf;
  --red-color: #b86d65;
  --text-color-brown: #8e745a;
  --text-color-white: #ece8e5;
  --text-color-blue: #4771b5;
  --white-box: #fef7ee;

  /* Fonts */
  --font-title: "Old Standard TT", serif;
  --font-title-cursive: "Give You Glory", cursive;
  --font-text: "Red Hat Display", sans-serif;

  /* Sizes */
  --100px: 100px;
  --50px: 50px;
  --42px: 42px;
  --35px: 35px;
  --30px: 30px;
  --25px: 25px;
  --20px: 20px;
  --18px: 18px;
  --16px: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-text);
  background-color: var(--body-color);
  color: var(--text-color-brown);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

p {
  font-size: var(--18px);
  color: var(--text-color-brown);
  line-height: 1.1;
  font-weight: 600;
}

@media (max-width: 490px) {
  p {
    font-size: var(--16px);
  }
}

h1 {
  font-size: 38px;
  color: var(--text-color-blue);
  font-family: var(--font-title);
  line-height: 1;
}

@media (max-width: 820px) {
  h1 {
    font-size: var(--30px);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: var(--25px);
  }
}

h2 {
  font-size: 38px;
  color: var(--text-color-blue);
  font-family: var(--font-title);
  line-height: 1;
}

@media (max-width: 820px) {
  h2 {
    font-size: var(--30px);
  }
}

@media (max-width: 420px) {
  h2 {
    font-size: var(--25px);
  }
}

h3 {
  font-size: 30px;
  color: var(--text-color-blue);
  font-family: var(--font-title-cursive);
}

@media (max-width: 820px) {
  h3 {
    font-size: var(--25px);
  }
}

h4 {
  font-size: var(--50px);
  color: var(--text-color-brown);
  font-family: var(--font-text);
}

@media (max-width: 480px) {
  h4 {
    font-size: var(--35px);
  }
}

h5 {
  font-size: var(--18px);
  color: var(--text-color-brown);
  font-family: var(--font-text);
}

@media (max-width: 480px) {
  h5 {
    font-size: var(--16px);
  }
}

h6 {
  font-size: var(--18px);
  color: var(--text-color-brown);
  font-family: var(--font-text);
  font-weight: 700;
}

@media (max-width: 480px) {
  h6 {
    font-size: var(--16px);
  }
}

@media (min-width: 1450px) {
  html {
    font-size: 110%;
  }

  .container {
    max-width: 1400px !important;
  }
}

@media (min-width: 1800px) {
  html {
    font-size: 120%;
  }

  .container {
    max-width: 1450px !important;
  }
}

@media (min-width: 2400px) {
  html {
    font-size: 140%;
  }

  .container {
    max-width: 1750px !important;
  }
}

button {
  border: 1px solid transparent;
  color: var(--body-color);
  font-size: var(--18px);
  font-family: var(--font-text);
  background-color: var(--red-color);
  max-width: max-content;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

button:hover {
  background-color: var(--body-color);
  color: var(--text-color-brown);
  border: 1px solid var(--red-color);
}

.button-brown {
  border: 1px solid var(--text-color-brown) !important;
  background-color: transparent !important;
  color: var(--text-color-brown);
  font-weight: 500 !important;
}

@media (max-width: 490px) {
  button {
    font-size: var(--16px);
  }

  .button-brown {
    font-size: var(--16px);
  }
}

.button-white {
  background-color: var(--body-color) !important;
  color: var(--red-color) !important;
  padding: 0.5rem 3rem !important;
}

/* ========================================
   =========== HEADER OMPATH TRAVEL =======
   ======================================== */

.ompath-header {
  background: var(--body-color);
  border-top: none;
  border-bottom: none;
  padding: 0.5rem;
  position: fixed;
  top: 1%;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
  will-change: transform;
}

.ompath-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0rem;
  right: 0rem;
  height: 1px;
  background-color: var(--dark-brown);
}

.ompath-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0rem;
  right: 0rem;
  height: 1px;
  background-color: var(--dark-brown);
}

.navbar {
  padding: 0;
}

.container-fluid {
  position: relative;
}

.logo-img {
  height: 30px;
  width: auto;
  transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
  .logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .left-nav {
    margin-right: auto;
  }

  .right-nav {
    margin-left: auto;
  }
}

.nav-link {
  color: var(--dark-brown);
  font-family: var(--font-text);
  font-size: var(--18px);
  font-weight: 500;
  padding: 0.5rem 2rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  text-decoration: underline;
}

.navbar-nav .button {
  margin: 0;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238e745a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 28px;
  height: 28px;
}

.offcanvas-end {
  width: 75vw;
  height: 100vh !important;
  background-color: var(--body-color);
  border-left: 1px solid var(--text-color-brown);
  top: 0 !important;
  bottom: 0;
}

@media (max-width: 575px) {
  .offcanvas-end {
    width: 100vw;
    height: 100vh !important;
  }
}

.offcanvas-header {
  border-bottom: 1px solid var(--text-color-brown);
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.logo-img-mobile {
  height: 32px;
  width: auto;
}

.btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238e745a'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  opacity: 1;
  width: 1.5rem;
  height: 1.5rem;
}

.btn-close:focus {
  box-shadow: none;
  outline: none;
}

.offcanvas-body {
  padding: 2rem 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

.nav-link-mobile {
  color: var(--text-color-brown);
  font-family: var(--font-text);
  font-size: var(--18px);
  font-weight: 500;
  padding: 1rem 0;
  display: block;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(142, 116, 90, 0.2);
}

.nav-link-mobile:hover {
  color: var(--red-color);
}

.nav-item:last-child .nav-link-mobile {
  border-bottom: none;
}

.offcanvas-body .button {
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
}

@media (max-width: 1199px) {
  body {
    padding-top: 85px;
  }

  .ompath-header {
    padding: 1rem 0 0.5rem 0;
  }

  .ompath-header::before,
  .ompath-header::after {
    left: 1rem;
    right: 1rem;
  }

  .logo-center {
    position: static;
    transform: none;
  }

  .logo-img {
    height: 42px;
  }

  .offcanvas-end {
    --bs-offcanvas-width: 100vw !important;
    --bs-offcanvas-zindex: 10000 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: var(--body-color);
    border-left: 1px solid var(--text-color-brown);
    top: 0 !important;
    bottom: 0;
  }

  .offcanvas-backdrop {
    display: none !important;
  }
}

@media (max-width: 575px) {
  body {
    padding-top: 50px;
  }

  .ompath-header {
    padding: 0.3rem 0;
    top: 0%;
  }

  .ompath-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0rem;
    right: 0rem;
    height: 1px;
    background-color: transparent;
  }

  .logo-img {
    height: 30px;
  }

  .logo-img-mobile {
    height: 30px;
  }

  .ompath-header::before,
  .ompath-header::after {
    left: 0.75rem;
    right: 0.75rem;
  }
}

html {
  scroll-padding-top: 100px;
}

.js-underline-draw {
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* nascosta da destra */
  will-change: clip-path, opacity;
}

/* ========================================
   =============SUB MENU===============
   ======================================== */
.submenu-fixed {
  position: fixed;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 680px;
  width: 100%;
  z-index: 999;
  background-color: var(--body-color);
  padding: 0.5rem 1rem 0 1rem;
}

.submenu-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

.submenu-list li {
  margin: 0;
}

.submenu-list a {
  color: var(--dark-brown);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--18px);
  padding: 5px 20px;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.submenu-list a:hover {
  border-bottom: 2px solid var(--dark-brown);
}

.submenu-list a.active {
  border-bottom: 1px solid var(--red-color);
  color: var(--red-color);
}

@media (max-width: 1199px) {
  .submenu-fixed {
    top: 110px;
  }
}

@media (max-width: 768px) {
  .submenu-fixed {
    top: 90px;
    max-width: 100%;
    padding: 0 1rem;
  }

  .submenu-list {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
    gap: 15px 10px; /* 15px verticale, 10px orizzontale */
  }

  .submenu-list li {
    margin: 0;
  }

  .submenu-list a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

@media (max-width: 575px) {
  .submenu-fixed {
    top: 50px;
    max-width: 100%;
    padding: 1rem 1rem 0 1rem;
  }
  .submenu-list {
    gap: 20px 8px; /* Ancora più spazio verticale su mobile */
  }
}

/* ========================================
   =============HERO SECTION===============
   ======================================== */
.hero-section {
  padding: 12% 0 10% 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.box-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 500px;
  text-align: center;
  gap: 1.5rem;
}

.box-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 620px;
  text-align: center;
}

.img-center-hero {
  height: 300px;
  width: auto;
}

.img-hero-dx {
  bottom: 20%;
  right: 15%;
  height: 250px;
}

.img-hero-sx-1 {
  z-index: 1;
  top: 30%;
  left: 15%;
  height: 250px;
}

.img-hero-sx-2 {
  z-index: 0;
  top: 50%;
  left: 5%;
  height: 250px;
}

@media (max-width: 1280px) {
  .img-center-hero {
    height: 300px;
    width: auto;
  }

  .img-hero-dx {
    bottom: 15%;
    right: 10%;
    height: 250px;
  }

  .img-hero-sx-1 {
    z-index: 1;
    top: 30%;
    left: 15%;
    height: 250px;
  }

  .img-hero-sx-2 {
    z-index: 0;
    top: 50%;
    left: 5%;
    height: 250px;
  }
}

@media (min-width: 1600px) {
  .img-center-hero {
    height: 400px;
    width: auto;
  }

  .img-hero-dx {
    bottom: 15%;
    right: 15%;
    height: 300px;
  }

  .img-hero-sx-1 {
    z-index: 1;
    top: 30%;
    left: 15%;
    height: 300px;
  }

  .img-hero-sx-2 {
    z-index: 0;
    top: 50%;
    left: 5%;
    height: 300px;
  }
}

@media (max-width: 1024px) {
  .img-center-hero {
    height: 300px;
    width: auto;
  }

  .img-hero-dx {
    bottom: 25%;
    right: 5%;
    height: 180px;
  }

  .img-hero-sx-1 {
    z-index: 1;
    top: 25%;
    left: 10%;
    height: 180px;
  }

  .img-hero-sx-2 {
    z-index: 0;
    top: 45%;
    left: 2%;
    height: 180px;
  }
}

@media (max-width: 820px) {
  .hero-section {
    padding: 10% 0 15% 0;
  }

  .img-center-hero {
    height: 300px;
    width: auto;
  }

  .img-hero-dx {
    bottom: 25%;
    right: 5%;
    height: 180px;
  }

  .img-hero-sx-1 {
    z-index: 1;
    top: 25%;
    left: 10%;
    height: 180px;
  }

  .img-hero-sx-2 {
    z-index: 0;
    top: 45%;
    left: 2%;
    height: 180px;
  }
}

@media (max-width: 540px) {
  .hero-section {
    padding: 10% 0 15% 0;
  }

  .box-hero {
    padding: 10% 0 5% 0;
  }
  .img-center-hero {
    height: 400px;
    width: auto;
  }

  .img-hero-dx {
    display: none;
  }

  .img-hero-sx-1 {
    display: none;
  }

  .img-hero-sx-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 10% 0 15% 0;
  }

  .box-hero {
    padding: 20% 0 3% 0;
  }
  .img-center-hero {
    height: 400px;
    width: auto;
  }

  .img-hero-dx {
    display: none;
  }

  .img-hero-sx-1 {
    display: none;
  }

  .img-hero-sx-2 {
    display: none;
  }
}

/* ========================================
   =============SECTION 1===============
   ======================================== */
.box-section-1 {
  background-color: var(--medium-brown);
  padding: 5%;
  border-radius: 24px;
}

.title-city {
  font-size: var(--50px) !important;
  position: relative;
  max-width: max-content;
  margin: 0 auto;
}

.icona-venezia {
  position: absolute;
  width: 80px;
  height: auto;
  bottom: -50%;
  left: -30%;
}

.box-city-1 {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10rem;
}

.title-city-box-1 {
  max-width: 540px;
}

.title-coursive {
  position: relative;
  display: inline;
  padding-bottom: 0px;
}

.underline-hero {
  position: absolute;
  bottom: -5px;
  right: 3%;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.img-city {
  height: 450px;
  width: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

.custom-carousel-control {
  position: absolute;
  bottom: 20px;
  top: auto;
  width: auto;
  opacity: 1;
  border: none;
  background: none;
}

.custom-carousel-control:hover,
.custom-carousel-control:focus,
.custom-carousel-control:active,
.custom-carousel-control:focus-visible {
  opacity: 1;
  outline: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
}

.carousel-control-prev.custom-carousel-control {
  left: 50%;
  bottom: -15%;
  transform: translateX(calc(-100% - 10px));
}

.carousel-control-next.custom-carousel-control {
  right: 50%;
  bottom: -15%;
  transform: translateX(calc(100% + 10px));
}

.custom-arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--red-color);
  border-radius: 50%;
}

.custom-arrow-circle img {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .box-section-1 {
    padding: 10% 5%;
    border-radius: 24px;
  }

  .title-city {
    font-size: var(--35px) !important;
  }

  .icona-venezia {
    width: 60px;
    bottom: -50%;
    left: -30%;
  }

  .box-city-1 {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 0 1rem;
  }

  .title-city-box-1 {
    max-width: 100%;
  }

  .box-city-1-dx {
    display: none;
  }

  .carousel-control-prev.custom-carousel-control,
  .carousel-control-next.custom-carousel-control {
    bottom: -25%;
  }

  .custom-arrow-circle {
    width: 45px;
    height: 45px;
  }

  .custom-arrow-circle img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 540px) {
  .carousel-control-prev.custom-carousel-control,
  .carousel-control-next.custom-carousel-control {
    bottom: -28%;
  }

  .custom-arrow-circle {
    width: 30px;
    height: 30px;
  }

  .custom-arrow-circle img {
    width: 14px;
    height: 14px;
  }
}
.parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 10rem;
}

.div1 {
  grid-area: 1 / 1 / 3 / 3;
}

.div2 {
  grid-area: 1 / 3 / 3 / 5;
}

.div3 {
  grid-area: 3 / 1 / 5 / 3;
}

.div4 {
  grid-area: 3 / 3 / 5 / 5;
}

.icona-grid {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.text-grid {
  font-weight: 500;
  font-size: var(--18px);
}

@media (max-width: 1024px) {
  .parent {
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
    margin-top: 10rem !important;
    padding: 0;
    max-width: 640px;
    margin: 0 auto;
  }

  .parent .div1,
  .parent .div2,
  .parent .div3,
  .parent .div4 {
    grid-area: auto;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 1.5rem !important;
  }

  .parent .icona-grid {
    width: 60px;
  }

  .parent .row {
    width: 100%;
  }

  .parent .text-grid {
    text-align: center;
  }

  .parent h6 {
    text-align: center;
  }

  .text-grid {
    font-weight: 500;
    font-size: var(--16px);
  }
}

@media (max-width: 769px) {
  .parent {
    grid-template-columns: 1fr;
    grid-row-gap: 3rem;
    margin-top: 7rem !important;
    padding: 0;
    max-width: 640px;
    margin: 0 auto;
  }
}

.button-grid {
  max-width: 380px;
  padding: 3%;
}

.text-coursive {
  font-family: var(--font-title-cursive);
  color: var(--text-color-white);
  font-size: var(--25px);
  letter-spacing: 2px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.text-grid-button {
  color: var(--text-color-white);
  font-size: var(--16px);
  font-weight: 400;
  transition: color 0.3s ease;
}

.button-grid:hover .text-coursive,
.button-grid:hover .text-grid-button {
  color: var(--red-color) !important;
}

@media (max-width: 540px) {
  .text-coursive {
    font-size: var(--20px);
  }
}

.modal-content {
  background-color: var(--medium-brown);
  border: none;
}

.modal-title {
  font-weight: bold;
}

.text-modal {
  font-size: var(--16px);
  font-weight: 400;
}

.img-modale {
  width: 100%;
  height: auto;
}

/* ========================================
   =============SECTION 2===============
   ======================================== */
.box-section-2 {
  background-color: var(--white-box);
  padding: 7% 5% 5% 5%;
  border-radius: 24px;
}

.icona-toscana {
  position: absolute;
  width: auto;
  height: 80px;
  bottom: 15%;
  left: -15%;
}

@media (max-width: 540px) {
  .icona-toscana {
    position: absolute;
    width: auto;
    height: 40px;
    bottom: 15%;
    left: -15%;
  }
}

.icona-grid-calice {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .icona-grid-calice {
    width: 30px;
    height: auto;
    flex-shrink: 0;
  }
}

/* ========================================
   =============SECTION 3===============
   ======================================== */

.icona-roma {
  position: absolute;
  width: 80px;
  height: auto;
  bottom: -25%;
  left: -30%;
}

@media (max-width: 540px) {
  .icona-roma {
    position: absolute;
    width: 60px;
    height: auto;
    bottom: -25%;
    left: -30%;
  }
}

/* ========================================
   =============SECTION 4===============
   ======================================== */

.icona-puglia {
  position: absolute;
  width: 80px;
  height: auto;
  bottom: -25%;
  left: -40%;
}

@media (max-width: 1024px) {
  .icona-puglia {
    position: absolute;
    width: 80px;
    height: auto;
    bottom: -25%;
    left: -70%;
  }
}

@media (max-width: 540px) {
  .icona-puglia {
    position: absolute;
    width: 50px;
    height: auto;
    bottom: -25%;
    left: -35%;
  }
}

/* ========================================
   =============SECTION 5===============
   ======================================== */

.icona-terre {
  position: absolute;
  width: 80px;
  height: auto;
  bottom: -25%;
  left: -20%;
}

@media (max-width: 1024px) {
  .icona-terre {
    position: absolute;
    width: 50px;
    height: auto;
    bottom: -25%;
    left: -25%;
  }
}

@media (max-width: 540px) {
  .icona-terre {
    position: absolute;
    width: 50px;
    height: auto;
    bottom: -25%;
    left: -15%;
  }
}

/* ======================================== 
=============== FOOTER ================ 
======================================== */
footer {
  position: relative;
  background-color: var(--red-color);
  padding-bottom: 2rem;
  overflow-x: hidden;
  margin-top: 3rem;
}

.img-footer-wave {
  position: absolute;
  top: 0%;
  height: 100px;
  width: 150%;
}

.box-footer {
  padding-top: 10rem;
  padding-bottom: 3rem;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.box-footer-1 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.title-footer {
  color: var(--body-color) !important;
  max-width: 350px;
}

.coursive-title-footer {
  font-family: var(--font-title-cursive);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-link img {
  width: 22px;
  height: 22px;
}

.box-footer-2 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4rem;
  height: 100%;
}

.box-pagine-1,
.box-pagine-2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-footer {
  color: var(--body-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.link-footer:hover {
  opacity: 0.7;
}

.footer-bottom {
  margin-top: 2rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--body-color);
  margin: 2rem 0 1.5rem;
}

.footer-credits {
  text-align: center;
  color: var(--body-color);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .box-footer {
    padding-top: 8rem;
  }

  .box-footer-1 {
    margin-bottom: 3rem;
  }

  .box-footer-2 {
    justify-content: flex-start;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  footer {
    margin-top: 3rem;
  }

  .box-footer {
    padding-top: 6rem;
  }

  .img-footer-wave {
    position: absolute;
    top: 0%;
    width: 500px;
    height: auto;
  }

  .box-footer-2 {
    gap: 2rem;
  }

  .social-link img {
    width: 22px;
    height: 22px;
  }
}
