.header {
    position: relative;
    z-index: 220;
    padding: 18px 0;
    background: #fff;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header__logo img {
    height: 52px;
    width: auto;
    display: block;
}

.header__logo-text {
    display: none;
}

.header__contacts {
    list-style: disc;
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.header__contact {
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.26;
    text-decoration: none;
}

.header__email {
    color: var(--color-text);
    font-weight: 400;
    line-height: 1.26;
    text-decoration: none;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.header__action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    padding: 8px 10px;
    color: var(--color-text);
    cursor: pointer;
    text-decoration: none;
}

.header__icon-wrap {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
}

.header__icon {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.header__action-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 30px;
    color: var(--color-text);
    font-weight: 400;
    line-height: 1.26;
}

.header__account-text {
    white-space: pre-line;
}

.header__lang-wrap {
    position: relative;
}

.header__lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    padding: 8px 10px;
    color: var(--color-text);
    cursor: pointer;
}

.header__lang::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(45deg);
    margin-top: -2px;
}

.header__lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 110px;
    background: #fff;
    border: 1px solid rgba(15, 37, 84, .08);
    box-shadow: 0 16px 40px rgba(15, 37, 84, .18);
    border-radius: 14px;
    padding: 8px 0;
    display: none;
    z-index: 300;
}

.header__lang-dropdown.is-open {
    display: block;
}

.header__lang-dropdown a {
    display: block;
    padding: 10px 16px;
    color: #16356b;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.header__lang-dropdown a:hover {
    background: #f5f8fc;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.header__burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #16356b;
    border-radius: 2px;
    transition: .2s ease;
}

.header__contacts-bar {
    display: none;
    background: var(--color-primary);
    padding: 8px 0;
}

.header__contacts-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__contacts-bar-link {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.header__contacts-bar-dot {
    color: #fff;
    opacity: 0.6;
    font-size: 10px;
}

.header-search {
    display: none;
    padding: 18px 0 24px;
    background: #f5f8fc;
    border-top: 1px solid rgba(15, 37, 84, .08);
    box-shadow: inset 0 -1px 0 rgba(15, 37, 84, .05);
    position: relative;
    z-index: 115;
}

.header-search.is-open {
    display: block;
}

.header-search__form {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}

.header-search__input {
    flex: 1 1 auto;
    min-width: 0;
    height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(15, 37, 84, .12);
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    color: #16356b;
    outline: none;
    box-shadow: 0 4px 16px rgba(15, 37, 84, .05);
}

.header-search__input:focus {
    border-color: #1299b6;
    box-shadow: 0 0 0 3px rgba(18,153,182,.12);
}

.header-search__submit {
    flex: 0 0 auto;
    height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 12px;
    background: #1299b6;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

.header-search__submit:hover {
    background: #0f86a0;
}

.nav {
    position: relative;
    z-index: 200;
    background: #1299b6;
	padding-top: 10px;
}

.nav .container {
    position: relative;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-height: 76px;
    position: relative;
}

.nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.2;
    transition: .2s ease;
    white-space: nowrap;
}

.nav__link:hover {
    opacity: .92;
}

.nav__link--active {
    opacity: .85;
}

.nav__link--dd::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
}

.nav__submenu-toggle {
    display: none;
}

.nav__dropdown {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    max-width: 360px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(20, 44, 94, .20);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    z-index: 260;
    overflow: hidden;
}

.nav__dropdown-inner {
    padding: 14px 0;
}

.nav__dropdown-link {
    display: block;
    padding: 11px 22px;
    color: #1d3666;
    text-decoration: none;
    line-height: 1.35;
    font-size: 15px;
    transition: .2s ease;
}

.nav__dropdown-link:hover,
.nav__dropdown-link.is-active {
    background: #f4f8fc;
    color: #1299b6;
}

.nav__item--parent:hover .nav__dropdown,
.nav__item--parent.is-open .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.hero {
    min-height: 280px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.hero__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.35) 100%);
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.hero__content {
    padding: 48px 0 36px;
}

.hero__disk {
    max-width: 680px;
    color: #fff;
}

.page-content {
    position: relative;
    z-index: 5;
    padding: 20px 0 0;
    background: #fff;
}

.bx-breadcrumb {
    margin: 0 0 18px;
    position: relative;
    z-index: 5;
    white-space: normal;
    word-break: break-word;
}

.header-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 45, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
    z-index: 210;
}

.header-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav__mobile-head,
.nav__mobile-extra {
    display: none;
}

