
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  padding-top: 150px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  background-color: #0C1518;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--contrast-color);
  background: url(../img/background.svg) no-repeat center center;
  background-size: cover;
  opacity: 0.04;
  z-index: -1;
}
.footer h2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: var(--contrast-color);
  text-wrap: pretty;
  margin-bottom: 24px;
  text-wrap-style: balance;
}
.footer .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff17;
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  background: var(--contrast-color);
  border-color: var(--contrast-color);
}
.footer .logo {
  display: flex;
  width: 100%;
  max-width: 248px;
  margin-bottom: 30px;
}

.footer .footer-links h3 {
  color: #5f5f5f;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-links p {
  color: #fff;
  font-weight: 300;
}
.footer .footer-links p a {
  color: var(--contrast-color);
}
.footer .footer-links p a:hover {
  color: var(--accent-color);
  font-weight: 300;
}
.footer .footer-links iframe {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--contrast-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: var(--contrast-color);
  line-height: 1;
  text-transform: uppercase;
}

.footer .footer-links ul a:hover {
  color: #d116c2;
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright,
.footer .credits {
  color: #727272;
  font-size: 13px;
}
.footer-text p {
  text-align: center;
  color: #fff;
  font-size: 9.5vw;
  font-weight: 700;
  opacity: 0.1;
  overflow: hidden;
  margin-bottom: -90px;
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0;
  }
  .footer h2 {
    font-size: 20px;
  }
  .footer .logo {
    display: none;
  }
  .footer .copyright,
  .footer .credits {
    text-align: center;
  }
}