.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;
    }
}

/* Appointment Section */

.appointment-section img {
    width: 100%;
    border-radius: 17px;
}

.form-item {
    font-family: "DM Sans", Sans-Serif;
    margin-bottom: 24px;
}

.form-item p {
    font-size: 16px;
    margin: 0;
    color: #555657;
}

.form-item label {
    font-size: 16px;
    margin: 0;
    color: #3E4095;
}

.form-item-radio {
    display: flex;
    column-gap: 24px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.form-item-radio>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-item input[type="radio"] {
    accent-color: #3E4095;
}

.form-item-set h3 {
    font-size: 20px;
    color: #4E4E4E;
    font-weight: 600;
    margin-bottom: 16px;
}

.form-item-set {
    margin-bottom: 24px;
}

.patient_info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.patient_info .form-item {
    margin: 0;
}

.form-item-full {
    grid-column: span 2;

}

.form-item input::placeholder {
    color: #3E4095;
}

.form-item-half input,
.form-item-full input,
.form-item-half select,
.form-item-full select,
.form-item-full textarea {
    width: 100%;
    padding: 8px 24px;
    border: 1px solid #C9C6C6;
    background: transparent;
    border-radius: 13px;
}

.appointment_info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.appointment_info .form-item {
    margin: 0;
}

.appointment_info~p {
    color: #3E4095;
    margin-bottom: 24px;
}

.disclaimer h4 {
    color: #4E4E4E;
    font-size: 18px;
    font-weight: 500;
}

.disclaimer label {
    color: #555657;
    font-size: 16px;
}

.form-item-submit button {
    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;
}

.form-item-submit button:hover {
    background: #FFF;
    transition: all 0.3s ease-in-out;
    color: #ed3438;
}

@media only screen and (max-width:767px) {
    .appointment-form {
        margin-block-start: 24px;
    }

    .patient_info,
    .appointment_info {
        grid-template-columns: 1fr;
    }

    .form-item-full {
        grid-column: span 1;
    }

}