@charset "utf-8";
/* CSS Document */
html {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: normal;
    position: relative;
    max-width: 100%;
    overflow-x: hidden;
}

b {
    font-weight: bold;
}

.wrapper_container {
    width: 100%;
    padding: 40px 0;
}

.color_container {
    background-color: #fef3ee;
}

.wrapper_center {
    width: calc(100% - 20px);
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.wrapper_title {
    text-align: center;
    font-size: 1.5em;
}

.wrapper_sub_title {
    text-align: center;
    font-weight: bold;
    margin-top: 8px;
}

.wrapper_desc {
    text-align: center;
    margin-bottom: 16px;
}

.wrapper_desc svg {
    height: 20px;
    vertical-align: bottom;
    margin-right: 4px;
}

.wrapper_title_line {
    width: 80px;
    margin: 20px auto;
}

.wrapper_title_line svg {
    width: 100%;
    fill: var(--btn-primary);
}

/* START HEADER */

.top_header {
    background: var(--bg-gradient);
    width: 100%;
    height: 40px;
    align-content: center;
}

.top_header a {
    color: white;
}

.top_header .wrapper_center {
    display: flex;
    justify-content: space-between;
}

.wrapper_pre {
    white-space: pre-wrap;
    text-align: center;
    line-height: 1.4em;
}

.header_social a, .header_contact span {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.header_social a {
    margin-right: 8px;
}

.header_social a:last-child {
    margin-right: 0;
}

.header_social a svg, .header_contact a svg, .header_lang svg {
    width: 80%;
    height: 80%;
    margin: 5%;
    fill: white;
}

.header_contact a {
    font-size: .9em;
    margin-right: 16px;
    display: flex;
    align-items: center;
}

.header_contact a p {
    display: none;
}

.header_contact {
    display: flex;
}

.header_lang {
    display: flex;
    align-items: center;
    height: 24px;
}

.header_lang div {
    display: flex;
    border: 1px solid white;
    border-radius: 4px;
}

.header_lang a {
    margin: 0 4px !important;
    padding: 0 4px;
}

.header_lang a.active {
    font-size: .9em;
    margin: 2px 4px !important;
    background-color: white;
    border-radius: 4px;
    color: var(--btn-primary-seccond);
    font-weight: bold;
}

header {
    width: 100%;
    height: 80px;
    background-color: white;
    box-shadow: var(--shadow);
    align-content: center;
    position: sticky;
    top: 0;
    z-index: 1000; /* optional but recommended */
}

header span {
    width: 32px;
    height: 32px;
    display: flex;
}

header span svg {
    width: 100%;
    height: 100%;
    fill: var(--btn-primary);
}

header nav {
    position: absolute;
    background-color: white;
    /*top: 72px;*/
    top: -500px;
    /*right: -520px;*/
    right: 2%;
    width: 96%;
    border-radius: 4px;
    border: 1px solid var(--btn-primary);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    max-width: 480px;
    transition: all 0.4s ease-in-out;
}

header nav.open {
    /*right: 2%;*/
    top: 72px;
}

header nav a {
    /*margin-right: 24px;*/
    transition: .3s;
    color: #222;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 16px auto;
}

.close_menu {
    display: none;
}

.header_menu {
    padding: 0;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.header_menu.active .close_menu {
    display: block;
}

.header_menu.active .open_menu {
    display: none;
}

header nav a.active {
    font-weight: bold;
    color: var(--btn-primary);
}

header nav a:hover {
    color: var(--btn-primary);
}

header nav a:last-child {
    margin-right: 0;
}

header .wrapper_center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_logo {
    width: 100px;
}

.header_logo svg {
    width: 100%;
}

.desk_only {
    display: none !important;
}

.whatsapp_btn {
    position: fixed;
    right: 8px;
    bottom: -8px;
    z-index: 1002;
}

.whatsapp_btn svg {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 3;
}

.whatsapp_btn__text {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: .8em;
    background-color: #01a72d;
    border: 3px solid white;
    box-shadow: var(--shadow);
    color: white;
    font-weight: bold;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 30px;
    z-index: 2;
    width: 0;
    transition: .3s;
}

.whatsapp_btn__text.open {
    overflow: unset;
    padding: 10px 70px 10px 20px;
    width: auto;
}

.whatsapp_btn span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: red;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: .8em;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    z-index: 4;
    align-items: center;

}

/* END HEADER */
.btn {
    padding: 8px 12px;
    border-radius: 4px;
    background: var(--bg-gradient);
    font-weight: bold;
    font-size: 1em;
    box-shadow: var(--shadow);
    display: block;
    color: white;
    width: fit-content;
    cursor: pointer;
    border: none;
}

.btn.waze {
    background: #67c9f9;
    color: black;
    margin: 10px auto 30px;
    direction: ltr;
}

.btn.waze svg {
    margin-right: 12px;
    vertical-align: text-top;
}

.btn svg {
    height: 24px;
    width: 24px;
    fill: white;
}

.btn.whatsapp_color {
    background: #009649;
    font-weight: bold;
    font-size: 1.2em;
}

.btn.center {
    margin: auto;
}

.btn_m_top_16 {
    margin-top: 16px !important;
}

.main_cover {
    aspect-ratio: 16 / 5;
    width: 100%;
    min-height: 360px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: max-width .3s;
    flex-direction: column;
}

.main_cover p, .main_cover h1 {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 1.2em;
}

.main_cover p.main_cover__title {
    font-size: 2em;
}

.main_cover .btn {
    position: relative;
    z-index: 3;
    color: white;
    margin-top: 16px;
    margin-bottom: 130px;
}

.new_cover_bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #00000085;
}

.new_cover_video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 1;
}

