#services {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 75px 0px;
  max-width: 1130px;
  padding: 100px 15px 100px 15px;
  width: 100%;
  > div {
    display: flex;
    flex-wrap: wrap;
    &:nth-of-type(1) {
      gap: 50px 20px;
      > p {
        flex: 1 1 400px;
        font-size: 2rem;
        min-width: 0px;
        > span {
          color: var(--colorGreen);
          font-family: 'Roboto Black', sans-serif;
          font-size: 2.4rem;
          line-height: 1;
        }
      }
      > div {
        display: flex;
        flex: 1 1 400px;
        flex-direction: column;
        gap: 15px 15px;
        > div {
          align-items: flex-start;
          display: flex;
          gap: 10px 10px;
          > img {
            height: 35px;
            margin: 5px 0px 0px 0px;
          }
          > p {
            align-self: center;
            > span {
              font-family: 'Roboto Black', sans-serif;
              font-size: inherit;
            }
          }
        }
      }
    }
    &:nth-of-type(2) {
      gap: 20px 20px;
      > div:not(.spacer) {
        background-color: white;
        border: 1px solid var(--colorBlue);
        border-radius: 5px;
        display: flex;
        flex: 1 1 400px;
        flex-direction: column;
        overflow: hidden;
        > a {
          align-items: center;
          align-self: flex-end;
          border: 1px solid var(--colorBlue);
          border-radius: 25px;
          display: flex;
          gap: 10px 10px;
          margin: 10px 20px 20px 10px;
          padding: 5px 10px 5px 10px;
          text-decoration: none;
          > img {
            height: 30px;
          }
          > p {
            font-family: 'Roboto Black', sans-serif;
            font-size: 2.2rem;
          }
        }
        > div {
          align-items: center;
          background-color: var(--colorBlue);
          display: flex;
          gap: 0px 10px;
          padding: 10px 10px 10px 10px;
          > div {
            align-items: center;
            background-color: white;
            border: 2px solid var(--colorGreen);
            border-radius: 50% 50% 50% 50%;
            display: flex;
            flex: 0 0 70px;
            height: 70px;
            justify-content: center;
            > img {
              width: 60px;
            }
          }
          > h2 {
            color: white;
          }
        }
        > p {
          flex: 1;
          margin: 15px 10px 5px 10px;
        }
      }
      > div.spacer {
        flex: 1 1 400px;
      }
    }
  }
}
