.page-header {
    padding-top: 122px;
    padding-bottom: 48px;
}

/* Profile */
#profile .card {
    box-shadow: var(--shadow);
    border-radius: 8px;
}

#profile .card-body {
    padding: 16px;
}

.profile-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 16px;
}

.profile-name {
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    color: var(--black);
    margin-bottom: 8px;
}

.profile-expertise {
    background: var(--primary);
    border-radius: 8px;
    padding: 4px;
    margin-right: 24px;
    margin-bottom: 12px;
}

.btn-profile {
    background-color: var(--accent);
    color: var(--white);
    border-radius: 4px;
    font-family: var(--font-1);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    padding: 6px;
    display: block;
    width: 100%;
}
/* End Profile */

/* Information */
#information .card {
    box-shadow: var(--shadow);
    border-radius: 8px;
}

#information .card-body {
    padding: 16px;
}

.information-divider {
    margin: 16px 0;
    border-color: var(--primary);
}

.information-list::marker {
    color: var(--primary);
}
/* End Information */


.specialist-btn-reserve {
    background: #F10E14;
    border-radius: 4px;
    font-family: var(--font-2);
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    padding: 8px 16px;
    display: block;
    margin-left: auto;
    transition: var(--transition);
}

.specialist-btn-reserve:hover {
    color: white;
    filter: brightness(.9);
}

@media (max-width: 767.98px) {
    .profile-img {
        height: 200px;
    }

    .profile-expertise {
        margin-right: 8px;
        margin-bottom: 4px;
    }
}
