.Releases__section {
    padding:4rem 0 4rem 0;
    position:relative;
    z-index:11;
    /*background: url("../../includes/images/rOverlay.png") ,#006231;*/
    background:#006231;
    background-size: 100% 100%;
} 
.Releases__section:before{
  position:absolute;
  content:"";
  bottom:0;
  height:100%;
  width: 100%;
  
  
}
.Releases__section .main-heading {
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
  font-family: "DecoType Thuluth";
  font-size: 4.25rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Releases__section .item {
  overflow: hidden;
  margin: 1rem;
  display:flex;
  align-items: center;
  transition: all 0.7s ease;
  padding: 20px;
}
.Releases__section .item:hover .image{
  transform: rotate(1deg);
  transition: all 0.7s ease;
}
.Releases__section .item:hover .caption{
  transform: rotate(1deg);
  transition: all 0.7s ease;
}
.Releases__section .item .image{
  background: #fff;
  padding: 5px;
}
.Releases__section .item .image,
.Releases__section .item .caption{
  width: 50%
}
.Releases__section .image img {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  transition:All 0.5s ease-in-out;
}
.Releases__section  .item:hover .image img{
    transform:scaleX(1);
}
.Releases__section .caption {
  padding: 2rem;
  position:relative;
  z-index:111;
}
.Releases__section .caption h4 {
  color: #FFEA01;
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.Releases__section .caption p {
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
}

/*.custom-btn {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 0.5rem;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/
/*.custom-btn span:nth-child(2) {*/
/*  background: var(--main-green);*/
/*  color: #fff;*/
/*  border-radius: 2rem;*/
/*  padding: 0.5rem 1.5rem;*/
/*  font-weight: bold;*/
/*}*/

/*.custom-btn .icon-left,*/
/*.custom-btn .icon-right {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border-radius: 50%;*/
/*  transition: transform .3s ease, opacity .3s ease;*/
/*}*/
/*.custom-btn .icon-right {*/
/*  background: var(--highlight-yellow);*/
/*}*/
/*.custom-btn .icon-left {*/
/*  background: var(--main-green);*/
/*  transform: translateX(20px);*/
/*  opacity: 0;*/
/*}*/

/*.custom-btn:hover .icon-right {*/
/*  transform: translateX(-20px);*/
/*  opacity: 0;*/
/*}*/
/*.custom-btn:hover .icon-left {*/
/*  transform: translateX(0);*/
/*  opacity: 1;*/
/*}*/

/* readMore */
.readMore {
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Releases__section .caption .custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.Releases__section .item:hover .caption .custom-btn {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:768px) 
    {
        .Releases__section .item {
        padding: 0px;
        flex-direction: column;
    }
    .Releases__section .item .image, .Releases__section .item .caption {
        width: 100% ;
    }
    .Releases__section .image img {
        height: 300px;
    }
}
