/* SERVICES */

.services-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 100px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  border-radius: 10px;
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
  height: 425px;

  .service-card__header {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid #000;
    text-align: center;

    h3 {
      margin-bottom: 0;
    }
  }

  .service-card__header.main {
    background-color: #101010;
    color: #fff;
  }

  .service-card__body {
    display: flex;
    flex-direction: column;
    padding: 15px 20px 20px 20px;
    justify-content: space-between;
    align-items: center;
    height: 100%;

    .service-card__description {
      b {
        font-weight: 600;
      }
    }

    .service-card__price-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      width: 100%;

      .button {
        background-color: #fafafa;
        color: #000;
        border: 1px solid #000;
      }

      .button:hover {
        background-color: #000;
        color: #fff;
      }
    }
  }

  .service-card__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}

/* ADAPTIVE */

@media (max-width: 810px) {
  .service-card {
    height: auto;

    .service-card__body {
      padding: 10px;
      gap: 10px;
    }

    .service-card__header {
      h3 {
        font-size: 24px;
      }
    }
  }

  .service-card__price {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .services-description {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }
}


