@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap');
*{
    margin: 0;padding: 0;box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    /* background: url('./images/bg2.jpg') no-repeat;
    background-size: cover; */
    font-family: 'Rubik',sans-serif;
}

.wrapper{
    max-width: 450px;
    margin: 0 auto;
    width: 95%;
}

section{
    padding: 0px 0 50px;
}
.logo{
    text-align: center;
    background-color: #F6C667;
    margin: 0 -2.55%;
    padding: 10px 0;
}
.logo img{
    height: 40px;
}
.head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: sticky;
    top: 0px;
    padding: 20px 15px;
    text-align: center;
    border-top: 1px solid #00000011;
    margin: 0 -2.55%;
    background-color: #F6C667;
}
.head svg{
    margin-left: 3px;
    height: 10px;
    margin-bottom: -1px;
}
.head .cat-btn{
    cursor: pointer;
    position: relative;
}
.head .category-drop{
    position: absolute;
    top: 35px;right: 5px;
    background-color: white;
    padding: 10px 5px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    min-width: 190%;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.head .category-drop a{
    display: block;
    text-align: left;
    text-decoration: none;
    font-weight: 400;
    padding: 5px 10px;
    /* color: rgb(255, 166, 0); */
    color: #910D27;
    transition: 0.3s;
}
.head .category-drop a:hover{
    color: #df3e5e;
}
.head .cat-btn:hover  .category-drop{
    visibility: visible;
    top: 30px;
    opacity:1;
}
.item{
    display: flex;
    margin-bottom: 20px;
    padding: 20px 20px 5px 20px;
    /* background-color: #eee; */
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border-radius: 15px;
    border-bottom: 1px solid #eee;
}
.category{
    text-align: center;
    margin-bottom: 15px;
    margin-top: 5px;
    font-weight: 500;
    padding: 5px 0;
    /* color: rgb(255, 166, 0); */
    color: #910D27;
    /* border-bottom: 1px solid #910D27; */
    /* border-top: 1px solid #910D27; */
    background-color: #F6C667;
    margin-left: -2.25%;
    margin-right: -2.25%;
}
.category.first-cat{
    margin-top: 0px !important;
}
.item img{
    width: 80px;height: 80px;
    object-fit: cover;
    object-position: right;
    border-radius: 100px;
    margin-left: -25px;
    margin-top: -25px;
}
.item .content{
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
    flex: 1;
    color: #222;
}
.item .content .name .title{
    font-weight: 500;
    font-size: 16px;
}
.item .content .rate{
    font-weight: 500;
    font-size: 16px;
    margin-left: 30px;
    white-space: nowrap;
}
.item .content .descr{
    color: #888;
    font-size: 14px;
    margin-top: 8px;
}

.hide{
    visibility:hidden;
    margin: 0;
}