.site-footer {
  padding: 58px 0 24px;
  color: #fff;
  background: #374151;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}
.site-footer__brand p {
  max-width: 430px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.42;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cuprum", Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
}
.site-footer__logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.site-footer__title {
  margin: 0 0 18px;
  font-family: "Cuprum", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}
.site-footer__contact-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__contact-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.3;
}
.site-footer__contact-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: rgba(77, 170, 65, 0.95);
}
.site-footer__nav,
.site-footer__meta {
  display: grid;
  gap: 11px;
}
.site-footer__nav a,
.site-footer__meta a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.25;
  transition: color 0.2s ease;
}
.site-footer__nav a:hover,
.site-footer__nav a:focus,
.site-footer__meta a:hover,
.site-footer__meta a:focus,
.site-footer__contact-list a:hover,
.site-footer__contact-list a:focus {
  color: #accb49;
}
.site-footer__accessibility {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #374151 !important;
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.site-footer__accessibility:hover,
.site-footer__accessibility:focus {
  color: #fff !important;
  background: #4daa41;
}
.site-footer__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__schedule {
  display: grid;
  gap: 5px;
}
.site-footer__schedule span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}
.site-footer__schedule strong {
  font-size: 17px;
  font-weight: 400;
}
.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.site-footer__socials img {
  display: block;
  width: auto;
  max-width: 96px;
  height: 20px;
}
.site-footer__socials i {
  font-size: 17px;
}
.site-footer__socials-prodoctorov img {
  max-width: 112px;
  height: 17px;
}
.site-footer__socials a:hover,
.site-footer__socials a:focus {
  transform: translateY(-3px);
  box-shadow: 0px 3px 5px #0000006e;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 1199px) {
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding: 44px 0 22px;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer__middle,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__socials {
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .site-footer__logo {
    font-size: 26px;
  }
  .site-footer__logo img {
    width: 46px;
    height: 46px;
  }
  .site-footer__accessibility {
    width: 100%;
    justify-content: center;
  }
  .site-footer__socials a {
    min-width: 34px;
    height: 34px;
    border-radius: 10px;
  }
}
