#home-services-sections {
  display: flex;
  flex-direction: column;
  max-width: 1130px;
  padding: 60px 15px 0px 15px;
  width: 100%;
  > .services {
    display: flex;
    gap: 0px 15px;
    margin: 60px 0px 0px 0px;
    > 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 0px;
    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: 310px;
          > 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: 1 1 400px;
        max-width: 600px;
        > img {
          width: 100%;
        }
      }
    }
  }
}
