
.navbar {
  overflow: hidden;
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index:2000;
  box-shadow:0px 11px 29px -3px rgba(0,0,0,0.26);


}

.navbar li {
  float: left;
  display: flex;
  align-items:center;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  margin:20px;


  

}

.navbar ul {
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 1 0;
}
a[href^="tel"]{
    color:inherit;
    text-decoration:none;
}



.navbarLink a{
  color:#013539;
}


.toggle-label{
    color:#013539;
    font-size:40px;
    -webkit-touch-callout: none; /* Disable iOS touch callout */
  -webkit-user-select: none; /* Disable text selection on WebKit browsers */
  -moz-user-select: none; /* Disable text selection on Mozilla browsers */
  -ms-user-select: none; /* Disable text selection on Internet Explorer */
  user-select: none; 
}

#wideScreenNavLinks{
        display:none;
    }

    .phoneImg{
        margin-right:5px; 
        height:25;
    }


  #phoneNumber{
    color:#0d4906;
    font-size:25px;
  }


@media screen and (min-width :930px)  {
    .toggle-label{
    display:none;
    
   
}
#wideScreenNavLinks{
        display:block;
    }

    #phoneNumber{
      font-size:30px;
    }

}

@media (pointer:none), (pointer:coarse) {
    .toggle-label{
    display:block;
}

#wideScreenNavLinks{
        display:none;
    }

ul li h1{
    font-size:20px;
}

.phoneImg{

     height:18;
    }

}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

#toggle:checked ~ .content {
  max-height: 500px; /* Adjust the height to your preference */
  transition: max-height 0.5s ease-in;
}


.dropDownNav{
  display:flex;
  flex-direction: column;
  align-items: center;

}

.dropDownNav a{
  padding:25px;
}