/* SAMPLES PAGE */
.sample-card{
    width: 40vw;
    max-width: 390px;
    height: 350px;
    transition: all ease-in-out 0.1s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 8px 0 rgb(218 200 200 / 20%), 0 6px 20px 0 rgb(25 25 25 / 19%);
    
}
.sample-card:hover{
    transform: scale(1.1);
}
.sample-card h3{
    margin-bottom: 20px;
}
.sample-card button{
    background-color: #2B86B0;
    border: none;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 50px;
    outline: none;
}
.sample-card button:hover{
    background-color: #237499;
}

.samples-container{
    padding: 40px 0px;
}
@media(max-width: 780px){
    .samples-container{
        flex-direction: column;
        padding: 40px;
    }
    .sample-card{
        width: 85vw;
        margin: 20px 0px;
    }
}
