.newsitem-con {
    margin: 5em 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.newsitem-img-con {
    height: 100%;
    width: 100%;
    position: relative;
    margin: 1em 0;
}

.newsitem-logo {
    width: 15%;
    height: 20%;
    position: absolute;
    right: 6%;
    bottom: 20px;
    z-index: 99;
     max-height: 100%;
    max-width: 100%;
}



.newsitem-img {
       max-height: 450px;
    max-width: 642px;
    width: 100%;
    height: 100%;
}


.newsitem-img-con::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(120, 190, 32, 0.8);
  top: -20;
  left: -20;
  z-index: -99;
}

.newsitem-img-con::after {
  content: "";
  width: 28.5%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 159, 227, 0.8);
  top:  0;
  right: 0;
}

.newsitem-anchor {
    font-weight: 700!important;
}

.newsitem-box {
    padding-right: 2em;
}

.newsitem-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #333;
}

.newsitem-text p {
    font-weight: 500!important;
}

.news-item-chevon {
    transform: rotate(0deg);
    transition-property: transform;
    transition-duration: 1s;
    font-weight: 600;
}

.newsitem-anchor-con:hover .newsitem-anchor {
    color: #78be20!important;
}

.newsitem-anchor-con:hover .news-item-chevon {
    color: #78be20!important;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .newsitem-con {
        flex-direction: column;
    }
    .newsitem-box {
    padding-left: 2em;
}