/* region Page Title*/
.page-title-container {
    position: relative;
    padding: 0;
    overflow: hidden;
    max-height: 420px;
    max-width: 2048px;
}
.page-title-image {
    width: 100%;
    height: auto;
    object-fit: fill;
    object-position: left;
}
.page-title-image-large {
    display: none;
}
@media (min-width: 1600px) {
    .page-title-image-large {
        display: block;
    }
    .page-title-image-small {
        display: none;
    }
}
.page-title-text {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2em;
    color: whitesmoke;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px #000000d9;
    border-bottom: 2px solid rgb(255 255 255 / 35%);
    padding: 6px;
}
@media (max-width: 991px) {
    .page-title-text {
        border-bottom: none;
    }
}
/* endregion */

/* region CV */
.cv-photo {
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
}
.cv-photo:hover {
    transform: scale(1.05);
}
@media (min-width: 1400px) {
    .cv-photo {
        max-width: 85% !important;
    }
}
.cv-header {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #555e62;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid #e0e0e0;
}
.cv-text-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.cv-text {
    color: rgb(85 85 85);
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.5px;
    padding: 0 16px;
}
/* endregion */

/* region Doctor Gallery*/
.doctor-gallery-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    color: #555e62;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    padding: 14px 28px;
    border-bottom: 2px solid #e0e0e0;
}
#doctorPhotoGalleryCarousel > .carousel-inner > .carousel-item {
    padding: 24px 16px;
}
.doctor-gallery-carousel-photo-item {
    border-radius: 256px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease-in-out;
}
.doctor-gallery-carousel-photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
/* endregion */

/*region Patients Comments */
.doctor-photoGallery-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.patient-comments-photo {
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
}
.patient-comments-photo:hover {
    transform: scale(1.05);
}

.patient-comments-col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.patient-comments-col h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* A clean, professional font */
    font-size: 2.4rem; /* Adjust the size as needed */
    color: #555e62; /* A calming blue often associated with healthcare */
    text-transform: uppercase; /* Uppercase letters for a touch of sophistication */
    text-align: center; /* Center-align the text */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    padding: 14px 28px;
    border-bottom: 2px solid #e0e0e0; /* A subtle bottom border */
    margin-bottom: 2rem; /* Adds some space below the heading */
}
.patient-comment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 80px;
    min-height: 490px;
}
.patient-comment-itself {
    font-style: italic;
    color: #7f8c8d;
}
.patient-comment-owner-container {
    display: flex;
    justify-content: center;
    text-align: center;
}
.patient-comment-owner-container-inside {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.patient-comment-owner {
    font-weight: bold;
    margin: 0;
}
.patient-comment-owner-country {
    margin: 0;
}
.patient-comment-flag {
    height: 44px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}
#patientCommentsSlider .carousel-inner {
    border: 1px solid #ecf0f1;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#patientCommentsSlider.carousel-indicators button {
    background-color: #2c3e50;
}
#patientCommentsSlider .carousel-indicators .active {
    background-color: #2c3e50;
}

/* X-Small devices */
@media (min-width: 0px) and (max-width: 575px) {
    .patient-comment {
        padding: 48px;
        min-height: 785px;
    }
}

/* Small devices */
@media (min-width: 576px) and (max-width: 767px) {
    .patient-comment {
        padding: 54px;
        min-height: 606px;
    }
}

/* Medium devices */
@media (min-width: 768px) and (max-width: 991px) {
    .patient-comment {
        padding: 50px;
        min-height: 610px;
    }
}

/* Large devices */
@media (min-width: 992px) and (max-width: 1199px) {
    .patient-comment {
        padding: 62px;
        min-height: 575px;
    }
}

/* X-Large devices */
@media (min-width: 1200px) and (max-width: 1399px) {
    .patient-comment {
        padding: 66px;
        min-height: 534px;
    }
}
@media (min-width: 992px) {
    .doctor-gallery-title {
        display: none;
    }
}
/* @media (min-width: 1400px) {} ---> Already UP! */
/* endregion */

/* region Working-Hours */
.working-hours-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.2rem;
    color: #555e62;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    padding: 14px 28px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 2rem;
}
.working-hours-col {
    padding: 16px;
}
.working-hours-content {
    background-color: #3d4048;
    border-radius: 16px;
    text-align: center;
    min-height: 320px;
}
.working-hours-title-icons {
    font-size: 50px;
    color: whitesmoke;
}
.working-hours-content-title {
    font-family: "Red Hat Display", sans-serif;
    font-size: 1.2rem;
    color: whitesmoke;
    text-shadow: 1px 1px 2px rgb(85 85 85 / 85%);
    border-bottom: 1px solid #767f94;
    padding: 0 0 4px;
    letter-spacing: 0.85px;
}
.working-hours-content-container {
    color: whitesmoke;
    display: flex;                 /* Enable flexbox */
    flex-direction: column;        /* Stack children vertically */
    justify-content: center;       /* Center content vertically */
    align-items: center;           /* Center content horizontally (optional) */
    min-height: 210px; /* Same as the parent's min-height */
}
.working-hours-content-container > p > a {
    color: #96a2b9; /* This makes the link use the text color of its parent element */
    text-decoration: none;
    background-color: transparent;
}
.working-hours-content-container > p > a:hover {
    color: #767f94;
    text-decoration: underline;
}

.assistant-btn {
    display: inline-block;
    background-color: #767f94;
    border: none;
    border-radius: .25rem;
    color: whitesmoke;
    font-weight: 400;
    padding: .375rem .75rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(138, 146, 172, 0.15);
    transition: all 0.3s ease;
    transform: scale(1);
}
.assistant-btn:hover {
    color: #fff;
    background-color: #96a2b9;
    border-color: #434854;
    transform: scale(1.025);
}
.assistant-btn:focus, .assistant-btn.focus {
    box-shadow: 0 0 0 0.2rem rgba(120, 128, 150, .25);
}
/* endregion */