/*************/
/* FOOTER */
footer {
  width: 100%;
  background: #303030;
  color: #fafafa;
  padding-top: 2rem;
  padding-bottom: 3rem;
  flex-shrink: 0;
}

.footer__brand {
  text-align: center;
}

.footer__brand p {
  font-size: 1.6rem;
}

.footer__section-title {
  display: inline-block;
  font-size: 2rem;
  color: orangered;
  font-weight: 300;
  border-bottom: 0.1rem solid orangered;
}

.footer__list {
  margin-top: 2rem;
}

.footer__link li {
  margin-bottom: 1rem;
  cursor: pointer;
}

.footer__link li a {
  font-size: 1.6rem;
  color: #fafafa;
  text-decoration: none;
}

.footer__link a:hover,
.footer__link a:focus,
.footer__link a:active {
  color: #fafafa;
  text-decoration: none;
}

footer #emailSubmit input {
  font-size: 1.6rem;
  outline: none;
  border: none;
  padding: 2rem;
  border-radius: 2rem;
  max-width: 40rem;
}

footer #emailSubmit button {
  width: 100%;
  max-width: 40rem;
  font-size: 1.6rem;
  height: 4rem;
  outline: none;
  border: none;
  border-radius: 0;
  background-color: #d62718;
  border-radius: 2rem;
  color: #fafafa;
}

.footer__grey-text {
  font-size: 1.4rem;
  color: grey;
  margin-bottom: 1rem;
}

footer hr {
  border-top: 0.1rem solid #fafafa;
  margin: 2rem -1rem;
  margin-bottom: 2rem;
}

.footer__bottom .row {
  text-align: center;
}

.footer__copyright {
  text-align: center;
  color: #ececec;
  font-size: 1.4rem;
  height: 4rem;
  margin-bottom: 0.5rem;
}

.footer__social-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer__social-link {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  border: 0.1rem solid #d62718;
  border-radius: 50%;
  background: transparent;
  text-align: center;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.footer__social-link i {
  transition: all 0.3s ease;
  line-height: 4rem;
  color: #d62718;
}

.footer__social-link:hover,
.footer__social-link:focus,
.footer__social-link:active {
  background-color: #d62718;
}

.footer__social-link:hover i,
.footer__social-link:focus i,
.footer__social-link:active i {
  color: #fafafa;
}

.footer__disclaimer {
  margin-top: 2rem;
  margin-bottom: -1rem;
  font-size: 1.2rem;
  text-align: left;
}

.footer__disclaimer p {
  margin-bottom: 0.5rem;
}

@media only screen and (min-width: 768px) {
  footer {
    padding-top: 3rem;
  }

  .footer__link li {
    margin-bottom: 1rem;
  }
}

@media only screen and (min-width: 992px) {
  .footer__brand p {
    font-size: 1.3rem;
  }

  .footer__copyright {
    line-height: 4rem;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1600px) {
  .footer__brand p {
    font-size: 1.5rem;
  }
}
