.container-seo {
    position: relative;
    width: 100%;
    /* height: 400px; */
    overflow: hidden;
  }
  
  .container img {
    width: 100%;
    height: auto;
  }
  
  .text-container {
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  
  .text-container h1 {
    font-size: 17px;
    margin-bottom: 50px;
    font-family: 'PaisRegular';
  }
  
  .text-container p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .text-container h2 {
    font-size: 15px;
    line-height: 1.5;
    font-family: 'PaisRegular';
  }
  
  @media(max-width: 767px) {
      .text-container h1 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  
  .text-container h2 {
    font-size: 7px;
    line-height: 1.5;
  }
  
  
  .text-container p {
    font-size: 8px;
    line-height: 1.5;
  }
  
  }