html {
  scroll-behavior: smooth;
}
html, body {
    overflow-x: hidden;
}
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
.logo-img img {
    max-width: 250px;
    height: auto;
}
.mt-40 {
    margin-top: 40px;
}
.welcome_clicnic_area .welcome_docmed_info ul {
    margin-bottom: 20px;
}
.welcome_clicnic_area .welcome_thumb .thumb_1 img {
    height: auto;
}
.welcome_clicnic_area .welcome_docmed_info ul li {
    padding-left: 0 !important;
}
.header-area .main-header-area.sticky .main-menu ul li a {
    color: #ffffff;
}
.welcome_clicnic_area .welcome_docmed_info ul li::before {
    content: "\f100";
    font-family: Flaticon;
    font-style: normal;
    color: #26529c;
    font-size: 20px;
    margin-right: 10px;
}
.header-area .main-header-area .main-menu ul li:hover > .submenu {
    top: 101%;
}
/* ============================================================
   OUR SERVICES SECTION
   ============================================================ */

.svc-section {
    --svc-navy:        #13294e;   /* card background */
    --svc-navy-hover:  #24376f;   /* card hover background */
    --svc-heading:     #14213d;   /* section heading color */
    --svc-green:       #6abf4b;   /* READ MORE accent */
    --svc-body:        #4a5568;   /* intro paragraph */
    background: #fff;
}

/* ---------- Section header ---------- */
.svc-section .svc-title {
    font-weight: 800;
    color: var(--svc-heading);
    margin-bottom: 20px;
}

.svc-section .svc-intro {
    color: var(--svc-body);
    max-width: 620px;
    margin-bottom: 0;
}

.svc-section .svc-learn-more {
    border: 1px solid #9ad0e8;
    color: #2779a7;
    background: #fff;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background .2s ease, color .2s ease;
    white-space: nowrap;
}

.svc-section .svc-learn-more:hover {
    background: #2779a7;
    border-color: #2779a7;
    color: #fff;
}

/* ---------- Cards ---------- */
.svc-section .svc-card {
    background: var(--svc-navy);
    color: #fff;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: background .25s ease, transform .25s ease;
}

.svc-section .svc-card:hover {
    background: var(--svc-navy-hover);
    transform: translateY(-4px);
}

.svc-section .svc-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.svc-section .svc-card p {
    font-size: .95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 22px;
    flex-grow: 1;   /* pushes READ MORE to the bottom, keeps cards even */
}

.svc-section .svc-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.svc-section .svc-read-more .svc-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--svc-green);
    color: var(--svc-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    line-height: 1;
    transition: background .2s ease, color .2s ease;
}

.svc-section .svc-read-more:hover {
    color: var(--svc-green);
}

.svc-section .svc-read-more:hover .svc-arrow {
    background: var(--svc-green);
    color: #fff;
}

.row-gap-4 {
    row-gap: 1.5rem;
}

.column-gap-4 {
    column-gap: 1.5rem;
}

/* ============================================================
   Quicklinks Section
   ============================================================ */

.intro-cards-section {
    --ics-navy:        #1b2a5b;
    --ics-overlay:     rgba(29,37,71,0.3);
    --ics-overlay-hov: rgba(29,37,71,0.3);
    --ics-radius:      13px;
    background: #fff;
}

.intro-cards-section .ics-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1.15;
    border-radius: var(--ics-radius);
    overflow: hidden;
}

.intro-cards-section .ics-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .6s ease;
}

/* Navy tint over the image */
.intro-cards-section .ics-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ics-overlay);
    transition: background .5s ease;
    z-index: 1;
}

.intro-cards-section .ics-card:hover img,
.intro-cards-section .ics-card:focus-within img {
    transform: scale(1.08);
}

.intro-cards-section .ics-card:hover::after,
.intro-cards-section .ics-card:focus-within::after {
    background: var(--ics-overlay-hov);
}

.intro-cards-section .ics-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    text-align: center;
    padding: 0 24px 26px;
    transform: translateY(0);
    transition: bottom .5s ease, transform .5s ease, padding-bottom .5s ease;
}

