#comments{
    background-color: #fcfcfa;
}

.comments{
    text-align: center;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.comment{
    width: 440px;
    height: 300px;
    background-color: white;
    margin: 0 auto;
    margin-top: 50px;
    border-radius: 20px;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%), 0px 3px 6px rgb(0 0 0 / 23%);
    overflow: hidden;
    display: inline-block;
    margin: 0 20px;
    padding: 10px 20px;
}

.patient-data{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
}

.patient-icon{
    width: 70px;
    height: 70px;
    background-color: #3b392d;
    border-radius: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    float: left;
    margin-right: 20px;
}

.patient-icon > div{
    margin: 0 auto;
}

.patient-icon > div > img{
    width: 55%;
    margin-left: 1px;
    margin-top: 4px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(271deg) brightness(108%) contrast(101%);
}

.profile-image{
    filter: initial !important;
    width: 100% !important;
}

.comment-data{
    text-align: left;
}

.comment-patient-name{
    font-size: 20px;
    font-weight: bold;
}

.comment-date{
    font-size: 15px;
    color: #5c6474
}

.comment-text{
    height: calc(100% - 80px);
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 15px;
}

.comment-text p{
    margin: 10px 0px;
    font-style: italic;
}

@media only screen and (max-width: 599px) {
    .slider{
        height: 750px;
    }

    .comments{
        display: block;
    }

    .comment{
        width: 90%;
        display: block;
        margin: 20px;
    }

    .slider [class*="ctrl"]{
        top: 42%
    }

    .ctrlNext {
        right: 0px;
    }

    .ctrlPrev {
        left: 0px;
    }

    .patient-icon{
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .comment-patient-name {
        font-size: 15px;
    }

    .comment-date {
        font-size: 13px;
    }

    .comment-text{
        font-size: 13px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px){
    .slider{
        height: 580px;
    }

    .comment{
        height: 390px;
    }
}