
* {
  box-sizing: border-box;
}


html, body {
  margin: 0;
  padding: 0;
}

body {
	background: #fff;
	font-family: "Roboto", sans-serif;
  font-weight: 100;
}

.header {
  background: #000000;
  height: 75px;
  width: 100%;
  /*position: relative;*/
}

.header ul {
  margin: 0 auto;
  list-style: none;
  padding: 0;
  text-align: center;
}

.header ul li {
  color: #fff;
  display: inline-block;
  height: 65px;
  line-height: 65px;
  list-style: none;
  padding: 0 7px;
  transition: background 0.5s;
}

.header ul li:hover {
  background: rgb(237, 35, 13);
  cursor: pointer;
  height: 65px;
  transition: background 0.5s;
}

.btn {
  opacity: 0.9;
  background-color: black;
  color: white;
  border: none;
  float: right;
  cursor: pointer;
}

.block div {
  height: 3px;
  background-color: white;
  margin: 5px 0;
  width: 30px;
  border-radius: 25px;
}

.navdrop {
  width: 30px;
  display: none;
  margin: 18px 20px 0 0;
  float: right;
  position: relative;
}

.dropmenu {
  display: none;
  position: absolute;
  right: 5px;
  top: 35px;
  background-color: black;
  text-align: left;
  cursor: pointer;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
  min-width: 160px;
  z-index: 1;
}

.dropmenu a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropmenu a:hover {background-color: rgb(237, 35, 13)}

.navdrop:hover .dropmenu {
  display: block;
}


@media only screen and (max-width: 700px) {
  .navbar {
    display: none;
  }
  .navdrop {
    display: inline-block;
  }
  .wim {
    display: inline-block;
  }
}

.logo {
  margin-left: 10px;
  margin-top: 15px;
  display: inline-block;
  height: 55px;
  position: absolute;
  top: -5px;
  left: 5px;
  transition: background .5s;
}

.logo:hover {
  background: white;
  cursor: pointer;
  transition: background .5s;
}

.whatif {
  display: inline-block;
  height: 35px;
  position: absolute;
  top: 18px;
  left: 85px;
}

.lead {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(media/stfaq.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 375px;
  text-align: center;
}

.lead .container {
  position: relative;
  top: 100px;
}

.lead h1 {
  color: #fff;
  line-height: 100px;
  /*letter-spacing: 2px;*/
  font-family: 'monaco', sans-serif;
  font-size: 80px;
  margin: 0 auto;
  /*margin-top: 0px;
  margin-bottom: 50px;*/
  text-transform: uppercase;
}

.lead p {
  color: #fff;
  font-family: 'monaco', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 4px;
  margin: 0 auto;
  /*margin-bottom: 20px;
  margin-top: 0;*/
  text-transform: uppercase;
}

.main {
  text-align: center;
}

.post p {
  font-size: 30px;
  font-weight: 400;
}

.footer {
  padding: 20px;
  background: #000;
  color: #fff;
  height: 150px;
  width: 100%;
  text-align: right;
  line-height: 1.5;
}



/* Plus Sign stuff */


.text-secondary {
    color: #3d5d6f;
  }

  .h4,
  h4 {
    font-size: 1.2rem;
  }

  h2 {
    color: #333;
  }

  .fa,
  .fas {
    font-family: 'FontAwesome';
    font-weight: 400;
    font-size: 1.2rem;
    font-style: normal;
  }

  .right-0 {
    right: 0;
  }

  .top-0 {
    top: 0;
  }

  .h-100 {
    height: 100%;
  }

  a.text-secondary:focus,
  a.text-secondary:hover {
    text-decoration: none;
    color: #22343e;
  }

  #accordion .fa-plus {
    transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  }

  #accordion a[aria-expanded=true] .fa-plus {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
