﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI",Arial,sans-serif
}

body {
    background: #f5f7fa;
    color: #1e293b;
    line-height: 1.6
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem
}

a, button {
    color: #000;
    text-decoration: none
} 



/* header CSS */
.ei-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb
}

.ei-header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.ei-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer
}

    .ei-header-logo svg {
        height: 62px
    }

.ei-header-nav a, .ei-mobile-menu a, .ei-phone a, .ime-breadcrumb a, .ime-footer-links a, .ime-lang-switch {
    text-decoration: none
}

    .ei-header-nav a:hover, .ei-phone {
        color: #0f766e
    }

.ei-header-nav {
    display: flex;
    gap: 28px
}

    .ei-header-nav a {
        font-weight: 600;
        color: #1f2937
    }

.ei-header-contact {
    text-align: right
}

.ei-phone, .ime-footer-social a, .phone {
    display: flex;
    align-items: center;
    gap: 5px
}

.ei-phone, .ei-preferred-allinclusive {
    font-weight: 700
}

    .ei-phone i {
        margin-right: 6px
    }

    .ei-phone a {
        color: inherit
    }

.ei-timing span {
    display: block;
    font-size: 12px;
    color: #6b7280
}

.ei-header-toggle {
    display: none;
    background: 0 0;
    border: none;
    font-size: 22px;
    cursor: pointer
}

    .ei-header-toggle i {
        transition: transform 0.8s
    }

.ei-mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #e5e7eb
}

    .ei-mobile-menu a {
        padding: 7px 14px;
        font-weight: 600;
        color: #1f2937;
        border-bottom: 1px solid #f1f5f9
    }

    .ei-mobile-menu.active, .ei-schedule-modal.active {
        display: flex
    }

@media(max-width:768px) {
    .ei-header-logo svg {
        height: 52px
    }
}

@media (max-width:1024px) {
    .ei-header-contact, .ei-header-nav {
        display: none
    }

    .ei-header-toggle {
        display: block
    }
}
/*    end header CSS  */
