
.card-row{
    display: flex;
    align-items: center;
    justify-content: center;
    
    
    
}
.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 500px;
    width: 350px;
    padding: 10px 20px;
    margin: 10px;
    border: 1px solid #00ADEF;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out; 
}

.card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    
  }

h2{
    text-align: center;
    font-size: 25px;
}
ul{
    
    text-align: justify;
    line-height: 3;
    list-style: none;
    font-size: 15px;  
    color: #746A75;
}

.card-button .career-button {
    font-size: 17px;
    cursor: pointer;
    height: 60px;
    width: 220px;
    padding: 13px 18px;
    background-color: #00ADEF;
    margin: 10px;
    color: white;
    border-radius: 4px;
    text-align: center;
    line-height: 39px;
    text-decoration: none;
    
}



.icon-color{
    color: #00ADEF;
}
@media screen and (max-width: 768px) {
    .card-row {
      flex-direction: column;
    }
  
    .card {
      width: 100%;
    }
  }