.bodyContent{
    padding: 50px 20px;
    position: relative;
}

.col-8 , .col-4 {
    float: left;
    padding: 10px;
}

.newsbox {
	background: #fff;
	padding: 10px;
	box-shadow: 0px 0px 7px -1px #00000042;
	border-radius: 5px;float: left;
    width: 100%;
}

.newsbox img{
    width: 100%;
    margin-bottom: 20px;
    transition: .3s ease-in-out;
}
.newsbox .picture{
    overflow: hidden;
}

.newsbox img:hover{
    transform: scale(1.3) rotate(3deg);
}

.newsbox h3 {
	float: left;
	color: #0009;
	font-weight: bold;
    display: block;
    width: 100%;
}


.newsbox p{
    display: block;
}

















.topnews{
    background: #fff;
    padding: 10px;
    box-shadow: 0px 0px 7px -1px #00000042;
	border-radius: 5px;
    float: left;
    width: 100%;
    position: sticky;
    top: 20px;
}

.topNewsTitle{
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
}


.topnews a{
    color: #000;
}


.topnewslists{
    border: 1px solid #8fe3ec;
    height: auto;
    float: left;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: .3s ease-in-out;
}

.topnewslists:hover{
    background-color: #c9d2d247;
    border-color: #c9d2d247;
    transition: .3s ease-in-out;
}

.topnewslists .col-4 {
    padding: 0px;
}

.topnewslists .col-4 img{
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.topnewslists .col-8 {
    padding: 5px;
}
.topnewslists .col-8 span{
    font-weight: bold;
    font-size: 20px;
}

.topnewslists .col-8 p{
    font-size: 15px;
}



@media only screen and (max-width: 1120px) {
    .topnewslists .col-4{
        width: 100%;
    }

    .topnewslists .col-8{
        width: 100%;
    }
}




@media only screen and (max-width: 800px) {
    .col-4{
        width: 100%;
    }

    .col-8{
        width: 100%;
    }

    .topnewslists .col-4{
        width: 25% !important;
    }

    .topnewslists .col-8{
        width: 75% !important;
    }

}


@media only screen and (max-width: 450px) {
    .bodyContent{
        padding: 20px 0 !important;
    }
    .topnewslists .col-4 , .topnewslists .col-8{
        width: 100% !important;
    }
}