/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 27 2021 | 10:14:15 */
  .text-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .title h3,
  .title p {
    background-color: transparent;
    color: #000;
    display: block;
    padding: 4.5em;
    margin: 0;
    font-size: 48px;
  }
  .title p {
    position: absolute;
    color: #fff;
    -webkit-clip-path: inset(-5% 50% -1% -5%);
    clip-path: inset(-5% 50% -1% -5%);
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .parent {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 0.5fr repeat(3, 1fr);
    grid-template-rows: repeat(6, 200px);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .title { grid-area: 3 / 3 / 4 / 6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    padding: 30px 0px;
    z-index: 1;
    font-weight: 900;
  }
  .subtitle { grid-area: 2 / 5 / 3 / 8;
    display: flex;
    align-items: end;
    z-index: 10;
  }
  .par { grid-area: 4 / 5 / 7 / 8;
    font-size: 16px;
    z-index: 10;
  }
  .small-image { grid-area: 4 / 2 / 7 / 3;
    z-index: 10;
  }
  .small-image img {
    width: 100%;
  }

  @media screen and (max-width: 600px) {
    .parent {
      display: block;
    }
    .small-image {
      display: none;
    }
    .title h3,
     .title p {
      padding: 2em;
    }
    .title p {
      -webkit-clip-path: inset(-5% 40% -1% -5%);
      clip-path: inset(-5% 40% -1% -5%);
      background-position: center;
    }
  }

