/* Text Section Styling */
.media-body-side-scroll {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 1s ease-in-out;
}

/* Image Section Styling */
.media__img-side-scroll {
    position: relative;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s ease-in-out;
}

.media__img-side-scroll img {
    width: 100%;
    height: auto;
}

/* Active Class for Animation Trigger */
.active .media-body-side-scroll {
    opacity: 1;
    transform: translateX(0);
}

.active .media__img-side-scroll {
    opacity: 1;
    transform: translateX(0);
}

/* Delay the animations */
.media-body-side-scroll {
    transition-delay: 0.2s;
}

.media__img-side-scroll {
    transition-delay: 0.4s;
}

.media__img-inner {
    position: absolute;
    bottom: 10px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
}

.two-part-center{
    justify-content: center;
    gap: 0px;
}

.two-part-size{
    width: 50%;
}

@media (max-width: 770px) {
    .two-part-size {
       width: 100%;
     }
}

@media (max-width: 475px) {  
    .size-decrease-heading{
        font-size: 48px !important;
    }
}


.logo-size{
    width: 100px;
    margin-left: 20px;
}

.text-align-maintain{
    text-align: justify;
}

.text-navs{
    color: #7BC142 !important;
}

.container-fluid-og {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}


/* MEDIA PROJECT */
.media-project {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .media-project .bg-overlay-1 {
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .media-project:hover .bg-overlay-1 {
    opacity: 1;
  }


  .media-project-hover .bg-overlay-1 {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
  }
  
  .media-project-hover:hover .bg-overlay-1 {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
  }
  

  /* BACKGROUND */
.bg-overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(123, 193, 66, 0.5);
    z-index: 0;
  }
  
  .bg-overlay-1--p85 {
    background-color: rgba(123, 193, 66, 0.5);
  }
  