* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Poppins';
}

/* basic styling  */
a {
    color: white;
    text-decoration: none;
}

hr {
    color: gray;
    margin: 25px 0px;
}

.reviews {
    margin-top: 15px;
}

h4 {
    color: #0aad0a;
    padding-top: 10px;
}

/* aside styling  */
.aside {
    width: 350px;
    background-color: #ffffff;
    height: 100vh;
    padding: 20px;
    overflow: auto;
    scrollbar-width: none;
    display: inline-block;
    vertical-align: top;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.aside h1 {
    font-weight: 600;
    margin-top: 15px;
}

.aside p {
    color: grey;
    margin-top: 15px;
}


.reviews i {
    color: #ffc107;
    margin-right: 3px;
    font-size: 20px;
}

.aside-mid ul li {
    background-color: #001e2b;
    padding: 15px;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: .3s ease-in-out
}

.aside-mid ul li i {
    margin-right: 20px;
    font-size: 20px;
}

.aside-buttom ul li {
    color: black;
    margin: 15px 0px;
    font-size: 18px;
}

.aside-mid ul li:hover {
    background-color: #f0f3f2;
    color: #001e2b;
    outline: 1px solid #001e2b;
}

/* right styling */
.right {
    width: calc(100% - 350px);
    display: inline-block;
    vertical-align: top;
    overflow: scroll;
    scrollbar-width: none;

}

.banner-box {
    padding: 40px 30px;
    background-color:#f0f3f2;
    border-radius: 10px;
    position: relative;
}

.banner-box h1 {
    font-size: 20px;
    font-weight: 600;
}

.banner-box p {
    color: grey;
    margin-top: 5px;
    font-size: 17px;
}

.banner-box input {
    padding: 10px 10px;
    font-size: 15px;
    margin-top: 15px;
    width: 320px;
    border-radius: 5px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.banner-box {
    position: relative;
}

.banner-box i {
    position: absolute;
    bottom: 47px;
    left: 315px;
    font-size: 25px;
    color: gray;
    
}

.img {
    position: absolute;
    top: 0;
    right: 50px;
    transform: scaleX(-1);
}

/* filter styling */
.filter {
    padding: 15px 0px;
    padding-left: 20px;
    background-color: rgb(255, 255, 255);
}

.filter select {
    width: 120px;
    margin-left: 1200px;
    padding: 5px;
    font-size: 15px;
    background-color: transparent;
    border-radius: 5px;
}

.filter div {
    margin-top: 10px;
}

/* items styling */

.right-buttom {
    height: calc(100vh - 289px);
    overflow: auto;
    scrollbar-width: none;
}

.item {
    width: 23%;
    border: 1px rgb(235, 235, 235) solid ;
    padding: 25px 20px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    margin: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.item .item-img {
    text-align: center;
}

.item p {
    font-size: 15px;
    color: grey;
    text-align: left;
    margin-top: 50px;
}

.item h3 {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    margin-top: 5px;
}

.item-reviews {
    text-align: left;
    margin: 10px 0px;
    margin-right: 3px;
}

.item-reviews i {
    color: #ffc107;
}

.item span {
    text-align: left;
}

.item button {
    padding: 10px 20px;
    border: none;
    background-color: #0aad0a;
    border-radius: 5px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: white;
    transition: .3s ease-in-out;
}

.item button i {
    font-size: 17px;
    margin-right: 5px;
}


.item button:hover {
    background-color: #001e2b
}
