#home-services-individuals {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 40px 0px;
  margin: 60px 0px 100px 0px;
  max-width: 1130px;
  width: 100%;
  > div {
    display: flex;
    flex-wrap: wrap;
    &:nth-of-type(1) {
      gap: 40px 0px;
      justify-content: space-between;
      padding: 0px 15px 0px 15px;
      > div {
        &:nth-of-type(1) {
          align-self: center;
          display: flex;
          flex: 0 1 250px;
          flex-direction: column;
          gap: 20px 0px;
          > .bar {
            background-color: var(--colorGreen);
            height: 2px;
            width: 50px;
          }
          > p {
            font-size: 2rem;
            > span {
              font-family: 'Roboto Black', sans-serif;
              font-size: inherit;
            }
          }
          > h1 {
            color: var(--colorGreen);
            font-size: 1.8rem;
            margin: 0px 0px 0px 0px;
          }
        }
        &:nth-of-type(2) {
          align-self: flex-end;
          display: flex;
          flex: 0 1 200px;
          justify-content: center;
          > img {
            filter: drop-shadow(10px 20px 1px rgb(220, 220, 220));
            max-width: 150px;
            width: 100%;
          }
        }
      }
    }
    &:nth-of-type(2) {
      flex-wrap: wrap;
      margin: 0px 5px 0px 5px;
      > a {
        background-color: white;
        border-radius: 5px;
        box-shadow: 1px 1px 3px var(--colorBlue);
        display: flex;
        flex: 1 1 calc(25% - 20px);
        flex-direction: column;
        margin: 10px 10px 10px 10px;
        padding: 10px 10px 10px 10px;
        text-decoration: none;
        @media (max-width: 1000px) {
          flex: 1 1 calc(50% - 20px);
        }
        > div {
          align-items: center;
          display: flex;
          gap: 0px 10px;
          @media (max-width: 600px) {
            align-items: flex-start;
            flex-direction: column;
          }
          > h1 {
            font-size: 2rem;
          }
          > h2 {
            font-size: 1.6rem;
          }
          > 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;
          }
        }
      }
    }
  }
}
