
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.container {
  margin-top: 0%;
  width: 100%;
  margin: auto;
}

.navbar {
  width: 100%;
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.853);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: left;
  height: 62px;
}

.navbar .menu-items {
  display: flex;
  font-family: "Poppins", sans-serif;
}


.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #000000;
  font-size: 1.0rem;
  padding: 0.7rem;
}

.navbar .nav-container a:hover{
    font-weight: bolder;

}

.nav-container {
  display: none;

}

@media screen and (max-width: 736px) {

    .nav-container {
        top: 0%;
        display: block;
        position: relative;
        height: 60px;
        background-color: rgb(255, 255, 255);
      }
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 2px;
  left: 2px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 0px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}
.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}
.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 50px;
  transform: translate(-150%);

 /* transform: translate(0%);*/
  display: flex;
  flex-direction: column;
  margin-left: -40px;
  padding-left: 50px;
  transition: transform 0.5s ease-in-out;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.9);
}

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}



.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}


.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}
.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}



/* Style the video: 100% width and height to cover the entire window */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
  }
  













