/*=======================================
About Top
========================================*/
.about-left img {
    border-radius: 45px;
}

.about-right ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-right li {
    display: flex;
    align-items: flex-start;
    width: calc(50% - 10px);
    color: var(--my-secondary);
    font-weight: 500;
}

.about-right li i {
    color: var(--my-primary);
    padding-right: 10px;
}

/*================================================
dentist profile Section
=================================================*/
.dentist-profile-full {
    border-radius: 45px;
    overflow: hidden;
}

.dentist-right li {
    margin-bottom: 15px;
}

.social-link {
    column-gap: 15px;
}

.social-link i {
    color: #fff;
    transition: all .4s ease;
}

.social-link i:hover {
    color: var(--my-primary);
}

/*=======================================
Process Section
========================================*/
.process-img-box {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.process-count {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 16px;
    font-weight: bold;
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;
}

.process-count::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--my-secondary);
    transform: scale(0);
    border-radius: 16px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.process-img-box:hover .process-count::before {
    transform: scale(1);
}

.process-img-box:hover .process-count {
    color: #fff;
}

.process-img-box:hover.process-img-box img {
    transform: scale(1.1);
}

.process-card-bottom {
    margin-top: 15px;
}