.navibar {
  width: 100%;
  /*box-shadow: 0 1px 4px rgb(146 161 176 / 15%);*/
}
.navi-container {
  max-width: 1050px;
  width: 90%;
  margin: auto;
  }
.navs-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navibar .menu-items {
  display: flex;
}

.navibar .navs-container li {
  list-style: none;
}

.navibar .navs-container a {
  text-decoration: none;
  
  color: #fff;
  font-weight: 500;
  padding: 0.7rem 0;
  font-family:"Oswald",Sans-serif;
}

.navibar .navs-container a:hover{
    font-weight: bolder;
}

.navs-container {
  display: block!important;
  position: relative;
  padding: 5px 0;
  height: 100px;
  
}

.navs-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 30px;
  left:0;
  z-index:5;
  opacity: 0;
  cursor: pointer;
}

.navs-container .hamburger-lines {
  height: 26px;
  width: 32px;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navs-container .hamburger-lines .line {
  display: block;
  height: 6px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
  background: #ffffff;
}

.navs-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.navs-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.navs-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navibar .menu-items {
  padding-top: 48px;
  background-color: rgba(255, 255, 255, .95);
  background-color: rgba(33,33,33,1.0);
  height: 100vh;
  width:115%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
	margin-left: -10%;
  padding-left: 0;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  position: relative;
  z-index: 3;
  margin-top:10px;
}

.navibar .menu-items a{
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

 .logowrapper {
  padding-left: 40px;
}
 .logowrapper .logo {
  width: 100%;
  padding-top: 20px;
}

.logo img {
 	width: 100%;
	max-width: 300px;
 }
.phonenumcolor {
  font-weight: 700;
  letter-spacing: 1px;
  width: 100%;
  text-align: left;
}
.navs-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.navs-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.navs-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.navs-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.navs-container input[type="checkbox"]:checked ~ .logo{
  display: inline-block;
}
