.btnNewsCategory {
    /* background-color: #0d588e;
    color: white;
    padding: 8px;
    font-size: 14px;
    border: none;
    cursor: pointer; */
    cursor: pointer;
    color: #fff;
    padding: 5px 5px;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 500;
    background: #0d588e;
    /* position: relative; */
    /* box-shadow: none; */
    display: inline-block;
    border: none;
    border-radius: 0;
    border-radius: 4px;
}

.btnNewsCategory:hover,
.btnNewsCategory:focus {
    background-color: #2688ce;
}

#inputSearchCategory {
    box-sizing: border-box;
    /* background-image: url('searchicon.png'); */
    /* background-position: 14px 12px; */
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
}

#inputSearchCategory:focus {
    outline: 3px solid #ddd;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

#divDropDownCategory a:hover {
    background-color: #6be092;
}

.show {
    display: block;
}


/* News Menu */

.section-title {
    margin-bottom: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #dee2e6;
    border-left: 5px solid #33a95a;
}

.btnTransparant {
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
}

/* .splide__slide img {
    width: 100%;
    height: 35vw;
} */

/* Mobile Screen */
@media only screen and (min-width: 200px) and (max-width: 500px){
    .splide__slide img {
        height: 60vw;
        object-fit: cover;
    }
}

@media only screen and (min-width: 200px) and (max-width: 500px){
    .img__news__related {
        height: 10vh;
        width: 19vw;
        object-fit: cover;
        justify-content: center;
    }
}

/* Tablet or PC Screen */
@media only screen and (min-width: 501px) {
    .splide__slide img {
        height: 35vw;
        object-fit: cover;
    }
}

@media only screen and (min-width: 501px) {
    .img__news__related {
        height: 10vh;
        width: 6vw;
        object-fit: fill;
        justify-content: center;
    }
}



