
.respNavBar {
  /*border: 3px solid red;*/
  /*position: fixed;*/
  top: 0;
  margin: 0 auto;
  z-index: 1000;
  background: linear-gradient(to bottom, #8DC63F, #568125);
  width: 100%;
  display: flex;
  justify-content: space-between; /* Center content instead of space-between */
  align-items: center;
  padding-top: 15px;
  text-align: center;
}

a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: max(1.5em, 1.5vw);
  text-shadow: 3px 3px 5px #212820;
  line-height: .5; /* Adjust the spacing between lines */
}

.navBar {
  /*padding-right: 10px;*/
  cursor: pointer;
}

.navBar .line {
  display: block;
  width: 40px;
  height: 5px;
  margin-bottom: 10px;
  background-color: rgb(255, 255, 255);
}

.navbar {
  /*border: 3px solid red;*/
  position: fixed;
  width: 100%;
  top: 5rem;
  /*left: 18px;*/
  background-color: #3c6b18;
}

.navbar a {
  display: block;
  text-align: center;
  padding: 10px 0;
}

.navbar a:hover {
  background-color: #2f5512;
  border-radius: 10px;
}

.hide {
  display: none;
}

@media screen and (min-width: 975px) {
  .navbar {
    display: block;
    position: static;
    width: auto;
    margin-right: 20px;
    background: none;
  }

  .navbar a {
    display: inline-block;
    padding: 15px 15px;
  }

  .navBar {
    display: none;
  }
}

/*-- LOGO --*/
#logo {
  /*border: 2px solid #fa0101;*/
  max-width: 150px;
  min-width: 70px;
  margin: 0 0 20px 10px;
}

#logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/*-- PHONE --*/
.phone {
  border: 1px solid #1dba3f;
  background-color: #1d3a73;
  min-width: 120px;
  font-size: clamp(1.1rem, 1.5vw, 2.1rem);
  /*font-size: max(1.1em, 1.8vw);*/
  font-weight: 100;
  color: rgb(255, 255, 255);
  padding: 5px 10px 10px 10px;
  border-radius: 8px;
  margin-right: 20px;
  margin-bottom: 10PX;
}

.no-wrap {
  /*border: 3px solid red;*/
  white-space: nowrap;       /* Prevents the text from wrapping */
  overflow: hidden;          /* Hides the overflow text */
  text-overflow: ellipsis;   /* Adds ellipsis (...) if text overflows */
  padding-bottom: 5px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: bold;
  
}