@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main-box {
  position: relative;
  background: url(image/65_Black_LifestlyeSquare_1200x1200.webp) right no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

.main-box .sideber-menu {
  position: fixed;
  height: 100vh;
  width: 280px;
  left: -280px;
  background: rgba(255, 255, 255, 0.19);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}
.sideber-menu .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 60px;
  width: 100%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

.sideber-menu .logo a {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  position: absolute;
  left: 50px;
  line-height: 60px;
  text-decoration: none;
}
.sideber-menu .menu {
  position: absolute;
  top: 80px;
  width: 100%;
}
.sideber-menu .menu li {
  margin-top: 6px;
  padding: 14px 20px;
  transition: all 0.3s linear;
}
.sideber-menu .menu i {
  color: #fff;
  font-size: 20px;
  padding-right: 8px;
}
.sideber-menu .menu a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}
.sideber-menu .menu li:hover {
  border-left: 1px solid #fff;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
}
.sideber-menu .social-media {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}
.social-media i{
    padding: 0 5px;
    color: #fff;
    opacity: 0.6;
    font-size: 20px;
    transition: all 0.2s linear;
}
.social-media i:hover{
    opacity: 1;

}

#check{
  display: none;
}
.main-box .btn-one i{
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  position: absolute;
  left: 16px;
  line-height: 60px;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s linear;
}
.sideber-menu .btn-two i{
  font-size: 25px;
  color: #fff;
  line-height: 60px;
  position: absolute;
  left: 240px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s linear;

}
.btn-one i:hover{
  font-size: 29px;
}
.btn-two i:hover{
  font-size: 24;
}
#check:checked ~.sideber-menu{
  left: 0px;
}
#check:checked ~ .btn-one i{
  opacity: 0;
}
#check:checked ~.sideber-menu .btn-two i{
  opacity: 1;

}