
/*=================================
OUR TREATMENTS
=================================*/

.treatments{
    background:#f8fafc;
}

.treatments h2{
    font-size:38px;
    font-weight:700;
    color:#0E4D64;
}

.treatment-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    height: max-content;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.treatment-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.treatment-card img{
    width: 80px;
    height: 80px;
    transition:.4s;
    border: 1px solid;
    border-radius: 50%;
    padding: 10px;

}

.treatment-card:hover img{
    transform:scale(1.08);
}

.treatment-content{
    padding:20px;
}

.treatment-content h5{
    font-size:20px;
    font-weight:600;
    color:#0E4D64;
    margin:0;
}

@media(max-width:991px){



}

@media(max-width:768px){

.treatments h2{
    font-size:30px;
}



}

@media(max-width:576px){


.treatment-content h5{
    font-size:18px;
}

}