body {
     background-color: var(--light-color);
}
.text-justify {
  text-align: justify !important;
}
.banner-box {
     background-color: var(--light-color);
}
.banner-text {
     position: absolute;
     padding: 10px;
     top: 70%;
     right: 0%;
     background-color: var(--light-color);
     transform: translateX(100px); /* start from right */
     opacity: 0;
     transition: all 0.6s ease-out;
     border-radius: 15px 0 0 15px;
     z-index: 1000;
}
.banner-text.show {
  transform: translateX(0);
  opacity: 1;
}
.banner-text h4 {
     color: var(--midnight-blue);
     margin: 0%;
}
@media (max-width: 767px) {
         body {
        padding-top: 88px;
    }
     .banner-text {
          position: absolute;
          top: 29%;
          right: 0;
     }
     .banner-text h4 {
          color: var(--midnight-blue);
          font-size: 10px;
     }
}
.feature_image_wrap img, .image_wrap img, .feature_image_wrap iframe {
  border-radius: 15px;
}
.fa-solid {
 font-size: 22px;
}