.hero-search {
    position: relative;
    width: 500px;
    max-width: 90%;
    margin: 20px 0 0 0;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50px;
    padding: 5px 60px 5px 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    z-index: 9999;
}

.hero-search input {
    width: 100%;
    border: none;
    outline: none;

    font-size: 15px;
    padding: 10px;
    border-radius: 50px;

    background: transparent;
    color: #333;
}

.hero-search input::placeholder {
    color: #888;
}

.home-search-btn {
    position: absolute;
    right: -1px;
    top: 0px;
    width: 64px;
    height: 54px;
    border: none;
    border-radius: 0 50px 50px 0;
    background: #111;
    color: white;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.home-search-btn i {
    position: relative;
    left: -2px;
    font-size: 30px;
}
.home-search-btn:hover {
    background: #444;
}

.suggestionList {
    position: absolute;
    width: 83%;
    background: #fff;
    border-radius: 0 0 12px 12px;
    margin-top: 5px;
    padding: 0;
    list-style: none;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
    display: none;
    z-index: 999;
}

.suggestionList li {
    padding: 12px;
    cursor: pointer;
    color: black;
    text-align: left;
}

.suggestionList li:hover {
    background: #f2f2f2;
}

.suggestionList small {
    float: right;
    color: gray;
}


@media (max-width: 768px) {
    .suggestionList{
        width: 76%;
        border-radius: 0 0 12px 12px;
    }

    .hero-search {
        padding: 1px 60px 1px 20px;
    }

    .hero-search input {
        padding: 8px;
    }
    .home-search-btn {
        top: -1px;
        width: 64px;
        height: 43px;
    }

    .home-search-btn i {
        font-size: 26px;
    }
}