/* MAIN FOOTER WRAPPER
.footer-box {
  background-color: #fff;
  padding: 50px;
  border-radius: 40px;
  margin: 100px 10% 100px 10%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Syne', sans-serif;
  color: #1b1b1b !important;
  word-wrap: break-word;
} */

/* GRID LAYOUT - RESPONSIVE 
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.footer-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

/* LIST STYLING 
.footer-links {
  padding: 0;
  margin: 0;
}

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

.footer-links>li>a:hover {
  color: rgba(1, 71, 255, 1)
}

.contact-row>span>a:hover {
  color: rgba(1, 71, 255, 1);
}

.footer-links li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
}

.footer-links li a::before {
  content: "";
  position: absolute;
  left: -8%;
  /* space from the text 
  top: 50%;
  /* vertically center 
  transform: translateY(-50%);
  height: 2px;
  /* thickness of the hyphen line 
  width: 0;
  /* start with zero length 
  background-color: #1B5AFF;
  /* blue hyphen 
  transition: width 0.3s ease;
}

.footer-links li a:hover::before {
  width: 11px;
  /* grow to desired length on hover 
}

.footer-links li a:hover {
  color: #1B5AFF;
  transform: translateX(5px);
}

/* SOCIAL ICONS 
.social-icons {
  margin-bottom: 12px;
}

.social-icons a {
  font-size: 22px;
  color: #000;
  margin-right: 15px;
  transition: 0.25s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #1B5AFF;
  transform: translateY(-3px);
}

/* CONTACT ROW 
.contact-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 15px;
  color: #000;
  transition: 0.25s ease;
  gap: 5px;
}

.contact-row:hover {
  transform: translateY(-1px);
  color: #1B5AFF;
}

.contact-row a {
  color: inherit;
  transition: 0.25s ease;
}

/* COPYRIGHT
.copy {
  color: grey;
  margin-top: 18px;
  font-size: 14px;
  text-align: center;
}

.card {
  margin-bottom: 8px;
}

.fa-solid {
  margin-right: 6px;
}


/* ===== RESPONSIVE BREAKPOINTS ===== 

/* MEDIUM SCREENS (1025px - 1200px) 
@media (min-width: 1025px) and (max-width: 1200px) {
  .footer-title {
    font-size: 16px;
  }

  .footer-links li,
  .contact-row {
    font-size: 14px;
  }

  .social-icons a {
    font-size: 20px;
    margin-right: 12px;
  }
}

/* TABLETS (up to 1024px)
@media (max-width: 1024px) {
  .footer-box {
    padding: 35px;
    margin: 5%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "solutions resources"
      "company support"
      "follow follow";
    text-align: start;
    align-items: start;
  }

  .footer-grid>div:nth-child(1) {
    grid-area: solutions;
  }

  .footer-grid>div:nth-child(2) {
    grid-area: resources;
  }

  .footer-grid>div:nth-child(3) {
    grid-area: company;
  }

  .footer-grid>div:nth-child(4) {
    grid-area: support;
  }

  .footer-grid>div:nth-child(5) {
    grid-area: follow;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
  }

  .footer-links li a::before {
    left: -4%;
  }
}

/* LARGE MOBILE (up to 700px) 
@media (max-width: 700px) {
  .footer-box {
    padding: 30px;
  }

  .footer-grid>div {
    padding: 0 10px;
  }

  .footer-links li a::before {
    left: -6%;
  }
}

/* SMALL MOBILE (up to 480px) 
@media (max-width: 480px) {
  .footer-box {
    padding: 25px;
    border-radius: 30px;
    margin: 5%;
  }

  .footer-grid>div {
    padding: 0 5px;
  }

  .social-icons a {
    margin-right: 10px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-links li,
  .contact-row {
    font-size: 14px;
  }

  .footer-links li a::before {
    left: -8%;
  }
}

/* EXTRA SMALL DEVICES (up to 360px) 
@media (max-width: 350px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "solutions"
      "resources"
      "company"
      "support"
      "follow";
  }

  .footer-grid>div {
    padding: 0;
    margin-bottom: 15px;
  }

  .footer-grid>div:nth-child(5) {
    margin-top: 20px;
  }

  .footer-links li a::before {
    left: -4%;
  }
}*/