/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    /* --header-height: 3rem; */

    /*========== Additional colors ==========*/
    --hue-color: 290;

    --input-color: hsl(var(--hue-color), 24%, 97%);
    --white: #FFF;
    --black: #212121;
    --lightblue: #C9F0FF;
    --primary-darker: #102671;
    --grey: #979797;
    --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

    /*========== Typography ==========*/
    --body-font: 'DM Sans', sans-serif;
    --secondary-font: "Playfair Display", serif;
    --biggest-font-size: 2.5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*==========  ==========*/
    --transition: all .3s ease-in-out;
    --img-scale: scale(1.05);
}

@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 3rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/*==========  Dark Mode (dev) ==========*/
body.dark-theme {
    --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    /* margin: var(--header-height) 0 0 0; */
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--black);
}

h1,
h2,
h3 {
    /* font-weight: 700; */
    font-family: var(--title-font);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

ul {
    list-style: none;
}

ul,
ol,
li {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    height: auto;
}

img {
    display: block;
}

button,
input {
    border: none;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

button {
    cursor: pointer;
}

input {
    outline: none;
}

hr {
    border-color: #DEDEDE;
}

.main {
    overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.inner {
    padding: 0 15px;
    max-width: 1320px;
}

section {
    position: relative;
}

section.white-section {
    background-color: var(--white);
}

section.blue-section,
section.image-section {
    background-color: var(--primary-darker);
    color: var(--white);
}

section.yellow-section {
    background-color: var(--tertiary);
    color: var(--white);
}

section.image-section {
    min-height: 225px;
    z-index: 99;
}

section.blue-section h5.text-uppercase,
section.blue-section h2.section__title_accent,
section.image-section h5.text-uppercase,
section.image-section h2.section__title_accent {
    color: var(--white);
}

section.blue-section h5.text-uppercase {
    color: var(--lightblue);
}

.material-symbols-outlined {
    font-size: 18px;
}

.section__title {
    font-size: var(--h2-font-size);
    text-align: center;
}

.section__title_accent {
    font-size: var(--h1-font-size);
    font-style: italic;
    color: var(--secondary);
    font-family: var(--secondary-font);
    line-height: 1.2;
    font-weight: normal;
}

.dtmg__btn {
    border-radius: 4px;
    padding: 12px 16px;
    border: 1px solid var(--tertiary);
    text-align: center;
    background: var(--tertiary);
    color: var(--white);
    min-width: 80px;
    transition: all .3s ease-out;
    font-size: var(--normal-font-size);
    line-height: 1.2;
    font-weight: 700;
    font-family: var(--body-font);
    display: inline-block;
}

.dtmg__btn:hover {
    border-color: #AD8724;
    background: #AD8724;
}

.callback__item .dtmg__btn {
    height: 50px;
    border-radius: 0;
}

.dtmg__btn_alt {
    border-radius: 8px;
    padding: 12px 16px;
    border: 2px solid var(--white);
    text-align: center;
    background: transparent;
    color: var(--white);
    min-width: 170px;
    letter-spacing: -0.32px;
}

.dtmg__btn_alt:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border-color: var(--white);
}

.dtmg__btn_blue {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.dtmg__btn_blue:hover {
    opacity: 1;
    background-color: var(--primary-darker);
    border-color: var(--primary-darker);
}
.dtmg__btn_accent {
    height: 50px;
}

.accent__content {
    font-style: italic;
    font-family: var(--secondary-font);
    line-height: 1.2;
    font-weight: 400;
}

h1.accent__content {
    font-weight: normal;
}

.accent__content_lg {
    font-size: var(--h1-font-size);
}

.image-section::after,
.overlay::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-image: linear-gradient(to top, transparent, rgba(15, 36, 60, 0.2) 5%, rgba(75, 80, 135, 0.3) 10%, rgba(75, 80, 135, 0.4) 100%);
    background-position: initial initial;
    background-repeat: initial initial;
}

.banner-block::after {
    background: #212121;
    opacity: .3;
}

.yellow-section::after {
    display: none;
}

/* .image-section .container,
.overlay .container {
    position: relative;
    z-index: 10;
} */

.text-xs {
    font-size: 12px;
}

.font-bold {
    font-weight: 900;
}

.subtitle {
    font-size: 16px;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-white {
    color: var(--white, #FFF);
}

.font-primary {
    font-family: var(--body-font);
}

.color-primary {
    color: var(--primary);
}

.color-primary-darker {
    color: var(--primary-darker);
}

.color-lightblue {
    color: var(--lightblue);
}

.color-secondary {
    color: var(--secondary);
}

.spacer-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.spacer-100-top {
    padding-top: 100px;
}

.spacer-100-btm {
    padding-bottom: 100px;
}

body.page-template-default:not(.home) article section.spacer-100:not(:first-of-type):not(.content-rows):not(.contact-form):not(.blue-section):not(.image-section) {
    padding-top:0;
}

.single-destinations .spacer-100 + .spacer-100:not(.blue-section),
.page-id-405 .spacer-100 + .spacer-100:not(.blue-section) {
    padding-top: 0;
}

.color-tertiary {
    color: var(--tertiary);
}

button.prev-btn,
button.next-btn {
    background: var(--primary);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out;
}

button.prev-btn:hover,
button.next-btn:hover {
    background: var(--secondary);
}

.post-item img,
.img__cover,
img.img__cover,
.img__cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: all .4s ease-in-out;
}

.image__caption {
    position: absolute;
    width: 80%;
    left: 50%;
    top: auto;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 20;
    color: var(--white);
    min-height: 60px;
}

.inner__wrapper {
    transition: var(--transition);
}

.offers__container .inner__wrapper:hover .img__cover:hover {
    transform: var(--img-scale);
    transition: var(--transition);
}

/* .offers__container .slider__controls {
    position: absolute;
    right:0;
    bottom:0;
} */

#cruise__offers .offers__container button.slick-arrow,
#cruise__offers .offers__container .slider__controls button.slick-arrow {
    position: absolute;
    top: 50%;
    background: var(--primary-darker);
    left: -5px;
    border:1px solid #fff;
    width: 50px;
    height: 50px;
    transition: all .3s ease-in-out;
}
#cruise__offers .offers__container button.next-btn.slick-arrow,
#cruise__offers .offers__container .slider__controls button.next-btn.slick-arrow {
    position: absolute;
    top: 50%;
    background: var(--primary-darker);
    right: -5px;
    left:auto;
    border:1px solid #fff;
    width: 50px;
    height: 50px;
}
#cruise__offers .offers__container button.slick-arrow:hover {
    background: var(--primary);
}
.ship__slider_wrapper .slider__controls button.prev-btn,
.ship__slider_wrapper .slider__controls button.next-btn,
.offers__container .slider__controls button.prev-btn,
.offers__container .slider__controls button.next-btn,
.slider__controls button.prev-btn,
.slider__controls button.next-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--white);
}
.offers__container .slider__controls i,
.ship__slider_wrapper .slider__controls i {
    font-size: 10px;
}
.tabs__container .slider__controls button.prev-btn,
.tabs__container .slider__controls button.next-btn {
    background: var(--primary);
}

.price-was {
    text-decoration: line-through;
    color: var(--grey);
}

.image__wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
    /* transition: all 330ms ease-in-out; */
}

.image__wrapper:not(.no-gradient):hover img {
    transform: var(--img-scale);
    transition: transform 330ms ease-in-out;
}

.hidden {
    display: none;
}

.truncate-text {
  overflow: hidden;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

/*=============== HEADER ===============*/
#alert-bar {
    padding: 1rem 0;
    color: var(--white);
    font-weight: 700;
}

#alert-bar p {
    padding: 0;
    margin: 0;
}