.cruise-schedule__download {
    color: #363d72 !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .header {
        padding: 14px 0 0;
        background: var(--color-primary);
    }

    .header__inner {
        min-height: 64px;
        gap: 0;
        align-items: center;
    }

    .header__contacts,
    .header__email {
        display: none;
    }

    .header__logo img {
        display: none;
    }

    .header__logo-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .header__logo-name {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.02em;
    }

    .header__logo-sub {
        font-size: 11px;
        color: rgba(255,255,255,0.85);
        font-weight: 400;
    }

    .header__logo-lang {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-top: 4px;
        font-size: 12px;
        color: rgba(255,255,255,0.9);
        font-weight: 500;
    }

    .header__logo-lang::after {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-right: 1.5px solid rgba(255,255,255,0.9);
        border-bottom: 1.5px solid rgba(255,255,255,0.9);
        transform: rotate(45deg) translateY(-2px);
    }

    .header__actions {
        gap: 8px;
        align-items: center;
    }

    .header__action {
        padding: 6px 8px;
        color: #fff;
    }

    .header__action span,
    .header__account-text {
        display: none;
    }

    .header__action img,
    .header__icon {
        filter: brightness(0) invert(1);
    }

    .header__lang {
        display: none;
    }

    .header__burger {
        display: inline-flex;
    }

    .header__burger-line {
        background: #fff;
    }

    .header__contacts-bar {
        display: block;
    }

    .header-search__form {
        flex-direction: column;
    }

    .header-search__submit,
    .header-search__input {
        width: 100%;
    }

    .nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 100%);
        height: 100vh;
        background: #1299b6;
        padding: 0;
        transform: translateX(100%);
        transition: transform .28s ease;
        z-index: 230;
        overflow: hidden;
        box-shadow: -10px 0 30px rgba(0,0,0,.18);
    }

    .nav.is-open {
        transform: translateX(0);
    }

    .nav .container {
        height: 100%;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        flex-direction: column;
    }

    .nav__mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 64px;
        padding: 0 18px;
        border-bottom: 1px solid rgba(255,255,255,.16);
    }

    .nav__mobile-title {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.2;
    }

    .nav__mobile-close {
        position: relative;
        width: 36px;
        height: 36px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .nav__mobile-close::before,
    .nav__mobile-close::after {
        content: "";
        position: absolute;
        top: 17px;
        left: 8px;
        width: 20px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
    }

    .nav__mobile-close::before {
        transform: rotate(45deg);
    }

    .nav__mobile-close::after {
        transform: rotate(-45deg);
    }

    .nav__inner {
        display: block;
        min-height: 0;
        padding: 8px 0 0;
        overflow-y: auto;
        overflow-x: hidden;
        flex: 1 1 auto;
		margin: 0;
		max-width: 100%;
    }

    .nav__item {
        display: block;
        position: relative;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .nav__item:last-child {
        border-bottom: 0;
    }

    .nav__item--parent {
        padding-right: 52px;
    }

    .nav__link {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 54px;
        padding: 0 18px;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        white-space: normal;
    }

    .nav__link--dd::after {
        display: none;
    }

    .nav__submenu-toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 52px;
        height: 54px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .nav__submenu-toggle::before {
        content: "";
        position: absolute;
        top: 20px;
        right: 20px;
        width: 10px;
        height: 10px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
        transition: .2s ease;
    }

    .nav__item--parent.is-open .nav__submenu-toggle::before {
        transform: rotate(-135deg);
        top: 24px;
    }

    .nav__dropdown {
        position: static;
        transform: none !important;
        min-width: 0;
        max-width: none;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        background: rgba(255,255,255,.08);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        overflow: hidden;
    }

    .nav__item--parent.is-open .nav__dropdown {
        display: block;
    }

    .nav__dropdown-inner {
        padding: 6px 0 10px;
    }

    .nav__dropdown-link {
        display: block;
        padding: 10px 18px 10px 30px;
        color: rgba(255,255,255,.95);
        font-size: 14px;
        line-height: 1.35;
    }

    .nav__dropdown-link:hover,
    .nav__dropdown-link.is-active {
        background: rgba(255,255,255,.1);
        color: #fff;
    }

    .nav__mobile-extra {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 18px;
        border-top: 1px solid rgba(255,255,255,.16);
        background: rgba(0,0,0,.06);
    }

    .nav__mobile-phone,
    .nav__mobile-email {
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        line-height: 1.3;
    }

    .nav__mobile-lang {
        display: flex;
        gap: 10px;
        padding-top: 4px;
    }

    .nav__mobile-lang a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 48px;
        height: 36px;
        padding: 0 12px;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,.25);
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
    }

    .nav__mobile-lang a.is-active {
        background: #fff;
        color: #1299b6;
        border-color: #fff;
    }

    .hero {
        display: none;
    }

    .page-content {
        padding-top: 16px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .nav {
        left: auto;
        will-change: transform;
    }

    .nav.is-open {
        transform: translateX(0) !important;
    }
}

@media (max-width: 768px) {
    .header__inner {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
    }

    .header__logo {
        flex: 0 0 auto;
    }

    .header__actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 2px;
        flex: 0 0 auto;
    }

    .header__action,
    .header__burger {
        flex: 0 0 auto;
    }
}


.booking-btn-white {
	color: #fff!important;
	text-decoration: none!important;
}