*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Roboto', sans-serif;
}
body{
    background-color: #1e2744;
}
.wrap{
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
    color: #fff;
}
.userContainer{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.userItem{
    width: 330px;
    /* box-shadow: 0 0 10px rgb(72, 72, 72); */
    border: 3px solid #192036;
    margin: 10px 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    transition: 0.4s;
}
.userItem:hover{
    box-shadow: 0 0 10px #bbb;
    transition: 0.4s;
    background-color: #2c395d;
}
.userItem:hover button{
    background-color: mediumseagreen;
    transition: 0.4s;
}
.userItem img{
    width: 200px;
}
.userName{
    font-size: 26px;
    margin-top: 20px;
    font-weight: 700;
}
.cardItem{
    margin: 20px 0;
    font-size: 22px;
    font-weight: 100;
}
.userItem button{
    background-color: #2c395d;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: #fff;
    border: 1px solid transparent;
}
.filterBtn{
    width: 180px;
    height: 35px;
    background-color: mediumseagreen;
    border: none;
    border-radius: 5px;
    color: white;
    border: 1px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.filter{
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #2c395d;
}
.popup{
    width: 400px;
    height: 200px;
    background-color: #2c395d;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -200px;
    margin-top: -100px;
    border-radius: 10px;
    box-shadow: 0 5px 10px #bbb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.filterOpen{
    width: 50px;
    height: 50px;
    background-image: url('img/filter.png');
    background-size: cover;
    position: fixed;
    top: 3%;
    right: 1.5%;
    border-radius: 5px;
    transition: 0.4s;
}
.filterGroup{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 16.666%;
    height: 100%;
}
.filterTxt{
    font-size: 25px;
    color: #fff;
}
.p_popup{
    font-size: 25px;
    color: #fff;
}
.row_p{
    display: flex;
    flex-direction: column;
}
.persImg{
    width: 150px;
    height: 150px;
}
.ico{
    width: 30px;
    height: 30px;
    margin-left: 10px;
}