@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-size: 62.50%;
}

body{
  background: rgb(48, 52, 63);
}
nav{
  display: flex;
  height: 80px;
  width: 100%;
  background: #1b1b1b;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
  
}
nav .logo{
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: #111;
  background: #fff;
}
nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}
@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 920px) {
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 80px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: cyan;
  }
}
/* ______________________________________________________------------------------------- */


.bin{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  
  align-content: stretch;
  border: 2px solid black;

}
.bin .item{
  width: 330px;
  height: 430px;
  
  font-size: 50px;
  box-shadow: 2px 2px 10px black;
  
  margin: 50px auto;
  
  
  background: white;
}


.item .man-box{
  width: 100%;
  height: 100%;
  
}

.man-box .imz-box{
  width: 100%;
  height: 50%;
 

}
.man-box .imz-box .imgl1{
  width: 100%;
  height: 100%;
  
}
.man-box .tex-box{
  width: 100%;
  height: 50%;
  
}

.man-box .tex-box .inbox{
  width: 100%;
  height: 50%;
  
  
  padding-left: 1rem;
  

}

.inbox .head1{
  display:inline;
  border-bottom: 5px solid rgb(255, 74, 61);
  font-size: 38px;
  text-transform: uppercase;

}
.inbox .text1{
  
  color: rgb(117, 112, 112);
  margin-top: 10px;
  font-size: 14px;

  

}

.usr .imgl2{
  float: left;

  width: 50px;
  height: 50px;
  margin-top: 8px;
}
.usr .usert{
  font-size: 1.8rem;
}
.usr .join{
  background: red;
  border-radius: 8px;
  padding: 8px;
  display: inline-block;
  margin: 10px 35px;
}
.usr .joini{
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  
}
.usr .join:hover{
  background: rgb(196, 26, 26);

}





/* ------------------------- */
@media screen and (max-width:990px){
  .bin{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0px;

  }
  .bin .item{
    margin: 50px auto;
  }

}

@media screen and (max-width:700px){
  .bin{
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0px;

  }
  .bin .item{
    margin: 50px auto;
  }

}

@media screen and (max-width:355px){
  .bin{
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0px;

  }
  .bin .item{
    margin: 50px auto;
    width: 250px;
    height: 350px;
    font-size: 10px;
  }
  .inbox .head1{
    
    font-size: 25px;
    
  
  }
  .inbox .text1{
    
    
    font-size: 11.5px;
    text-align: justify;
  }
  
  .usr .imgl2{
    
    width: 25px;
    height: 25px;
   
  }
  .usr .usert{
    
    font-size: 15px;
  }

}