.image-container-small {
    position: relative;
    display: inline-block;
    width: 100%;
    height: inherit;
  }

  .text-container-small{
    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    bottom: 0;
    text-align: center;
    background-color: rgba(192, 20, 102, 0.5);
    padding: 20px;
    width: 100%;
    font-size: 16px;
    font-family: Ubuntu;
    color: #fff;
    overflow: auto;
    max-height: 100%;
  }

  .image-container-small img{
    width: 100%;
    height: 100%;
  }

  .btn-red{
    background-color: var(--main-color-red);
    color: #fff;
    font-size: 20px;
    font-family: Ubuntu;
    text-align: center;
    border: 2px solid #fff;
    padding: 5px;
  }

  .blog-w-50{
    width: 50%;
  }

  @media (max-width: 768px){
    .blog-w-50{
      width: 100%;
    }  
  }