.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 {
    padding-block: 16px;
    padding-block-end: 30px;
}

.divider-header .divider {
    height: 2px;
    background-color: #ED3438;
    margin-block: 16px;
}

.divider-header h2,
.divider-header p {
    margin: 0;
    font-family: "DM Sans", sans-serif;
}

.divider-header h2 {
    color: #3E4095;
}

.divider-header p {
    color: #006B3E;
    font-size: 14px;
}

@media only screen and (max-width:767px) {

    .divider-header h2,
    .divider-header p {
        margin-bottom: 10px;
        text-align: center;
    }
}

/* Laboratories Section */



.laboratories-section {
    margin-block: 40px;
}

.laboratories-section h2 {
    font-family: "DM Sans", sans-serif;
    margin-block-end: 24px;
    color: #3E4095;
    font-weight: 600;
}

.laboratories-section p {
    font-family: "DM Sans", sans-serif;
    color: #555657;
    font-weight: 400;
}

.laboratories-section li {
    font-family: "DM Sans", sans-serif;
    color: #555657;
    font-weight: 400;
}

.laboratory-list-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.laboratory-list-item a i {
    color: #ed3438;
    transform: rotate(-45deg);
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease-in-out;

}

.laboratory-list-item a h4 {
    font-family: "DM Sans", Sans-Serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #555657;
    padding: 12px 0;
    transition: all 0.3s ease-in-out;

}

.laboratory-list-item a:hover h4 {
    color: #423f90;
    transition: all 0.3s ease-in-out;
}

.laboratory-list-item a:hover i {
    transition: all 0.3s ease-in-out;
    transform: rotate(0deg);

}

.laboratory-list-item {
    border-bottom: 1px solid #989494;
}

/* Accordion */

#schedule-accordion .accordion-item {
    border: 0;
    background: transparent;
}

#schedule-accordion .accordion-header {
    margin: 0;
}

#schedule-accordion .accordion-header button {

    padding: 12px 0;
    border-bottom: 1px solid #989494 !important;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
}

#schedule-accordion .accordion-header button h4 {
    font-family: "DM Sans", Sans-Serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #555657;
}

#schedule-accordion .accordion-body table {
    width: 100%;
}

#schedule-accordion .accordion-body table tr {
    border-bottom: 1px solid #989494;
}

#schedule-accordion .accordion-body table td {
    font-size: 16px;
    font-family: "DM Sans", Sans-Serif;
    width: 50%;
    color: #555657;
    padding: 10px;
}

#schedule-accordion .accordion-body table td:nth-child(2) {
    text-align: right;
}

.accordion-button::after {
    background-image: url("../images/resource/plus-icon.svg");
    background-size: 16px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../images/resource/minus-icon.svg");
    background-size: 16px;

}