.intro-cards-section .ics-card:hover .ics-content,
.intro-cards-section .ics-card:focus-within .ics-content {
    bottom: 50%;
    transform: translateY(50%);
    padding-bottom: 0;
}

.intro-cards-section .ics-reveal {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .5s ease;
}

.intro-cards-section .ics-reveal > div {
    overflow: hidden;
}

.intro-cards-section .ics-card:hover .ics-reveal,
.intro-cards-section .ics-card:focus-within .ics-reveal {
    grid-template-rows: 1fr;
}

.intro-cards-section .ics-title {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 600;
    margin: 0;
}

.intro-cards-section .ics-desc {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    margin: 26px 0 0;
    opacity: 0;
    transition: opacity .4s ease .1s;
}

.intro-cards-section .ics-btn {
    display: inline-block;
    margin-top: 30px;
    background: #2c3f8f;
    color: #fff;
    text-decoration: none;
    font-size: .95rem;
    padding: 12px 34px;
    border-radius: 50rem;
    opacity: 0;
    transition: opacity .4s ease .15s, background .2s ease;
}

.intro-cards-section .ics-card:hover .ics-desc,
.intro-cards-section .ics-card:hover .ics-btn,
.intro-cards-section .ics-card:focus-within .ics-desc,
.intro-cards-section .ics-card:focus-within .ics-btn {
    opacity: 1;
}

.intro-cards-section .ics-btn:hover,
.intro-cards-section .ics-btn:focus-visible {
    background: var(--ics-navy);
    color: #fff;
}

.intro-cards-section .ics-card:focus-within {
    outline: 3px solid var(--ics-navy);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .intro-cards-section .ics-card img,
    .intro-cards-section .ics-content,
    .intro-cards-section .ics-reveal,
    .intro-cards-section .ics-desc,
    .intro-cards-section .ics-btn {
        transition: none;
    }
}

.book_apointment_area .popup_box .popup_inner form h2 {
    display: none;
}

.popup_box textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #b7b7b7;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 16px;
}

.popup_box .form-label {
    display: none !important;
}

