.text-with-image-bound {
  width: 100%;
}

.text-with-image-bound__container {
  max-width: 1366px;
  display: flex;
  gap: 80px;      
}

.text-with-image-bound__container__text__title {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 125%;
  color: #333333;
}

.text-with-image-bound__container__text__content,
.text-with-image-bound__container__text__content div,
.text-with-image-bound__container__text__content p,
.text-with-image-bound__container__text__content ul,
.text-with-image-bound__container__text__content li {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: #333333;
}

.text-with-image-bound__container__image {
  width: 50%;
  display: flex;
}
{# ---- Tablet Breakpoint ---- #}

@media (max-width: 992px) {
  .text-with-image-bound {
  }
  .text-with-image-bound__container {
    flex-direction: column;
    gap: 0;
  }
  .text-with-image-bound__container__text {
    width: 100%;
  }
  .text-with-image-bound__container__text__title {
    font-size: 40px;
  }
  .text-with-image-bound__container__image {
    width: 100%;
  }
}

{# ---- Mobile Breakpoint ---- #}

@media (max-width: 765px) {
  .text-with-image-bound__container__text__title {
    font-size: 40px;
  }
}