html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: normal 16px / 24px "Roboto", Helvetica, Arial, Verdana, sans-serif;
}

body {
    transition: background-color .5s;
}

.search_res_item {
    background-color: gray;
}

.search_res {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 650px;
}

.search_res_item {
    position: absolute;
}

.container {
    border: none;
    box-shadow: 0px 0px 10px 0px gray;
    margin: auto;
    max-width: 1100px;
}

.inner {
    display: flex;
}

.keyword__container {
    padding: 10px;
}

.keyword__item {
    display: flex;
    flex-wrap: wrap;
}

.keyword__item-text {
    height: 25px;
    width: 23%;
    padding: 0 10px 0 20px;
    margin: 3px;
    font-size: 12.5px;
    color: #194A8B !important;
    text-decoration: none;
    background: url('https://res.cloudinary.com/dgnirmthd/image/upload/v1640181690/LawAndWorld/important_images/blue-left_wmhogm.png') no-repeat !important;
    text-transform: uppercase;
    display: flex;
}

.keyword__item-text:hover {
    transition: 250ms !important;
    background: url('https://res.cloudinary.com/dgnirmthd/image/upload/v1640181690/LawAndWorld/important_images/blue-left_wmhogm.png') bottom left no-repeat !important;
}

.center-box {
    border: none;
    margin: auto;
    width: 58%;
    min-height: 700px;
    margin-top: 10px;
    padding: 10px;
}

.title {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
}

.keywords-search-form {
    display: flex;
    justify-content: center;
}

.keywords-search {
    margin-top: 20px;
    width: 100% !important;
}

.keywords-search-button {
    margin-top: 20px;
    padding: 5px;
    border: solid 1px rgb(194, 191, 191);
    border-left: none;
    border-radius: 0;
    width: 35px;
}

.fa-search {
    color: grey;
    font-size: 15px;
}

hr {
    margin-top: 10px;
    border: none;
    border-bottom: solid 1px gray;
}

@media screen and (max-width: 768px) {
    .inner {
        flex-direction: column;
    }
    .center-box {
        width: 100%;
    }
}