:root {
    --container: 1200px;
    --pad: 20px;

    --color-bg: #ffffff;
    --color-text: #363d72;
    --color-primary: #0499b5;
    --color-sub: #7E9AB2;
    --color-border: #A7DEE8;

    --font-base: "Ubuntu", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif!important;

    --fs-body: 16px;
    --fw-body: 400;

    --fs-hero-title: 27px;
    --fw-hero-title: 500;

    --fs-dates: 18px;
    --fw-dates: 400;

    --fs-card-title: 20px;
    --fw-card-title: 500;

    --fs-section-title: 20px;
    --fw-section-title: 500;

    --fs-price: 28px;
    --fw-price: 500;

    --fs-price-suffix: 16px;
    --fw-price-suffix: 300;

    --fs-free: 16px;
    --fw-free: 700;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-base);
    font-size: var(--fs-body);
    font-weight: var(--fw-body);
    line-height: 1.26;
    color: var(--color-text);
    background: var(--color-bg);
}

.page {
    flex: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 26px;
    border-radius: 5px;
    background: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-btn:hover {
    background-color: color-mix(in srgb, var(--color-primary), white 20%);
}

.booking-btn--full {
    width: 100%;
}

.cruise__slider {
	height: 400px;
}

.navigation {
    font-size: 14px;
    line-height: 1.45;
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
}

.navigation a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navigation a:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.navigation span {
    color: #9ca3af;
}

.navigation span:last-child {
    color: var(--color-text);
    font-weight: 500;
}

#navigation {
	margin-top: 10px;
	margin-bottom: 20px;
}

@media (max-width: 576px) {
	#atum_socializer {
		--bottom: 170px;
		--right: 20px;
	}

	#navigation {
		margin-top: 20px;
		margin-bottom: 40px;
	}
}