.b-doctor-card {
    padding: 1rem;
    display: flex;
    margin: 2rem auto;
}
@media screen and (max-width: 1000px) {
    .b-doctor-card {
        display: block;
    }
}
.b-doctor-card .b-doctor-card-profile {
    margin-right: 2rem;
    text-align: center;
    width: 150px;
    min-width: 150px;
    display: block;
}
@media screen and (max-width: 1000px) {
    .b-doctor-card .b-doctor-card-profile {
        margin-right: 0;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: left;
        margin-bottom: 20px;
    }
}
.b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}
@media screen and (max-width: 1000px) {
    .b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-img {
        margin: 0 10px 0 0;
    }
}
.b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    background-color: var(--color_theme_lightgray);
}
.b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-text {

}
.b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-name {
    margin: 10px auto 5px;
    font-weight: bold;
}
@media screen and (max-width: 1000px) {
    .b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-name {
        margin: 5px auto 20px;
        font-weight: bold;
        font-size: 20px;
    }
}
.b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-link {
    
}
.b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-link a {
    position: relative;
    transition: .3s;
    text-decoration: none;
    padding-right: 15px;
    color: var(--color_theme_main);
}
@media screen and (max-width: 1000px) {
    .b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-link a {
        font-size: 18px;
    }
}
.b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-link a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: solid 2px var(--color_theme_main);
    border-right: solid 2px var(--color_theme_main);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 0;
    transition: .3s;
}
.b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-link a:hover {
    opacity: .7;
    transition: .3s;
}
.b-doctor-card .b-doctor-card-profile .b-doctor-card-profile-link a:hover::after {
    transition: .3s;
    right: -5px;
}
.b-doctor-card .b-doctor-card-text {
    background-color: var(--color_theme_lightgray);
    padding: 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 10px;
}
.b-doctor-card .b-doctor-card-text p {
    margin: 0;
}
