.coll1 {
    border-radius: 10px !important;
}

.coll1-img {
    border-radius: 50%;
    height: 100px;
    width: 100px;

}

.pre {
    font-size: smaller;
}

.para {
    font-size: small;
    line-height: 28px;
    white-space: normal;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.coll1 {
    margin: 10px;
    flex-basis: calc(50% - 20px);
    box-sizing: border-box;
    padding: 20px;
}

@media screen and (max-width: 767px) {
    .coll1 {
        flex-basis: 100%;
    }
}

/* search */
.search-form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.search-form input[type="text"] {
    width: 250px;
    height: 40px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

.search-form button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
}

.search-form button[type="submit"]:hover {
    color: #0069d9;
    background-color: #fff;
}