.center {
  position: relative;
  padding: 20px;
  margin: auto;
  max-width: 992px;
}

.text-small {
  font-size: 10pt;
}

a:link {
  color: #ff6f4a;
}

a:visited {
  color: #ff6f4a;
}

a:hover {
  text-decoration: underline;
}

a:active {
  color: #ff6f4a;
}

hr.solid {
  border-top: 1px solid #ff6f4a;
  opacity: 1;
}

.spacer {
  margin-top: 30px;
}

.navbar {
  color: white;
  font-family: "Rubik", sans-serif;
  background: #222b37;
}

.navbar-brand {
  font-size: 0;
  height: 43px;
}

@media (max-width: 992px) {
  .navbar-brand {
    height: 64px;
  }

  .site-logo img {
    margin-top: 11px;
  }
}

.site-logo img {
  max-height: 32px;
}

.slide-title {
  background-color: rgba(0, 0, 0, 0.61);
  border-radius: 50px;
}

.navbar-nav {
  flex-direction: row;
}

.navbar .navbar-nav .nav-link {
  color: white;
}

.navbar .navbar-nav .nav-link:hover {
  color: #ff6f4a;
}

.navbar .navbar-nav .nav-item-line {
  position: relative;
}

.navbar .navbar-nav .nav-item-line::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #ff6f4a;
  color: transparent;
  width: 0%;
  content: '';
  height: 2px;
  transition: all 0.5s;
}

.navbar .navbar-nav .nav-item-line:hover::after {
  width: 110%;
  left: -5%;
}

#footer {
  position: fixed;
  bottom: 0;
  background: #222b37;
  color: white;
  text-align: center;
  width: 100%;
  height: 28px;
  font-family: "Rubik", sans-serif;
}