.doctors_list_title {}

.doctors_list_item_link {
    display: block;
    width: 100%;
}

.doctors_list {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.doctors_list a {
    text-decoration: none;
}

.doctors_list_description {
    font-size: 20px;
    text-transform: uppercase;
    padding-left: 4px;
    color: var(--theme-base-color);
}

.doctors_list_title {}

.doctors_list_title h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 44px;
}

.doctors_list_item {
    height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.doctors_list_item_name {
    position: relative;
    z-index: 2;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 40px;
    transition: 0.3s;
}



.doctors_list_item_label {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 14px;
}


.doctors_list_item_value {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.doctors_list_item_img {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.doctors_list_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.doctors_list_item_gradient {
    position: absolute;
    top: 60%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    backdrop-filter: blur(4px);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0) 100%);

}

.doctors_list_item_btn {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 20px;
}

.doctors_list_item_blur {
    backdrop-filter: blur(4px);
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #0000002b;
    z-index: 1;
}

.doctors_list_item_bottom {}

.doctors_list_item_left {}

.doctors_list_item_right {}

.doctors_list_item_area {
    position: absolute;
    bottom: -80px;
    left: 0px;
    right: 0px;
    transition: 0.3s;
    padding-left: 30px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.doctors_list .doctors_list_item_link:hover .doctors_list_item_img img {
    width: 110%;
    height: 110%;
    max-width: 110%;
    max-height: 110%;
    margin-left: -5%;
    margin-top: -5%;
    transition: 0.3s;
}

.doctors_list .doctors_list_item_link:hover .doctors_list_item_area {
    bottom: 0px;
    transition: 0.3s;
}

.doctors_list .doctors_list_item_link:hover .doctors_list_item_name {
    padding-bottom: 20px;
}


.doctors_list_item_btn {
    display: none;
}

.doctors_list_scroll {
    overflow-x: hidden;
}

.doctors_list_content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

.doctors_item_content {
    width: 300px;
}

@media (max-width: 991px) {
    .doctors_list_scroll {
        overflow-x: scroll;
        margin: 0px calc(var(--bs-gutter-x) * -0.5);
        padding: 0px 15px;
    }

    .doctors_list_item {
        height: 360px;
    }

    .doctors_list_content {
        width: max-content;
    }

    .doctors_list_title {
        padding-bottom: 20px;
    }

    .doctors_item_content {
        width: 300px;
    }

    .doctors_list_title h2 {
        font-size: var(--heading-font-size);
        line-height: var(--heading-line-height);
    }

    .doctors_list_description {
        font-size: 16px;
    }

    .doctors_list .container {
        padding: 0px;
    }


}
