.main-page-header {
    box-sizing: border-box;
    background-image: url("/assets/images/resource/page-header-bg.png");
    margin: 0 auto;
    margin-top: 160px;
    border-radius: 13px;
    width: 98%;
    margin-inline: auto;
    padding-inline: 24px;
    padding-block: 100px;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.main-page-header h1 {
    margin: 0;
    color: #FFF;
    font-weight: 500;
    text-align: center;
    /* line-height: 1.1; */
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 16px;
}

.main-page-header p {
    margin: 0;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    text-transform: uppercase;
}

@media only screen and (max-width:1200px) {
    .main-page-header {
        margin-top: 150px !important;
    }
}

@media only screen and (max-width:990px) {
    .main-page-header {
        margin-top: 80px !important;
    }

    .main-page-header h1 {
        font-size: 38px;
    }
}

@media only screen and (max-width:676px) {
    .main-page-header h1 {
        font-size: 32px;
    }

    .main-page-header p {
        font-size: 14px;
    }
}

@media only screen and (max-width:420px) {
    .main-page-header h1 {
        font-size: 28px;
    }

    .main-page-header p {
        font-size: 13px;
    }
}

.hospital-guide-wrapper {
    padding: 24px 16px;
    /* background-color: #fff; */
    background-color: #e9f1fe;

    margin: 16px;
    border-radius: 17px;
}

.divider-header {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #ed3438;
    padding-block: 16px;
    padding-block-end: 30px;
}

.divider-header h2,
.divider-header p {
    width: 50%;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: #000;
}

.divider-header h2 {
    color: #3E4095;
}

@media only screen and (max-width:767px) {
    .divider-header {
        flex-direction: column;
    }

    .divider-header h2,
    .divider-header p {
        width: 100%;
    }

    .divider-header h2 {
        margin-bottom: 10px;
        text-align: center;
    }
}

/* Details Section */

.doctor-row {
    background: #edf5ff;
    box-shadow: 0px 0px 10px 0 #00000020;
    border-radius: 17px;
    padding: 24px;
    background: red;
    background: #f0f7ff;
}

.doctor-row img {
    width: 100%;
    border-radius: 17px;
    border: 4px solid #FFF;
}

.doctor_info .designation {
    margin: 0;
    color: #006B3E;
    font-family: "DM Sans", Sans-Serif;
    font-weight: 500;
    font-size: 14px;
}

.doctor_info .name {
    font-family: "DM Sans", Sans-Serif;
    margin: 0;
    color: #3E4095;
    margin-block-start: 6px;
    margin-block-end: 24px;
    font-size: 32px;
}

@media only screen and (max-width:776px) {
    .doctor_info .name {
        font-size: 28px;
    }

    .doctor_info .designation {
        margin: 0;
        margin-block-start: 16px;
    }

    .doctor-row {
        padding: 24px 10px;
    }
}

@media only screen and (max-width:476px) {
    .doctor_info .name {
        font-size: 24px;
    }
}

.doctor_info .doctor_info__details p {
    font-family: "DM Sans", Sans-Serif;
    color: #555657;
    font-size: 16px;
    margin-block-end: 10px;
}

.doctor_info .doctor_info__details strong {
    color: #3E4095;
}

.doctor_socials {
    margin-block-start: 30px;
    display: flex;
    gap: 10px;
}

.doctor_socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 30px;
    background: #006B3E;
    color: #FFF;
    font-size: 16px;
    transform: scale(1);
    transition: all 0.1s ease-in-out;
}

.doctor_socials a:hover {
    transition: all 0.1s ease-in-out;
    transform: scale(1.1);

}

.doctor-row.biography h2 {
    margin: 0;
    color: #3E4095;
    margin-block-end: 16px;
    font-size: 28px;
    font-weight: 600;
}

.doctor-row.biography p {
    font-family: "DM Sans", Sans-Serif;
    color: #555657;
    font-size: 16px;
}


@media only screen and (max-width:776px) {
    .doctor-row.biography h2 {
        font-size: 24px;
    }
}

.book-appmnt a {
    display: inline-block;
    margin-top: 16px;
    background: #ed3438;
    border: 1px solid #ed3438;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    color: #FFF;
    font-family: "DM Sans", Sans-Serif;
    transition: all 0.3s ease-in-out;
}



.book-appmnt a:hover {
    background: #FFF;
    transition: all 0.3s ease-in-out;
    color: #ed3438;
}

.biography table {
    width: 100%;

}


.biography table td,
.biography table th {
    color: #555657;
    padding: 10px;

}

.biography table tr {
    border-bottom: 1px solid #98949450;

}