/* ===================================================
   AGENTICS ADMIN
   Blue #001848 | Orange #ff9924 | Poppins
   =================================================== */

:root {
    --ag-blue: #001848;
    --ag-orange: #ff9924;
    --ag-accent: #0890fa;
    --ag-sidebar-bg: #001848;
    --ag-sidebar-w: 250px;
    --ag-sidebar-w-mini: 70px;
    --ag-topbar-h: 64px;
    --ag-white: #ffffff;
    --ag-bg: #f4f7fb;
    --ag-border: #e4eaf2;
    --ag-text: #2d3748;
    --ag-text-muted: #718096;
    --ag-radius: 8px;
    --ag-shadow: 0 1px 3px rgb(0 0 0 / 0.06);
    --ag-shadow-lg: 0 8px 24px rgb(0 0 0 / 0.14);
    --ag-transition: 0.25s ease;
    --ag-font: "Poppins", sans-serif;
    --primary-color: #001848;
    --secondary-color: #FF9924;
    --accent-color: #0890fa;
    --light: #FDF3E9;
    --cyan-light: #EFF8FF
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--ag-font);
    font-size: 14px;
    line-height: 1.5;
    color: var(--ag-text);
    background: var(--ag-bg);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---- App ---- */
.ag-app { display: flex; min-height: 100vh; }

/* ---- Sidebar ---- */
.ag-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--ag-sidebar-w);
    height: 100vh;
    background: var(--ag-sidebar-bg);
    display: flex;
    flex-direction: column;
    z-index: 1;
    transition: width var(--ag-transition), transform var(--ag-transition);
}

.ag-sidebar__head {
    display: flex;
    align-items: center;
    height: var(--ag-topbar-h);
    padding: 0 20px;
    border-bottom: 1px solid rgb(255 255 255 / 0.07);
    flex-shrink: 0;
}

.ag-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.ag-logo__mark {
    width: 36px;
    height: 36px;
    background: var(--ag-orange);
    border-radius: var(--ag-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--ag-white);
    flex-shrink: 0;
}

.ag-logo__text {
    font-size: 17px;
    font-weight: 600;
    color: var(--ag-white);
    white-space: nowrap;
    transition: opacity var(--ag-transition);
}

/* Nav area */
.ag-sidebar__nav {
    flex: 1;
    padding: 20px 14px;
    overflow-y: auto;
}

.ag-sidebar__label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgb(255 255 255 / 0.32);
    padding: 0 14px;
    margin-bottom: 12px;
    white-space: nowrap;
    transition: opacity var(--ag-transition);
}

.ag-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.content-sec {
    margin: 45px 0
}

.bg-light-cyan {
    padding: clamp(30px, 6vw, 50px) 0;
    background-color: var(--cyan-light)
}

.inquiry-form {
    padding: clamp(30px, 6vw, 50px) 30px;
    color: #fff;
    border-radius:10px;
    background-color: var(--primary-color)
}


.full-width, .row, .container {
    width: 100%;
}

.center-text {
    text-align: center;
    max-width: 1050px; 
    margin: auto
}

.editor-content {
    margin: clamp(23px, 5vw, 40px) 0;
    line-height: 1.2
}

    .editor-content a {
        color: #0890fa;
        display: inline-block
    }

        .editor-content a:hover {
            color: #ff9924
        }

    .editor-content h2 {
        font-size: 28px;
        margin-bottom: 12px
    }

    .editor-content p, .full-width > p {
        margin: 0 0 22px 0;
        line-height: 25px
    }

    .editor-content .full-width > p:last-child {
        margin-bottom: 0
    }

    .editor-content ul, .editor-content ol {
        padding: 10px 0 15px 35px;
        list-style: disc
    }

    .editor-content ol {
        list-style-type: decimal
    }

        .editor-content ul li, .editor-content ol li {
            padding: 0 0 6px;
            line-height: 24px
        }

    .editor-content .text-holder {
        margin: 0 0 clamp(20px, 4vw, 35px)
    }

    .editor-content .images-holder {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding-bottom: 15px
    }

        .editor-content .images-holder figure {
            width: calc(20% - 7px);
            min-height: 160px
        }

            .editor-content .images-holder figure img {
                width: 100%;
                height: 100%;
                object-fit: cover
            }

    .editor-content .text-holder:last-child, .editor-content .text-holder:last-child p {
        margin: 0
    }

    .editor-content .text-holder h2 {
        margin: 0;
        font-size: 24px
    }

    .editor-content .text-holder p {
        margin: 0 0 15px
    }

