.footer {
  background-color: var(--color-lehigh-brown);
  padding: var(--space-double);
}

@media only screen and (min-width: 769px) {
  .footer {
    padding: var(--space-double) var(--space-triple);
  }
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 var(--space-and-one-half) 0;
  padding: 0 0 var(--space-and-one-half) 0;
  border-bottom: 1px solid var(--color-golden-hour);
}

@media only screen and (min-width: 769px) {
  .footer-top {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
  }
}

.footer-top .university-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 769px) {
  .footer-top .university-info {
    order: 2;
  }
}

.footer-top .university-info .college-logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.footer-top .university-info .address {
  color: var(--color-white);
  font-size: 0.875rem;
  font-style: normal;
  margin: var(--space-one-half) 0 0 0;
}

@media only screen and (max-width: 769px) {
  .footer-top .social-media {
    order: 1;
    margin: 0 0 var(--space) 0;
  }
}

.footer-top .social-media .sm-icons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.footer-top .social-media .sm-icons li {
  margin: 0 var(--space-one-third);
  background-color: var(--color-white);
  height: 35px;
  width: 35px;
  padding: var(--space-one-half);
  border-radius: 35px;
  border: 1px solid var(--color-lehigh-brown);
  display: flex;
  align-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (min-width: 500px) {
  .footer-top .social-media .sm-icons li {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    margin: 0 var(--space-one-half);
  }
}

.footer-top .social-media .sm-icons li:first-of-type {
  margin: 0 var(--space-one-half) 0 0;
}

.footer-top .social-media .sm-icons li:last-of-type {
  margin: 0 0 0 var(--space-one-half);
}

.footer-top .social-media .sm-icons li:hover,
.footer-top .social-media .sm-icons li:focus,
.footer-top .social-media .sm-icons li:focus-within {
  background-color: var(--color-lehigh-brown);
  border: 1px solid var(--color-white);
}

.footer-top .social-media .sm-icons li:hover a,
.footer-top .social-media .sm-icons li:focus a,
.footer-top .social-media .sm-icons li:focus-within a {
  color: var(--color-white);
}

.footer-top .social-media .sm-icons li a {
  color: var(--color-lehigh-brown);
  font-size: 1.25rem;
  line-height: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (min-width: 500px) {
  .footer-top .social-media .sm-icons li a {
    font-size: 2rem;
  }
}

.footer-top .social-media .sm-icons li a:hover,
.footer-top .social-media .sm-icons li a:focus,
.footer-top .social-media .sm-icons li a:focus-within {
  color: var(--color-white);
}

/* #fcb targets markup injected into .footer-bottom by the external Lehigh
   footer script (lu-footer-min.js) -- not part of footer.twig's own
   markup, but real, functioning CSS applying to real injected content;
   preserved verbatim rather than dropped as "dead" code. */
.footer #fcb li {
  border-right: 1px solid var(--color-white) !important;
  font-size: 0.75rem;
  color: var(--color-white);
}

.footer #fcb li.last {
  border-right: 0 !important;
}

.footer #fcb li a {
  font-size: 0.75rem;
  color: var(--color-white);
}

.footer #fcb li a:hover,
.footer #fcb li a:focus {
  text-decoration: underline;
  color: var(--color-white);
}

.footer #fcb ul:last-of-type {
  margin: var(--space-one-half) 0 0 0 !important;
}

#back_top {
  width: 40px;
  line-height: 40px;
  overflow: hidden;
  z-index: 999;
  display: none;
  cursor: pointer;
  -moz-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  position: fixed;
  bottom: 25px;
  right: 10%;
  background-color: var(--color-lehigh-brown);
  color: var(--color-white);
  border: 1px solid var(--color-white);
  text-align: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 0 55px 1px var(--color-grey-darkest);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 3px;
}

@media (min-width: 769px) {
  #back_top {
    width: 60px;
    line-height: 60px;
  }
}

#back_top a {
  color: var(--color-white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#back_top:hover,
#back_top:focus {
  background-color: var(--color-white);
  color: var(--color-lehigh-brown);
}

#back_top:hover a,
#back_top:focus a {
  color: var(--color-lehigh-brown);
}
