
/*menu css start*/
.banner-hr {
  transition: 0.3s;
  z-index: 2;
}
.banner-hr.active {
  transform: translate(-400px);  transition: 0.4s;
}
.banner-hr.content {
  max-width: 600px;
}
.banner-hr .content h2 {
  color: #fff;
  font-size: 2.5em;
}
.banner-hr .content h2 span {
  color: #40c3ff;
  font-size: 1.2em;
}
.banner-hr .content p {
  font-size: 1.2em;
  color: #fff;
  font-weight: 300;
}
.banner-hr .content a {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #000;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 500;
}
.sci {
  position: absolute;
  display: flex;
  flex-direction: column;
  right: 100px;
}
.sci li {
  list-style: none;
}
.sci li a {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  border: 1px solid #fff;
  margin: 10px 0 0;
}
.sci li a:hover {
  background: #fff;
}
.sci li a img {
  filter: invert(1);
  max-width: 20px;

  mix-blend-mode: difference;
}
#navigation {
  position: fixed;
  top: 0;
  padding-left: 2%;
  padding-top: 2%;
  right: -200px;
  width: 400px;
  height: 100vh;
  background: #000;
  z-index: 1;
  display: grid;
  place-items: center;
  transition: 0.5s;
  font-family: oswald;
  transform: translate(400px);
}
#navigation.active {
  right: 0;
   transform: translate(0); transition: 0.4s;
}
#navigation ul {
  display: flex;
  flex-direction: column;
}
#navigation ul li {
  list-style: none;
}
#navigation ul li a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  header {
    padding: 20px 50px;
  }
  .banner-hr {
    padding: 100px 50px 150px;
  }
  .banner-hr .content h2 {
    font-size: 1.8em;
  }
  .banner-hr.content p,
  .banner-hr .content a {
    font-size: 1em;
  }
  .banner-hr.active {
    transform: translate(-250px);
  }

  #navigation {
    width: 250px;
  }
  #navigation ul li a {
    font-size: 1.5em;
    margin: 5px 0;
  }
  .sci {
    position: absolute;
    bottom: 50px;
    right: initial;
    flex-direction: row;
  }
  .sci li a {
    margin: initial;
    margin-right: 10px;
  }
}

/* ====22.03.23 strat=== */
.mubar-collapse #toggle {
  position: relative;
  height: 25px;
  cursor: pointer;
  width: 30px;
  margin-left: auto;
}
/* .mubar-collapse #toggle {
  position: absolute;
  width: 30px;
  height: 25px;
  cursor: pointer;
  border-top: 2px solid;
  width: 25px;
  right: 0px;
} */
.mubar-collapse #toggle:before {
  content: "";
  position: absolute;
  top: 7px;
  width: 80%;
  height: 2px;
  background: #fff;
  right: 3px;
}
/* .mubar-collapse #toggle:before {
  content: "";
  position: absolute;
  top: 6px;
  width: 28px;
  height: 2px;
  background: #fff;
  right: 0px;
} */
.active #toggle:before {
  top: 50%;
  left: 97%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#toggle:after {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 80%;
  height: 2px;
  background: #fff;
  right: 3px;
}
/* #toggle:after {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 28px;
  height: 2px;
  background: #fff;
  right: 0;
} */

.active #toggle:after {
  top: 50%;
  left: 97%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ====22.03.23 end== */
/*menu css end*/