/* SIMULATION HIRING OPTIONS CARD */
.hiring-option-card {
    cursor: pointer; 
    width: 268px;
    height: 357px;
    background-color: white;
    display: inline-block; 
  
  }
  
  .hiring-option-card-one {
    background: #4BBED3;
    border-radius: 2px;
    height: 216px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .hiring-option-card-one .hiring-option-type {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: normal;
    text-align: center;
    color: #004F8B;
    margin-bottom: 17px;
  }
  
  .hiring-option-card-one .hiring-option-price  {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: bold;
    font-size: 53px;
    line-height: normal;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 17px;
  }
  
  .hiring-option-card-one .hiring-option-time {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: normal;
    text-align: center;
    color: #FFFFFF;
  }
  
  .hiring-option-card-two {
    background: #FFFFFF;
    border: 1.5px solid #4BBED3;
    border-radius: 2px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 142px;
  }
  
  .hiring-option-card-two .hiring-option-month-price {
    font-family: "Source Sans Pro";
      font-style: normal;
      font-weight: bold;
      font-size: 31px;
      line-height: normal;
      text-align: center;
      color: #004F8B;
      margin-bottom: 8px;
  }
  
  .hiring-option-card-two .hiring-option-discount {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: normal;
    text-align: center;
    color: #4BBED3;  
  }
  
  @media (max-width: 768px) { 
    .dental-simulation-hiring-options-content .hiring-options-container .hiring-option-card {
      height: 202px;
      margin-bottom: 28px;
    }
  
    .hiring-option-card-one {
      height: 119px;
    }
  
    .hiring-option-card-one .hiring-option-type {
      font-size: 12px;
      line-height: normal;
      text-align: center;
      margin-bottom: 8px;
    }
  
    .hiring-option-card-one .hiring-option-price {
      font-size: 24px;
      line-height: normal;
      text-align: center;
      margin-bottom: 8px;
    }
  
    .hiring-option-card-one .hiring-option-time {
      font-size: 18px;
      line-height: normal;
      text-align: center;
      margin-bottom: 8px;
    }
  
    .hiring-option-card-two {
      height: 84px;
    }
  
    .hiring-option-card-two .hiring-option-month-price {
      font-size: 20px;
      line-height: normal;
      text-align: center;
    }
  
    .hiring-option-card-two .hiring-option-discount {
      font-size: 14px;
      line-height: normal;
      text-align: center;
    }
  }