figure.table {
    margin: 25px 0;
    max-width: 100%;
    overflow-x: auto
}

    .table, figure.table table {
        width: 100%;
        border-collapse: collapse
    }

        .table th {
            background: #001848;
            color: #fff;
            font-weight: 500
        }

        .table th, .table td {
            padding: 10px 12px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0
        }

        .table td {
            border-right: 1px solid #e0e0e0
        }

            .table th p, .table td p {
                margin: 0
            }

    figure.table td {
        border: 1px solid #e0e0e0
    }

.faq-sec h2 {
    color: #0a3991;
    font-weight: 600
}

.faq-accordion {
    margin-top: 20px
}

.faq-item {
    margin-bottom: 15px;
    border-left: 4px solid #0890fa;
    overflow: hidden
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer
}

    .faq-question h3 {
        font-size: 20px !important;
        font-weight: 500;
        padding-left: 15px;
        margin-bottom: 10px
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease
}

.faq-item.active .faq-answer {
    max-height: 250px
}

.faq-answer p {
    padding-left: 20px
}
.bg-light-gray {
    padding: clamp(30px, 6vw, 50px) 0;
    background-color: #f8f8f8
}

.soft-light-bg {
    padding: clamp(30px, 6vw, 50px) 0;
    background-color: #fdf3e9
}
.center-text{
    margin: auto;
}
.review-area {
    padding: clamp(30px, 6vw, 40px) 0;
    background: #eff8ff
}

/* Nav links */
.ag-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    color: rgb(255 255 255 / 0.72);
    font-size: 14px;
    font-weight: 400;
    transition: background var(--ag-transition), color var(--ag-transition);
    text-align: left;
}

.ag-nav-link:hover {
    background: rgb(255 255 255 / 0.07);
    color: var(--ag-white);
}

.ag-nav-link--active {
    background: rgb(255 255 255 / 0.1);
    color: var(--ag-white);
    font-weight: 500;
    position: relative;
}

.ag-nav-link--active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: var(--ag-orange);
    border-radius: 0 3px 3px 0;
}

.ag-nav-link__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ag-nav-link__icon img {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    transition: opacity var(--ag-transition);
}

.ag-nav-link:hover .ag-nav-link__icon img,
.ag-nav-link--active .ag-nav-link__icon img {
    opacity: 1;
}

.ag-nav-link--active .ag-nav-link__icon img {
    filter: brightness(0) saturate(100%) invert(68%) sepia(74%) saturate(1200%) hue-rotate(345deg) brightness(102%) contrast(101%);
}

.ag-nav-link__text {
    flex: 1;
    white-space: nowrap;
    transition: opacity var(--ag-transition);
}

.ag-nav-link__arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform var(--ag-transition), opacity var(--ag-transition);
}

.ag-nav-link__arrow img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
    opacity: 0.45;
}

.ag-nav-item--open > .ag-nav-link .ag-nav-link__arrow {
    transform: rotate(180deg);
}

/* Submenu (More only) */
.ag-nav-item { position: relative; }

.ag-nav-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    margin-left: 20px;
    padding-left: 0;
    border-left: 1px solid transparent;
}

.ag-nav-item--open > .ag-nav-sub {
    max-height: 180px;
    margin-top: 4px;
    margin-bottom: 2px;
    padding: 6px 0 6px 14px;
    border-left-color: rgb(255 255 255 / 0.18);
}

.ag-nav-sub__link {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: rgb(255 255 255 / 0.55);
    border-radius: 6px;
    transition: color var(--ag-transition), background var(--ag-transition);
    white-space: nowrap;
}

.ag-nav-sub__link:hover {
    color: var(--ag-white);
    background: rgb(255 255 255 / 0.07);
}

.ag-nav-sub__link--active {
    color: var(--ag-orange);
    font-weight: 500;
    background: rgb(255 153 36 / 0.08);
}

.ag-nav-item--open > .ag-nav-link {
    color: var(--ag-white);
    background: rgb(255 255 255 / 0.06);
}

