.news__section {
border-radius: 2rem;
background: #21A96C;
padding:4rem 0 7rem 0;
position:relative;
z-index:11;
} 
.news__section .main-heading,.news__section .top-heading{
    color:#fff;
}
.news__section .item { 
  
  overflow: hidden;    
  margin: 1rem;
}

.news__section  .image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  transform:scaleX(0.9);
  transition:All 0.5s ease-in-out;
}
.news__section  .item:hover .image img{
    transform:scaleX(1);
}
.news__section .caption {
  padding: 2rem;
  margin-top:-3rem;
  background-color: #ffffff;
  border-top: 1px solid #ffffff;
  border-radius:2rem;
  position:relative;
  z-index:111;
}

.news__section .caption h4 {
  font-size: 2rem;
  color: #192669;
  font-weight:Bold;
  margin-bottom: 1rem;
}

.news__section .caption p {
  font-size: 1.3rem;
  color: #000000;
  font-weight:Bold;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}