#home-services-individuals {
  display: flex;
  flex: 1;
  flex-direction: column;
  max-width: 1130px;
  padding: 100px 15px 100px 15px;
  width: 100%;
  > .caption {
    align-items: center;
    display: flex;
    gap: 0px 30px;
    margin: 80px 0px 20px 0px;
    > div {
      display: flex;
      flex: 0 1 150px;
      justify-content: flex-start;
      min-width: 100px;
      > img {
        filter: drop-shadow(10px 20px 1px rgb(220, 220, 220));
        width: 100%;
      }
    }
    > p {
      font-family: 'Roboto Black', sans-serif;
      position: relative;
      > span {
        color: var(--colorGreen);
        font-family: inherit;
        font-size: 2.4rem;
        line-height: 1;
      }
      &::before {
        background-color: var(--colorGreen);
        border-radius: 2px 30px 2px 2px;
        content: '';
        height: 60px;
        left: -15px;
        opacity: 0.25;
        position: absolute;
        top: -20px;
        width: 60px;
        z-index: -1;
      }
    }
  }
  > .services {
    display: flex;
    gap: 0px 15px;
    > a {
      background-color: white;
      border-radius: 5px;
      box-shadow: 1px 1px 3px var(--colorBlue);
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 10px 10px 10px 10px;
      text-decoration: none;
      > div {
        align-items: center;
        display: flex;
        gap: 0px 10px;
        @media (max-width: 600px) {
          align-items: flex-start;
          flex-direction: column;
        }
        > h3 {
          font-size: 1.8rem;
        }
        > img {
          width: 70px;
        }
      }
      > p {
        &:nth-of-type(1) {
          align-items: flex-end;
          display: flex;
          flex: 1;
          font-size: 1.4rem;
        }
        &:nth-of-type(2) {
          align-self: flex-end;
          color: var(--colorGreen);
          font-family: 'Roboto Black', sans-serif;
          font-size: 1.8rem;
        }
      }
    }
  }
  > .title {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    justify-content: space-between;
    > div {
      &:nth-of-type(1) {
        display: flex;
        flex: 0 1 auto;
        flex-direction: column;
        gap: 20px 0px;
        > .bar {
          background-color: var(--colorGreen);
          height: 2px;
          width: 50px;
        }
        > div {
          max-width: 260px;
          > p {
            font-size: 2rem;
            > span {
              font-family: 'Roboto Black', sans-serif;
              font-size: inherit;
            }
          }
        }
        > h2 {
          color: var(--colorGreen);
          font-size: 1.8rem;
          margin: 0px 0px 0px 0px;
        }
      }
      &:nth-of-type(2) {
        flex: 0 1 250px;
        > img {
          width: 100%;
        }
      }
    }
  }
}
