/* =========================================================
   DOTS MEDIA
   FOOTER
   ========================================================= */

.site-footer {
  position: relative;

  background: #050403;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  overflow: hidden;
}

.footer {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0 auto;

  padding: 70px 60px 30px;
}


/* =========================================================
   FOOTER TOP
   ========================================================= */

.footer-top {
  display: grid;

  grid-template-columns: 1.5fr repeat(3, 1fr);

  gap: 60px;

  padding-bottom: 60px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 280px;

  color: #777777;

  font-size: 13px;
  line-height: 1.7;
}
 
.footer-brand img {
    display: block;
    width: 160px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-col h4 {
  color: #ffffff;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 12px;
}

.footer-col li a {
  color: #777777;

  font-size: 13px;

  transition: color 0.2s ease;
}

.footer-col li a:hover {
  color: #ffffff;
}

.footer-col li.plain {
  color: #777777;

  font-size: 13px;
  line-height: 1.5;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-top: 26px;
}

.footer-bottom p {
  color: #555555;

  font-size: 11px;
}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.social-links {
  display: flex;

  align-items: center;

  gap: 10px;
}

.social-links a {
  width: 32px;
  height: 32px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50%;

  color: #888888;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.social-links a:hover {
  color: #ffffff;

  border-color: #ff7a1a;

  background: rgba(255, 122, 26, 0.08);
}