/* Sidebar footer */
.ag-sidebar__foot {
    padding: 12px 14px 16px;
    border-top: 1px solid rgb(255 255 255 / 0.07);
    flex-shrink: 0;
    margin-top: auto;
}

/* Logout */
.ag-nav-link--logout {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    border-radius: var(--ag-radius);
    color: var(--ag-orange);
    font-size: 14px;
    font-weight: 500;
    transition: background var(--ag-transition), color var(--ag-transition);
}

.ag-nav-link--logout .ag-nav-link__icon img {
    filter: brightness(0) saturate(100%) invert(68%) sepia(74%) saturate(1200%) hue-rotate(345deg) brightness(102%) contrast(101%);
    opacity: 1;
}

.ag-nav-link--logout:hover {
    background: rgb(255 153 36 / 0.14);
    color: var(--ag-orange);
}

.ag-nav-link--logout::before {
    display: none;
}

/* ---- Collapsed ---- */
.ag-app--collapsed { --ag-sidebar-w: var(--ag-sidebar-w-mini); }

.ag-app--collapsed .ag-logo__text,
.ag-app--collapsed .ag-sidebar__label,
.ag-app--collapsed .ag-nav-link__text,
.ag-app--collapsed .ag-nav-link__arrow {
    display: none;
}

.ag-app--collapsed .ag-sidebar__head {
    justify-content: center;
    padding: 0;
}

.ag-app--collapsed .ag-logo {
    justify-content: center;
    width: 100%;
}

.ag-app--collapsed .ag-logo__mark {
    width: 40px;
    height: 40px;
}

.ag-app--collapsed .ag-sidebar__nav {
    padding: 16px 0;
}

.ag-app--collapsed .ag-sidebar__list {
    align-items: center;
    gap: 6px;
}

.ag-app--collapsed .ag-sidebar__list > li {
    width: 100%;
    display: flex;
    justify-content: center;
}

.ag-app--collapsed .ag-nav-link {
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 44px;
    height: 44px;
    padding: 0;
     border-radius: var(--ag-radius);
    margin: 0 auto;
    border-radius: var(--ag-radius);
}

.ag-app--collapsed .ag-nav-link--active::before {
    left: 0;
    height: 20px;
}

.ag-app--collapsed .ag-nav-sub { display: none; }

.ag-app--collapsed #agMoreMenu:hover .ag-nav-sub,
.ag-app--collapsed #agMoreMenu.ag-nav-item--open .ag-nav-sub {
    display: block;
    position: absolute;
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    min-width: 180px;
    max-height: none;
    margin: 0;
    padding: 6px;
    border-left: none;
    background: var(--ag-blue);
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: var(--ag-radius);
    box-shadow: var(--ag-shadow-lg);
    z-index: 1100;
}

.ag-app--collapsed .ag-nav-sub__link {
    padding: 9px 14px;
}

.ag-app--collapsed .ag-topbar__collapse img { transform: rotate(180deg); }

.ag-app--collapsed .ag-sidebar__foot {
    padding: 12px 0 16px;
    display: flex;
    justify-content: center;
}

.ag-app--collapsed .ag-nav-link--logout {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    margin: 0 auto;
}

/* ---- Main ---- */
.ag-main {
    flex: 1;
    margin-left: var(--ag-sidebar-w);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left var(--ag-transition);
}

/* ---- Topbar ---- */
.ag-topbar {
    position: sticky;
    top: 0;
    z-index: 212;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--ag-topbar-h);
    padding: 0 24px;
    background: var(--ag-white);
    border-bottom: 1px solid var(--ag-border);
    box-shadow: var(--ag-shadow);
}

.ag-topbar__left { display: flex; align-items: center; gap: 10px; }

.ag-topbar__collapse {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: none;
    background: transparent;
    transition: opacity var(--ag-transition);
}

.ag-topbar__collapse img {
    width: 22px;
    height: 22px;
    display: block;
    transition: transform var(--ag-transition);
}

.ag-topbar__collapse:hover {
    opacity: 0.65;
}

.ag-topbar__toggle {
    width: 38px;
    height: 38px;
    border-radius: var(--ag-radius);
    border: 1px solid var(--ag-border);
    background: var(--ag-white);
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    align-items: center;
    justify-content: center;
    color: var(--ag-blue);
    transition: var(--ag-transition);
}

