.footer {
  margin-top: 64px;
  background: rgb(242, 245, 249);
}
.footer__top {
  position: relative;
  overflow: hidden;
  background: rgb(232, 243, 233);
}
.footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 70%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 70%);
}
.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 530px 220px 240px 1fr;
  gap: 30px;
  padding: 30px 0;
}
.footer__logo {
  width: 80px;
  margin-bottom: 16px;
}
.footer__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: rgb(7, 52, 89);
  margin-bottom: 16px;
  max-width: 460px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgb(13, 13, 13);
}
.footer__contact li svg {
  color: rgb(1, 116, 53);
  flex: none;
  margin-top: 1px;
}
.footer__contact-row {
  align-items: center !important;
  gap: 12px;
}
.footer__contact-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__contact-row span svg {
  color: rgb(1, 116, 53);
}
.footer__col-title {
  font-weight: 700;
  font-size: 18px;
  color: rgb(13, 13, 13);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__links a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}
.footer__links a svg {
  color: rgb(1, 116, 53);
  flex: none;
  margin-top: 2px;
}
.footer__links a:hover {
  color: rgb(1, 116, 53);
}
.footer__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__stats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.footer__stats li svg {
  color: rgb(1, 116, 53);
  flex: none;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgb(1, 116, 53);
  color: rgb(1, 116, 53);
  display: grid;
  place-items: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, color 0.2s;
}
.footer__social a:hover {
  background: rgb(1, 116, 53);
  color: #ffffff;
}
.footer__sep {
  width: 1px;
  height: 16px;
  background: rgb(217, 217, 217);
  flex: none;
}
.footer__bar {
  background: rgb(1, 116, 53);
  color: #ffffff;
}
.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  font-size: 15px;
}
.footer__bar-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__bar-nav a:hover {
  text-decoration: underline;
}
.footer__bar-nav .footer__sep {
  background: rgba(255, 255, 255, 0.5);
}
