@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital@0;1&display=swap");
body {
  background-color: #202020;
  color: white;
  letter-spacing: 0.5px;
  font-family: "Merriweather Sans", sans-serif;
}

h3 {
  width: 100%;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  text-align: center;
  color: #e4741f;
}

.miniheader {
  color: #9f895d;
  margin-left: -15px;
  margin-right: -15px;
  border-bottom: ivory 5px;
}
.miniheader h1 {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.5;
}

.menu {
  background-color: #28262C;
  margin-left: -15px;
  margin-right: -15px;
}

.mobile-menu {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
}

.mobile-navbar {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  list-style-type: none;
}
.mobile-navbar .nav-item {
  text-align: center;
  width: 60%;
  padding: 1.5rem 0;
  border-bottom: solid 1px white;
}
.mobile-navbar .nav-item a {
  font-size: 1.3rem;
}

.navbar {
  display: none;
}

.nav-item {
  color: #D1D5DE;
}
.nav-item a {
  position: relative;
  color: inherit;
  font-weight: bold;
  padding: 0.4rem 0;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.nav-item a:hover {
  color: white;
}
.nav-item a:before, .nav-item a:after {
  position: absolute;
  opacity: 0;
  width: 0%;
  height: 2px;
  content: "";
  background: #FFF;
  transition: all 0.3s;
}
.nav-item :before {
  left: 0px;
  top: 0px;
}
.nav-item a:after {
  right: 0px;
  bottom: 0px;
}
.nav-item a:hover:before, .nav-item a:hover:after {
  opacity: 1;
  width: 100%;
}

.menu-btn {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.menu-btn_burger {
  width: 50px;
  height: 6px;
  background-color: white;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}
.menu-btn_burger::before, .menu-btn_burger::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 6px;
  background: white;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}
.menu-btn_burger::before {
  transform: translateY(-16px);
}
.menu-btn_burger::after {
  transform: translateY(16px);
}

.menu-btn.open .menu-btn_burger {
  transform: translateX(-50px);
  background: transparent;
  box-shadow: none;
}
.menu-btn.open .menu-btn_burger::before {
  transform: rotate(45deg) translate(35px, -35px);
}
.menu-btn.open .menu-btn_burger::after {
  transform: rotate(-45deg) translate(35px, 35px);
}

.intro {
  padding-top: 2rem;
}

.lead-text {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}

.lead-text-follow {
  font-weight: bold;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
  border-top: #e4741f 8px solid;
  border-radius: 5px;
  background-color: white;
}
.lead-text-follow ul {
  list-style-type: none;
  padding: 0;
}

.secondary-text {
  text-align: center;
  padding-top: 0.8rem;
}

.intro-img {
  box-shadow: 1px 2px 5px #B7B6C2;
}

.img-container {
  padding: 0.5rem;
  margin: 2rem 0;
  border: 1px solid #e4741f;
}

.intro-highlight_container {
  border-radius: 40px;
  overflow: hidden;
}

.intro_highlight {
  background-color: #464646;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 0.8rem;
  margin: 0;
}

.intro-highlights {
  color: black;
  padding: 1.4rem;
  margin-bottom: 0;
  list-style-type: none;
}

.footer-nav {
  list-style-type: none;
}

#history {
  word-spacing: 2px;
  text-align: center;
}

.footer {
  padding: 4rem 0 0.5rem 0;
  background-color: #28262C;
  color: white;
  font-size: 14px;
}
.footer h4 {
  color: #e4741f;
}

.copy {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

.primary-footer_nav {
  border-left: 1px white solid;
}

hr {
  border-top: 1px solid white;
}

img {
  width: 100%;
}

.text-muted {
  font-size: 0.9rem;
}

.text-small {
  font-size: 0.94rem;
  padding: 0.2rem 0;
}

.half-hr {
  width: 40%;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.no-scroll {
  overflow: hidden;
}

.nav-top {
  cursor: pointer;
  position: fixed;
  z-index: 99;
  bottom: 0;
  right: 0;
  background-color: #e4741f;
  text-align: center;
  color: white;
  width: 3rem;
  height: 3rem;
  padding-top: 0.2rem;
  margin: 2rem;
  font-size: 1.4rem;
  transition: all 0.5s ease-in-out;
}

.show {
  opacity: 1;
}

.hidden {
  opacity: 0;
}

.link {
  color: white;
}

#accordion {
  border: 1px solid white;
}

.accordion-body {
  padding: 1rem 2rem;
}

.accordion-button {
  width: 100%;
}

.slider-container {
  position: relative;
  width: 100%;
}

.list-group {
  color: black;
}
.list-group .list-group-item {
  background-color: #28262C;
}
.list-group .list-group-item a {
  color: white;
  transition: color 0.2s;
}
.list-group .list-group-item a:hover {
  color: #e4741f;
}

@media (min-width: 40rem) {
  .mobile-menu {
    display: none;
  }

  .menu-btn {
    display: none;
  }

  .navbar {
    display: flex;
    position: relative;
    list-style-type: none;
    width: 70%;
    padding: 1.5rem 0;
    margin: auto;
  }

  .intro-img {
    height: 20rem;
    width: auto;
  }

  .img-container {
    display: inline-block;
    text-align: center;
    margin: 1rem 0;
  }

  .copy span:first-child {
    text-align: right;
  }
  .copy span:nth-child(2) {
    text-align: left;
  }

  .slider-container {
    position: relative;
    width: 800px;
    height: 600px;
  }
}

/*# sourceMappingURL=main.css.map */
