.weoffer .weoffer__in {
    padding-bottom: 20px;
  }
  .weoffer .weoffer__title {
    margin-bottom: 50px;
    overflow: hidden;
  }
  .weoffer__title h2 {
    justify-content: center;
    align-items: center;
    color: #555;
    text-align: center;
    display: flex;
  }
  .weoffer__title h2 span {
    font-size: 3rem;
    transition: 1.5s;
    font-weight: 500;
    margin: 10px 0 30px 0;
  }
  .weoffer__title h2 span:nth-child(10n+1) {
    transition-delay: 0.1s;
  }
  .weoffer__title h2 span:nth-child(10n+2) {
    transition-delay: 0.2s;
  }
  .weoffer__title h2 span:nth-child(10n+3) {
    transition-delay: 0.3s;
  }
  .weoffer__title h2 span:nth-child(10n+4) {
    transition-delay: 0.4s;
  }
  .weoffer__title h2 span:nth-child(10n+5) {
    transition-delay: 0.5s;
  }
  .weoffer__title h2 span:nth-child(10n+6) {
    transition-delay: 0.6s;
  }
  .weoffer__title h2 span:nth-child(10n+7) {
    transition-delay: 0.7s;
  }
  .weoffer__title h2 span:nth-child(10n+8) {
    transition-delay: 0.8s;
  }
  .weoffer__title h2 span:nth-child(10n+9) {
    transition-delay: 0.9s;
  }
  .weoffer__title h2 span:nth-child(10n+10) {
    transition-delay: 0.10s;
  }

  .weoffer__title h2:hover span {
    filter: blur(20px);
    opacity: 0;
    transform: scale(2);
  }
  .weoffer .weoffer__services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
  }
  .weoffer .weoffer__services_point {
    max-width: 500px;
    width: 100%;
    text-align: center;
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
    transition: transform .2s
  }
  .weoffer .weoffer__services_point:hover {
    transform: scale(1.1);
  }
  
  @media screen and (max-width: 676px) {

    .weoffer {
      padding-top: 0;
    }

    .weoffer .weoffer__title {
      width: 100%;
      max-width: 350px;
    }
    .weoffer__title h2 {
      width: 100%;
      max-width: 350px;
    }
    .weoffer__title h2 span {
      font-size: 1.5rem;
      transition: 1.5s;
      font-weight: 500;
      margin: 10px 0 30px 0;
    }
    .weoffer .weoffer__services {
      display: flex;
      flex-direction: column;
      padding: 0 10px;
    }
    .weoffer .weoffer__services_point {
      max-width: 350px;
      width: 100%;
      text-align: center;
      padding: 20px 20px;
      transition: transform .2s
    }
  }