#alert-bar .alert-bar-close i {
    font-size: 26px;
}

#header-container {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--white);
    color: var(--black);
    padding: 0;
    /* box-shadow: 0 -6px 10px 5px rgba(118, 118, 118, 0.3); */
}
.sticky {
    position: fixed;
    top: 0;
}

header {
    box-shadow: none;
    padding: 10px 0;
}

header p {
    margin: 0;
}

#header-logo {
    max-width: 220px;
}

#header-logo img {
    width: 100%;
    max-height: 80px;
}

@media all and (max-width: 992px) {
    #header-logo {
        width: 150px;
    }
}

#header-meta {
    flex: 1;
    font-weight: 700;
    font-size: 14px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    box-shadow: 0 4px 2px -2px rgba(118, 118, 118, 0.3);
}

#header-meta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--text);
}

#header-meta a:hover {
    color: var(--primary);
}

#header-meta .social-media {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

@media all and (max-width: 992px) {
    #header-meta .social-media {
        margin-left: 1rem;
        margin-right: 0;
    }
    
    #header-meta a {
        margin-right: 0px;
    }
}

.favourites i {
    font-size: 20px;
}

[data-favourites-count]:after {
    content: attr(data-favourites-count);
    width: 16px;
    height: 16px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 16px;
    position: absolute;
    top: -6px;
    right:-6px;
    display: block;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-media {
    display: flex;
    gap: 15px;
}

.email-address i, .social-media i,
.primary__phone_mob i {
    font-size: 20px;
    color: var(--primary);
}

#header-meta .sign-up {
    cursor: pointer;
}

#header-meta span.icon,
span.icon__round {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--secondary);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    transition: background .3s;
}

#header-meta span.icon.icon-xl,
span.icon-xl {
    height: 50px;
    width: 50px;
}
#header-meta .sign-up-link i,
#header-meta .sign-up i {
    color: var(--primary);
    font-size: 20px;
}
#header-meta .sign-up:hover {
    color: var(--primary);
    transition: var(--transition);
}
span.icon-xxl {
    height: 80px;
    width: 80px;
}

#header-meta .primary__phone i,
#header-meta .primary__phone_mob i {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 100%;
}

#header-meta .primary__phone a {
    font-size: var(--h2-font-size);
    line-height: 1.2;
    color: var(--primary);
}

#header-meta span.icon.icon-alt-bg {
    background-color: var(--white);
    color: var(--tertiary);
}

#header-meta .primary__phone span {
    font-size: var(--smaller-font-size);
}

#header-meta .additional-phone {
    display: none;
}

#header-meta .mob {
    display: block;
    background: none;
    font-size: 22px;
    color: var(--text);
}

#header-meta a:hover span {
    color: var(--primary);
}

#header-meta span.desktop {
    display: none;
}

#header-meta a:hover span.desktop {
    background: unset;
}

.header-item {
    margin-right: 10px;
}

.header-item img {
    max-width: 100px;
    height: auto;
    display: block;
}

#header-search {
    padding: 20px;
    position: static;
    width: 100%;
    /* bottom: 10%; */
    z-index: 9999;
    background: rgb(15, 36, 60);
    background: -moz-linear-gradient(336deg, rgba(15, 36, 60, 1) 0%, rgba(2, 90, 134, 1) 100%);
    background: -webkit-linear-gradient(336deg, rgba(15, 36, 60, 1) 0%, rgba(2, 90, 134, 1) 100%);
    background: linear-gradient(336deg, rgba(15, 36, 60, 1) 0%, rgba(2, 90, 134, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0f243c", endColorstr="#025a86", GradientType=1);
}

@media screen and (min-width: 768px) {
    .search-hero-block {
        max-width: 1320px;
        margin: 0 auto;
    }

    #header-logo {
        max-width: 260px;
    }

    #header-meta {
        flex-direction: column;
        align-items: flex-end;
    }

    #header-container.absolute {
        position: absolute;
        top: 0;
        z-index: 100;
        width: 100%;
        background-color: var(--white);
    }

    #header-search {
        padding: 20px;
        position: absolute;
        width: 100%;
        max-width: 1320px;
        bottom: 160px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        background: none;
    }

    #header-meta span.desktop {
        display: inline;
        width: unset;
        height: unset;
        background: unset;
        border-radius: 0;
        color: unset;
        font-size: unset;
    }

    #header-meta span.default-phone i,
    #header-meta .additional-phone i {
        color: var(--primary);
        margin-right: 8px;
    }

    #header-meta .mob {
        display: none;
    }

    #header-meta .additional-phone {
        display: block;
    }
}



/*=============== NAV ===============*/
nav {
    background: none;
    position: relative;
}

/* Main */
nav>.nav__items>ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

nav>.nav__items>ul>li {
    font-size: var(--normal-font-size);
    font-weight: 600;
    position: relative;
}

nav>.nav__items>ul>li>a {
    display: inline-block;
    padding: 10px;
    margin: 0 20px 0 0;
    color: #fff;
}

nav>.nav__items>ul>li:hover>a {
    color: var(--primary);
}

nav>.nav__items>ul>li:first-child>a {
    padding-left: 0;
}

nav>.nav__items>ul>li:last-child>a {
    padding-right: 0;
    margin-right: 0;
}

/* Arrows */
nav>.nav__items>ul>li.menu-item-has-children>a:after {
    content: '';
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-color: var(--primary);
    border-width: 0px 2px 2px 0px;
    right: -12px;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    transition: border-width 150ms ease-in-out;
}

nav>.nav__items>ul>li.menu-item-has-children>.sub-menu>li.menu-item-has-children>a:after {
    content: '';
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-color: var(--primary);
    border-width: 0px 2px 2px 0px;
    right: -12px;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    transition: border-width 150ms ease-in-out;
}

/* 1st Level Sub Menu */
nav>.nav__items>ul>li>.sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    min-width: 200px;
    background: var(--white);
    transition: all .3s;
    transition-delay: .3s;
}

nav>.nav__items>ul>li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

nav>.nav__items>ul>li>.sub-menu>li {
    position: relative;
}
nav>.nav__items>ul>li>.sub-menu>li:not(:last-of-type) {
    border-bottom: 1px solid #f2f2f2;
}

nav>.nav__items>ul>li>.sub-menu>li>a {
    display: block;
    padding: 10px;
    color: var(--text);
}

nav>.nav__items>ul>li>.sub-menu>li:hover>a {
    color: var(--primary);
}

/* 2nd Level Sub Menu */
nav>.nav__items>ul>li>.sub-menu>li>.sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 200px;
    top: 0;
    min-width: 200px;
    background: var(--white);
    transition: all .3s;
    transition-delay: .3s;
}

nav>.nav__items>ul>li.menu-item-has-children:hover>.sub-menu>li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

nav>.nav__items>ul>li>.sub-menu>li>.sub-menu>li>a {
    display: block;
    padding: 10px;
    color: var(--text);
}

nav>.nav__items>ul>li>.sub-menu>li:hover>.sub-menu>li:hover>a {
    color: var(--primary);
}

nav ul#menu-navigation {
    height: 50px;
    display: flex;
    align-items: center;
}

nav ul li {
    padding: 0 12px;
    height: 100%;
}

nav ul li a {
    color: #fff;
    position: relative;
    height: 100%;
}

nav ul li.menu-item-home a {
    min-width: 75px;
    margin: 0;
    padding: 10px 0;
}

nav ul li.current-menu-item a:before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    background-color: var(--primary);
}