@media (min-width: 768px) {
    .popup_box .popup_inner form {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .popup_box .popup_inner form > .form-element {
        width: 100%;
        margin-bottom: 0 !important;
    }

    /* Email */
    .popup_box .popup_inner form > .form-element:nth-of-type(3),
    /* Phone */
    .popup_box .popup_inner form > .form-element:nth-of-type(4) {
        width: calc(50% - .5rem);
    }

    .popup_box .popup_inner form > .actions {
        width: 100%;
    }

    .popup_box .popup_inner form input,
    .popup_box .popup_inner form textarea {
        margin-bottom: 0;
    }
}

.popup_box .form-navigation .btn {
    background: #0181f5;
    background: -moz-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
    background: -webkit-linear-gradient(left, #0181f5 0%, #5db2ff 100%);
    background: linear-gradient(to right, #0181f5 0%, #5db2ff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0181f5', endColorstr='#5db2ff',GradientType=1 );
    color: #fff;
    display: inline-block;
    padding: 18px 44px;
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: 0;
    border: 1px solid transparent;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
    color: #fff !important;
    text-transform: capitalize;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
    width: 100%;
}

.quality_area .col-lg-4:nth-child(2) .single_quality .icon i {
    left: 0 !important;
}

.quality_area .col-lg-4:nth-child(3) .single_quality .icon i {
    position: relative;
    left: 6px !important;
}

.sample-text-area .dept_main_info .dept_thumb img {
    border-radius: 16px;
    object-fit: cover;
}

.sample-text-area .depertment_area {
    background: none;
    padding: 80px 0 0;
}

.sample-text-area .depertment_area .dept_main_info .dept_info p {
    margin-bottom: 1rem;
}

.sample-text-area .container .depertment_area:first-child {
    padding-top: 0;
}

.depertment_area .dept_main_info .dept_info ul {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.depertment_area .dept_main_info .dept_info ul li {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    padding: 0 15px 0 28px;
    margin-bottom: 14px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #727272;
}

.depertment_area .dept_main_info .dept_info ul li::before {
    font-family: 'themify';
    content: "\e64c";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 13px;
    font-weight: 700;
    color: #009DFF;
}

@media (max-width: 575px) {
    .depertment_area .dept_main_info .dept_info ul li {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.depertment_area .surgeon_label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #009DFF !important;
    margin-bottom: 10px !important;
    margin-top: 0 !important;
}

.info_links_area {
    padding-bottom: 70px;
}

.info_link_card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid #e8e8f5;
    border-radius: 10px;
    padding: 25px 30px;
    height: 100%;
    transition: all .3s ease;
}

.info_link_card:hover {
    border-color: #009DFF;
    box-shadow: 0 10px 25px rgba(0, 29, 56, .07);
    text-decoration: none;
}

.info_link_card .icon_circle {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 157, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info_link_card .icon_circle i {
    font-size: 22px;
    color: #009DFF;
}

.info_link_text h4 {
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #001D38;
    margin-bottom: 4px;
    transition: color .3s ease;
}

.info_link_text p {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #727272;
    margin: 0;
}

.info_link_card:hover .info_link_text h4 {
    color: #009DFF;
}

.info_link_arrow {
    margin-left: auto;
    font-size: 20px;
    color: #c5c9d8;
    transition: all .3s ease;
}

.info_link_card:hover .info_link_arrow {
    color: #009DFF;
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .info_link_card {
        padding: 20px;
        gap: 15px;
    }

    .info_link_text h4 {
        font-size: 16px;
    }
}

.table table {
    width: 100%;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.leadership_team_area {
    padding: 100px 0;
}

/* group sub-heading with short blue rule */
.team_group_title {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #001D38;
    margin: 30px 0 25px;
    padding-bottom: 12px;
    position: relative;
}

.team_group_title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #009DFF;
    border-radius: 2px;
}

/* member card */
.team_card {
    text-align: center;
    margin-bottom: 40px;
}

/* uniform 3:4 photo crop regardless of source image shape */
.team_thumb {
    position: relative;
    width: 100%;
    padding-top: 125%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
}

.team_thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.team_card:hover .team_thumb img {
    transform: scale(1.05);
}

.team_card h4 {
    font-family: "Work Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #001D38;
    margin-bottom: 4px;
}

.team_card span {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 21px;
    color: #727272;
    padding: 0 5px;
}

/* responsive */
@media (max-width: 767px) {
    .leadership_team_area {
        padding: 60px 0;
    }

    .team_group_title {
        font-size: 18px;
    }
}

/* -------------------------------------------------- Hospital Board & Authority - board cards */
.board_card {
    background: #f9f9ff;
    border-radius: 10px;
    padding: 40px;
    height: 100%;
}

.board_card h4 {
    font-family: "Work Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #001D38;
    line-height: 1.35;
    margin-bottom: 10px;
    padding-bottom: 15px;
    position: relative;
}

.board_card h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #009DFF;
    border-radius: 2px;
}

.member_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.member_list li {
    padding: 16px 0;
    border-bottom: 1px solid #e8e8f5;
}

.member_list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.member_list strong {
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #001D38;
}

.member_list em {
    display: block;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 14px;
    color: #727272;
    margin-top: 3px;
}

/* officer badge */
.role_badge {
    display: inline-block;
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #009DFF;
    background: rgba(0, 157, 255, .08);
    border-radius: 20px;
    padding: 3px 12px;
    margin-left: 8px;
    vertical-align: 2px;
}

.role_badge--muted {
    color: #727272;
    background: rgba(114, 114, 114, .08);
}

/* -------------------------------------------------- meetings band */
.meetings_area {
    padding: 90px 0;
    background: #001D38;
}

.meetings_info .surgeon_label {
    display: block;
    font-family: "Work Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #009DFF;
    margin-bottom: 10px;
}

.meetings_info h3 {
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.meetings_info p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: rgba(255, 255, 255, .65);
    margin: 0;
    padding-right: 30px;
}

/* responsive calendar frame */
.calendar_embed {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}

.calendar_embed iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
    border-radius: 6px;
}

/* -------------------------------------------------- responsive */
@media (max-width: 991px) {
    .meetings_info {
        margin-bottom: 40px;
    }

    .meetings_info p {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .board_authority_area {
        padding-top: 60px;
    }

    .board_card {
        padding: 25px;
    }

    .meetings_area {
        margin-top: 40px;
        padding: 60px 0;
    }

    .meetings_info h3 {
        font-size: 24px;
    }

    .calendar_embed iframe {
        height: 420px;
    }
}

/* -------------------------------------------------- contact cards */
.contact_card {
    background: #f9f9ff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
}

.contact_card .icon_circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 157, 255, .08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.contact_card .icon_circle i {
    font-size: 24px;
    color: #009DFF;
}

.contact_card h4 {
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #001D38;
    margin-bottom: 8px;
}

.contact_card_link {
    display: block;
    font-family: "Work Sans", sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #009DFF;
    margin-bottom: 4px;
}

a.contact_card_link:hover {
    color: #001D38;
    text-decoration: none;
}

.contact_card p {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #727272;
    margin: 0;
}

/* -------------------------------------------------- extensions grid */
.ext_area {
    margin-top: 40px;
}

/* group heading with short blue rule (shared pattern) */
.team_group_title {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #001D38;
    margin: 0 0 25px;
    padding-bottom: 12px;
    position: relative;
}

.team_group_title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #009DFF;
    border-radius: 2px;
}

.ext_row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px 15px;
    padding: 14px 0;
    border-bottom: 1px solid #eef0f7;
}

.ext_row span {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: #001D38;
}

.ext_row a {
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #009DFF;
    white-space: nowrap;
}

.ext_row a:hover {
    color: #001D38;
    text-decoration: none;
}

.ext_row small {
    flex: 0 0 100%;
    text-align: right;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: #727272;
}

/* -------------------------------------------------- responsive */
@media (max-width: 767px) {
    .contact_us_area {
        padding: 60px 0;
    }

    .contact_card {
        padding: 30px 20px;
    }
}

.action_card {
    background: #f9f9ff;
    border-radius: 10px;
    padding: 45px 35px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action_card .icon_circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 157, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.action_card .icon_circle i {
    font-size: 26px;
    color: #009DFF;
}

.action_card h4 {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #001D38;
    margin-bottom: 10px;
}

.action_card p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 25px;
    color: #727272;
    margin-bottom: 25px;
}

/* push buttons to an even baseline across cards */
.action_card .boxed-btn {
    margin-top: auto;
}

@media (max-width: 767px) {
    .chna_area {
        padding: 60px 0 30px;
    }

    .action_card {
        padding: 30px 25px;
    }
}

.meetings_area h3,
.meetings_area h4 {
    color: #A8CB67;
}

.sample-text-area form h2, .sample-text-area form label {
    display: none;
}

.sample-text-area form button.btn.btn-primary {
    background: #fff;
    color: #296ea4 !important;
    display: inline-block;
    padding: 18px 30px;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #27bcf2;
    text-transform: capitalize;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.sample-text-area form button.btn.btn-primary:hover {
    background: #009DFF;
    color: #fff !important;
    border: 1px solid #009DFF;
}

.sample-text-area form .form-control {
    border: 1px solid #e5e6e9;
    border-radius: 0px;
    height: 48px;
    padding-left: 18px;
    font-size: 13px;
    background: transparent;
}

.sample-text-area form textarea {
    border-radius: 0px;
    height: 100px !important;
}

.sample-text-area ul:not(.member_list) {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.sample-text-area ul:not(.member_list) li {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    padding: 0 15px 0 26px;
    margin-bottom: 12px;
    line-height: 25px;
    color: #5c5c5c;
    font-size: 16px;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}

.sample-text-area ul:not(.member_list) li::before {
    font-family: 'themify';
    content: "\e64c";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    color: #009DFF;
}

.sample-text-area header h3 {
    position: relative;
    padding-bottom: 12px;
    margin: 0 0 25px;
}

.sample-text-area header h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #A8CB67;
    border-radius: 2px;
}

.sample-text-area .frame-layout-1 ul li {
    columns: 2;
    flex: 0 0 50%;
}
@media (max-width: 767px) {
    .sample-text-area .frame-layout-1 ul li {
        columns: 1;
        flex: 0 0 100%;
    }
}

.sample-text-area ol {
    list-style: decimal !important;
    list-style-position: outside !important;
    margin-left: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.sample-text-area ol li {
    display: list-item !important;
    list-style: decimal !important;
    margin-left: 0 !important;
    margin-bottom: 13px;
    color: #5c5c5c;
    font-size: 16px;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}

.sample-text-area ol li::marker {
    display: inline !important;
    color: inherit !important;
    font-weight: inherit !important;
    content: counter(list-item) ". ";
}

.sample-text-area.meetings_area p, 
.sample-text-area.meetings_area ul li, 
.sample-text-area.meetings_area ol li, 
.sample-text-area.meetings_area p a, 
.sample-text-area.meetings_area span {
    color: #ffffff;
    font-weight: 300;
}

@media (min-width: 1401px) {
    .header-area .main-header-area .main-menu ul li {
        margin-right: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1400px) {
    .logo-img img {
        max-width: 200px;
    }
    .header-area .main-header-area .main-menu ul li {
        margin-right: 6px;
    }
    .header-area .main-header-area .main-menu ul li a {
        font-size: 12px;
    }
    .header-area .main-header-area .book_room .book_btn a {
        padding: 19px 15px 23px 15px;
        font-size: 12px;
    }
    .header-area .main-header-area .main-menu ul li:last-child {
        margin-right: 12px;
    }
}

.vidply-wrapper {
    max-width: 600px;
    margin: 30px auto 50px;
    width: 100%;
}

.sample-text-area .frame-type-mpc_vidply .page-header {
    position: relative;
    padding-bottom: 5px;
    text-align: center;
}
.sample-text-area .frame-type-mpc_vidply .page-header h3 {
    margin-bottom: 0;
}
.sample-text-area .frame-type-mpc_vidply .page-header h3::after {
    display: none;
}
.sample-text-area .frame-type-mpc_vidply .page-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #009dff;
    border-radius: 2px;
}

.main-header-area .sticky-mainlogo {
    display: none;
}

.main-header-area.sticky .sticky-mainlogo {
    display: block;
}

.main-header-area.sticky .main-logo {
    display: none;
}

.footer .footer_top .row .col-xl-4:first-child .img-fluid {
    width: 250px;
}

/* Accordion */
.accordion {
	width: 100%;
	margin: 2rem 0;
	border-radius: 0;
	overflow: hidden;
	font-family: Arial, sans-serif;
}

.accordion-item {
	margin-bottom: 10px;
	border: 0 !important;
}

.accordion-item:first-child {
  	border-top: none;
}

.accordion-header {
	display: flex;
	align-items: center;
	background: #f4f4f4;
	padding: 15px 20px;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.3s;
}
.accordion-header:hover {
  	background: #e0e0e0;
}

.accordion-icon {
	display: inline-block;
	width: 20px;
	margin-right: 10px;
	font-size: 18px;
	transition: transform 0.2s ease;
}

.accordion-content {
	display: none;
	padding: 15px 20px;
	background: #fff;
}

.disclosure-content .row .col-md-4 {
    padding-top: 0 !important;
}

.disclosure-header-block {
    padding: 20px 0;
    border-bottom: 2px solid #358174;
    margin-bottom: 20px;
}
.disclosure-header-block h3 {
	line-height: normal;
    margin: 0;
}
.year-selector select {
    padding: 10px 15px;
    width: auto;
    min-width: 220px;
    max-width: 100%;
    font-size: 16px;
    background-color: #f4f4f4;
    font-weight: 500;
    height: 44px;
    border-radius: 50px;
    cursor: pointer;
    color: #666;
    border: 1px solid #cccccc;
}
.year-selector select:focus {
	outline: none;
	box-shadow: none;
	border-color: #dee2e6;
}
.year-selector .form-label {
    font-size: 14px;
    font-weight: 400 !important;
	display: block;
}
.content-marginwrapper {
    margin-top: 80px;
}
.sample-text-area u,
.sample-text-area b {
    color: #13294e;
}
.sample-text-area a {
    color: inherit;
    text-decoration: underline;
}
.sample-text-area a:hover {
    text-decoration: none;
    outline: none;
}