#home-services-sections {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 40px 0px;
  margin: 40px 0px 0px 0px;
  max-width: 1130px;
  width: 100%;
  > div {
    display: flex;
    flex-wrap: wrap;
    &:nth-of-type(1) {
      align-items: center;
      gap: 40px 0px;
      justify-content: space-between;
      padding: 0px 15px 0px 15px;
      > 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;
              }
            }
          }
          > h1 {
            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%;
          }
        }
      }
    }
    &:nth-of-type(2) {
      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(50% - 20px);
        flex-direction: column;
        margin: 10px 10px 10px 10px;
        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;
          }
          > 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;
          }
        }
      }
    }
  }
}
