/* Footer Section */
footer .mobile-contact {
  display: none;
}

footer * {
  color: white;
  font-size: 28px;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  width: 100%;
  padding: 50px 90px 0px 90px;

  background-image: linear-gradient(
    258deg,
     #55AEDF,
    #0C4A6E 100%
  );
}

.footer-container {
  display: flex;
  width: 100%;
}

.footer-dropdown {
  display: flex;
}

.footer-dropdown-btn {
  display: none;
}

.footer-one {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-right: auto;
  margin-top: 0;
}

.footer-one p {
  max-width: 500px;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 2.2rem;
}

.footer-one a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1rem;
}

.footer-one a img{
  width: 25px;
  height: 25px;
}

footer h3 {
  font-weight: 900;
  font-family: "Arimo";
  font-size: 1.5rem;
}

footer ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-top: 10px;
  list-style: none;
}

footer ul a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}

.footer-two {
  flex: 1;
  display: flex;
  flex-direction: column; 
}

.footer-three {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.copyright{
  margin-top: 50px;
  padding-bottom: 10px;

  text-align: center;   
  color: white;
  font-size: 0.8rem;
}

@media (max-width: 1010px) {
  /* Mobile Footer Section */
  footer {
    flex-direction: column;
    padding: 0.8em 2em 0.8em 2em;
  }
  
  .footer-container {
    flex-direction: column;


    gap: 1em;
  }

  .footer-one {
    align-items: center;

    width: 100%;
  }

  .footer-one p {
    max-width: 90%;
    margin-bottom: 0;
    text-align: center;
  }

  .footer-one a{
    display: none;
  }

  footer .footer-dropdown {
    justify-content: space-between;
  }

  footer .footer-dropdown-btn {
    display: flex;

    content: url(./images/icons/down-arrow.svg);
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(192deg) brightness(102%) contrast(102%);

    width: 1.2em;
    color: white;

    cursor: pointer;
  }

  footer .footer-links-two,
  footer .footer-links-three {
    display: none;
  }

  /* Used for javascript to toggle dropdown */
  footer .footer-links-two.open,
  footer .footer-links-three.open {
    display: flex;
  }

  footer .mobile-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
  }

  footer .mobile-contact > a{
    display: flex;
    align-items: center;

    text-decoration: none;
    font-size: 0.7em;
  }
}

@media (max-width: 520px) {
  footer {
    padding: 0.8em 1.5em;
  }

  footer .mobile-contact > a {
    font-size: 0.5em;
  }

}

@media (max-width: 470px) {
  .footer-one p {
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.8rem;
  }

  .mobile-contact img{
    width: 25px;
    margin-right: 2px;
  }

  footer .mobile-contact > a {
    font-size: 0.4em;
  }

  .copyright{
    font-size: 0.6rem;
    margin-top: 40px;
  }

}