footer.site-footer {
  background-color: #102945;
  border-radius: 80px 80px 0 0;
  padding-top: 72px;
}
@media screen and (max-width: 1536px) {
  footer.site-footer {
    border-radius: 76px 76px 0 0;
  }
}
@media screen and (max-width: 1279px) {
  footer.site-footer {
    padding-top: 30px;
    border-radius: 64px 64px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  footer.site-footer {
    border-radius: 50px 50px 0 0;
  }
}
@media screen and (max-width: 767px) {
  footer.site-footer {
    border-radius: 38px 38px 0 0;
  }
}
@media screen and (max-width: 520px) {
  footer.site-footer {
    border-radius: 20px 20px 0 0;
  }
}
@supports (font-size: clamp(1px, 2vw, 3px)) {
  footer.site-footer {
    border-radius: clamp(20px, 5vw, 80px) clamp(20px, 5vw, 80px) 0 0;
  }
}

.site-footer__copyright {
  background-color: #56D26A;
  padding: 12px 0;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  line-height: 150%;
}

.site-footer__top {
  padding-bottom: 72px;
  display: flex;
  align-items: flex-start;
  gap: 40px 172px;
  flex-wrap: wrap;
}

.site-footer__top-menus {
  display: flex;
  align-items: flex-start;
  gap: 20px 124px;
  flex-wrap: wrap;
}

.site-footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 258px;
  width: 100%;
}
.site-footer__logo p {
  color: #91A7B1;
  font-size: 18px;
}

.footer-widget {
  flex: 1 auto;
}

.footer-widget * {
  color: #fff;
}

.footer-widget a:hover {
  color: var(--green);
}

.footer-widget ul {
  list-style: none;
  padding-left: 0;
}
.footer-widget ul li {
  margin-bottom: 16px;
}
.footer-widget ul li:last-child {
  margin-bottom: 0;
}

.footer-widget p, .footer-widget a, .footer-widget li {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
}

@media screen and (max-width: 1279px) {
  .site-footer__logo img {
    width: 35%;
  }
  .site-footer__logo p {
    font-size: 16px;
  }
  .site-footer__logo {
    gap: 12px;
  }
  .site-footer__top {
    padding-bottom: 40px;
    gap: 20px;
  }
  .footer-widget p, .footer-widget a, .footer-widget li {
    font-size: 14px;
  }
}