/*include styles for header, footer, index.html and about.html*/

@font-face {
  font-family: 'Century';
  src: url('../fonts/century-gothic.ttf') format('truetype');
}

body {
  font-family: 'Century', sans-serif, Helvetica, Arial;
  font-size: 14px;
  font-weight: normal;
  line-height: 2em;
}

a {
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  color: #75d4e1;
}

.text-blue {
  color: #002367;
}

.bold {
  font-weight: bold;
}

.navbar-brand {
  margin-left: 4%;
  width: 60%;
}

.navbar {
  margin-bottom: 0;
}

.navbar-default, .navbar-collapse {
  background-color: #202c65;
  padding: 15px -15px;
}

.navbar-default .navbar-toggle {
  border: none;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
  background-color: transparent;
}

.fa-bars, .fa-times{
  color: white;
}


ul.nav.navbar-nav {
  margin-top: 20px;
  margin-bottom: 10px;
}

.navbar-default .navbar-nav>li>a {
  color: white;
  font-size: 1.5em;
  font-weight: normal;
  margin-right: 30px;
}

.navbar-default .navbar-nav>li>a:hover {
  color: #75d4e1;
}

.signup-btn{
  background-color: #78CEDC;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-right: 0;
  max-width: 120px;
  box-sizing: border-box;
}

.signup-btn:hover {
  background-color: white;
  color: #78CEDC;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.banner {
  background-image: url('../images/banners/hero_image.png');
  background-size: cover;
  background-position: center;
  height: 79rem;
}

.banner-box {
  color: #002367;
  margin-top: 132px;
  margin-left: 5%;
}

.banner-box h1 {
  font-size: 5em;
  font-weight: bold;
}

.learn-btn {
  background-color: #002367;
  height: 70px;
  padding: 12px 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: white;
  font-size: 2em;
  margin-top: 10px;
}

.product-section {
  padding: 50px 30px;
}

.product-section p {
  font-size: 1.5em;
}

.product-img {
  margin-top: 75px;
}

.footer {
  background-color: #002367;
  height: 60px;
  padding: 20px 40px;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  margin-right: 30px;
}

.footer ul li a:hover {
  color: #75d4e1;
}

.mt-neg-70 {
  margin-top: -70px;
}

.mt-20 {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {

  .navbar-brand {
    width: 50%;
  }

  .navbar-default .navbar-nav>li>a {
    margin-right: 0;
  }

  .banner {
    height: 23rem;
  }

  .banner-box {
    margin: 30px 0 0 20px;
  }

  .banner-box h1 {
    font-size: 1em;
    line-height: 1em;
  }

  .learn-btn {
    font-size: 1.2em;
    height: 50px;
    padding: 6px 10px;
  }

  .signup-btn {
    margin-left: 126px;
  }

  .product-section {
    padding: 10px 20px;
  }

  .product-section p {
    font-size: 1em;
  }

  .product-img {
    margin-top: 0;
  }

  .footer ul li a {
    margin-right: 10px;
  }

  .footer {
    height: 120px;
  }
}

@media screen and (min-width: 768px ) and (max-width: 992px) {

  .navbar-brand {
    width: 35%;
  }

  .navbar-default .navbar-nav > li >a {
    margin-right: 10px;
    font-size: 1em;
  }

  .banner-box h1 {
    font-size: 3.5em;
  }

  .footer {
    height: 95px;
  }

  }