/* footer */

.footer {
  padding: 20px;
  background-color: white;
  height: 370px;
  /* Ensure the footer has a fixed height to position elements properly */
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}

.footer-left {
  max-width: 150px;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer a {
  padding-top: 10px;
  margin: 0px;
  font-size: 15px;
  text-decoration: none;
  color: #434343;
}

.footer a:first-of-type {
  padding-top: 12px;
}

.footer-center {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 100%;
}

.footer-left .logo {
  width: 50px;
  /* Adjust size accordingly */
}

.footer-left .contact-email {
  color: #707070;
  margin-top: auto;
  margin-bottom: 0;
}

.footer-center .social-icons {
  display: flex;
  gap: 10px;
}

.social-icon img {
  width: 24px;
  /* Adjust size accordingly */
  height: 24px;
}

.footer-right .footer-links {
  list-style: none;
  padding: 0;
  text-align: right;
}

.footer-right .footer-links li {
  margin: 10px 0;
}

.footer-right a {
  text-decoration: none;
  color: #434343;
  font-size: 15px;
}

.social-icons-left {
  display: none;
}

.mobile-view {
  display: none;
}

@media (max-width: 1200px) {
  /* footer */
  .footer {
    padding: 32px 0 20px;
  }

  .footer-left {
    max-width: 40px;
  }

  .footer-flex {
    gap: 15px;
  }

  .footer-center {
    display: none;
  }

  .footer a {
    font-size: 12px;
    padding-top: 6px;
  }

  .footer-right .footer-links li {
    margin: 3px 0;
  }

  .footer-right a {
    font-size: 12px;
  }

  .footer-left .contact-email {
    font-size: 12px;
  }

  .social-icons-left {
    display: flex;
    gap: 10px;
  }

  .social-icons-left img {
    max-width: 18px;
    max-height: 18px;
  }

  .mobile-view {
    display: block;
  }

  .desktop-view {
    display: none;
  }
}
