main {
  section#services {
    background-color: #e9e2db;
    padding: 4rem;

    .widthContainer {
      h1 {
        text-align: center;
        text-transform: uppercase;
        font-weight: normal;
        margin-top: 4rem;
        margin-bottom: 2rem;
        font-size: 36px;
      }

      .cardContainer {
        width: 100%;
        flex-wrap: wrap;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .card {
          position: relative;
          background-color: #a0bacf;
          width: 380px;
          min-height: 620px;
          padding: 2rem;
          display: flex;
          flex-direction: column;

          h2 {
            text-align: center;
            margin-bottom: 1rem;
            color: black;
          }

          p {
            color: black;
            margin-bottom: 1rem;
            text-align: justify;
            font-size: 16px;
          }

          ul {
            margin-bottom: 6rem;

            li {
              list-style: inside;
              color: black;
            }
          }

          a {
            position: absolute;
            bottom: 2rem;
            border: none;
            outline: none;
            padding: 1rem 4rem;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            place-self: center;
            font-size: 16px;
            background-color: #fff;
            text-decoration: none;
            color: black;
          }

          a:hover {
            background-color: #d3d3d3;
          }
        }
      }
    }
  }
}

@media (max-width: 1270px) {
  .cardContainer {
    justify-content: center !important;
    gap: 40px;
  }
}
