/* Footer */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 25px;
  margin-top: 30px;
}

/* Logo */

.footer-logo {
  width: 40px;
  height: 40px;
  margin-top: 5px;
  margin-right: 0;
  margin-bottom: 20px;
}

@media (min-width: 760px) {
  .footer-logo {
    margin-right: 40px;
    margin-bottom: 0;
  }
}

/* Separator */

.footer-separator {
  max-width: 850px;
  width: calc(100% - 40px);
  height: 1px;
  background: #61615E;
  opacity: 0.40;
  margin-bottom: 35px;
}

/* Content Container */

.footer-container {
  display: flex;
  padding-bottom: 25px;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 40px);
  max-width: 850px;
  flex-grow: 1;
  flex-wrap: wrap;
}

@media (min-width: 760px) {
  .footer-container {
    padding-bottom: 45px;
    flex-direction: initial;
    align-items: initial;
  }
}

/* Social Container */

.footer-social-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 2;
}

@media (min-width: 760px) {
  .footer-social-container {
    align-items: flex-end;
  }
}

.social-buttons-container {
  display: flex;
}

.social-link {
  position: relative;
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  display: flex;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  margin-right: 5px;
}

@media (min-width: 760px) {
  .social-link {
    margin-left: 10px;
    margin-right: 0px;
  }
}

/* Info Section */

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
}

@media (min-width: 760px) {
  .footer-section {
    align-items: initial;
    margin-right: 40px;
    margin-bottom: 0;
  }
}

.footer-section-title {
  color: #1f1f1f;
  font-size: 19px;
  font-family: 'Avenir Next Demi';
  margin-bottom: 10px;
}

.footer-section-body {
  color: #1f1f1f;
  font-size: 14px;
  font-family: 'Avenir Next';
  text-align: center;
}

@media (min-width: 760px) {
  .footer-section-body {
    text-align: initial;
  }
}

.footer-section-link {
  text-decoration: underline;
}

/* Copyright */

.copyright {
  font-size: 12px;
  font-family: 'Avenir Next';
  color: #1f1f1f;
  opacity: 0.80;
  text-align: center;
}