/*####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### #######



##     ##  #######  ########  #### ##       ########    ##    ##    ###    ##     ##
###   ### ##     ## ##     ##  ##  ##       ##          ###   ##   ## ##   ##     ##
#### #### ##     ## ##     ##  ##  ##       ##          ####  ##  ##   ##  ##     ##
## ### ## ##     ## ########   ##  ##       ######      ## ## ## ##     ## ##     ##
##     ## ##     ## ##     ##  ##  ##       ##          ##  #### #########  ##   ##
##     ## ##     ## ##     ##  ##  ##       ##          ##   ### ##     ##   ## ##
##     ##  #######  ########  #### ######## ########    ##    ## ##     ##    ###



####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### #######*/


#mobile-navigation-control {
    display: none;
    cursor: pointer;
    text-transform: uppercase;
    padding: 10px;
    color: var(--primary);
}

#mobile-navigation {
    position: fixed;
    z-index: 999;
    top: 0;
    height: 100%;
    min-width: 260px;
    right: -100%;
    width: 90%;
    background: var(--white);
    overflow-y: auto;
    padding: 0 0 20px;
    transition: right .4s;
}

#mobile-navigation span.close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: var(--white);
    background-color: var(--primary);
    font-size: 20px;
    margin-left: auto;
    position: absolute;
    top: 40px;
    right: 35px;
    z-index: 20;
    transition: all .3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#mobile-navigation span.close:hover {
    transform: scale(1.1) rotate(-30deg);
    background: var(--primary-darker);
}

#mobile-navigation .meta {
    margin: 20px 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#mobile-navigation .meta img {
    height: 20px;
    width: auto;
}

#mobile-navigation .meta i {
    color: #fff;
    padding: 10px;
    margin: -10px;
    cursor: pointer;
}

#mobile-navigation.mobile-nav-open {
    right: 0;
    padding: 40px;
}

#mobile-navigation.mobile-nav-open i.fa-phone {
    margin-right: 10px;
}

#mobile-navigation ul {
    display: block;
    margin: 0;
    list-style: none;
    font-size: 18px;
    color: var(--secondary);
    padding-top:88px;
}

#mobile-navigation li {
    display: block;
    position: relative;
    border-top:1px solid #efefef;
}

#mobile-navigation ul .sub-menu {
    display: none;
    padding-top: 0;
    padding-left: 20px;
}

#mobile-navigation .current-menu-parent ul .sub-menu {
    display: block;
}
#mobile-navigation .mob-fav-link {
    border-top: 1px solid #efefef;
}

#mobile-navigation a {
    display: block;
    padding: 10px;
    color: #333;
    opacity: 1;
    font-weight: 600;
    transition: opacity var(--speed);
    font-size: 15px;
}

#mobile-navigation .mob-signup-link .sign-up {
    border-top: 1px solid #efefef;
    padding:10px;
    font-size: 15px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

#mobile-navigation ul .sub-menu a {
    font-weight: normal;
}

#mobile-navigation .primary__phone,
#mobile-navigation .primary__phone a {
    color: var(--primary);
}

#mobile-navigation .social-media a {
    color: var(--primary);
}

#mobile-navigation a:hover,
#mobile-navigation .current-menu-item>a,
#mobile-navigation .current-menu-parent>a,
#mobile-navigation .mob-signup-link .sign-up:hover,
#mobile-navigation .primary__phone a:hover,
#mobile-navigation .social-media a:hover {
    color: var(--primary-darker);
}


#mobile-navigation li.menu-item-home a i {
    display: none;
}
#mobile-navigation li.menu-item-home a::after {
    content: 'Home';
    display: block;
}

#mobile-navigation .sub-menu-control {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 11px;
    right: 10px;
    color: var(--primary);
    padding: 10px;
    margin: -10px;
    font-size: 14px;
    width: 100%;
    text-align: right;
}

#mobile-background {
    position: fixed;
    z-index: 899;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s;
}

#mobile-background.mobile-nav-open {
    opacity: 1;
    visibility: visible;
}


/*=============== PAGE HEADER ===============*/
header.page__header {
    height: 240px;
    overflow: hidden;
    position: relative;
    color: var(--white);
}

.header__contact_info {
    padding: 15px 0;
    border-bottom: 1px solid #f2f2f2;
    min-height: 65px;
    background-color: #FFFFFF;
    z-index: 10;
}
/*=============== HERO ===============*/
.hero__search__block {
    padding-top: 36px;
    padding-bottom: 36px;
}

.hero__search__block h2,
.hero__search__block h1 {
    font-family: var(--secondary-font);
    color: var(--white);
    font-style: italic;
    font-size: var(--h1-font-size);
    line-height: 1.2;
    margin-bottom: 13px;
    font-weight: normal;
    margin-bottom: 16px;
}

.hero__search__block h5 {
    color: var(--white);
    font: normal normal normal 16px/16px 'DM Sans';
    margin-bottom: 16px;
}

.hero__search__block #search-toggle {
    background: transparent;
    border:1px solid var(--white);
    border-radius: 4px;
    color: var(--white);
    height: 50px;
    cursor: pointer;
}

.hero__search__block #search-toggle i {
    margin-left: 6px;
    font-size: 10px;
}

.hero__search__block #website-search-form {
    font-family: var(--body-font);
    color: var(--text);
}

.hero__search__block #website-search-form .search-form-item .search-form-dropdown label:hover {
    color: var(--white);
}

.hero .slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .slider-inner {
    margin: 0;
    z-index: 999;
}

.hero-inner {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-inner h1 {
    text-transform: capitalize;
    line-height: 1.2;
}

.hero {
    height: auto;
    margin: -1px auto 0 auto;
    position: relative;
    z-index: 99;
    width: 100%;
}

.hero-inner {
    height: 100%;
    margin: -30px auto 0 auto;
    position: relative;
    z-index: 0;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-color: var(--primary);
}

.dark-slide::before {
    content: "";
    position: absolute;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    bottom: 0;
    z-index: -1;
}

.hero .slide {
    position: relative;
}

.hero .slick-slide {
    height: 360px;
}

.hero .slide {
    position: relative;
    z-index: 999;
}

.slider-inner {
    width: 100%;
    max-width: 1170px;
    margin: 150px auto 0 auto;
}

.hero .slider-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-slider .slider-inner-content {
    padding: 20px;
    color: var(--white);
    text-align: center;
    margin: 0;
}

.hero-inner-content {
    width: 100%;
    position: relative;
    padding: 0px 20px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.hero-inner-content h1 {
    font: 38px var(--body-font);
    margin: 30px 0 35px 0;
    text-transform: uppercase;
    line-height: 35px;
    position: relative;
    color: var(--white);
}

.hero .slider-inner-content h1 {
    font-family: var(--secondary-font);
    font-weight: 900;
    font-size: var(--biggest-font-size);
}

.hero .slider-inner h3 {
    font-size: var(--normal-font-size);
    font-weight: 600;
}

.slider-inner p {
    font-weight: bold;
    font-size: 18px;
}

.header-padder {
    height: 0;
}

.remove {
    position: relative;
    height: auto;
    width: 100%;
}

.hero .slider-inner .slide__link a {
    display: inline-block;
    color: var(--white);
    font-size: var(--normal-font-size);
    font-family: var(--secondary-font);
    border: 1px solid var(--white);
    background-color: rgba(0, 0, 0, 0.58);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all .3s ease-in-out;
    cursor: pointer;
    min-width: 120px;
    text-align: center;
    font-weight: 600;
}

.hero .slider-inner .slide__link a:hover {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.hero-slider .slick-slide::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgb(22, 3, 46);
    background: -moz-linear-gradient(0deg, rgba(48, 207, 208, 0.1441570378151261) 0%, rgba(22, 3, 46, 0.954) 100%);
    background: -webkit-linear-gradient(0deg, rgba(48, 207, 208, 0.1441570378151261) 0%, rgba(22, 3, 46, 0.9542410714285714) 100%);
    background: linear-gradient(0deg, rgba(48, 207, 208, 0.1441570378151261) 0%, rgba(22, 3, 46, 0.9542410714285714) 100%);
    /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#330867",endColorstr="#30cfd0",GradientType=1); */
    /* background-image: linear-gradient(to top, rgb(48, 207, 208) 0%, rgb(51, 8, 103) 100%); */
}


.slick-btn-wrap {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.slider-btn-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 2.5rem;
}

.hero-slider-arrows {
    display: none;
}

.slick-dots-hero ul.slick-dots li {
    z-index: 999;
}

.hero-slider-dots {
    display: flex;
    align-items: center;
}

.slick-dots-hero ul.slick-dots {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    bottom: auto;
    text-align: left;
    z-index: 9;
}

.eventpage .slick-dots {
    padding: 5px !important;
}

.slick-dots-hero ul.slick-dots {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    bottom: auto;
    text-align: left;
    z-index: 9;
}

/*=============== OFFERS SLIDER ===============*/
/*=============== LOGO SLIDER ===============*/
/*=============== GRID BLOCK ===============*/
.grid__slider,
.grid__slider_item .image__wrapper {
    height: 310px;
    overflow: hidden;
}

.grid__slider,
.grid__slider_item .image__wrapper {
    border-radius: 5px;
}

.slider__info {
    position: absolute;
    width: 70%;
    left: 40px;
    top: auto;
    bottom: 40px;
    z-index: 20;
    color: var(--white);
    min-height: 80px;
}

.grid__slider_item .image__wrapper.no-gradient .slider__info{
    display: none;
}

.container .slider__info h2 {
    font-family: var(--body-font);
}

.grid__container .slider__controls {
    bottom: 40px;
    right: 40px;
}

.grid__container .slider__controls button.prev-btn,
.grid__container .slider__controls button.next-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--white);
}