.new_cover_video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-hidden {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-visible {
    opacity: 1;
}

.three_tabs_flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.three_tabs_flex__item {
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px 0;
    border-radius: 16px;
}

.three_tabs_flex__item img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 8 / 7;
    overflow: hidden;
    object-fit: cover;
}

.three_tabs_flex__icon {
    width: 25%;
    aspect-ratio: 1;
    min-width: 100px;
    max-width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    background-color: #616161;
    border-radius: 50%;
}

.three_tabs_flex__icon svg {
    width: 60%;
    height: 60%;
    fill: #fef3ee;
}

.link {
    color: var(--btn-primary);
    transition: .3s;
    font-weight: bold;
    border: none;
    background-color: transparent;
    font-size: 1.2em;
}

.link.large {
    font-size: 1.2em;
}

.link:hover {
    text-decoration: underline;
}

.services_header {
    display: flex;
    padding: 12px 0;
}

.services_header span {
    color: #ddd;
    margin: 0 20px;
}

.services_header svg {
    width: 20px;
    height: 20px;
    vertical-align: bottom;
    margin-right: 4px;
    fill: #616161;
}

.services_header p {
    font-weight: bold;
}

.three_tabs_flex__item pre {
    color: #616161;
    padding: 20px 0 0;
    line-height: 1.3em;
    flex: 1 1 auto;
    white-space: pre-wrap;
    font-style: italic;
    font-size: .9em;
    font-weight: bold;
}

.three_tabs_flex__item ul {
    list-style: disc;
    margin: 20px 16px;
    line-height: 1.6em;
    font-size: .9em;
}

.three_tabs_flex__line {
    height: 1px;
    width: 100%;
    background-color: #ddd;
}

