@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;
}

.main {
  background-color: #F8F8F8;
  padding-top: 50px;
  padding-bottom: 50px;
}

.img1 {
  color: #48A4C6;
  background-image: url('imgs/tree.jpg');
  min-height: 80%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
}

.inner {
  padding-top: 100px;
  background-color: rgba(255,255,255,0.5);
  align-items: stretch;
  width: 100%;
}

.inner h1 {
  text-shadow: 1px 1px white;
  font-size: 50px;
  animation-iteration-count: 3;
}

.main img {
  height: 80%;
  width: 80%;
}

i {
  padding-bottom: 50px;
}

p {
  font-size: 18px;
  padding-bottom: 25px;
}

.btn-flat {
  color: white;
  background: #48A4C6;
  transition: background 0.3s ease;
  width: 90%;
  height: 5%;
  font-size: 19px !important;
}

.btn-flat:hover {
  background: #40e0d0;
  color: black;
}

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

.footer-menu a {
  font-size: 12px;
  color: gray;
}

.footer img {
  height: 35px;
  width: 35px;
}

.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 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;
  }

  .inner h1 {
    font-size: 20px;
  }

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

/* 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;
  }

  .inner h1 {
    font-size: 32px;
  }

  .main {
    display: none;
  }
}

/* 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;
  }

  .inner h1 {
    font-size: 32px;
  }
}