.grid__container .slider__controls i {
    font-weight: 700;
    font-size: 10px;
}
.grid__slider > .grid__slider_item:not(:first-child) {
    display: none;
}
/*=============== BANNER BLOCK ===============*/
.banner__block .card__price h2 {
    font: normal normal 900 34px/36px 'DM Sans';
    letter-spacing: -0.68px;
}
.banner__block .cat__card .card__body {
    bottom: 30px;
}
/*=============== DESTINATIONS SLIDER ===============*/

/*
/*=============== DESTINATIONS MAP ===============*/
.map-loc {
    display: none;
}

.large-map {
    width: 100%;
    position: relative;
}

.destinations-map {
    width: 100%;
    position: relative;
}

.map-loc {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    background: var(--primary);
    border: none;
    border-radius: 4px;
    padding: 10px;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
}

.map-loc:hover {
    color: #fff;
    opacity: 1;
    background-color: var(--secondary);
}


.map-loc1 {
    position: absolute;
    top: 18%;
    left: 4%;
}

.map-loc2 {
    position: absolute;
    top: 86%;
    left: 50%;
    background-color: var(--gold);
    transform: translateX(-50%);
}

.map-loc2:hover {
    background-color: var(--goldhover);
}

.map-loc3 {
    position: absolute;
    top: 15%;
    left: 50%;
}

.map-loc3-fjords {
    position: absolute;
    top: 18%;
    left: 40%;
}

.map-loc4 {
    position: absolute;
    top: 26%;
    left: 42%;
}

.map-loc5 {
    position: absolute;
    top: 27%;
    left: 55%;
}

.map-loc6 {
    position: absolute;
    top: 27%;
    left: 21%;
}

.map-loc7 {
    position: absolute;
    top: 35%;
    left: 18%;
}

.map-loc8 {
    position: absolute;
    top: 41%;
    left: 5%;
}

.map-loc9 {
    position: absolute;
    top: 48%;
    left: 15%;
}

.map-loc10 {
    position: absolute;
    top: 59%;
    left: 17%;
}

.map-loc11 {
    position: absolute;
    top: 72%;
    left: 26%;
}

.map-loc12 {
    position: absolute;
    top: 90%;
    left: 46%;
}

.map-loc13 {
    position: absolute;
    top: 55%;
    left: 28%;
}

.map-loc14 {
    position: absolute;
    top: 64%;
    left: 36%;
}

.map-loc15 {
    position: absolute;
    top: 52%;
    left: 37%;
}

.map-loc16 {
    position: absolute;
    top: 34%;
    left: 49%;
}

.map-loc17 {
    position: absolute;
    top: 42%;
    left: 46%;
}

.map-loc18 {
    position: absolute;
    top: 57%;
    left: 48%;
}

.map-loc19 {
    position: absolute;
    top: 35%;
    left: 57%;
}

.map-loc20 {
    position: absolute;
    top: 47%;
    left: 58%;
}

.map-loc21 {
    position: absolute;
    top: 39%;
    left: 66%;
}

.map-loc22 {
    position: absolute;
    top: 59%;
    left: 76%;
}

.map-loc23 {
    position: absolute;
    top: 51%;
    left: 86%;
}

.map-loc24 {
    position: absolute;
    top: 73%;
    left: 80%;
}

.map-loc25 {
    position: absolute;
    top: 82%;
    left: 89%;
}

/*
/*=============== OFFERS BLOCK ===============*/
.offers__container .offers__slider .slick-slide,
.tabs__container .offers__slider .slick-slide {
    margin: 0 12px;
}

.offers__container .offers__slider .slick-track,
.tabs__container .offers__slider .slick-track {
    display: flex;
}

.offers__container .offers__slider .slick-track .slick-slide,
.tabs__container .offers__slider .slick-track .slick-slide {
    display: flex;
    /* height: auto; */
}
.offers__container .block__item .inner__wrapper,
.tabs__container .block__item .inner__wrapper {
    box-shadow: 0px 8px 10px #00000029;
    border-radius: 4px;
}

