* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: black;
}

li {
    list-style: none;
}

img {
    object-fit: cover;
    border-radius: 10px;
}



body {
    background-color: #f8f9fa;
}







.seachdiv {
    width: 300px;
    height: 60px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    position: absolute;
    top: 95px;
    right: 0px;
    z-index: 1000;
    transition: all 0.3s;
    display: none;
}

.ts {
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #4db2ec;
    position: absolute;
    top: -10px;
    right: 20px;

}

#seach {
    display: block;
    border: none;
    outline: 0;
    cursor: pointer;
    height: 100%;
    width: 80%;
    font-size: 14px;
    text-indent: 1em;
    background-color: #FFFFFF;
    border: 1px solid gainsboro;
}

.seach-img {
    width: 15%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seach-img img {
    width: 30px;
    height: 30px;

}

.list-title {
    width: 100%;
    height: 120px;
    position: relative;
}

.list-title span {
    left: 0;
    position: absolute;
    background-color: #fff;
    text-transform: uppercase;
    font-size: .9em;
    font-weight: 600;
    bottom: 30px;
    padding-right: 1.25em;
    font-family: montserrat, sans-serif;
    letter-spacing: 1px;
    z-index: 10;
}

.list-title hr {
    background-color: #d8d8d8;
    border: 0;
    height: 1px;
    position: absolute;
    bottom: 40px;
    width: 100%;
}

