.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: #ecf5ff;

    margin: 16px;
    border-radius: 17px;
}

.divider-header {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    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;
    }
}

/* Timeline Start */


.timeline {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 40px;
}

.timeline-item {
    /* padding: 16px; */
    display: flex;
    height: 100%;
    align-items: stretch;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}


.timeline-content {
    padding: 10px;
    margin-top: 10px;
    width: 45%;
    /* background-color: #ecf5ff; */

    height: 100%;
    padding-top: 40px;
}

.timeline-content h3 {
    margin-bottom: 24px;
    font-size: 22px;
    color: #3E4095;
    font-family: "DM Sans", sans-serif;
}

.timeline-content p,
.timeline-content ul,
.timeline-content li {
    font-size: 16px;
    color: #000;
}

.timeline-divider {
    width: 10%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    padding-top: 40px;
}

.timeline-divider::after {

    content: "";
    height: 100%;
    width: 1px;
    display: flex;

    position: absolute;
    background-color: #3E4095;
    z-index: 0;

}

.timeline-item:last-child .timeline-divider::after {
    display: none;
}


.timeline-divider .timeline-icon {
    position: static;
    z-index: 1;
    width: 20px;
    height: 20px;
    background-color: #ed3438;
    border-radius: 20px;
    border: 1px solid #FFF;
}

.timeline-image {
    width: 45%;
    padding-top: 40px;
}

.timeline-image img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 13px;
}

@media only screen and (max-width:767px) {

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        margin-bottom: 24px;
    }

    .timeline-item:last-child {

        margin-bottom: 24px;
    }

    .timeline-content {
        padding: 16px;
        width: 100%;
        margin: 0;
        margin-bottom: 16px;
    }

    .timeline-image {
        width: 100%;
    }

    .timeline-divider {
        display: none;
    }
}

/* Timeline End */

.info-services-section {
    max-width: 1100px;
    margin: 60px auto;

}

.info-services-section h3 {
    color: #3E4095;
    font-size: 28px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    margin-block-end: 24px;
}

.info-services-section p {
    color: #000;
}