@media (max-width: 768px) {
    .title {
        color: antiquewhite;
        font-size: 10vw;
    }

    .sub-title {
        font-size: 7vw;
    }

    .img-car {
        border-radius: 10px;
        height: 35vh;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .title {
        color: antiquewhite;
        font-size: 10vw;
    }

    .sub-title {
        font-size: 7vw;
    }

    .img-car {
        border-radius: 10px;
        max-height: 70vh;
    }
}

@media (min-width: 1025px) {
    .title {
        color: antiquewhite;
        font-size: 7vw;
    }

    .sub-title {
        font-size: 5vw;
    }

    .img-car {
        border-radius: 10px;
        max-height: 60vh;
    }
}

.doc-details {
    max-height: 10vh;
    overflow-y: scroll;
}

.pt-details {
    max-height: 20vh;
    overflow-y: scroll;
}

.case-details {
    max-height: 60vh;
    overflow-y: scroll;
}

.comment-divider {
    width: 50%;
    margin-left: 25%;
    border-width: 3px;
}

.comments-sec {
    max-height: 45vh;
    overflow-y: scroll;
}   