#search-section{
    background-color: #084c81;
    padding: 30px 0px;
    padding-bottom: 40px;
}


#search-result-section{
    padding-top: 40px;
    padding-bottom: 40px;
}

.search-result-title h5{
    display: inline-block;
    font-weight: 700;
}

.search-result-title h5 span{
    font-weight: 400;
    font-style: italic;
}
.blog-item{
    border: 1px solid #DDDDDD;
}

.blog-item h5{
    margin: 15px;
}

.blog-item p{
    margin: 15px;
    color: #757575;
}

.blog-item{
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.blog-item span{
    margin: 15px;
    color: #084c81;
}




.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    /*position: absolute;*/
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/

    left: 15px;
    right: 15px;

}
.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}
.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

@media screen and (min-width: 801px){




    #search-section {
        max-height: 190px;
    }
}

@media screen and (max-width: 600px){


    .autocomplete-items {
        position: absolute;
    }


}