.ag-topbar__toggle:hover {
    border-color: var(--ag-accent);
    color: var(--ag-accent);
}
.ag-topbar__toggle span { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }

.ag-topbar__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.ag-topbar__action-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: var(--ag-radius);
    border: 1px solid var(--ag-border);
    background: var(--ag-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ag-transition);
}

.ag-topbar__action-btn img { width: 20px; height: 20px; opacity: 0.65; }

.ag-topbar__action-btn:hover {
    border-color: var(--ag-accent);
    background: rgb(8 144 250 / 0.04);
}

.ag-topbar__action-btn:hover img { opacity: 1; }

.ag-topbar__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--ag-orange);
    color: var(--ag-white);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ag-white);
}

/* Profile */
.ag-topbar__profile { position: relative; }

.ag-topbar__profile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 12px 4px 4px;
    border-radius: var(--ag-radius);
    border: 1px solid var(--ag-border);
    background: var(--ag-white);
    transition: var(--ag-transition);
}

.ag-topbar__profile-btn:hover,
.ag-topbar__profile--open .ag-topbar__profile-btn {
    border-color: var(--ag-accent);
}

.ag-topbar__avatar {
    width: 34px;
    height: 34px;
    border-radius: var(--ag-radius);
    background: var(--ag-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ag-topbar__avatar img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.ag-topbar__profile-name {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.ag-topbar__profile-arrow {
    width: 12px;
    height: 12px;
    transition: transform var(--ag-transition);
}

.ag-topbar__profile-arrow img { width: 12px; height: 12px; opacity: 0.5; }

.ag-topbar__profile--open .ag-topbar__profile-arrow { transform: rotate(180deg); }

/* Dropdown */
.ag-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: var(--ag-white);
    border: 1px solid var(--ag-border);
    border-radius: var(--ag-radius);
    box-shadow: var(--ag-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: var(--ag-transition);
    z-index: 1100;
}

.ag-topbar__profile--open .ag-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ag-dropdown__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--ag-bg);
    border-bottom: 1px solid var(--ag-border);
}

.ag-dropdown__avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--ag-radius);
    background: var(--ag-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ag-dropdown__avatar img { width: 20px; height: 20px; filter: brightness(0) invert(1); }

.ag-dropdown__head strong { display: block; font-size: 14px; font-weight: 600; }
.ag-dropdown__head small { display: block; font-size: 12px; color: var(--ag-text-muted); }

.ag-dropdown__list { padding: 6px; }

.ag-dropdown__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    transition: var(--ag-transition);
}

.ag-dropdown__link img { width: 16px; height: 16px; opacity: 0.55; }

.ag-dropdown__link:hover { background: var(--ag-bg); color: var(--ag-accent); }
.ag-dropdown__link:hover img { opacity: 1; }

.ag-dropdown__link--danger { color: #e53e3e; }
.ag-dropdown__link--danger img { filter: brightness(0) saturate(100%) invert(30%) sepia(90%) saturate(1500%) hue-rotate(340deg); opacity: 1; }

.ag-dropdown__divider { height: 1px; background: var(--ag-border); margin: 4px 0; }

/* Content */
.ag-content {
    flex: 1;
    position: relative;
    padding: 24px;
    min-height: calc(100vh - var(--ag-topbar-h));
}

/* Overlay */
.ag-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--ag-transition);
}

.ag-overlay--visible { display: block; opacity: 1; }
.ag-sidebar--open { transform: translateX(0); }