.vertical_space_between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.whatsapp_strip {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp_strip svg {
    height: 48px;
    fill: #616161;
    margin-bottom: 4px;
}

.whatsapp_strip__title {
    font-weight: bold;
}

.whatsapp_strip p {
    margin: 2px 0;
}

.whatsapp_strip a {
    margin-top: 16px;
}

.contact_strip {
    display: flex;
    /*justify-content: space-between;*/
    flex-wrap: wrap;
    justify-content: center;
}

.contact_strip__map, .contact_strip__form {
    width: 100%;
    margin: 10px 0;
}

.contact_strip__map iframe {
    width: 100%;
    margin: 8px 0;
    height: 240px;
    /*aspect-ratio: 1;*/
}

.contact_strip__form input, .contact_strip__form textarea {
    width: 100%;
    padding: 8px 16px;
    font-family: Arimo, Sans-serif, serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
}

.input_message {
    font-weight: bold;
    font-size: .8em;
    padding: 4px;
}

.contact_strip__form textarea {
    height: 100px;
}

.row_form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.row_form_1, .row_form_2 {
    width: 100%;
    margin: 8px 0;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    /*direction: ltr;*/
    /*max-width: 400px;*/
    margin: 0 auto 30px;
}

.calendar_nav {
    display: flex;
    margin: 10px auto 10px;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    max-width: 280px;
    width: 100%;
}

.calendar_nav p {
    margin: 0 16px;
    text-align: center;
}

.calendar_nav a {
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar_nav svg {
    height: 36px;
    width: 36px;
}

.calendar .day, .calendar .empty {
    border: 3px solid transparent;
    padding: 4px 0;
    text-align: center;
    min-height: 60px;
    background: #b5f4a4;
    align-content: center;
    transition: .3s;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    color: #222;
    position: relative;
    overflow: hidden;
}

.free_seats {
    position: relative;
    z-index: 2;
    font-size: 9px;
    /*box-shadow: var(--shadow);*/
    background-color: white;
    border-radius: 4px;
    height: 26px;
    display: block;
}

.free_seats span {
    font-size: 13px;
    padding: 2px;
    background-color: white;
    border-radius: 4px;
}

.calendar .day p {
    position: relative;
    z-index: 2;
}

.calendar_day_filed {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffb0b0;
    width: 0;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.calendar_day_filed.width {
    width: 100%;
    background-color: unset;
}

.calendar_day_filed__item {
    width: 100%;
    height: 100%;
}

.calendar_day_filed__item.active {
    background-color: #ffb0b0;
}

.empty .calendar_day_filed, .past .calendar_day_filed, .day.past span, .empty span {
    display: none;
}

.calendar .day:hover {
    border: 3px solid var(--btn-primary);
}

.calendar .day.no_place {
    background: #ffb0b0;
    cursor: not-allowed;
    /*pointer-events: none;*/
}

.calendar .empty {
    background: transparent;
    border: none;
}

.calendar .day-name {
    font-weight: bold;
    /*background: #eee;*/
    text-align: center;
    padding: 5px;
}

.calendar .past {
    cursor: not-allowed;
    background: #e6e4e4;
    pointer-events: none;
    opacity: 0.5;
    color: #999;
}

/*.calendar .friday {*/
/*    background: #e3f0ff;*/
/*    font-weight: bold;*/
/*    color: #003366;*/
/*}*/
/*.calendar .saturday {*/
/*    background: #ffecec;*/
/*    font-weight: bold;*/
/*    color: #660000;*/
/*}*/
.gallery_strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery_strip a {
    width: 48%;
    aspect-ratio: 4 / 3;
    background-color: #721c24;
    margin: 12px 0;
    overflow: hidden;
}

.gallery_strip a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hidden_service {
    display: none;
}

/* START CHECKBOX */

.checkbox_container {
    display: block;
    position: relative;
    padding-left: 35px;
    padding-right: 16px;
    /*margin-bottom: 12px;*/
    /*padding-top: 5px;*/
    cursor: pointer;
    user-select: none;
    color: #222;
}

.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    border: 1px solid #ccc;
    background-color: white;
    border-radius: 4px;
    transition: .3s;
}

.checkbox_container:hover input ~ .checkmark {
    border: 1px solid var(--btn-primary);
}

.checkbox_container input:checked ~ .checkmark {
    border: 1px solid transparent;
    background-image: var(--bg-gradient);

}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox_container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox_container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* END CHECKBOX */
/* START MSG */

.msg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1001;
    box-shadow: var(--shadow);
}

.msg span {
    border-top: 2px solid #393b42;
    background-color: white;
    padding: 24px;
    max-width: 320px;
    width: calc(100% - 48px);
    box-shadow: var(--shadow);
    border-radius: 16px;
}

.msg svg {
    width: 60px;
    height: 60px;
    margin: auto;
    display: block;
}

.msg.success span svg {
    fill: green
}

.msg.error span svg {
    fill: darkred;
}

.msg p {
    text-align: center;
    margin: 20px auto;
    color: #222;
}

.msg .form_btn {
    /*width: fit-content;*/
    margin: auto;
}

.msg.welcome_msg span {
    max-width: 992px;
    max-height: 90vh;
    overflow-y: auto;
}

.msg.welcome_msg b {
    font-size: 1.2em;
}

/* END MSG */
.cruise_info_strip {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.cruise_info_strip p.title, .cruise_info_strip h1.title {
    font-weight: bold;
    font-size: 1.4em;
}

.cruise_info_strip .line {
    background-color: var(--btn-primary);
    height: 4px;
    width: 120px;
    margin: 16px 0;
}

.cruise_info_strip__content {
    display: flex;
    max-width: 1200px;
    align-items: center;
    margin: 16px auto;
    flex: 1 1 auto;
}

.cruise_info_strip__bottom {
    /*width: 90%;*/
    margin: 30px auto 0;
    max-width: 480px;
    /*background-color: rgba(179, 212, 252, 0.3);*/
    border-radius: 36px;
    padding: 20px;
    color: white;
    text-align: center;
    border: 1px solid white;
}

.cruise_info_strip__flex {
    display: flex;
    justify-content: space-between;
}

.cruise_info_strip__content pre {
    white-space: pre-wrap;
}

.cruise_info_strip__img {
    width: 40%;
    margin: 16px auto;
    display: flex;
    align-items: center;
}

.cruise_info_strip__img img {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    overflow: hidden;
    min-width: 150px;
}

.bg_cruise {
    position: relative;
    background-image: url("/images/cruise_bg.jpg");
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.bg_cruise_flex {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.bg_cruise_flex div {
    width: 100%;
    margin: 16px 0;
}

.bg_cruise_flex p {
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 12px;
}

.bg_cruise_flex pre {
    white-space: pre-wrap;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(254, 243, 238, 0.8); /* צבע שחור עם שקיפות */
    pointer-events: none; /* כדי שלא יחסום אינטראקציה עם תוכן */
    z-index: 1;
}

.color_dot {
    width: 20px;
    height: 16px;
    display: inline-block;
    border-radius: 4px;
    background-color: #b5f4a4;
    position: relative;
    overflow: hidden;
}

.color_dot span {
    position: absolute;
    height: 16px;
    width: 10px;
    left: 0;
    background-color: #ffb0b0;
}

.color_dot.no_place {
    background-color: #ffb0b0;
}

.white_dot {
    width: 20px;
    height: 16px;
    border: 1px solid #ccc;
    background-color: white;
    display: inline-block;
}

.order_worm {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 480px;
    background-color: #fef3ee;
    border-radius: 36px;
    padding: 24px;
}

.order_worm input, .order_worm select {
    width: 100%;
    padding: 8px 16px;
    font-family: Arimo, Sans-serif, serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    text-align: left;
}

select {
    background-image: linear-gradient(45deg, transparent 50%, var(--btn-primary) 50%), linear-gradient(135deg, var(--btn-primary) 50%, transparent 50%);
    background-position: right 20px top 16px, right 15px top 16px, left 0 top 0;
    background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
    background-repeat: no-repeat;
}

.required_dot {
    color: darkred;
    margin-right: 4px;
}

.form_label {
    margin: 4px;
    display: inline-block;
    font-size: .9em;
    color: grey;
}

.radio-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.radio-option {
    width: 100%;
    padding: 8px 16px;
    /*font-size: 18px;*/
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

.radio-option.no_place {
    /*background: #ffb0b0;*/
    cursor: not-allowed;
    pointer-events: none;
    opacity: .3;
}

.radio-option:hover {
    background-color: rgba(181, 244, 164, 0.5);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option input[type="radio"]:checked + span,
.radio-option input[type="radio"]:checked ~ * {
    /* רק כדי לוודא שצאצאים מקבלים עיצוב – אך לא חובה כאן */
}

.radio-option input[type="radio"]:checked {
    /* לא רואים אותו כי הוא מוסתר, אז נשתמש ב-selected label */
}

/* השתמש ב-selector של :has אם נתמך, או JS – אבל אפשר גם כך: */
.radio-option:has(input[type="radio"]:checked) {
    border-color: #b5f4a4;
    background-color: #b5f4a4;
}

.success_message {
    white-space: pre-wrap;
    text-align: center;
}

p.success_message {
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    margin-top: 10px;
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ccc;
    background-color: white;
}

th {
    background-color: #eb5f2c2e;
    color: #333;
    font-weight: 600;
}

tr:hover {
    background-color: #f1f7ff;
}

footer {
    width: 100%;
    border-top: 1px solid #ccc;
    padding: 30px 0;
}

footer .wrapper_center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
}

.footer_social svg {
    fill: var(--btn-primary);
    height: 24px;
    width: 24px;
    margin: 0 6px 16px;
}

.footer_social {
    display: flex;
}

.cruise_cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.cruise_cover p, .cruise_cover pre {
    text-align: center;
    color: white;
    white-space: pre-wrap;
}

.cruise_cover p {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 16px;
}

.cruise_cover pre {
    justify-content: center;
}

.cruise_cover .wrapper_center {
    position: relative;
    z-index: 2;
}

.cruise_cover_bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}


.ratio_container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /*font-size: .9em;*/
}

.ratio_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark_ratio {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.ratio_container:hover input ~ .checkmark_ratio {
    border: 1px solid var(--btn-primary);
}

.ratio_container input:checked ~ .checkmark_ratio {
    /*background-color: blue;*/
    background-image: var(--bg-gradient);
}

.checkmark_ratio:after {
    content: "";
    position: absolute;
    display: none;
}

.ratio_container input:checked ~ .checkmark_ratio:after {
    display: block;
}

.ratio_container .checkmark_ratio:after {
    top: 7px;
    left: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

@media (min-width: 480px) {

}

@media (min-width: 600px) {
    .gallery_strip a {
        width: 48%;
    }

    body {
        font-size: 20px;
    }

    .calendar .day, .calendar .empty {
        font-size: 2em;
        min-height: 100px;
        padding: 10px;
    }

    .free_seats {
        font-size: 16px;
    }

    .wrapper_title {
        font-size: 3em;
    }

    .calendar_nav {
        margin: 0 auto 40px;
    }

    .wrapper_center {
        width: calc(100% - 40px);
    }
}

@media (min-width: 768px) {


}

@media (min-width: 992px) {
    .main_cover .btn {
        margin-bottom: 0;
    }

    .btn {
        padding: 12px 16px;
        font-size: 1.2em;
    }

    .main_cover p.main_cover__title {
        font-size: 3em;
    }

    .main_cover p {
        font-size: 1.5em;
    }

    .gallery_strip a {
        width: 23%;
    }

    .bg_cruise_flex div {
        width: 32%;
    }

    .bg_cruise_flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .cruise_info_strip__content {
        margin-right: 16px;
    }

    .cruise_info_strip {
        flex-direction: row;
    }

    footer .wrapper_center {
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }

    .footer_social svg {
        margin: 0 0 16px 12px;
    }

    .footer_social {
        display: flex;
    }

    .free_seats span {
        font-size: 16px;
        background-color: transparent;
    }

    .free_seats {
        height: unset;
        width: fit-content;
        margin: auto;
        padding: 2px 4px 4px;
    }

    .desk_only {
        display: flex !important;
    }

    .desk_mobile {
        display: none !important;
    }

    .wrapper_container {
        padding: 100px 0;
    }

    .header_contact a p {
        display: block;
    }

    .three_tabs_flex__item {
        width: 32%;
    }

    .contact_strip__map, .contact_strip__form {
        width: 48%;
    }

    .row_form_2 {
        width: calc(50% - 12px);
    }

    header nav {
        position: unset;
        background-color: white;
        width: unset;
        border: unset;
        box-shadow: unset;
        padding: 0;
        max-width: unset;
        transition: .3s;
    }

    header nav a {
        margin: 0 24px 0 0;
        transition: .3s;
        color: #222;
        display: inline-block;
        width: unset;
        text-align: center;
    }

    .cruise_cover p {
        font-size: 2em;
    }
}

@media (min-width: 1200px) {

}
