body{
  font: 1rem Arial, Helvetica,sans-serif;
  padding:0;
  margin:0;
  background-color:#FFFFFF;
}

/* Header **/
header{
  background:#f5f5f5;
  padding-top:30px;
  min-height:70px;
  border-bottom:#cacaca 1px solid;
}
.navbar {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  color: white;
}

.brand-title {
  font-size: 1.5rem;
  margin: .5rem;
}

.navbar-links {
  height: 100%;
}

.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
}

.navbar-links li a {
  display: block;
  text-decoration: none;
  color: rgb(59, 59, 59);
  padding: .6rem;
}
.navbar-links .current a{
  font-weight:bold;
  
}
.navbar-links li a:hover {
 color:#cccccc;
}

.toggle-button {
  position: absolute;
  top: .75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: rgb(0, 0, 0);
  border-radius: 10px;
}

@media (max-width: 700px) {
  .navbar {
      flex-direction: column;
      align-items: flex-start;
  }

  .toggle-button {
      display: flex;
  }

  .navbar-links {
      display: none;
      width: 100%;
      border-top:#cacaca 1px solid;
  }

  .navbar-links ul {
      width: 100%;
      flex-direction: column;
  }

  .navbar-links ul li {
      text-align: center;
  }

  .navbar-links ul li a {
      padding: .5rem 1rem;
  }

  .navbar-links.active {
      display: flex;
  }
}
/* Global */
.container{
  width:90%;
  margin:auto;
  overflow:hidden;
  text-align: center;
}

a {
  color:#000000;
  text-decoration:none;
}

ul{
  margin:0;
  padding:0;
}

.dark{
  padding:15px;
  background:#a1a1a1;
  color:#ffffff;
  margin-top:10px;
  margin-bottom:10px;
}

/* Showcase */
#showcase{
  min-height:500px;
  text-shadow: black 0px 0px 14px;
  background:url('../img/showcase.jpg') no-repeat 0 -400px;
  text-align:center;
  color:#ffffff;
  border-bottom:#e8491d 1px solid;
}

#showcase h1{
  margin-top:100px;
  font-size:55px;
  margin-bottom:10px;
}

#showcase p{
  font-size:20px;
 }

/* Boxes */
#boxes{
  margin-top:1.5rem;
}

#boxes .box{
  display:inline-block;
  padding: 6px;
  margin-top:2rem;
  margin-bottom:1.5rem;
}

#boxes .box img{
width:260px;
box-shadow: 8px 8px 6px #717171;
}

/* feature */
#feature{
  padding:15px;
  color:#FFFFFF;
  background:#485258;
  border-top:#e8491d 1px solid;
  border-bottom:#e8491d 1px solid;
}

#feature h1{
  text-align: center;
}

/* testing stuff here */
.contentlist {
  display: inline-block;
  width: 320px;
  min-height: 160px;
  /*border: 1px solid rgb(134, 134, 134);*/
  background:#e6e6e6;
  padding: 20px;
  overflow: hidden;
  margin : 15px;
  text-align: left;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.contentlist img {
  margin-right: 15px;
  float: left;
}

.contentlist h3, p{
  margin-left: 15px;
  display: block;
  margin: 2px 0 0 0;
}

/* testing stuff here for feature list on the main page - Listing the features with their respected icons.*/

.featurecontainer{
  width:100%;
  margin:auto;
  overflow:hidden;
  text-align: center;
  background-color: #f7f7f7;
  margin-top:3rem;
  margin-bottom:3rem;
}

a {
  color:#000000;
  text-decoration:none;
}

ul{
  margin:0;
  padding:0;
}

.featurelist {
  display: inline-block;
  width: 330px;
  min-height: 400px;
  /*border: 1px solid rgb(134, 134, 134);*/
  background:#e6e6e6;
  padding: 20px;
  overflow: hidden;
  margin : 10px;
  text-align: center;
  box-shadow: 8px 8px 6px #818181;
  margin-bottom:5rem;
}

.featurelist img {
  margin: 15px;
  
}
.featurelist p{
  margin: .75rem;
}

.featurelist h3{
  margin: .75rem;
  margin-bottom:2rem;
}

footer{
  border-top:#e8491d 1px solid;
  margin-top: 20px;
  padding:10px;
  color:#ffffff;
  background-color:#485258;
  text-align: center;
}