/*********************
BREAKPOINTS
*********************/
.simple_contact {
  text-align: center;
}

footer {
  padding: 2.5rem 0 3.75rem 0;
  position: relative;
  z-index: 99;
}
footer ul {
  margin-bottom: 2.5rem !important;
  line-height: 1.6em;
}
@media (min-width: 600px) {
  footer {
    text-align: left;
  }
}
footer .share-buttons {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
footer a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
footer #signoff {
  margin-top: 2.5rem !important;
}
footer .socialLinksbot {
  margin-top: 2.5rem !important;
}
footer .socialLinksbot li a {
  font-size: 1.2em;
  margin-right: 0.8333333333rem;
}
footer .footer-links {
  text-align: center;
  color: var(--black);
}
footer .footer-links li {
  display: inline;
}
footer .menu-1-columns-2, footer .menu-2-columns-2, footer .menu-3-columns-2 {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}
footer .menu-1-columns-3, footer .menu-2-columns-3, footer .menu-3-columns-3 {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
}
@media (min-width: 1024px) {
  footer .menu-1-columns-3, footer .menu-2-columns-3, footer .menu-3-columns-3 {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 2;
  }
}

#switch {
  position: relative;
  background: var(--white);
  width: 4.5rem;
  padding: 0.25rem;
  border-radius: 1.8rem;
  margin: 1.25rem auto 0.8333333333rem auto;
  width: 80px;
  cursor: pointer;
}

#circle {
  position: relative;
  background: var(--black);
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
}

.forwards {
  animation: moveHorizontallyFwd 0.3s forwards 1;
}

.reverse {
  animation: moveHorizontallyRvs 0.3s forwards 1;
}

@keyframes moveHorizontallyFwd {
  from {
    left: 0;
  }
  to {
    left: 2.7rem;
  }
}
@keyframes moveHorizontallyRvs {
  from {
    left: 2.7rem;
  }
  to {
    left: 0;
  }
}