.inquiry-form .bottom-form {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 40px;
    max-width: 1050px;
    margin-top: 40px
}
.button {
    background: #f7890f;
    color: #fff !important;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
    .button:hover {
        background: #d3750c;
    }
    .inquiry-form .bottom-form .feild-holder {
        min-width: 250px;
        flex: 1
    }

        .inquiry-form .bottom-form .feild-holder label, .inquiry-form .bottom-form .feild-holder input::placeholder, .inquiry-form .bottom-form .feild-holder select {
            color: #808ca4
        }

            .inquiry-form .bottom-form .feild-holder select option {
                color: #000
            }

        .inquiry-form .bottom-form .feild-holder input {
            border-color: #808ca4;
            color: #fff;
            transition: all 0.3s ease-in-out
        }

        .inquiry-form .bottom-form .feild-holder select {
            border-color: #808ca4;
            transition: all 0.3s ease-in-out;
            background-image: url(/main-root/images/icons/arrow-down-white.png) !important
        }

            .inquiry-form .bottom-form .feild-holder input:focus, .inquiry-form .bottom-form .feild-holder select:focus {
                border-color: #fff;
                color: #fff
            }

                .inquiry-form .bottom-form .feild-holder input:focus::placeholder {
                    opacity: 0;
                    color: #fff
                }

            .inquiry-form .bottom-form .feild-holder select:valid, .inquiry-form .bottom-form input[type="date"]:valid {
                color: #fff
            }

    .inquiry-form .bottom-form input[type="date"] {
        background: transparent !important;
        position: relative
    }

        .inquiry-form .bottom-form input[type="date"]::-webkit-calendar-picker-indicator {
            filter: invert(1);
            cursor: pointer
        }

.inquiry-form .button-row {
    width: 100%
}

    .inquiry-form .button-row .button {
        padding: 14px 22px
    }

.inquiry-form .full-width {
    position: relative
}

.inquiry-form .lable-holder {
    position: absolute;
    top: -62px;
    right: 0;
    width: 100px;
    height: 97px;
    z-index: 1;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/assets/images/lable-bg.webp);
    text-align: center;
    align-content: center;
    padding: 10px 10px 20px 10px;
    color: #fff;
    font-size: 17px;
    line-height: 1.5
}

.visa-hero:has(.tour-text-holder) {
    margin-bottom: 80px;
}

    .visa-hero:has(.tour-text-holder)::after {
        height: 80px;
        background: linear-gradient(to top, #f4f7fb 0%, rgb(255 255 255 / .95) 15%, rgb(255 255 255 / .85) 30%, rgb(255 255 255 / .6) 50%, rgb(255 255 255 / .3) 70%, #fff0 100%);
    }


.hero-banner {
    position: relative;
    z-index: 1
}

.hero-banner {
    width: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 470px
}

.hero-section {
    background-color: #001848;
    color: #fff
}

    .hero-section .text-holder {
        padding: 60px 0 48px;
        text-align: center;
        width: 100%
    }

.hero-banner::after {
    content: '';
    position: absolute;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom,#fff0 0%,rgb(0 0 0 / 73%) 50%,#303030 100%);
    height: 120px;
    z-index: 1
}

.hero-banner .text-holder {
    text-align: center;
    width: 100%;
    max-width: 950px;
    margin: auto;
    color: #fff;
    margin-bottom: 105px;
    text-shadow: 2px 4px 3px #101010
}

    .hero-banner .text-holder h1 {
        color: #fff;
        margin: 0 0 10px
    }

.new-year-bgd {
    position: absolute;
    top: 0;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8
}

.new-year-banner {
    background-color: #dd2e3a;
    width: 120px;
    height: 130px;
    clip-path: polygon(0% 0%,100% 0,100% 63%,50% 100%,0 63%);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 25px;
    position: absolute;
    top: 0;
    left: 15px;
    color: #fff
}
.insurance-hero .new-year-banner span, .umrah-hero .new-year-banner span {
    font-size: 17px;
    line-height: 1;
    padding: 0
}

.new-year-banner strong {
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1.4
}

.hero-banner.hotel-hero .new-year-banner, .hero-banner.tour-hero.tour-country .new-year-banner, .hero-banner.visa-hero .new-year-banner {
    width: 136px
}

.new-year-banner span {
    line-height: 1.2;
    padding: 17px 10px 10px;
    font-size: 17px
}

.fligth-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    height: 470px
}

    .fligth-slider .slides {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 470px;
        transform: translateX(100%);
        transition: transform 0.5s ease
    }

        .fligth-slider .slides.previous {
            transform: translateX(-100%)
        }

        .fligth-slider .slides.active {
            transform: translateX(0);
            z-index: 1
        }

        .fligth-slider .slides .slider-bg {
            position: absolute;
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: center;
            top: 0;
            left: 0;
            z-index: 1;
            display: block
        }

.hero-banner.tour-hero, .hero-banner.tour-hero .fligth-slider, .hero-banner.tour-hero .fligth-slider .slides, .hero-banner.tour-hero .hero-image {
    height: 470px
}