.footer-container {
  background-color: var(--secondary-color);
  width: 100%;
  font-weight: normal;
  padding: 3.125rem 0 2rem 0;
}
.footer-div {
  width: 60%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2em;
  margin-bottom: 1em;
}
.footer-container .footer-links {
  display: flex;
  flex-direction: column;
}

.footer-container h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1.25em;
}

.footer-container h3 span {
  color: #5383d3;
}

.footer-container .footer-links a {
  display: block;
  line-height: 1.8;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 0.65em;
  text-decoration: none;
}
.footer-container .footer-links a:hover {
  font-weight: 500;
  transition: ease-in;
}
.footer-anchor-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 0.35em;
}
.footer-anchor-wrap .footer-divider {
  color: var(--white);
  margin: 0 0.5em;
}
.footer-anchor-wrap a {
  margin: 0 !important;
}
.footer-container .footer-team-name {
  color: var(--body-color);
  font-size: 0.9rem;
  font-weight: normal;
  margin: 0rem;
  text-align: center;
}
.footer-team-name a {
  color: var(--body-color);
}
.footer-team-name a:hover {
  text-decoration: underline;
}
.footer-container .footer-right div {
  display: flex;
  align-items: center;
  margin-bottom: 0.75em;
}
.footer-container .footer-right .i1 {
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 2.6rem;
  margin: 0.6rem 1rem;
  vertical-align: middle;
  margin-top: 1.5rem;
}

.footer-container .footer-right p {
  color: var(--white);
  font-size: 1.05em;
  font-weight: normal;
  margin: 0;
}

.footer-container .footer-right p span {
  display: block;
  font-weight: normal;
  font-size: 0.75em;
  line-height: 2;
}

.footer-address-icon,
.footer-social-icon {
  width: 1.75em;
  height: 1.75em;
  background-size: 1.25em;
  background-image: url("../../assets/svg/placeholder.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  filter: invert(1);
  margin-right: 1em;
}
.footer-phone {
  background-image: url("../../assets/svg/phone-call.svg");
}
.footer-mail {
  background-image: url("../../assets/svg/email.svg");
}
.footer-icons a {
  margin-top: 1em;
  margin-right: 1.25em;
}
.footer-social-icon {
  margin: 0;
  filter: none;
  background-size: 1.75em;
}
@media only screen and (max-width: 1700px) {
  .footer-div {
      width: 70%;
  }
}
@media only screen and (max-width: 1550px) {
  .footer-div {
      width: 80%;
  }
}
@media only screen and (max-width: 1440px) {
  .footer-div {
      width: 85%;
  }
}
@media only screen and (max-width: 1300px) {
  .footer-div {
      width: 90%;
  }
}
@media only screen and (max-width: 1200px) {
  .footer-div {
      width: 95%;
      gap: 1em;
  }
}
@media only screen and (max-width: 1050px) {
  .footer-div {
      grid-template-columns: repeat(3, 1fr);
      row-gap: 2em;
      padding: 2em;
  }
}
@media only screen and (max-width: 700px) {
  .footer-div {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 1.5em;
  }
}
@media only screen and (max-width: 500px) {
  .footer-div {
      grid-template-columns: 1fr;
      row-gap: 1em;
  }
  .footer-div-box {
      padding-bottom: 1em;
      border-bottom: 1px solid var(--white);
  }
  .footer-div-box:last-child {
      border: none;
  }
  .footer-team-name {
      padding: 0 2em;
  }
}
