/* =========================================================
   SITE FOOTER
========================================================= */

.site-footer {
  position: relative;
  background:
    linear-gradient(
      135deg,
      #170207 0%,
      #25030a 55%,
      #39000d 100%
    );
  color: #fff;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;

  width: 520px;
  height: 520px;

  right: -260px;
  top: -300px;

  border: 1px solid #ffffff0d;
  border-radius: 50%;

  box-shadow:
    0 0 0 70px #ffffff04,
    0 0 0 140px #ffffff03;

  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;

  width: 280px;
  height: 280px;

  left: -170px;
  bottom: -190px;

  border: 1px solid #ffffff08;
  border-radius: 50%;

  pointer-events: none;
}


/* Main */

.footer-main {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(250px, 1.5fr)
    minmax(140px, .8fr)
    minmax(170px, .9fr)
    minmax(250px, 1.2fr);

  gap: 55px;

  padding: 70px 0 65px;
}


/* Brand */

.footer-brand {
  max-width: 390px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 155px;
  height: auto;
}

.footer-brand p {
  margin: 0;

  color: #ffffffa8;
  font-size: .86rem;
  line-height: 1.8;
}


/* Headings */

.footer-column h3 {
  position: relative;

  margin: 0 0 24px;
  padding-bottom: 12px;

  color: #fff;

  font-size: .95rem;
  font-weight: 800;
}

.footer-column h3::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 30px;
  height: 2px;

  background: var(--red);
}


/* Links */

.footer-column ul {
  list-style: none;

  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column li a {
  display: inline-block;

  color: #ffffff9e;

  font-size: .82rem;
  font-weight: 550;

  text-decoration: none;

  transition:
    color .22s ease,
    transform .22s ease;
}

.footer-column li a:hover {
  color: #fff;
  transform: translateX(4px);
}


/* Social */

.footer-social {
  display: flex;
  gap: 9px;

  margin-top: 25px;
}

.footer-social a {
  width: 36px;
  height: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #ffffff22;
  border-radius: 50%;

  color: #ffffffb5;

  text-decoration: none;

  transition: .22s ease;
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);

  color: #fff;

  transform: translateY(-3px);
}


/* Contact */

.footer-contact-item {
  display: flex;
  align-items: flex-start;

  gap: 12px;

  margin-bottom: 17px;
}

.footer-contact-icon {
  flex: 0 0 20px;

  margin-top: 4px;

  color: #ff6d88;
  font-size: .8rem;
}

.footer-contact-item p,
.footer-contact-item a {
  margin: 0;

  color: #ffffff9e;

  font-size: .82rem;
  line-height: 1.7;
}

.footer-contact-item a {
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #fff;
}


/* Bottom */

.footer-bottom {
  position: relative;
  z-index: 1;

  border-top: 1px solid #ffffff12;
}

.footer-bottom-inner {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.footer-bottom p {
  margin: 0;

  color: #ffffff66;
  font-size: .72rem;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-right a {
  color: #ffffff70;

  font-size: .72rem;
  text-decoration: none;
}

.footer-bottom-right a:hover {
  color: #fff;
}

.footer-divider {
  color: #ffffff30;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 50px;
  }

}


@media (max-width: 700px) {

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;

    padding: 52px 0 45px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;

    padding: 20px 0;
  }

  .footer-bottom-right {
    flex-wrap: wrap;
  }

}