.footer-container {
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 80px 80px 0px 0px;
  position: relative;
  z-index: 5;
  top: 100px;
}

.footer-logo-container {
  position: relative;
  top: -120px;
  width: 220px;
}

.footer-logo-container img {
  width: 100%;
}

#menu-footer-menu {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  top: 30px;
  margin-bottom: 60px;
  margin-top: -50px;
}

.footer-container .menu-item a {
  color: #fff !important;
  text-decoration: none;
  font-family: var(--ff-aller-display);
  font-size: 24px;
  line-height: 32px;
  transition: all 0.5s ease-in-out;
}

.footer-container .menu-item a:hover {
  color: #df5959 !important;
}

#menu-footer-menu a {
  color: #fff;
  text-decoration: none;
  font-family: var(--ff-aller-display);
  font-size: 24px;
  line-height: 32px;
  transition: all 0.5s ease-in-out;
}

#menu-footer-menu a:hover {
  color: #df5959;
}

.footer-link a {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.social-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin: 30px;
  margin-top: 80px;
}

.footer-social-link-container {
  width: 90px;
  height: 90px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.footer-social-link-container img {
  width: 80%;
  height: auto;
}

.social-item-hover {
  width: 200%;
  height: 100%;
  background-color: #df5959;
  position: absolute;
  border-radius: 0px 0px 1000px 0px;
  z-index: -1;
  left: -200%;
  transition: all 1s ease-in-out;
}

.footer-social-link-container:hover .social-item-hover {
  left: 0%;
}

/* .footer-social-link-container:hover{
    background-color: #DF5959;
    color: #000;
} */

.footer-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px 0px 50px 0px;
  font-family: var(--font-family-poppins-semibold);
}

.footer-btn {
  font-family: var(--font-family-poppins-semibold);
  font-size: clamp(12px, 1.25vw, 24px);
  line-height: clamp(20px, 1.6666vw, 32px);
  padding: 1em 2.8125em;
  background-color: transparent;
  color: white;
  border: 2px solid #ffffff;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}

.footer-btn img {
  height: 14px;
}

.development-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  margin-bottom: 15px;
  font-family: var(--font-family-poppins-regular);
  font-size: 0.9rem;
}

.developer {
  color: #ffffff60;
  transition: all 0.5s ease-in-out;
}

.developer:hover {
  color: #df5959;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .footer-links {
    top: 0px;
  }

  .social-links {
    margin-top: 20px;
  }

  .footer-btn-container {
    margin: 30px 0px 30px 0px;
  }

  .footer-social-link-container {
    width: 75px;
    height: 75px;
  }
}

@media screen and (max-width: 768px) {
  .footer-links {
    margin-top: -20px;
    margin-bottom: 40px;
  }

  #menu-footer-menu {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (max-width: 576px) {
  .footer-container {
    border-radius: 40px 40px 0px 0px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 25px;
    position: relative;
    top: 0px;
    margin-bottom: 30px;
  }

  .footer-social-link-container {
    width: 60px;
    height: 60px;
  }

  .footer-logo-container {
    width: 180px;
    top: -100px;
    margin-bottom: -50px;
  }
}

@media screen and (orientation: landscape) and (max-width: 900px) {
  .footer-social-link-container {
    width: 75px;
    height: 75px;
  }
}