.offers__container .card__title--banner,
.tabs__container .card__title--banner {
    font: normal normal 900 28px/28px 'DM Sans';
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.offers__container .block__image,
.tabs__container .block__image {
    height: 250px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.offers__container .cruise__details img,
.tabs__container .cruise__details img {
    width: 100px;
    height: auto;
}

.offers__container .block__info .included,
.tabs__container .block__info .included {
    gap: 0 25px;
}

.offers__container .block__info .cruise__details,
.tabs__container .block__info .cruise__details {
    margin-top: 10px;
    margin-bottom: 35px;
}

.offers__container .block__info .cruise__prices,
.tabs__container .block__info .cruise__prices {
    margin-top: auto;
}

.offers__container .block__info,
.tabs__container .block__info {
    padding: 16px 20px;
    background-color: var(--white);
    color: var(--text);
}

.offers__container .block__info .divider-v,
.tabs__container .block__info .divider-v {
    height: 80%;
    width: 1px;
    background-color: #DEDEDE;
}

.offers__container .cruise__details .price-was,
.tabs__container .cruise__details .price-was {
    color: #cfcfcf;
    text-decoration: line-through;
    white-space: nowrap;
}

.offers__container .cruise__price h2,
.tabs__container .cruise__price h2 {
    color: var(--primary);
    font: normal normal 900 32px/36px 'DM Sans';
}

.offers__container .cruise__price sub,
.tabs__container .cruise__price sub {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--smaller-font-size);
    bottom: 0;
    line-height: 1;
}

.offers__container .offers__cta,
.tabs__container .offers__cta {
    height: 50px;
    background-color: var(--tertiary);
    color: var(--text);
    display: block;
    line-height: 2;
    padding: 10px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    transition: all .3s ease-out;
    border-radius: 0 0 4px 4px;
}

.offers__container .offers__cta:hover,
.tabs__container .offers__cta:hover {
    background-color: #AD8724;
}
.offers__slider .block__item:hover .offers__cta,
.tabs__container .block__item:hover .offers__cta {
    background-color: #AD8724;
}
.offers__ribbon {
    background: var(--tertiary);
    position: absolute;
    z-index: 2;
    min-width: 98px;
    top: 10px;
    left: 0;
    -webkit-clip-path: polygon(100% 0%, calc(100% - 1.25rem) 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
    clip-path: polygon(100% 0%, calc(100% - 1.25rem) 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.03rem;
    margin: 1rem 0;
    padding: 1rem 2rem 1rem 1rem;
}

.fave {
    background: transparent;
    position: absolute;
    z-index: 20;
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
    border: 2px solid #fff;
    border-radius: 100%;
    color: #fff;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.fave:hover {
    background-color: #00000066;
    color: var(--white);
}

/*
/*=============== ARTICLES BLOCK ===============*/
.articles__container .block__item .inner__wrapper {
    background-color: var(--white);
    color: var(--text);
    border-radius: 5px;
}

.articles__container .block__image {
    height: 200px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.articles__container .block__info {
    padding: 30px;
}

.articles__container .block__info a {
    color: var(--primary);
    font-weight: 700;
}

/*
==========================================================================
COLUMN SLIDER
==========================================================================
*/
.column-slider .image__wrapper {
    height: 260px;
    border-radius: 5px;
}

.two__columns_block .slider__controls {
    bottom: 40px;
    right: 40px;
}

.two__columns_block .slider__controls button.prev-btn,
.two__columns_block .slider__controls button.next-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--white);
}

.two__columns_block h3 {
    color: var(--secondary);
    margin-bottom: 30px;
}

.two__columns_block .inner__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.two__columns_block .image__wrapper {
    height: 374px;
}

section.two__columns_block.image-default .image__wrapper {
    height: initial;
}
section.two__columns_block.image-default .image__wrapper img.img__cover {
    height: initial;
    object-fit: contain;
}

/*
==========================================================================
CRUISE LINE PAGE
==========================================================================
*/
.cruiseline__page section:first-of-type {
    padding-top:100px;
    padding-bottom:0;
}

.cruise_lines_list_item .cruise__logo img,
.cruise_lines_list_item img.cruise__logo {
    max-width: 140px;
    width: auto;
    max-height: 70px;
    height: auto;
    margin: 0 auto;
}

.cruise_lines_list_item .block__image {
    height: 250px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.cruise_lines_list_item .offers__cta {
    height: 50px;
    background-color: var(--tertiary);
    color: var(--text);
    display: block;
    line-height: 2;
    padding: 10px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    transition: all .3s ease-out;
    border-radius: 0 0 5px 5px;
}

.cruise_lines_list_item .inner__wrapper .block__info {
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

#cruise_line_redirect {
    padding: 10px;
    border-color: #cfcfcf;
    border-radius: 5px;
    color: #666666;
}

/* Single Cruiseline */
.single__cruiseline img.cruise__logo,
.single__cruiseline .cruise__logo img {
    width: 180px;
    height: auto;
    margin: 0 auto;
}

article .container h2,
article .container h2 em,
article .container h1 em {
    font-family: var(--secondary-font);
    color: var(--primary-darker);
}

/*
==========================================================================
ABOUT US PAGE
==========================================================================
*/
#frm_form_4_container {
    max-width: 996px;
    margin: 0 auto;
}

#form_contact-form22 h3.frm_form_title {
    margin: 0 0 20px;
    color: var(--primary-darker);
    font-weight: 700;
    font-size: var(--h2-font-size);
}
#form_contact-form22 .frm_required_field label {
    display: none;
}
#form_contact-form22 .frm_required_field .frm_checkbox label,
#form_contact-form22 .frm_checkbox label {
    display: flex;
    gap:0.5rem;
}
#form_contact-form22 .field-label-alt {
    padding:0;
    color: var(--primary-darker);
    font-weight: 700;
}
#form_contact-form22 div.frm_html_container {
    padding:0;
    margin: 0;
}
.frm_style_formidable-style.with_frm_style #form_contact-form22 .frm_submit button {
    border-radius: 5px;
    background-color: var(--primary);
    border-color: var(--primary);
}
.frm_style_formidable-style.with_frm_style #form_contact-form22 .frm_submit button:hover {
    background-color: var(--primary-darker);
    border-color: var(--primary-darker);
}

/*
==========================================================================
IMAGE BLOCK
==========================================================================
*/
.image__block figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    color: var(--white);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0 12px 0 12px;
    padding: 10px 20px;
}

.image__block img {
    margin: 20px 0;
}

/*
==========================================================================
CATEGORIES CARD (TYPE === BANNER)
==========================================================================
*/

.cat__card {
    position: relative;
}

.cat__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.three-cols .cat__list {
    grid-template-columns: repeat(3, 1fr);
}

.cat__list a,
.cat__list .cat__card {
    width: 100%;
    padding: 0;
    cursor: pointer;
}

.cat__card .card__body {
    position: absolute;
    width: 80%;
    left: 50%;
    top: auto;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 20;
    color: var(--white);
    /* min-height:80px; */
}

.card__img {
    height: 190px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.card__img .cat__img,
.card__img .cat__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: all .4s ease-in-out;
}

.cat__card .card__body .card__subtitle p {
    text-align: center;
}

.cat__card .card__img::before,
.destinations__grid_item::before,
.grid__slider_item .image__wrapper:not(.no-gradient):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, rgba(2, 2, 2, 0) 0%, rgba(31, 31, 31, 0.7) 78%, #1e1e1d 100%);
    z-index: 10;
    pointer-events: none;
}
.cat__card .card__img::before {
    opacity: 0.5;
    transition: all .4s ease-in-out;
}

.cat__card:hover .card__img::before {
    opacity: 1;
}
/* https://cruiseappy.freshdesk.com/a/tickets/11240   === remove the overlay */
.grid__block_item.cat__card .card__img::before {
    display: none;
}

.cat__card:hover .card__img .cat__img {
    transform: var(--img-scale);
}

.cat__card .card__title--banner {
    font-size: var(--h2-font-size);
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: var(--body-font);
    color: var(--white);
}

/*=============== BANNER ===============*/
.banner__wrapper {
    /* padding: 96px 0; */
}

.banner__wrapper h5 {
    font-size: 12px;
}

.banner__wrapper p {
    font-size: 48px;
    font-style: italic;
}

/*=============== ACCORDION ===============*/
/*=============== POSTS SLIDER ===============*/
/*=============== ICONS BLOCK ===============*/
/*=============== PROFILE CARDS ===============*/
/*=============== LOGO SLIDER ===============*/
.logo-slider .slider-item img {
    width: 170px;
    height: auto;
}

/*=============== NEWSLETTER ===============*/
#newsletter__form {
    max-width: 620px;
}

.newsletter__form hgroup {
    margin-bottom: 2rem;
}

form#form_newsletter .frm_fields_container {
    display: flex;
    flex-direction: column;
}

form#form_newsletter .frm_fields_container .frm_top_container,
form#form_newsletter .frm_fields_container .field__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
}

form#form_newsletter .frm_combo_inputs_container {
    grid-template-columns: 1fr;
}
form#form_newsletter .frm_combo_inputs_container div:first-of-type input {
    border-radius: 5px 5px 0 0;
}

form#form_newsletter .frm_fields_container .frm_top_container fieldset {
    width: 100%;
}

form#form_newsletter .frm_form_fields .frm_fields_container,
form#form_newsletter .frm_fields_container .frm_top_container fieldset .frm_combo_inputs_container {
    grid-gap: 0;
}

form#form_newsletter .frm_fields_container .field__wrapper div.form_input {
    flex: 1;
}

