/* mobile menu comment */


.navbar-header{
  position: relative;
}

#mobile-nav-open-btn {
  font-size: 30px;
  color: #ffc214;
  cursor: pointer;
  z-index: 2;
  position: absolute;
  right: 0;
  top: 6px;
  /* hide mobile nav btn */
  display: none;
}


#mobile-nav{
  width: 100%;
  /* by default mobile nav height will be 0% */
  height: 0%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: rgba(255,255,255,0.9);
  transition: all 300ms linear;
  overflow-y: hidden;

}

#mobile-nav-close-btn{
  font-size: 45px;
  color: goldenrod;
  cursor: pointer;
  position: absolute;
  top: -9px;
  right: 13px;
  transition: .3s; 
  z-index: 4;
}

#mobile-nav-content{
  text-align: center;
  width: 100%;
  margin-top: 30px;
  position: relative;
  top: 15%;
}

#mobile-nav ul li{
  margin-bottom: 20px;
}


#mobile-nav a{
  font-size: 18px;
  color: goldenrod;
  font-weight: 400;
  text-transform: uppercase;
  display: inline;
  transition: .3s;
}

#mobile-nav a:hover, #mobile-nav a:focus{
  color: #808083;
  background: none;
}


#mobile-nav-close-btn:hover, #mobile-nav-close-btn:focus{
  color: #808083;
}


/* mobile nav scroll spy active state */


#mobile-nav ul.nav > li.active > a {
  color: #808083;
  font-weight: bold;
}



/*---large devices---*/
@media (min-width: 1200px) and (max-width: 1299px) {

}

@media (min-width: 992px) and (max-width: 1199px) {

.float-right {
    margin-left: 18px;
}

.site-nav-wrapper {
    padding: 0;
}

.staffBox {
    flex: 1 0 14em;
}

}

@media (min-width: 768px) and (max-width: 991px) {
  .float-right{
    float: left;
    margin-left: 0px;
  }

  .appointment-text {
    padding-left: 20px;
    margin-top: 50px;
}

.staffBox {
    flex: 1 0 14em;
}

}

@media (max-width: 767px) {
  /* navigation */

.site-nav-wrapper,.white-nav-top {
  padding: 0;
}

  #mobile-nav-open-btn{
    display: block;
  }

  .appointment-text {
    padding-left: 20px;
    margin-top: 50px;
}


}

/*---PORTRAIT PHONES SMALLER DEVICES---*/
@media (max-width: 480px) {
  
  .appointment-text {
    padding-left: 20px;
    margin-top: 50px;
}
}

@media (max-width: 320px) {

}
/*# sourceMappingURL=responsive.css.map */