/* From Uiverse.io by Creatlydev */ 
.card{
    min-height: 300px;
    width: min(90%, 100%);
}

.card-services {
    width: min(90%, 100%);
    margin: auto;
    background-color: #F8FAFC;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    border: 2px solid #fff;
    /*position: relative;*/
    height: 100%;
  }
  
  .card-services::before {
    content: "";
    position: absolute;
    height: 30px;
    width: 120px;
    background-color: #006D7C;
    top: 32px;
    right: -2.5px;
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .card__body {
    padding: 1rem .75rem;
    /*max-width: 25ch;*/
    margin: auto;
  }
  
  .card__title {
    font-weight: 800;
    color: #121513;
    font-size: 1.25rem;
    margin-block: 1.5rem 0.75rem;
    text-align: center;
  }
  
  .card__paragraph {
    text-align: justify;
    color: #303830;
    font-size: 0.875rem;
  }
  
  .card__ribbon {
    /*margin-top: 1.5rem;*/
    display: grid;
    place-items: center;
    height: 50px;
    background-color: #008A9A;
    position: relative;
    width: 110%;
    left: -5%;
    top: 10px;
    position: relative;
    border-radius: 0 0 2rem 2rem;
  }
  
  .card__ribbon::after,
  .card__ribbon::before {
    content: "";
    position: absolute;
    width: 20px;
    aspect-ratio: 1/1;
    bottom: 100%;
    z-index: -2;
    background-color: #006D7C;
  }
  
  .card__ribbon::before {
    left: 0;
    transform-origin: left bottom;
    transform: rotate(45deg);
  }
  
  .card__ribbon::after {
    right: 0;
    transform-origin: right bottom;
    transform: rotate(-45deg);
  }
  
  /*.card__ribbon-label {
    display: block;
    width: 84px;
    aspect-ratio: 1/1;
    background-color: #fff;
    position: relative;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 8px solid #006D7C;
    display: grid;
    place-items: center;
    font-weight: 900;
    line-height: 1;
    font-size: 1.5rem;
  }
  
  .card__ribbon-label::before,
  .card__ribbon-label::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    bottom: 50%;
  }
  
  .card__ribbon-label::before {
    right: calc(100% + 4px);
    border-bottom-right-radius: 20px;
    box-shadow: 5px 5px 0 #006D7C;
  }
  
  .card__ribbon-label::after {
    left: calc(100% + 4px);
    border-bottom-left-radius: 20px;
    box-shadow: -5px 5px 0 #006D7C;
  }*/
  