@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: "Inter", sans-serif;
  background: #414141;
  color: #fff;
} */

/* FOOTER WRAPPER */
.bf-footer {
  padding: 80px 6%;
  background: linear-gradient(180deg, #202020, #1a1a1a);
  font-family: "Inter", sans-serif;
  /* background: #414141;  */
  color: #fff;
}

/* LOGO */
.bf-logo {
  font-family: "Playfair Display", serif;
  font-size: 70px;
  letter-spacing: 12px;
  margin-bottom: 30px;
}

/* SOCIAL */
.bf-social-row {
  display: flex;
  gap: 22px;
  margin-bottom: 60px;
}

a {
  text-decoration: none;
  color: #fff;
}

.bf-social {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0.8;
  transition: 0.3s;
}

.bf-social:hover {
  background: #fff;
  color: #000;
}

/* GRID */
.bf-grid {
  display: grid;
  gap: 50px;
}

.bf-grid-top {
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 90px;
}

.bf-grid-bottom {
  grid-template-columns: 1.5fr 1fr 1fr;
  margin-top: 40px;
}

/* HEADINGS */
.bf-col h3, .bf-col h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
}

.bf-grid-bottom h3, .bf-grid-bottom h6 {
  font-size: 15px;
  margin-bottom: 20px;
  color: #fff;
}

/* LINKS */
.bf-col a {
  display: block;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 10px;
  opacity: 0.85;
  cursor: pointer;
  transition: 0.2s;
}

.bf-col a:hover {
  opacity: 1;
}

.bf-heading-link {
  opacity: 1 !important;
  margin-bottom: 0 !important;
}
.bf-heading-link h6 {
  margin-bottom: 18px;
}
.bf-heading-link:hover h6 {
  opacity: 0.85;
}

/* TEXT */
.bf-col p {
  font-size: 15px;
  opacity: 0.65;
  margin-bottom: 35px;
  /* line-height: 1.8; */
}

/* TWO COL */
.bf-two-col {
  display: flex;
  gap: 60px;
}

.bf-left {
  text-align: left;
}

/* BUTTONS */
.bf-btn {
  padding: 18px 50px;
  font-size: 15px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: 0.3s;
}

.bf-btn-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.bf-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.bf-btn-light:hover {
  background: #fff;
  color: #000;
}
.bf-btn-outline:hover {
  background: #fff;
  color: #000;
}

.bf-mt {
  margin-top: 40px;
}

/* COPYRIGHT */
.bf-copybar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #202020, #1a1a1a);

  padding: 22px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.bf-copy-links {
  display: flex;
  gap: 40px;
}

.bf-copy-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.bf-lang {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bf-lang-select {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .bf-grid-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .bf-grid-bottom {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .bf-left {
    text-align: center;
  }

  .bf-copybar {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .bf-btn {
    width: 100%;
  }
}
