.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 50px 50px;
  border-top: 1px solid lightgray;
}

.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 25px;
}

.footer-left {
  display: flex;
  flex-direction: row;
}

.footer-left-first {
  display: flex;
  flex-direction: column;
  margin-right: 100px;
  max-width: 400px;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 25px 0;
}

.footer-left-button {
  color: black;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  width: fit-content;
}

.footer-right {
  display: flex;
  flex-direction: column;
}

.footer-right-email {

  display: flex;
  flex-direction: row;
}

.footer-email-box {
  font-family: 'Sora', Arial, Helvetica, sans-serif;
  font-size: 14px ;
  justify-content: start;
  width: 300px;
  border: none;
  border-bottom: 1px solid lightgray;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer-social-media {
  display: flex;
  flex-direction: row;
}

.social-media-icon {
  height: 40px;
  margin-left: -8px;
  margin-right: 10px;
}

.footer-bottom {
  display: flex;
}

.footer-copyright-text {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
    justify-content: center;
    max-width: 100%;
    padding: 50px 25px;
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .footer-left {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .footer-left-first {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  
  .footer-title {
    text-align: left;
    margin: 0 0 15px 0;
  }

  .footer-right {
    align-items: center;
    justify-content: center;
  }
  
  .footer-right-email {
    align-items: center;
    justify-content: center;
  }
  
  .footer-email-box {
    width: 100%;
  }
  
  .footer-social-media {
    gap: 10px;
  }
  
  .social-media-icon {
    margin: 0;
  }

  .footer-bottom {
    justify-content: center;
  }
  
  .footer-copyright-text {
    font-size: 12px;
  }
}
