/*
 * Responsive font size mixins.
 */
/*
 * Text styling.
 * Also see heading.scss.
 */
.text-bold {
  font-weight: 700;
}

.text-label {
  font-weight: 700;
  margin-right: 5px;
}

.text-centered {
  text-align: center;
}

.text-small-3 {
  font-size: 0.5rem;
}

.text-small-2 {
  font-size: 0.8rem;
}

.text-small-1 {
  font-size: 0.9rem;
}

.text-normal {
  font-size: 1rem;
}

.text-large-1 {
  font-size: 1.1rem;
}

.text-large-2 {
  font-size: 1.3rem;
}

.text-large-3 {
  font-size: 1.5rem;
}

.text-large-4 {
  font-size: 2rem;
}

.text-large-5 {
  font-size: 3rem;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.site-footer {
  margin-top: 100px;
  text-align: center;
  padding: 30px 0;
  background-color: #4c4c4c;
  color: #ccc;
}

.site-footer__inner {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1540px) {
  .site-footer__inner {
    max-width: 1250px;
  }
}

.site-footer__menu .nav-inline li {
  display: inline-block;
}
.site-footer__menu .menu__item .menu__link {
  font-size: 1.3rem;
  line-height: 1.1;
  padding: 0 1rem;
  border-left: 0;
  color: #58b764;
}
@media screen and (min-width: 1024px) {
  .site-footer__menu .menu__item .menu__link {
    font-size: 1rem;
  }
}
.site-footer__menu .menu__item:first-of-type .menu__link {
  padding-left: 0;
}
.site-footer__menu .menu__item:not(:last-of-type) .menu__link {
  border-right: 1px solid #ccc;
}

.site-footer__about {
  font-size: 0.9rem;
}
.site-footer__about div {
  margin: 10px 0;
}
.site-footer__about a {
  color: #58b764;
}
.site-footer__about a:hover, .site-footer__about a:focus {
  color: #fff;
}