.footer-section {
  position: relative;
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  align-self: stretch;
  background-color: var(--primary-300);
  z-index: 1;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/13334.jpg");
  background-position: center;
  background-size: cover;
  opacity: 4%;
  z-index: -1;
}

.logo-footer {
  width: 80px;
  height: 80px;
  aspect-ratio: 1/1;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  align-self: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}

.footer-links h4 {
  color: var(--primary-50);
  font-family: "Taviraj", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; 
}

.footer-links a {
  color: var(--primary-50);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: max-content;
  display: flex;
  align-items: center;
}
.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .social {
    gap: 4px;
}

/* <- screens above 481px (BIGGER CELLPHONES) -> */

@media screen and (min-width: 481px) {
}

/* <- screens above 768px (TABLETS) -> */

@media screen and (min-width: 768px) {
  .footer-section {
    padding: 32px;
    gap: 32px;
  }

  .footer-links h4 {
    font-size: 20px;
  }

  .footer-links a {
    font-size: 16px;
  }
}

/* <- screens above 1024px (SMALL DESKTOP) -> */

@media screen and (min-width: 1024px) {
  .footer-section {
    gap: 32px;
    flex-direction: row;
    padding: 50px 100px;
    justify-content: space-around;
  }

  .logo-footer {
    width: 162px;
    height: 162px;
    aspect-ratio: 1/1;
  }
  
}

/* <- screens above 12001px (BIGGER DESKTOP) -> */

@media screen and (min-width: 1201px) {
}

/* <- screens above 1600px (ULTRA-WIDE) -> */

@media screen and (min-width: 1600px) {
}

