
/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #111;
  padding: 16px;
  z-index: 1000;
  display: none;
  /* transform: translateX(-100%) */
}
.sidebar-cont {
  width: 80%;
  margin: auto;
}
.sidebar .imgside {
  position: relative;
  width: 100%;
  height: 30px;
  margin-bottom: 3rem;
}
.sidebar .img,header .nav .img {
  position: absolute;
  top: 35%;
  right: 10%;
}
.sidebar-cont .side-item {
  margin-top: 1rem;
  padding: 5px;
}
.side-item a {
  font-size: 1rem;
  color: white;
  opacity: 0.7;
  text-decoration: none;
}
.sidebar-cont h6 {
  margin-top: 2rem;
  font-weight: 300;
  font-size: smaller;
}
.sidebar.show {
  /* transform: translateX(0); */
  display: block;
}
body.sidebar-open {
  overflow: hidden; /* Prevent background scroll */
}
.open-menu {
  display: none;
}
@media (max-width: 900px) {
  /* NAV */
  .display-none {
    display: none;
  }
  .open-menu {
    display: block;
  }
  .sidebar-cont {
    width: 70%;
  }

  /* SECTION  CONT INTRO */
  .cont-Intro{
     margin: 2rem 4rem;
     font-size: smaller;
  }

  /* footter */
  .footer{
    padding-left: 50px;
    /* padding-right: 20px; */
  }
  .cont-Intro h2{
    font-size: 30px;
  }
  .hero h2{
    font-size: 32px;
  }
}
@media(max-width:400px){
  .open-menu2{
    display: none;
  }
}
