@import url('https://rsms.me/inter/inter.css');
html { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
  html { font-family: 'Inter var', sans-serif; }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Metropolis", sans-serif;
}
.main_box {
  position: absolute;
  background: url("side.jpeg") right no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  z-index: 3;
}
.main_box .sidebar_menu {
  position: fixed;
  height: 100vh;
  width: 280px;
  left:-280px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 6px rgba(51,51,51, 0.5);
  overflow: hidden;
  transition: all 0.25s linear;
}
.sidebar_menu .logo {
  position: absolute;
  width: 100%;
  height: 60px;
  box-shadow: 0px 2px 4px rgba(51, 51,51, 0.5);
}
.sidebar_menu .logo a {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  position: absolute;
  left: 50px;
  line-height: 60px;
  text-decoration: none;
}
.sidebar_menu .menu {
  position: absolute;
  top: 80px;
  width: 100%;
  filter: brightness(100%);
}
.sidebar_menu .menu li {
  margin-top: 6px;
  padding: 14px 20px;
  opacity: 0.8;
}
.sidebar_menu .menu i {
  color: #fff;
  font-size: 20px;
  padding-right: 8px;
}
.sidebar_menu .menu a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}
.sidebar_menu .menu li:hover {
  border-left: 3px solid #fff;
  box-shadow: 0 0 4px #fff;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px; */
  transition: all 0.3s linear;
  opacity: 1;
}
.sidebar_menu .social_media {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  list-style: none;
  cursor: pointer;
}
.sidebar_menu .social_media i {
  text-decoration: none;
  padding: 0 5px;
  color: #fff;
  opacity: 0.6;
  font-size: 20px;
}
.sidebar_menu .social_media i:hover {
  opacity: 1;
  transition: all 0.4s linear;
  transform: scale(1.01);
}
#check {
  display: none;
}
.main_box .btn_one i {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  position: fixed;
  left: 16px;
  line-height: 60px;
  cursor: pointer;
  opacity: 1;
  transition: all 0.4s linear;
}
.sidebar_menu .btn_two i {
  font-size: 25px;
  line-height: 60px;
  position: absolute;
  left: 240px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s linear;
  color: #fff;
}
.btn_one i:hover {
  font-size: 29px;
}
.btn_two i:hover {
  font-size: 24px;
}
#check:checked ~ .sidebar_menu {
  left: 0;
}
#check:checked ~ .btn_one i {
  opacity: 0;
}
#check:checked ~ .sidebar_menu .btn_two i {
  opacity: 1;
}


.flex-project-obj{
  margin-top: 5em;
}
.dispnon{
  display: none;
}
.hero-bodies{
  height: 1.75rem;
  margin-top: 1.5rem;
  margin-left: 5vw;
  margin-right: 5vw;
}
.footer-bottom {
  background: rgb(255, 255, 255);
  color: #fff;
  width: 100vw;
  padding: 10px 0 ;
  text-align: center;
  bottom: 0;
  font-size: 0.8rem;
  padding-bottom: 2em;
}
  
.footer-bottom span {

   text-transform: capitalize;
   font-weight: 200;
   color: black;
 }
.footer-bottom p{
margin-left: 2rem;
margin-right: 2rem;
line-height: 1.5rem;
color: black;

}
.span-link {
   text-decoration: none;
  
   color: #232323;
 }
@media (prefers-color-scheme: dark){
  .footer-bottom {
    background: rgb(0,0,0);
  } 
  .footer-bottom span {
    color: #fff;
  }
  .footer-bottom p{
  color: white;
  }
  .span-link{
    color: white;
  }
}