form#form_newsletter .frm_fields_container .frm_top_container div.form-field input,
form#form_newsletter .frm_fields_container .field__wrapper div.form_input input {
    width: 100%;
    height: 65px;
    padding: 12px 18px;
}

.newsletter__inner .frm_message {
    margin-top: 2rem;
    text-align: center;
    background-color: #DEDEDE;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--black);
}

.newsletter__inner .frm_message p {
    margin-bottom: 0;
}

form#form_newsletter .frm_fields_container .field__wrapper div.form__btn .frm_submit button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background-color: var(--tertiary);
    border-radius: 0 0 5px 5px;
    height: 65px;
    color: var(--white);
    background-color: var(--tertiary);
    font-weight: 700;
    transition: all .4s ease-in-out;
    width: 100%;
}

form#form_newsletter .frm_fields_container .field__wrapper div.form__btn .frm_submit button:hover {
    background-color: #AD8724;
}

/*=============== FOOTER ===============*/
footer .footer-item,
footer .footer-item a {
    color: var(--primary);
    /* font-weight: 600; */
}

footer .footer-item a:hover {
    text-decoration: underline;
}

footer .footer-item h3 {
    color: var(--tertiary);
    font-style: italic;
    font: italic normal normal 18px/24px Playfair Display;
}

footer img.footer__logo_img {
    height: 50px;
    width: auto;
}

footer .footer-item p,
footer .footer-item li {
    margin-bottom: 5px;
}

footer .footer-item p+h3 {
    margin-top: 15px;
}

/*
==========================================================================
SLICK SLIDER
==========================================================================
*/

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 999999;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {

    line-height: 0;
    display: block;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots {
    bottom: 20px;
    padding: 0 10px;
    z-index: 999999;
}

.slick-dots li {
    padding: 0 16px;
    width: 10px;
}

.slick-dots li button::before {
    content: "\f111";
    font-family: 'Font Awesome 5 Free';
    color: #fff;
    font-size: 10px;
    opacity: 0.5 !important;
    font-weight: 900;
}

.slick-dots li.slick-active button::before {
    content: '\f111' !important;
    font-family: 'Font Awesome 5 Free';
    color: #fff;
    opacity: 1 !important;
    font-weight: 900;
}


/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 55%;
    display: block;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}



.slick-prev {
    left: 20px;
    z-index: 3;
    transition: all 0.3s ease-in;
}



.slick-next {
    right: 20px;
    transition: all 0.3s ease-in;
    z-index: 9;
}


.slick-prev:hover,
.slick-next:hover {
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}



.slick-prev:hover,
.slick-next:hover {
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.slick-prev,
.slick-next {
    top: 50%;
}

.slick-next:before,
.slick-prev:before {
    content: '\f078';
    font-family: "FontAwesome";
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    font-weight: 800;
    display: flex;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    rotate: -90deg;
}

.slick-prev:before {
    rotate: 90deg;
}


.row-content {
    margin: 0 15px;
}

/*####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### #######



 ######  ########  ##     ## ####  ######  ########    ######## ##    ##  #######  ##     ## #### ########  ##    ##
##    ## ##     ## ##     ##  ##  ##    ## ##          ##       ###   ## ##     ## ##     ##  ##  ##     ##  ##  ##
##       ##     ## ##     ##  ##  ##       ##          ##       ####  ## ##     ## ##     ##  ##  ##     ##   ####
##       ########  ##     ##  ##   ######  ######      ######   ## ## ## ##     ## ##     ##  ##  ########     ##
##       ##   ##   ##     ##  ##        ## ##          ##       ##  #### ##  ## ## ##     ##  ##  ##   ##      ##
##    ## ##    ##  ##     ##  ##  ##    ## ##          ##       ##   ### ##    ##  ##     ##  ##  ##    ##     ##
 ######  ##     ##  #######  ####  ######  ########    ######## ##    ##  ##### ##  #######  #### ##     ##    ##



####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### ####### #######*/



#cruise-enquiry, #enquiry-top, #email__signup { opacity:0;visibility:hidden;display:flex;align-items:center;justify-content:center;position:fixed;z-index:1000;top:0;left:0;width:100%;height:100%;background:rgba(0, 0, 0, 0.5);transition:all .3s; }
	#cruise-enquiry.open, #enquiry-top.open, #email__signup.open { opacity:1;visibility:visible; }
	#cruise-enquiry .content, #enquiry-top .content { position:relative;top:-30px;background:#fff;padding:20px;width:680px;max-height:90%;overflow:auto;display:flex;flex-direction:column; align-items:flex-start;transition:top .3s; }
		#cruise-enquiry.open .content, #enquiry-top.open .content { top:0; }

		#cruise-enquiry .cruise-preview { position:relative;margin:0; }
			#cruise-enquiry .cruise-preview .cruise-form { width:100%; }
			#cruise-enquiry .cruise-preview img { display:block;width:500px;height:auto; }
			#cruise-enquiry .cruise-preview-content { position:absolute;bottom:0;left:0;width:100%;background:rgba(0, 0, 0, 0.5);color:#fff;padding:10px; }
			#cruise-enquiry .cruise-preview-content h3 { margin:0 0 5px; }
			#cruise-enquiry .cruise-preview-content p { margin:0; }

		#cruise-enquiry p.description { color:var(--primary);font-size:22px;font-weight:700;margin:0 0 20px; }
		#cruise-enquiry p.close { cursor:pointer;color:var(--light-grey);font-size:16px;font-weight:700;margin:0 0 20px;transition:color .3s; }
			#cruise-enquiry p.close:hover { color:var(--grey); }

		#cruise-enquiry .frm_screen_reader,
		#cruise-enquiry .frm_verify,
		#cruise-enquiry .frm_primary_label,
		#cruise-enquiry .frm_error,
		.dtmg-popup-form .frm_error_style,
        .dtmg-popup-form .frm_screen_reader,
		.dtmg-popup-form .frm_verify,
		.dtmg-popup-form .frm_primary_label,
		.dtmg-popup-form .frm_error,
		.dtmg-popup-form .frm_error_style { display:none; }
		#cruise-enquiry .frm_form_field,
        .dtmg-popup-form .frm_form_field { width:100%;margin:0 0 10px; }
			#cruise-enquiry .frm_form_field input,
			#cruise-enquiry .frm_form_field textarea,
            .dtmg-popup-form .frm_form_field input,
			.dtmg-popup-form .frm_form_field textarea { font:16px/16px 'DM Sans', Helvetica, Arial, sans-serif;width:100%;border:0;border-radius:6px;padding:15px;border:1px solid var(--lightgrey);background:var(--lightgrey); }

			#cruise-enquiry .frm_blank_field input,
            .dtmg-popup-form .frm_blank_field input { border-color:var(--red); }

		#cruise-enquiry .frm_two_col,
        .dtmg-popup-form .frm_two_col { display:flex;align-items:center;justify-content:space-between; }
			#cruise-enquiry .frm_two_col .frm_form_field,
            .dtmg-popup-form .frm_two_col .frm_form_field { width:49%; }

		#cruise-enquiry .frm_submit,
        .dtmg-popup-form .frm_submit { text-align:center;margin:16px 0 0; }
			#cruise-enquiry .frm_submit button,
            .dtmg-popup-form .frm_submit button { margin:0; }
			#cruise-enquiry .content,
            .dtmg-popup-form .content { border-radius: 8px; }
			#cruise-enquiry .frm_three_col,
            .dtmg-popup-form .frm_three_col {
				display: flex;
				flex-direction: column;
			}
			#cruise-enquiry .frm_field_text_xs,
            .dtmg-popup-form .frm_field_text_xs {
				font-size: var(--small-font-size);
			}
			#cruise-enquiry .frm_two_col,
            .dtmg-popup-form .frm_two_col {
				display: flex;
				flex-direction: column;
				gap: 1rem;
				font-family: var(--body-font);
			}
			#cruise-enquiry h4,
            .dtmg-popup-form h4 {
				font-weight: bold;
				font-size: var(--h3-font-size);
			}
			#cruise-enquiry #frm_field_25_container .frm_opt_container,
            .dtmg-popup-form .frm_opt_container {
				display: flex;
				align-items: center;
				gap: 2rem;
			}
			#cruise-enquiry #frm_field_25_container label,
            #cruise-enquiry #frm_field_25_container label {
				display: flex;
				gap: 4px;
				font-size: var(--small-font-size);
			}
			#cruise-enquiry .frm_form_field input[type=checkbox],
            .dtmg-popup-form .frm_form_field input[type=checkbox] {
				width: 16px;
				height: 16px;
				outline: 0;
				border-radius: 6px;
				padding: 0;
				border: 1px solid var(--lightgrey);
				background: var(--lightgrey);
			}
			@media screen and (min-width: 768px){
				#cruise-enquiry .frm_three_col,
                .dtmg-popup-form .frm_three_col {
					flex-direction: row;
					gap:.5rem;
					align-items: center;
					justify-content: space-between;
				}
				#cruise-enquiry .frm_two_col,
                .dtmg-popup-form .frm_two_col {
					flex-direction: row;
					align-items: center;
					justify-content: initial;
					gap: 2rem;
				}
			}

