.news-area {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 0;
}

.news_first {
    padding: 0 20px 0 0px;
    width: 67%;
}

.news_first a {
    color: rgb(0, 86, 179);
    background-color: rgb(255, 255, 255);
    font-size: 14.4px;
}

.news_first h2 {
    margin: 0;
    font-size: 2rem;
}

.news_first img {
    width: 95%;
}

.news_first h6 {
    margin: 10px 0;
    font-size: 19px;
}

.news_first p {
    font-size: 1rem;
    line-height: 2rem;
}

.news_second {
    padding: 0 0 0 30px;
    width: 27%;
}

.news_second h2 {
    margin: 0;
}

.news_second ul {
    margin: 10px 0 40px 0;
    padding: 0 0 0 10px;
}

.news_second ul li {
    list-style: none;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 10px 10px 10px 0px;
    justify-content: space-between;
}

.news_second ul li i {
    font-size: 1.2rem;
    padding: 0 0 0 10px;
}

.news_second ul li a {
    text-decoration: none;
    color: #333;
}

.news_second ul li a:hover {
    color: rgb(17, 17, 17);
}

.decoration {
    text-decoration: none;
}

.text-white {
    color: #fff;
}

.related {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.related-1 {
    width: 66%;
    padding: 0 10px 0 0px;
    text-decoration: none;
    color: #111;
}

.related-1 a {
    text-decoration: none;
    color: #111;
}

.related-2 {
    width: 27%;
    padding: 0 0 0 10px;
}

.related-2 img {
    width: 100%;
}




/* ======================= responsive ========================== */
/*Rasponsive Code*/
/*1920*/
@media only screen and (min-width : 1920px) and (max-width : 2560px) {}

/*1600*/
@media only screen and (min-width : 1600px) and (max-width : 1919px) {}

/*1500*/
@media only screen and (min-width : 1500px) and (max-width : 1599px) {}

/*1440*/
@media only screen and (min-width : 1440px) and (max-width : 1500px) {}

/*1440*/
@media only screen and (max-width : 1440px) {}

/*1366*/
@media only screen and (min-width : 1366px) and (max-width : 1439px) {}

/*1280*/
@media only screen and (min-width : 1280px) and (max-width : 1365px) {}

/*1200*/
@media only screen and (min-width : 1200px) and (max-width : 1279px) {}

/*1024*/
@media only screen and (min-width : 1024px) and (max-width : 1199px) {

    .news_first {
        padding: 0 20px 0 0px;
        width: 69%;
    }

    .news_second {
        padding: 0 0 0 20px;
        width: 26%;
    }

}

/*tab*/
@media only screen and (min-width : 768px) and (max-width :1023px) {

    .news_first {
        padding: 0 20px 0 0px;
        width: 66%;
    }

    .news_second {
        padding: 0 0 0 20px;
        width: 26%;
    }

}


/*mobile*/
@media only screen and (min-width : 150px) and (max-width : 767px) {

    .news_first {
        width: 100%;
        padding: 0;
    }

    .news_second {
        width: 100%;
        padding: 0;
    }

    .news_first h2 {
        font-size: 1.2rem;
    }


}

/* ======================= responsive ========================== */