#ACTIVITY {
  background: #fff;

  .section-title-white {
    svg {
      height: 1000px;
    }
  }

  .activities {
    width: 100%;
  }

  @media (max-width: 1050px) {
    .activities {
      width: 80%;
    }
  }

  .contents-container {
    .flex-col {
      width: 100%;
      gap: 20px;
    }
  }

  .text-container {
    width: 400px !important;
    height: 300px;
    h3 {
      font-size: 48px;
      font-family: "Dela Gothic One";
      color: #773692;
    }
  }

  @media (max-width: 1050px) {
    .text-container {
      width: 100% !important;
    }
  }

  @media (max-width: 650px) {
    .text-container {
      width: 100% !important;
      h3 {
        font-size: 32px;
      }
    }
  }

  .img-container {
    position: relative;
    width: 500px;
    height: 300px;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    svg {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }
  }

  @media (max-width: 650px) {
    .img-container {
      width: 90%;
    }
  }

  .in {
    height: 300px;
    position: relative;
    h3{
      width: 100%;
    }
    p {
      text-align: left;
      padding-right: 10px;
    }
    img {
      clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    .text-container {
      position: absolute;
      background-color: rgba(255, 255, 255, 0.8);
      z-index: 10;
      top: 0;
      left: 0;
    }
    .img-container {
      position: absolute;
      top: 0;
      right: 0;
    }
  }

  .off {
    height: 300px;
    position: relative;
    h3 {
      width: 100%;
      text-align: right;
    }
    p {
      width: 100%;
      text-align: right;
    }
    img {
      clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
    }
    .text-container {
      position: absolute;
      background-color: rgba(255, 255, 255, 0.8);
      z-index: 10;
      top: 0;
      right: 0;
    }
    .img-container {
      position: absolute;
      top: 0;
      left: 0;
    }
  }
}