/*
==========================================================================
Cruise Enquiry pop up
==========================================================================
*/

.cruise-preview,
.cruise-form {
	width: 100%;
}

#cruise-enquiry .details__item i {
	color: var(--blue);
	display: inline-block;
	width: 16px;
	margin-top: 4px;
}

#cruise-enquiry .details__item {
	font-family: var(--body-font);
}

#cruise-enquiry .header,
.dtmg-popup-form .header {
	display: flex;
	justify-content: space-between;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border-grey);
	width: 100%;
	align-items: center;
}

#cruise-enquiry .header h3,
.dtmg-popup-form .header h3 {
	font: normal normal 900 28px/28px 'DM Sans';
	color: var(--secondary);
	margin-bottom: 0;
}

#cruise-enquiry .header span,
.dtmg-popup-form .header span {
	background-color: var(--primary);
	border-radius: 100%;
	color: var(--white);
	width: 38px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
    flex-shrink: 0;
}

#cruise-enquiry .cruise-preview,
.dtmg-popup-form .cruise-preview {
	margin-top: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border-grey);
	display: flex;
	gap: 20px;
}

#cruise-enquiry .cruise-preview span {
    display: flex;
    align-items: center;
}

#cruise-enquiry .cruise-form,
.dtmg-popup-form .cruise-form {
	margin-top: 12px;
}

#cruise-enquiry .cruise-form .frm_message {
	display: none !important;
}

#cruise-enquiry .frm_form_field .frm_opt_container,
.dtmg-popup-form .frm_form_field .frm_opt_container {
	display: flex;
	gap: 36px;
}

#cruise-enquiry .frm_form_field .frm_opt_container .frm_checkbox,
.dtmg-popup-form .frm_form_field .frm_opt_container .frm_checkbox {
	margin-bottom: 0;
}

#cruise-enquiry .frm_form_field .frm_opt_container .frm_checkbox label,
.dtmg-popup-form .frm_form_field .frm_opt_container .frm_checkbox label {
	font: normal normal normal 14px/20px 'DM Sans';
	letter-spacing: 0px;
	color: #999999;
	height: 30px;
}

#cruise-enquiry .frm_form_field.cruise-link,
.dtmg-popup-form .frm_form_field.cruise-link {
    display: none;
}

.with_frm_style .frm_checkbox input[type=checkbox]:not([disabled]):checked {
	background-color: var(--primary) !important;
	border-color: var(--primary) !important;
}
.with_frm_style .frm_form_fields > fieldset {
    padding:0;
}

#cruise-enquiry .frm_form_field input[type=checkbox],
.dtmg-popup-form .frm_form_field input[type=checkbox] {
	border-radius: 0;
	border: 1px solid #707070;
	background: transparent;
}

#cruise-enquiry .frm_form_fields .section-title,
.dtmg-popup-form .frm_form_fields .section-title {
	font: normal normal 900 18px/18px 'DM Sans';
	letter-spacing: 0px;
	color: var(--secondary);
    margin-bottom: 0;
    margin-top: 1rem;
}

#cruise-enquiry .frm_form_field input,
#cruise-enquiry .frm_form_field select,
#cruise-enquiry .frm_form_field textarea,
.dtmg-popup-form .frm_form_field input,
.dtmg-popup-form .frm_form_field select,
.dtmg-popup-form .frm_form_field textarea {
	background: #FFFFFF;
	border: 1px solid #CED4DA;
	border-radius: 4px;
	padding: 8px 14px;
}

#cruise-enquiry .frm_form_field input[type="text"],
#cruise-enquiry .frm_form_field input[type="email"],
#cruise-enquiry .frm_form_field select,
.dtmg-popup-form .frm_form_field input[type="text"],
.dtmg-popup-form .frm_form_field input[type="email"],
.dtmg-popup-form .frm_form_field input[type="tel"],
.dtmg-popup-form .frm_form_field select {
    min-height: 50px;
}

#cruise-enquiry .frm_form_field textarea,
.dtmg-popup-form .frm_form_field textarea {
	resize: none;
}

#cruise-enquiry .frm_form_field .nice-select,
.dtmg-popup-form .frm_form_field .nice-select {
	background: #FFFFFF;
	border: 1px solid #CED4DA;
	border-radius: 25px;
}

#cruise-enquiry .frm_form_field .nice-select input,
.dtmg-popup-form .frm_form_field .nice-select input {
	border: none;
	padding: 0;
	height: 100%;
}

.with_frm_style input[type=radio]:focus,
.with_frm_style input[type=checkbox]:focus,
#cruise-enquiry .frm_form_field .nice-select input:focus,
#cruise-enquiry .frm_form_field .nice-select input:focus-visible,
.dtmg-popup-form .frm_form_field .nice-select input:focus,
.dtmg-popup-form .frm_form_field .nice-select input:focus-visible {
	box-shadow: none !important;
}

#cruise-enquiry .frm_submit button,
#enquiry-top.dtmg-popup-form .frm_submit button {
	font: normal normal 900 16px/20px 'DM Sans';
	color: #FFFFFF;
	background-color: var(--primary);
    border: none;
	width: 100%;
	border-radius: 4px;
    height: 50px;
	padding: 8px;
	transition: all .3s ease-in-out;
}

#cruise-enquiry .frm_submit button:hover,
#enquiry-top.dtmg-popup-form .frm_submit button:hover {
	background-color: var(--secondary);
}
.dtmg-popup-form .frm_style_formidable-style.with_frm_style .form-field {
    margin-bottom: 10px;
}

/*Thank you popup*/
#enquiry__thank_you.open .thank__you_popup {
	top: 0;
}

#enquiry__thank_you.open {
	opacity: 1;
	visibility: visible;
}

#enquiry__thank_you {
	opacity: 0;
	visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	transition: all .3s;
}


#enquiry__thank_you .thank__you_popup {
	position: relative;
	top: -30px;
	background: #fff;
	width: 90%;
	max-width: 680px;
	max-height: 90%;
	overflow: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: top .3s;
	border-radius: 5px;
}

#enquiry__thank_you .thank__you_popup .close {
	position: absolute;
	right: 15px;
	top: 15px;
	display: flex;
	width: 38px;
	height: 38px;
	color: white;
	align-items: center;
	border-radius: 4px;
	background-color: var(--primary);
	border-radius: 100%;
	justify-content: center;
	flex: 0 0 auto;
	z-index: 20;
	cursor: pointer;
    transition: all .4s ease-in-out;
}

