@font-face {
  font-family: myFirstNato;
  src: url(../fontz/NotoSans-Regular.ttf);

}

@font-face {
  font-family: myFirstFira;
  src: url(../fontz/FiraSans-Regular.ttf);

}

body {
  margin: 0;
  background-color: rgb(244, 244, 244);
  font-family: myFirstNato;
}

/* navbar */



.navbar {
  background-color: rgb(255, 255, 255);
  /* width: 100vw; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 100px; */
  border-bottom: 2px solid rgb(244, 244, 244);
  margin-bottom: 5px;
}

.nav-lvl-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-btn {
  /* background-color: white; */
  border: 0;
  cursor: pointer;
  font-size: 30px;
  position: relative;
  top: -5px;
  left: 0px;
  height: 42px;
  width: 50px;
  margin-right: 5px;
  background: none;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  background-color: rgb(255, 255, 255);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  border-bottom: 1.5px solid rgb(240, 240, 240);
}

.nav-com {
  width: 70%;
  margin-left: 25px;
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 13px;
  color: rgb(0, 0, 0);
  display: block;
  transition: 0.3s;
  border-bottom: 1.5px solid rgb(240, 240, 240);
}

.nav-com-last {
  width: 70%;
  margin-left: 25px;
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 13px;
  color: rgb(0, 0, 0);
  display: block;
  transition: 0.3s;

}

.nav-com:hover {
  color: rgb(0, 0, 0);
  background-color: rgb(240, 240, 240);
}

.nav-com-last:hover {
  color: rgb(0, 0, 0);
  background-color: rgb(240, 240, 240);
}

.closebtn {
  cursor: pointer;
  width: 80%;
  margin-left: 15px;
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: rgb(0, 0, 0);
  display: block;
  transition: 0.3s;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  /* width: 100%; */
  border: none;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 13px;
  }
}

.search {
  position: relative;
  height: 50px;
  margin-right: 20px;
}

.search .input {
  background-color: white;
  border: 0;
  font-size: 16px;

  height: 40px;
  width: 50px;
  transition: width 0.3s ease;
}

.btn {
  background-color: white;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 40px;
  width: 50px;
  transition: transform 0.3s ease;
}

.btn:focus,
.input:focus {
  outline: none;
}

.search.active .input {
  width: 200px;
}

.search.active .btn {
  transform: translateX(150px);

}

.search-icon {
  transform: rotate(97deg);
}

.right-logo {
  width: 100%;
  border-bottom: 2px solid rgb(244, 244, 244);
}

.right-logo-img {
  height: 100px;
  width: 100px;
  margin: auto;
  filter: drop-shadow(5px 5px 5px gray);
}


.left-logo {
  width: 120px;
  /* height: 75px; */
  filter: drop-shadow(2px 2px 2px gray);

}


.nav-lvl-3 {
  border-top: 1.5px solid rgb(240, 240, 240);
  border-bottom: 1.5px solid rgb(240, 240, 240);
}

/* footer */
.footer {
  width: 100%;
  margin: auto;
  background-color: rgb(255, 255, 255);
  padding-bottom: 10px;
  font-size: 12px;
}

.foot-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.foot-container>div {
  margin: 10px;
  /* text-decoration: none; */
}

.foot-container>div>a {
  color: black;
  text-decoration: none;
}

.foot-container-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}



@media only screen and (min-width: 1050px) {

  .navbar {
    /* width: 80%; */
    /* margin: auto; */
    /* padding: 5px 5px 5px 0px; */
  }

  .footer {
    background-color: white;
    padding: 10px 0;
    /* width: 80%; */
    margin: auto;
  }
}

