/* Main Nav Object Style */

#navElements {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: 1fr;
  gap: 0;
  width: 100%;
  height: 80px;
  align-items: center;
}
#webLeftDiv {
  grid-area: 1 / 1 / 2 / 3;
}
#webLeftDiv > a > img {
  height: 50px;
  margin: 0 0 0 30px;
}
.navSpace {
  grid-area: 1 / 3 / 2 / 9;
}
#webContols {
  grid-area: 1 / 9 / 2 / 11;
  margin: 0 20px 0 0;
  height: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 250px;
}

#webLeftDiv > h1 {
  text-indent: 30px;
  font-weight: 600;
}

#separatorNav {
  background: #14161f;
  width: 100%;
  height: 15px;
  display: inline-flex;
  margin: 0 0 30px 0;
}

.div1n {width: 80px; height: 80px; display: flex; justify-content: center; align-items: center;}
.div1n > a {display: flex;}
.div1n > a > img {height: 50px; width: auto; margin: 0;}

.div2n {background: #9c9c9c; width: 5px; height: 55px;}

.div3n {width: 80px; height: 80px; display: flex; justify-content: center; align-items: center;}
.div3n > a {display: flex;}
.div3n > a > img {height: 50px; width: auto; margin: 0;}

.div4n {width: 80px; height: 80px; display: flex; justify-content: center; align-items: center;}
.div4n > a {display: flex;}
.div4n > a > p {font-size: 50px; font-weight: 500; margin: 0; color: #9c9c9c;}


@media (min-width: 320px) and (max-width: 629px) {
  #navElements {
    height: 60px;
  }
  #webLeftDiv > a > img {
    height: 50px;
    margin: 0 0 0 30px;
  }
  #webContols {
    margin: 0 20px 0 0;
    height: 10px;
    min-width: 200px;
  }

  #webLeftDiv > h1 {
    text-indent: 25px;
    font-weight: 600;
    margin: 0 auto;
  }

  #separatorNav {
    height: 10px;
    margin: 0 0 15px 0;
  }

  .div1n {width: 60px; height: 60px; display: flex; justify-content: center; align-items: center;}
  .div1n > a {display: flex;}
  .div1n > a > img {height: 45px; width: auto; margin: 0;}

  .div2n {background: #9c9c9c; width: 5px; height: 50px;}

  .div3n {width: 60px; height: 60px; display: flex; justify-content: center; align-items: center;}
  .div3n > a {display: flex;}
  .div3n > a > img {height: 45px; width: auto; margin: 0;}

  .div4n {width: 60px; height: 60px; display: flex; justify-content: center; align-items: center;}
  .div4n > a {display: flex;}
  .div4n > a > p {font-size: 45px; font-weight: 500; margin: 0; color: #9c9c9c;}
}
@media (min-width: 630px) and (max-width: 1024px) {}