/* From Uiverse.io by alexruix */ 
/*Neo Brutalism pricing card*/

.freelance-container
{
    
  background-color: #FFF8E8;
   
}

.cards-container
{
    display: flex;
    justify-content: center;
    align-items: center;
    
    flex-wrap: wrap;
    margin-top: 2rem;


}

.heading h2
{
  margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #2F3645;
    color: #FFF8E8;
    border-radius: 4px;
}

.card {
    margin: 1rem;
    width: 190px;
    background: #9BEC00;
    padding: 1rem;
    border-radius: 1rem;
    border: 0.5vmin solid #05060f;
    box-shadow: 0.4rem 0.4rem #05060f;
    overflow: hidden;
    color: black;
  }
  
  /*Card content*/
  .pricing-block-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .pricing-plan {
    color: #05060f;
    font-size: 1.3rem;
    line-height: 1.25;
    font-weight: 700;
  }
  
  .price-value {
    display: flex;
    color: #05060f;
    font-size: 1.8rem;
    line-height: 1.25;
    font-weight: 700;
  }
  
  .pricing-note {
    opacity: 0.8;
  }
  
  /*Checklist*/
  .check-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  
  .check-list-item {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  

  @media (max-width:900px) {

    .cards-container
    {
      display: flex;
      justify-content: center;
      flex-direction: column;
      flex-wrap: wrap;
    }
    
  }