footer {
  background-color: var(--background-color-second);
  border-radius: 80px 80px 0px 0px;
  padding: 110px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  height: 220px;
}

.footer-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-left > p{
  margin: 0;
}

.footer-center {
  display: flex;
  justify-content: space-between;
  height:60%;
}

.footer-center > address {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-style: normal;
  font-size: 18px;
}

.footer-center > address > p {
  margin: 0;
}

.footer-right > div > a,
.footer-center > address > a{
  text-decoration: none;
  color: var(--active-color);
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height:100%;
  font-size: 18px;
}

.footer-icons {
  display: flex;
  justify-content: end;
}

.footer-icons > a {
  width: 30px;
  height: 30px;
  margin-left: 26px;
}

.footer-right > div:first-child {
  display: flex;
  flex-direction: column;
  text-align: end;
  height: 60%;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  footer {
    padding: 40px 20px;
    height: auto;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    height: unset;
  }

  .footer-left,
  .footer-center,
  .footer-right > div,
  .footer-right {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .footer-center > address {
    margin: 0 auto;
  }
  .footer-icons {
    justify-content: center;
  }
  .footer-left > p:last-child,
  .footer-icons > a {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 30px 15px;
  }

  .footer-center > address {
    font-size: 16px;
  }

  .footer-icons > a {
    width: 24px;
    height: 24px;
  }

  .footer-left svg {
    max-width: 120px;
    height: auto;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 20px 10px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
    width: 100%;
  }

  .footer-left svg {
    max-width: 100px;
    height: auto;
  }

  .footer-center > address {
    font-size: 14px;
  }

  .footer-icons {
    justify-content: center;
    gap: 10px;
  }

  .footer-icons > a {
    width: 20px;
    height: 20px;
  }
}


