@charset "utf-8";

/* CSS Document */
body, html {
  height: 100%;
  margin: 0;
  text-align: center;
  font-family: Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.active {
  display: block !important;
}

.nav {
  background-color: white;
  width: 100%;
  border-bottom: 3px solid #48A4C6;
  position: sticky;
  margin: 0;
  top: 0;
  z-index: 9999;
}

.nav .logo img {
  height: 50%;
  width: 60%;
}

.nav ul {
  font-size: 19px;
  list-style-type: none;
  padding-top: 10px;
  margin-left: 25px;
}

li {
  float: left;
}

li a {
  text-decoration: none;
  display: block;
  color: black;
  text-align: center;
  padding: 35px 15px 0px 15px;
}

li a:hover {
  color: #48A4C6;
}

.about {
  padding-top: 25px;
  background-color: #F8F8F8;
}

.about img {
  height: 60%;
  width: 60%;
}

.about h1 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 50px;
}

.about h2 {
  font-weight: bold;
}

.about p {
  font-size: 16px;
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.75;
}

.footer {
  padding-top: 10px;
  background-color: black;
  width: 100%;
  bottom: 0;
}

.footer p {
  color: #F8F8F8;
  font-size: 12px;
}

.navbar-toggle {
  margin-top: 0px !important;
  height: 20px;
  width: 20px;
  display: none;
  position: absolute;
  cursor: pointer;
  color: black;
  font-size: 16px;
}

/* 48em = 768px */

/* iPhone */
@media only screen and (max-width: 576px) {
  .nav #menu {
    display: none;
  }

  .nav ul {
    font-size: 16px !important;
    padding-top: 5px;
  }

  .nav li {
    margin-left: 150px !important;
    float: none;
  }

  .navbar-toggle {
    display: block;
  }

  i {
    padding-top: 10px !important;
    font-size: 18px !important;
  }

  .about {
    padding-top: 15px;
  }

  .about p {
    margin: 0px 25px 0px 25px !important;
  }

  .about h1 {
    font-size: 20px;
    padding-bottom: 15px;
  }

  .footer p {
    font-size: 10px !important;
  }
}

/* iPad */
@media screen and (max-width: 992px) {
  .nav #menu {
    display: none;
  }

  .nav ul {
    font-size: 16px !important;
    padding-top: 5px;
  }

  .nav li {
    margin-left: 200px;
    float: none;
  }

  li a {
    display: inline-block;
    height: 100%;
    width: 100%;
  }

  .navbar-toggle {
    display: block !important;
  }

  i {
    padding-top: 20px;
    font-size: 24px;
  }

  .nav .logo img {
    width: 30%;
    height: 30%;
    float: left;
  }

  .about {
    padding-bottom: 50px;
  }

  .about h1 {
    font-size: 30px;
    padding-bottom: 50px;
  }

  .about img {
    height: 60%;
    width: 60%;
    padding-bottom: 50px;
  }

  .about h2 {
    font-size: 24px;
  }

  .about p {
    font-size: 16px;
    margin: 0px 50px 0px 50px;
  }
}

/* iPad Pro */
@media screen and (max-width: 1200px) {
  .nav ul {
    font-size: 17px;
    margin-left: 10px;
    width: 100%;
  }

  li a {
    padding: 20px 10px 0px 10px;
  }
}
