footer.footer {
  background-color: var(--wp--preset--color--dark);
  padding: var(--wp--preset--spacing--l) 0px;
}
footer.footer .footer-content {
  justify-content: center;
  text-align: center;
}
footer.footer .footer-content .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--wp--preset--spacing--xl) + var(--wp--preset--spacing--l)) 0px;
  text-align: left;
  margin: 0px;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-content .footer-top {
    flex-direction: column;
    gap: 20px;
    margin: auto;
    text-align: center;
    padding: var(--wp--preset--spacing--l) 0px;
  }
}
footer.footer .footer-content .footer-top .site-logo {
  height: 110px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-content .footer-top .site-logo {
    margin: auto;
    text-align: center;
  }
}
footer.footer .footer-content .footer-top .site-logo img {
  height: 100%;
  object-fit: contain;
}
footer.footer .footer-content .footer-top .socials {
  margin-bottom: 12px;
}
footer.footer .footer-content .footer-top .socials ul {
  display: flex;
  list-style: none;
  gap: 10px;
  margin: 0px;
  padding: 0px;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-content .footer-top .socials ul {
    justify-content: center;
  }
}
footer.footer .footer-content .footer-top .socials ul li a {
  color: #B5B9BB;
  font-size: 20px;
}
footer.footer .footer-content .footer-top .socials ul li a img {
  height: 26px;
}
footer.footer .footer-content .footer-top .footer-left {
  background-color: #152025;
  border-radius: 4px;
  height: fit-content;
  position: relative;
  z-index: 2;
}
footer.footer .footer-content .footer-top .footer-left .content {
  background-color: #152025;
  padding: var(--wp--preset--spacing--l);
  border-radius: 2px;
}
footer.footer .footer-content .footer-top .footer-left::after {
  content: "";
  display: block;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  top: -4px;
  left: -4px;
  position: absolute;
  z-index: -1;
  background: linear-gradient(to right, #0C95E8 0%, #4BD862 100%);
  border-radius: 4px;
  transition: background 0.5s linear;
}
footer.footer .footer-content .footer-top .footer-left h4 {
  margin: 0px;
}
footer.footer .footer-content .footer-top .footer-left .contact-data {
  display: flex;
  gap: 5px;
}
footer.footer .footer-content .footer-top .footer-left .contact-tel {
  margin-bottom: 10px;
}
footer.footer .footer-content .footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-content .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
footer.footer .footer-content .footer-bottom p {
  margin: 0px;
}
footer.footer .footer-content .footer-bottom .menu-right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-content .footer-bottom .menu-right {
    justify-content: center;
  }
}
footer.footer .footer-content .footer-bottom .menu-right .menu-footer-container ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0px;
  padding: 0px;
}
@media screen and (max-width: 768px) {
  footer.footer .footer-content .footer-bottom .menu-right .menu-footer-container ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin: auto;
  }
}
footer.footer .footer-content .footer-bottom .menu-right .menu-footer-container ul li a {
  color: #B5B9BB;
  font-weight: 400;
  text-decoration: underline;
  font-size: 14px;
}