#map-tile span {
  position:absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  text-align: center;
  font-size: 1.6em;
  text-transform: uppercase;
  background-color: grey;
  color: red;
  opacity: 0.8;
}

#map-tile {
  height: 250px;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  border: 2px solid burlywood;
  overflow: hidden;
}

/*styles main website for Iphone 5*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times;
}

#login {
  background: beige;
  width: 375px;
  height: 50px;
  line-height: 50px;
  clear: both;
}

#login li {
  float: right;
  list-style-type: none;
  width: 125px;
  text-align: center;
  font-family:Georgia, "Times New Roman", Times, serif;
}

#login a {
  text-decoration: none;
  color: #000;
  font-size: 1em;
}

#login a:active {
  color: #80ff80;
}

#logo {
  display: block;
  width: 45%;
  margin: 10px auto;
}

#ipad-nav {
  display: none;
}

.nav-computer {
  display: none;
}

.nav-mobile {
  width: 375px;
  height: 45px;
  margin: 0 auto;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  z-index: 1000;
  background: #666;
}

.nav-mobile ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 25px;
}

.nav-mobile ul li {
  list-style: none;
  line-height: 45px;
  padding-left: 40px;
}

.nav-mobile ul li a{
  display: block;
  height: 100%;
  padding: 0 10px;
  text-decoration: none;
  color: white;
  font-family:Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
}

.btn-toggle-nav {
  width: 60px;
  height: 45px;
  background: #f98f39;
  background-image: url(../images/Hamburger_icon.svg.png);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
  cursor: pointer;
}

.nav-sidebar {
  width: 0px;
  height: 150px;
  padding: 0 5px;
  background: #fff;
  transition: all 0.35s ease-in-out;
}

.nav-sidebar ul {
  padding-top: 15px;
  overflow: hidden;
  visibility: hidden;
  z-index: -1;
}

.nav-sidebar ul li {
  list-style: none;
}

.nav-sidebar ul li a {
  display: block;
  height: 45px;
  padding: 0 10px;
  text-decoration: none;
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.nav-sidebar ul li ul {
  left: 0;
  display: none;
  width: 275px;
  margin-top: 47px;
  position: absolute;
  background: #666;
}

.nav-sidebar ul li:hover ul {
  display: block;
}

.nav-sidebar ul li ul li {
    text-align: left;
    width: 236px;
    border-radius: 8px;
}

.nav-sidebar ul li ul li a {
  font-size: 1.2em;
  padding: 12px 14px;
  display: block;
  padding-left: 15px;
}

footer .cp {
    background: #aaa;
    height: 50px;
    width: 100%;
    clear: both;
    line-height: 50px;
    opacity: 0.5;
}

footer li {
    float: left;
    list-style-type: none;
    margin-right: 15px;
    font-size: 0.9em;
}

footer li.zoom {
  float: right;
  font-size: 1.15em;
}

footer a {
    color: #000;
    font-weight: bold;
}

@media only screen and (min-width: 768px) {
  #login {
    width: 100%;
    margin-bottom: 10px;
  }

  header {
    margin-bottom: 15px;
  }
  
  #login li {
    width: 125px;
  }
  
  #login a {
    font-size: 1.1em;
  }

  #logo {
    display: none;
  }
  
  #mobile-nav {
    display: none;
  }

  .nav-computer {
    display: none;
  }

  #ipad-nav {
    display: block;
    width: 768px;
    clear: both;
    overflow: hidden;
    background: #666;
  }

  #ipad-nav ul li {
    float: left;
    list-style-type: none;
  }
  
  #ipad-nav ul li a {
    float: left;
    font-size: 0.989em;
    color: white;
    text-align: center;
    padding: 14px 17px;
    text-decoration: none;
  }

  #ipad-nav ul li a:active {
    background: red;
  }


  .nav-ipad ul li ul {
    display: none;
    width: 275px;
    margin-top: 47px;
    position: absolute;
    background: #666;
    border-radius: 0px 0px 8px 8px;
  }

  .nav-ipad ul li:hover ul {
    display: block;
  }

  .nav-ipad ul li ul li {
    text-align: left;
    width: 236px;
    border-radius: 8px;
  }

  .nav-ipad ul li ul li a {
    font-size: 1.2em;
    padding: 12px 14px;
    display: block;
    padding-left: 15px;
  }

  .nav-ipad ul li ul li a:active {
    background-color: red;
    border-radius: 8px 8px 8px 8px;
  }


  footer {
      width: 768px;
  }
  
  footer li {
      margin-right: 25px;
      font-size: 1.2em;
  }

  footer li.zoom {
    font-size: 1.6em;
  }
}

@media only screen and (min-width: 1400px) {
  #logo {
    display: block;
    width: 140px;
    float: left;
  }
  
  #mobile-nav {
    display: none;
  }

  #ipad-nav {
    display: none;
  }

  .nav-computer {
    display: block;
    width: 1400px;
    margin: 0 auto;
    height: 50px;
    background: #666;
    border-radius: 8px 8px 8px 8px;
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .nav-computer ul {
    float: left;
  }

  .nav-computer ul li {
    float: left;
    width: 350px;
    text-align: center;
    list-style-type: none;
    position: relative;
  }

  .nav-computer ul li a {
    display: block;
    color: #fff;
    font-size: 1em;
    padding: 16px 14px;
    text-decoration: none;
  }

  .nav-computer ul li a:hover {
    background-color: red;
    opacity: 0.3;
  }

  .nav-computer ul li ul {
    display: none;
    width: 350px;
    position: absolute;
    background: #666;
    border-radius: 0px 0px 8px 8px;
  }

  .nav-computer ul li:hover ul {
    display: block;
  }

  .nav-computer ul li ul li {
    text-align: left;
    width: 350px;
    border-radius: 8px;
  }

  .nav-computer ul li ul li a {
    font-size: 1.2em;
    padding: 12px 14px;
  }

  .nav-computer ul li a:hover {
    background-color: 252, 3, 3, 0.5;
    border-radius: 0px 0px 8px 8px;
  }

  footer {
      margin: 0 auto;
      width: 1400px;
      padding-left: 5px;
  }
  
  footer li {
      margin: 0 25px;
      font-size: 1.3em;
  }
}