.custom-images-text-module .content-wrapper {
  align-items: center;
    display: flex;=
    flex-wrap: nowrap;
    gap: 60px;
    flex-direction: row-reverse;

}
.text-side h3{
color: #000;
font-family: Inter;
font-size: 28px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.96px;
  margin-bottom: 10px;
}
.custom-images-text-module .image-side,
.custom-images-text-module .text-side {
  flex: 1 1 50%;
  max-width: calc(50% - 30px); /* account for 60px gap split evenly */
}
.text-side h5{
font-family: Inter;
font-size: 20px;
font-style: italic;
font-weight: 500;
line-height: normal;
letter-spacing: -0.6px;
  background: var(--primary, linear-gradient(93deg, #2CA1CE 1.93%, #139A9F 79.13%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
li,ul,span{
line-height: 24px !important;
}
.text-side p{

font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px !important;
  color: #6d6d6d !important;
}
.custom-images-text-module img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
   .content-wrapper {
    padding: 0px;
}
  .custom-images-text-module .content-wrapper{ gap: 30px;}
  h3 {
        font-size: 24px !important;
    }
  .custom-images-text-module .text-side {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .custom-images-text-module .content-wrapper {
    flex-direction: column;
}
  .custom-images-text-module .image-side, .custom-images-text-module .text-side {
    flex: 1 1 50%;
    max-width: 100%;
}
}