#enquiry__thank_you .thank__you_popup .close:hover {
    background-color: var(--secondary);;
}

#enquiry__thank_you .thank__you_popup .image__inner {
	border-radius: 5px 5px 0 0;
    width: 100%;
	min-height: 364px;
	max-height: 364px;
}

#enquiry__thank_you .thank__you_popup .image__inner img {
    width: 100%;
}

#enquiry__thank_you .thank__you_popup .image__inner h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	color: var(--white);
	z-index: 10;
	font: italic normal normal 45px/48px 'Playfair Display';
	transform: translatex(-50%) translateY(-50%);
}

#enquiry__thank_you .popup__body {
	padding: 40px;
	width: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
}

#enquiry__thank_you .popup__body h2 {
	font: normal normal 900 28px/28px 'DM Sans';
	color: var(--secondary);
}

#enquiry__thank_you .popup__body p {
	font: normal normal normal 16px/24px 'DM Sans';
	color: var(--black);
}

#enquiry__thank_you .popup__body a {
	margin: auto;
}

#enquiry__thank_you .popup__body a button {
	font: normal normal 500 15px/20px 'DM Sans';
}


#email__signup {
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: all .3s;
}
#email__signup .content {
    position: relative;
    top: -30px;
    background: #fff;
    padding: 20px;
    width: 680px;
    max-height: 90%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: top .3s;
    border-radius: 8px;
}

#email__signup form .frm_submit {
    width: 100%;
}

#email__signup form .frm_form_field input {
    background: #FFFFFF;
    border: 1px solid #CED4DA;
    border-radius: 4px;
    padding: 8px 14px;
}
#email__signup form .frm_submit button {
    font: normal normal 900 16px / 20px 'DM Sans';
    color: #FFFFFF;
    background-color: var(--primary);
    border: none;
    width: 100%;
    border-radius: 4px;
    height: 50px;
    padding: 8px;
    transition: all .3s ease-in-out;
}
#email__signup span.close {
    background-color: var(--primary);
    border-radius: 100%;
    color: var(--white);
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all .4s ease-in-out;
}
#email__signup span.close:hover {
    background-color: var(--primary-darker);
}


/* .cruise__slider_section .inner__wrapper,
.cruise__slider_section .inner__wrapper .image_list {
    display: flex;
    gap: 24px;
    height: 500px;
} */
.cruise__slider_section .main__image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-grid-masonry {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 500px;
    position: relative;
}

.slider-grid {
    border-radius: 8px;
    transition: .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slider-grid-masonry .slider-grid:nth-child(1) {
    width: calc(67% - 8px);
    height: 100%;
    margin-right: 8px;
}

.slider-grid-masonry .slider-grid:nth-child(2) {
    width: 33%;
    height: calc(50% - 4px);
    margin-bottom: 4px;
}

.slider-grid-masonry .slider-grid:nth-child(3) {
    width: 33%;
    height: calc(50% - 4px);
    margin-top: 4px;
}

.ship__slider_wrapper .slider__controls {
    position: absolute;
    bottom: 20px;
    right:20px;
    z-index: 20;
}
.secondary__navigation_ship {
    z-index: 99;
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 10px 0;
    background: rgba(16, 38, 113, 0.8);
}
/* .cruise__slider_section .inner__wrapper div:not(.main_image) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
} */

/* .cruise__slider_section .inner__wrapper div.main_image,
.cruise__slider_section .inner__wrapper div.main_image img {
    height: 500px;
} */

.cruise__slider_section .inner__wrapper div.main_image img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}


.cabins .cabins_list,
.cruise-filters {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    justify-content: center;
    margin: 16px 0;
    border-bottom:1px solid #E0E0E0;
}

.cabins .cabins_list li,
.cruise-filters li {
    display: flex;
    flex-grow: 1;
    max-width:178px;
    flex-direction: column;
    align-items: center;
    font: normal normal 900 12px/18px DM Sans;
    letter-spacing: -0.24px;
    color: var(--primary);
    padding-bottom: 5px;
    /* border-bottom: 1px solid rgba(0,0,0,.1); */
    border-bottom: 5px solid transparent;
    cursor: pointer;
}
.cruise-filters li {
    width: 100px;
}
.cabins .cabins_list li.tab__active,
.cruise-filters li.tab__active {
    border-color: var(--primary);
}
.cabins .cabins_list li.tab__active span.name,
.cruise-filters li.tab__active span.name {
    color: var(--text);
    font-weight: 700;
}
.cruise-filters li.tab__active span.name {
    color: var(--primary);
}

.cabins .cabins_list li .name,
.cruise-filters li span.name {
    font: normal normal normal 16px/24px 'DM Sans';
    color: #6D6F71;
}

.cabins .cabins_list li .price {
    font: normal normal 900 24px/24px 'DM Sans';
    letter-spacing: -0.48px;
    padding-bottom: 6px;
}
.cabins .cabins_list li .price .pp {
    font: normal normal 900 12px / 18px 'DM Sans';
    letter-spacing: -0.24px;
}

.price-was-paceholder {
    height: 12px;
}

.cabins .cabins_list li.active {
    border-bottom: 5px solid var(--primary);
}

.cabins .cabins_list li.active .name {
    font-weight: bold;
    color: #212121;
}
.cruise__staterooms .cabin__image {
    height: 184px;
    overflow: hidden;
    position: relative;
    flex: 0 0 252px;
    border-radius: 5px;
}
.cruise__logo_small img,
img.cruise__logo_small {
    width: 160px;
    max-width: 160px;
}
.cruise__staterooms .cabin__list_item {
	padding : 40px 20px;
	border-bottom: 1px solid #DEDEDE;
	display: none;
}
.cruise__staterooms .cabin__list_item .cabin__description {
	transition: all .3s ease-out;
}
.cruise__staterooms .cabin__list_item.show-item {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.cruiseship-intro img {
    margin: 0 auto;
    border-radius:8px;
}
.tabs__content--image.image__wrapper {
    width: 320px;
    height: 220px;
    border-radius:8px;
    overflow: hidden;
}
.tabs__content--deck.image__wrapper {
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius:0px;
    overflow: initial;
}
.accordion-item .tabs__content--image.image__wrapper {
    width: 100%;
    height: auto;
    max-height: 300px;
}
.show_toggle {
    cursor: pointer;
}

.accordion-item { margin:0 auto 1px; }
		.accordion-item h3 { cursor:pointer;background:var(--primary);color:#fff;font-size:16px;padding:15px 20px; position:relative;margin:0;transition:background .1s; }
			.accordion-item h3.open,
			.accordion-item h3:hover { background:var(--primary-darker); }
		.accordion-item .accordion-content { background:#fff;border:1px solid #cccccc;display:none;padding:15px 20px;max-height: 300px; overflow-y: auto; }
        .accordion-item .accordion-content.open { display:block; }

/*========== SCROLL UP ==========*/
.scrollup {
	position: fixed;
	right: 1rem;
	bottom: 40%;
	background-color: var(--primary-darker);
	border:1px solid var(--white);
	padding: .5rem;
	display: flex;
	opacity: .9;
	z-index: 999;
	transition: .4s;
	border-radius: 50%;
	transform: scale(0);
    width: 50px;
    height: 50px;
  }

  .scrollup:hover {
	background-color: var(--primary);
	opacity: 1;
  }

  .scrollup i {
	color: var(--white);
	font-size: 12px;
    line-height: 1;
  }
  .scrollup hgroup span {
	color: var(--white);
	font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
  }

  /* Show scroll */
  .show-scroll {
	bottom: 5rem;
  }

