/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
/* Weights */
/* Animation */
@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes scroller {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  25% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  75% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0); } }
.site-header {
  width: 100%;
  background: #FFF;
  position: fixed;
  z-index: 100;
  top: 0; }
  .site-header.active .btn {
    color: #bd9b60;
    background: none !important; }
    .site-header.active .btn:hover, .site-header.active .btn:focus {
      color: #00003d; }
  .site-header.active .custom-logo-link img {
    filter: brightness(0) invert(1); }
  .site-header .container {
    padding: 1rem;
    justify-content: space-between;
    position: relative;
    align-items: center;
    flex-direction: row-reverse; }
    .site-header .container .custom-logo-link {
      position: absolute;
      left: 0;
      right: 0;
      margin: 0 auto;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1; }
      .site-header .container .custom-logo-link img {
        width: 100%;
        max-width: 180px;
        height: auto;
        display: inline-block; }
    .site-header .container .btn {
      z-index: 2;
      background: #bd9b60; }
      .site-header .container .btn:hover, .site-header .container .btn:focus {
        background: #00003d;
        color: #FFF; }
    .site-header .container #mobile-button {
      appearance: none;
      background: none;
      border: 0;
      cursor: pointer;
      width: 40px;
      height: 40px;
      position: relative;
      z-index: 2; }
      @media (min-width: 992px) {
        .site-header .container #mobile-button {
          display: none; } }
      .site-header .container #mobile-button.active span {
        background: none; }
        .site-header .container #mobile-button.active span:before {
          top: 0;
          transform: rotate(-45deg);
          background: #bd9b60; }
        .site-header .container #mobile-button.active span:after {
          bottom: 0;
          transform: rotate(45deg);
          background: #bd9b60; }
      .site-header .container #mobile-button span {
        width: 100%;
        height: 1px;
        background: #00003d;
        display: block;
        position: relative;
        transition: .3s; }
        .site-header .container #mobile-button span:before {
          content: ' ';
          position: absolute;
          top: -7px;
          left: 0;
          width: 100%;
          height: 1px;
          background: #00003d;
          transition: .3s; }
        .site-header .container #mobile-button span:after {
          content: ' ';
          position: absolute;
          bottom: -7px;
          left: 0;
          width: 100%;
          height: 1px;
          background: #00003d;
          transition: .3s; }

#mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  margin: 0;
  padding: 1rem;
  background: rgba(0, 0, 61, 0.8);
  overflow: scroll;
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: .4s ease-in-out; }
  #mobile-menu.active {
    opacity: 1;
    visibility: visible; }
    #mobile-menu.active .menu li {
      opacity: 1;
      transform: translateX(0); }
  #mobile-menu .menu {
    list-style-type: none;
    padding: 0;
    margin: 6rem 0 0 0; }
    #mobile-menu .menu li {
      margin-bottom: 1rem;
      opacity: 0;
      transform: translateX(-1rem);
      transition: .3s;
      transition-delay: .2s; }
      #mobile-menu .menu li:nth-child(2) {
        transition-delay: .3s; }
      #mobile-menu .menu li:nth-child(3) {
        transition-delay: .4s; }
      #mobile-menu .menu li:nth-child(4) {
        transition-delay: .5s; }
      #mobile-menu .menu li:nth-child(5) {
        transition-delay: .6s; }
      #mobile-menu .menu li:nth-child(6) {
        transition-delay: .7s; }
      #mobile-menu .menu li:nth-child(7) {
        transition-delay: .8s; }
      #mobile-menu .menu li:nth-child(8) {
        transition-delay: .9s; }
      #mobile-menu .menu li:nth-child(9) {
        transition-delay: 1s; }
      #mobile-menu .menu li:last-child {
        margin-bottom: 0; }
      #mobile-menu .menu li a {
        color: #bd9b60;
        font-size: 1.5rem;
        text-decoration-color: transparent;
        transition: .3s;
        font-weight: 400;
        display: block; }
        #mobile-menu .menu li a:hover, #mobile-menu .menu li a:focus {
          color: #FFF; }

#desktop-button {
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 2;
  display: none; }
  @media (min-width: 992px) {
    #desktop-button {
      display: block; } }
  #desktop-button.active span {
    background: none; }
    #desktop-button.active span:before {
      top: 0;
      transform: rotate(-45deg);
      background: #bd9b60; }
    #desktop-button.active span:after {
      bottom: 0;
      transform: rotate(45deg);
      background: #bd9b60; }
  #desktop-button span {
    width: 100%;
    height: 1px;
    background: #00003d;
    display: block;
    position: relative;
    transition: .3s; }
    #desktop-button span:before {
      content: ' ';
      position: absolute;
      top: -7px;
      left: 0;
      width: 100%;
      height: 1px;
      background: #00003d;
      transition: .3s; }
    #desktop-button span:after {
      content: ' ';
      position: absolute;
      bottom: -7px;
      left: 0;
      width: 100%;
      height: 1px;
      background: #00003d;
      transition: .3s; }

.desktop-header {
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 61, 0.8);
  backdrop-filter: blur(50px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: scroll; }
  .desktop-header .home-routes-desktop {
    background-image: none;
    width: 100%; }
    .desktop-header .home-routes-desktop .container {
      flex-direction: row; }
      .desktop-header .home-routes-desktop .container .image-area {
        border-radius: 12px;
        opacity: 0;
        transform: translateY(1rem);
        transition: .3s; }
      .desktop-header .home-routes-desktop .container .content-area {
        background: none;
        padding: 0;
        z-index: 10; }
        .desktop-header .home-routes-desktop .container .content-area .link-list {
          margin-top: 0;
          margin-left: -3rem; }
          .desktop-header .home-routes-desktop .container .content-area .link-list a {
            color: #FFF;
            font-size: 2rem;
            position: relative;
            padding-left: 6rem;
            margin-bottom: 0.3rem;
            opacity: 0;
            transform: translateY(1rem);
            transition: .3s; }
            .desktop-header .home-routes-desktop .container .content-area .link-list a:after {
              content: "";
              position: absolute;
              left: 0;
              bottom: 0;
              height: 1px;
              width: 0;
              background-color: #FFF;
              transition: width 0.3s ease; }
            .desktop-header .home-routes-desktop .container .content-area .link-list a:before {
              content: "";
              position: absolute;
              left: 3px;
              bottom: -10px;
              width: 20px;
              height: 20px;
              border-left: 1px solid #FFF;
              border-bottom: 1px solid #FFF;
              transform: rotate(45deg) translateX(-5px);
              opacity: 0;
              transition: opacity 0.3s ease, transform 0.3s ease; }
            .desktop-header .home-routes-desktop .container .content-area .link-list a:hover:after, .desktop-header .home-routes-desktop .container .content-area .link-list a:focus:after {
              width: 200%; }
            .desktop-header .home-routes-desktop .container .content-area .link-list a:hover:before, .desktop-header .home-routes-desktop .container .content-area .link-list a:focus:before {
              opacity: 1;
              transform: rotate(45deg) translateX(0); }
  .desktop-header.active {
    opacity: 1;
    visibility: visible; }
    .desktop-header.active .home-routes-desktop .container .image-area {
      opacity: 1;
      transform: translateY(0);
      transition-delay: .3s; }
    .desktop-header.active .home-routes-desktop .container .content-area a {
      opacity: 1;
      transform: translateY(0);
      transition-delay: .3s; }
      .desktop-header.active .home-routes-desktop .container .content-area a:nth-child(2) {
        transition-delay: .4s; }
      .desktop-header.active .home-routes-desktop .container .content-area a:nth-child(3) {
        transition-delay: .5s; }
      .desktop-header.active .home-routes-desktop .container .content-area a:nth-child(4) {
        transition-delay: .6s; }
      .desktop-header.active .home-routes-desktop .container .content-area a:nth-child(5) {
        transition-delay: .7s; }
      .desktop-header.active .home-routes-desktop .container .content-area a:nth-child(6) {
        transition-delay: .8s; }
      .desktop-header.active .home-routes-desktop .container .content-area a:nth-child(7) {
        transition-delay: .9s; }
      .desktop-header.active .home-routes-desktop .container .content-area a:nth-child(8) {
        transition-delay: 1s; }

.site-footer {
  width: 100%;
  background: #e6e7e8;
  padding: 0;
  margin: 0; }
  .site-footer .main-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0;
    text-align: center; }
    @media (min-width: 450px) {
      .site-footer .main-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0 2rem; } }
    @media (min-width: 800px) {
      .site-footer .main-container {
        grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 992px) {
      .site-footer .main-container {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 0 4rem; } }
    .site-footer .main-container img {
      width: 100%;
      max-width: 300px;
      height: auto;
      margin: 0 auto; }
      @media (min-width: 450px) {
        .site-footer .main-container img {
          grid-column: 1/3; } }
      @media (min-width: 800px) {
        .site-footer .main-container img {
          grid-column: 1/4; } }
      @media (min-width: 992px) {
        .site-footer .main-container img {
          grid-column: auto; } }
    .site-footer .main-container .contact {
      grid-column: 1/2;
      display: flex;
      flex-direction: column;
      margin-bottom: 2rem; }
      @media (min-width: 450px) {
        .site-footer .main-container .contact {
          grid-column: 1/3; } }
      @media (min-width: 800px) {
        .site-footer .main-container .contact {
          grid-column: auto;
          text-align: left; } }
      .site-footer .main-container .contact .title {
        font-size: 1.5rem;
        font-weight: 300;
        letter-spacing: 0.1rem;
        color: #00003d;
        text-transform: uppercase;
        padding: 0;
        margin: 0 0 1rem 0; }
        @media (min-width: 800px) {
          .site-footer .main-container .contact .title {
            font-size: 1.2rem; } }
      .site-footer .main-container .contact a {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
        color: #00003d;
        font-size: 1.2rem;
        text-decoration-color: transparent;
        transition: .3s; }
        @media (min-width: 800px) {
          .site-footer .main-container .contact a {
            flex-direction: row;
            font-size: 1rem;
            align-items: center; }
            .site-footer .main-container .contact a iconify-icon {
              padding-right: 0.5rem;
              margin-bottom: 0 !important; } }
        .site-footer .main-container .contact a:hover, .site-footer .main-container .contact a:focus {
          color: #bd9b60; }
        .site-footer .main-container .contact a iconify-icon {
          margin-bottom: 0.5rem; }
      .site-footer .main-container .contact address {
        display: flex;
        flex-direction: column;
        color: #00003d;
        font-style: normal;
        font-size: 1.2rem;
        line-height: 1.5rem; }
        .site-footer .main-container .contact address iconify-icon {
          margin-bottom: 0.5rem; }
        @media (min-width: 800px) {
          .site-footer .main-container .contact address {
            text-align: left;
            flex-direction: row;
            font-size: 1rem; }
            .site-footer .main-container .contact address iconify-icon {
              margin-bottom: 0;
              padding-right: 0.5rem; } }
    .site-footer .main-container .box:first-child {
      text-align: center;
      grid-column: 1/3;
      margin-bottom: 2rem; }
      @media (min-width: 800px) {
        .site-footer .main-container .box:first-child {
          grid-column: 1/4; } }
      @media (min-width: 992px) {
        .site-footer .main-container .box:first-child {
          grid-column: auto; } }
      .site-footer .main-container .box:first-child .btn {
        display: inline-block; }
      .site-footer .main-container .box:first-child p {
        padding: 0;
        margin: 0 0 1rem 0;
        font-size: 1rem;
        line-height: 1.2rem; }
        @media (min-width: 992px) {
          .site-footer .main-container .box:first-child p {
            margin: 1rem 0 !important; } }
    .site-footer .main-container .box .title {
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: 0.1rem;
      color: #00003d;
      text-transform: uppercase;
      padding: 0;
      margin: 0 0 1rem 0; }
      @media (min-width: 800px) {
        .site-footer .main-container .box .title {
          font-size: 1.2rem; } }
    .site-footer .main-container .box ul {
      list-style-type: none;
      padding: 0;
      margin: 0 0 2rem 0; }
      .site-footer .main-container .box ul li {
        margin-bottom: 0.5rem; }
        .site-footer .main-container .box ul li:last-child {
          margin-bottom: 0; }
        .site-footer .main-container .box ul li a {
          font-size: 1.2rem;
          color: #00003d;
          text-decoration-color: transparent;
          transition: .3s; }
          .site-footer .main-container .box ul li a:hover, .site-footer .main-container .box ul li a:focus {
            color: #bd9b60; }
    @media (min-width: 800px) {
      .site-footer .main-container .box {
        text-align: left; }
        .site-footer .main-container .box ul li a {
          font-size: 1rem; } }
  .site-footer .footer-bottom {
    width: 100%;
    background: #00003d;
    padding: 4rem 0; }
    @media (min-width: 800px) {
      .site-footer .footer-bottom {
        padding: 2rem 0; } }
    .site-footer .footer-bottom .container {
      padding: 0 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center; }
      @media (min-width: 800px) {
        .site-footer .footer-bottom .container {
          flex-direction: row-reverse;
          justify-content: space-between; } }
      .site-footer .footer-bottom .container .socials a {
        padding: 0.5rem;
        border: 2px solid #bd9b60;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        transition: .3s;
        margin: 0 0.1rem; }
        .site-footer .footer-bottom .container .socials a:hover, .site-footer .footer-bottom .container .socials a:focus {
          background: #bd9b60; }
          .site-footer .footer-bottom .container .socials a:hover iconify-icon, .site-footer .footer-bottom .container .socials a:focus iconify-icon {
            color: #00003d; }
        .site-footer .footer-bottom .container .socials a iconify-icon {
          color: #bd9b60;
          display: inline-block;
          padding: 0;
          margin: 0;
          transition: .3s; }
      .site-footer .footer-bottom .container p {
        padding: 0;
        margin: 2rem 0 0 0;
        color: #bd9b60;
        font-weight: 300;
        font-size: 0.9rem; }
        @media (min-width: 800px) {
          .site-footer .footer-bottom .container p {
            margin: 0; } }
        .site-footer .footer-bottom .container p a {
          color: #bd9b60; }

.partners-awards {
  width: 100%;
  background: #f3f4f4;
  border-bottom: 1px solid #d9dadc;
  padding: 3rem 0; }
  .partners-awards .container {
    width: 100%;
    display: block;
    text-align: center; }
    .partners-awards .container h2 {
      font-size: 1.5rem;
      padding: 0;
      margin: 0 0 2rem 0; }
    .partners-awards .container .logos-slider .logo-slide {
      display: flex;
      justify-content: center; }
      .partners-awards .container .logos-slider .logo-slide img {
        width: 100%;
        max-width: 150px;
        height: auto;
        object-fit: contain; }

.slides {
  max-height: 600px;
  overflow: hidden;
  margin: 0;
  border: 0 !important; }

.slide-img {
  width: 100%;
  height: 600px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative; }
  .slide-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center; }

.news-feed {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 4rem 2rem; }
  .news-feed .blog-post {
    width: 100%;
    background: #e6e7e8;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-decoration-color: transparent;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .5s;
    animation-fill-mode: forwards; }
    .news-feed .blog-post:nth-child(2) {
      animation-delay: .6s; }
    .news-feed .blog-post:nth-child(3) {
      animation-delay: .7s; }
    .news-feed .blog-post:nth-child(4) {
      animation-delay: .8s; }
    @media (min-width: 800px) {
      .news-feed .blog-post {
        flex-direction: row;
        flex-wrap: wrap; } }
    .news-feed .blog-post h3 {
      color: #00003d;
      font-size: 1.3rem;
      font-weight: 400;
      width: 100%; }
    .news-feed .blog-post .image {
      width: 100%;
      height: 300px;
      border-radius: 8px;
      overflow: hidden; }
      @media (min-width: 800px) {
        .news-feed .blog-post .image {
          width: 50%; } }
      .news-feed .blog-post .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s; }
    .news-feed .blog-post .content {
      margin-top: 1rem; }
      @media (min-width: 800px) {
        .news-feed .blog-post .content {
          width: 50%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center;
          padding: 1rem;
          margin-top: 0; } }
      .news-feed .blog-post .content p {
        color: #111;
        margin-top: 0; }
    .news-feed .blog-post:hover .image img, .news-feed .blog-post:focus .image img {
      transform: scale(1.1, 1.1); }
    .news-feed .blog-post:hover .content .btn-arrow, .news-feed .blog-post:focus .content .btn-arrow {
      color: #bd9b60; }
      .news-feed .blog-post:hover .content .btn-arrow iconify-icon, .news-feed .blog-post:focus .content .btn-arrow iconify-icon {
        padding-left: 1rem; }

.reviews-feed {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 800px) {
    .reviews-feed {
      grid-template-columns: repeat(2, 1fr); } }
  .reviews-feed .blog-post {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; }
    .reviews-feed .blog-post:hover .btn-arrow iconify-icon, .reviews-feed .blog-post:focus .btn-arrow iconify-icon {
      padding-left: 1rem; }
    .reviews-feed .blog-post h3 {
      padding: 0;
      margin: 0; }
    .reviews-feed .blog-post .small {
      padding: 0;
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.2rem; }
    .reviews-feed .blog-post .btn-arrow {
      margin-top: 2rem; }
  .reviews-feed .page-numbers {
    grid-column: 1/2; }
    @media (min-width: 800px) {
      .reviews-feed .page-numbers {
        grid-column: 1/3; } }

.home-text.effect {
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }

.page-numbers {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0; }
  .page-numbers li {
    margin: 0 0.5rem; }
    .page-numbers li a {
      border-radius: 4px;
      padding: 0.3rem 0.5rem;
      color: #111;
      text-decoration-color: transparent;
      transition: .3s; }
      .page-numbers li a:hover, .page-numbers li a:focus {
        background: #bd9b60; }
    .page-numbers li .current {
      border: 1px solid #bd9b60;
      padding: 0.3rem 0.5rem;
      border-radius: 4px; }
    .page-numbers li .next {
      border: 0; }

.post-single {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }
  .post-single h2, .post-single h3, .post-single h4 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #00003d; }
  .post-single a {
    color: #00003d;
    font-weight: 100; }
    .post-single a:hover, .post-single a:focus {
      color: #bd9b60; }
  .post-single .wp-block-columns {
    padding-top: 0.8rem; }
  .post-single li {
    font-size: 1.2rem;
    line-height: 1.7rem;
    font-weight: 100;
    margin-bottom: 0.3rem; }
    .post-single li:last-child {
      margin-bottom: 0; }
  .post-single .small {
    font-size: 0.9rem;
    line-height: 1.2rem; }

.share {
  width: 100%;
  display: flex;
  flex-direction: column; }
  .share p {
    font-size: 0.9rem; }
  .share ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; }
    .share ul li {
      margin-right: 0.5rem; }
      .share ul li a {
        background: #e6e7e8;
        padding: 0.5rem;
        display: block;
        transition: .3s; }
        .share ul li a iconify-icon {
          padding: 0;
          margin: 0;
          display: flex;
          color: #00003d;
          transition: .3s; }
        .share ul li a:hover, .share ul li a:focus {
          background: #00003d; }
          .share ul li a:hover iconify-icon, .share ul li a:focus iconify-icon {
            color: #bd9b60; }

.single-nav {
  border-top: 1px solid #e6e7e8;
  padding-top: 1rem;
  margin-top: 2rem; }
  .single-nav .btn-arrow {
    transition: .3s; }
    .single-nav .btn-arrow iconify-icon {
      padding-left: 0;
      padding-right: 0.3rem;
      transition: .3s; }
    .single-nav .btn-arrow:hover iconify-icon, .single-nav .btn-arrow:focus iconify-icon {
      padding-left: 0;
      padding-right: 0.8rem; }

.error {
  width: 100%;
  height: 100vh;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .error .content {
    max-width: 61.25rem;
    width: 100%;
    padding: 2rem;
    text-align: center; }
    .error .content h1 {
      font-size: 14rem;
      font-weight: 900;
      margin: 0;
      padding: 0;
      color: #111; }
    .error .content h3 {
      font-size: 5rem;
      font-weight: 900;
      color: #000;
      margin: 0;
      padding: 0; }
    .error .content h4 {
      font-size: 2rem;
      color: #000;
      margin-top: 0.625rem; }
    .error .content a {
      background: #FFF;
      border: 3px solid #111;
      color: #000;
      margin-top: 0.625rem;
      padding: 0.5rem 2rem;
      display: inline-block; }
      .error .content a:hover {
        background: #000;
        text-decoration: none;
        color: #FFF; }

.single-header {
  width: 100%;
  height: 400px;
  position: relative;
  background: #e6e7e8; }
  @media (min-width: 800px) {
    .single-header {
      height: 600px; } }
  .single-header img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .single-header .blue-overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 61, 0.8);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 3rem; }
    .single-header .blue-overlay h1 {
      color: #bd9b60;
      padding: 0;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 0.2rem;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .3s;
      font-size: 1.2rem; }
  .single-header .main-img {
    width: 90%;
    position: absolute;
    top: 7rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 350px;
    overflow: hidden; }
    @media (min-width: 800px) {
      .single-header .main-img {
        max-width: 1000px;
        height: 550px; } }
    .single-header .main-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px; }
    .single-header .main-img .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 8px;
      padding: 1rem;
      display: flex;
      text-align: center;
      align-items: flex-start;
      justify-content: center; }
      .single-header .main-img .overlay p {
        color: #FFF;
        font-size: 1.3rem;
        padding-top: 1rem;
        opacity: 0;
        transform: translateY(1rem);
        animation: fadeup 1s ease;
        animation-delay: .5s;
        animation-fill-mode: forwards; }
        @media (min-width: 800px) {
          .single-header .main-img .overlay p {
            font-size: 2rem;
            padding-top: 2rem; } }

.vessel-grey-block {
  background: #e6e7e8;
  padding: 4rem 0 6rem 0; }
  @media (min-width: 800px) {
    .vessel-grey-block {
      padding: 10rem 0 10rem 0; } }
  .vessel-grey-block .container {
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap; }
    .vessel-grey-block .container .content-block {
      width: 100%;
      display: flex;
      flex-direction: column-reverse; }
      @media (min-width: 800px) {
        .vessel-grey-block .container .content-block {
          flex-direction: row;
          margin-bottom: 8rem; }
          .vessel-grey-block .container .content-block:nth-child(even) {
            flex-direction: row-reverse; }
            .vessel-grey-block .container .content-block:nth-child(even) .image {
              width: 30%;
              height: 500px;
              margin: 0 10%; }
            .vessel-grey-block .container .content-block:nth-child(even) .content {
              padding-left: 0;
              padding-right: 4rem; }
          .vessel-grey-block .container .content-block:last-child {
            margin-bottom: 0; } }
      .vessel-grey-block .container .content-block .image {
        width: 100%;
        height: 350px;
        border-radius: 8px;
        overflow: hidden; }
        @media (min-width: 800px) {
          .vessel-grey-block .container .content-block .image {
            width: 50%;
            height: auto; } }
        .vessel-grey-block .container .content-block .image img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .vessel-grey-block .container .content-block .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 2rem 0; }
        @media (min-width: 800px) {
          .vessel-grey-block .container .content-block .content {
            width: 50%;
            padding-left: 4rem; } }
        .vessel-grey-block .container .content-block .content h2 {
          padding: 0;
          margin: 0; }

.vessel-split-column {
  width: 100%; }
  .vessel-split-column .container {
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap; }
    .vessel-split-column .container .column {
      width: 100%; }
      @media (min-width: 800px) {
        .vessel-split-column .container .column {
          width: 60%;
          padding-left: 6rem; }
          .vessel-split-column .container .column:nth-child(1) {
            padding-right: 6rem;
            width: 40%;
            padding-left: 0; }
          .vessel-split-column .container .column:nth-child(2) {
            display: flex;
            flex-direction: column;
            align-items: center; } }
      .vessel-split-column .container .column .map {
        width: 100%;
        height: auto;
        display: block;
        opacity: 1; }
        .vessel-split-column .container .column .map img {
          width: 100%;
          height: auto;
          margin: 0;
          border: 1px solid #e6e7e8;
          border-radius: 8px; }
      .vessel-split-column .container .column .image1 {
        width: 100%;
        height: 350px;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 1rem;
        display: none; }
        @media (min-width: 800px) {
          .vessel-split-column .container .column .image1 {
            margin-top: -8rem;
            height: 450px;
            display: block; } }
        .vessel-split-column .container .column .image1 img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .vessel-split-column .container .column .image2 {
        width: 100%;
        height: 350px;
        border-radius: 8px;
        overflow: hidden;
        display: none; }
        @media (min-width: 800px) {
          .vessel-split-column .container .column .image2 {
            max-width: 350px;
            height: 450px;
            margin-top: 6rem;
            display: block; } }
        .vessel-split-column .container .column .image2 img {
          width: 100%;
          height: 100%;
          object-fit: cover; }

.text-carousel {
  background: #FFF;
  border: 1px solid #bd9b60;
  margin-top: 2rem;
  border-radius: 8px;
  color: #FFF;
  position: relative;
  opacity: 0;
  transition: 0.3s; }
  .text-carousel.active {
    opacity: 1; }
  .text-carousel .carousel-item {
    padding: 2rem; }
    .text-carousel .carousel-item h3 {
      font-size: 1.5rem; }
  .text-carousel .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 1rem;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    list-style-type: none; }
    .text-carousel .slick-dots li button {
      font-size: 0;
      border-radius: 100px;
      appearance: none;
      cursor: pointer;
      background: #FFF;
      border: 1px solid #bd9b60;
      width: 10px;
      height: 10px;
      padding: 0;
      margin: 0 0.3rem; }
    .text-carousel .slick-dots li:hover button, .text-carousel .slick-dots li:focus button {
      background: #bd9b60; }
    .text-carousel .slick-dots li.slick-active button {
      background: #bd9b60; }

html {
  box-sizing: border-box;
  font-family: "larken", sans-serif;
  scroll-behavior: smooth; }

*, h1, h2, h3, p, a, li {
  box-sizing: inherit;
  font-family: "larken", sans-serif;
  font-weight: 100;
  color: #00003d; }

body {
  font-size: 16px;
  padding: 0;
  margin: 0; }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2 );
  margin-right: calc( -100vw / 2 + 100% / 2 );
  max-width: 100vw; }

.alignfull img {
  width: 100vw; }

.js-scroll {
  opacity: 0;
  transition: opacity 500ms; }

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; }

.btn, #gform_submit_button_1, #gform_submit_button_2 {
  border: 1px solid #bd9b60;
  border-radius: 6px;
  padding: 0.2rem 0.7rem;
  color: #00003d;
  text-decoration-color: transparent;
  transition: .3s; }
  .btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus, #gform_submit_button_2:hover, #gform_submit_button_2:focus {
    background: #bd9b60; }

.js-cm-form button {
  appearance: none;
  background: none;
  border: 1px solid #bd9b60;
  border-radius: 6px;
  padding: 0.5rem 0.7rem;
  color: #00003d;
  text-decoration-color: transparent;
  font-size: 1.2rem;
  width: 100%;
  cursor: pointer;
  margin-top: 1rem;
  transition: .3s; }
  .js-cm-form button:hover, .js-cm-form button:focus {
    background: #bd9b60; }

#gform_submit_button_1, #gform_submit_button_2 {
  background: #FFF;
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  cursor: pointer; }
  #gform_submit_button_1:hover, #gform_submit_button_1:focus, #gform_submit_button_2:hover, #gform_submit_button_2:focus {
    background: #bd9b60; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  color: #00003d;
  text-decoration-color: transparent;
  transition: .3s; }
  .btn-arrow iconify-icon {
    padding-left: 0.3rem;
    color: #bd9b60;
    transition: .3s;
    display: flex;
    align-items: center; }
  .btn-arrow:hover, .btn-arrow:focus {
    color: #bd9b60; }
    .btn-arrow:hover iconify-icon, .btn-arrow:focus iconify-icon {
      padding-left: 1rem; }

.outline {
  font-size: 1.2rem;
  line-height: 1.6rem;
  letter-spacing: 0.4rem;
  color: #00003d;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #bd9b60;
  text-decoration-color: transparent;
  text-transform: uppercase;
  transition: .3s;
  position: relative;
  overflow: hidden; }
  .outline:before {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: -100%;
    background: #00003d;
    transition: .3s; }
  .outline:hover:before, .outline:focus:before {
    left: 0; }

p {
  font-size: 1.2rem;
  line-height: 1.7rem; }

h1, h2, h3, p {
  font-weight: 100; }

main {
  margin-top: 72px; }

.home-video {
  width: 100%;
  height: calc(100svh - 72px);
  position: relative; }
  .home-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .home-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem; }
    .home-video .overlay h1 {
      font-size: 1rem;
      color: #bd9b60;
      text-transform: uppercase;
      letter-spacing: 0.4rem;
      padding: 0;
      margin: 0;
      opacity: 0;
      animation: fadein 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .3s; }
    .home-video .overlay h2 {
      font-size: 1.7rem;
      line-height: 2.5rem;
      color: #FFF;
      padding: 0;
      margin: 1rem 0 0 0;
      opacity: 0;
      animation: fadein 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .5s; }
      @media (min-width: 800px) {
        .home-video .overlay h2 {
          font-size: 2.5rem;
          line-height: 3rem;
          max-width: 700px; } }
    .home-video .overlay .btn {
      margin-top: 2rem;
      font-size: 1.2rem;
      color: #00003d;
      background: #bd9b60;
      padding: 0.5rem 0.8rem;
      opacity: 0;
      animation: fadein 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .7s; }
      .home-video .overlay .btn:hover, .home-video .overlay .btn:focus {
        background: #00003d;
        color: #FFF; }

.scroller {
  position: absolute;
  bottom: 1rem;
  z-index: 10;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  animation: fadein 1s ease, scroller 1s linear infinite;
  animation-fill-mode: forwards;
  animation-delay: .7s;
  color: #FFF !important; }
  .scroller svg {
    color: #FFF !important;
    border-radius: 100px;
    border: 1px solid #FFF;
    padding: 0.4rem;
    width: 30px;
    height: 30px;
    transition: .3s; }
    .scroller svg:hover, .scroller svg:focus {
      background: #FFF;
      color: #00003d; }
      .scroller svg:hover path, .scroller svg:focus path {
        color: #00003d; }
    .scroller svg path {
      color: #fff; }

.home-text {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center; }
  .home-text h2 {
    font-size: 1rem;
    line-height: 1.4rem;
    color: #00003d;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    padding: 0;
    margin: 0;
    font-weight: 400;
    margin-bottom: 4rem; }
  .home-text p {
    font-size: 1.3rem;
    line-height: 2.3rem;
    color: #00003d;
    padding: 0;
    margin: 0; }
    .home-text p a {
      color: #00003d;
      font-weight: 100; }
  .home-text .outline {
    font-size: 1rem;
    display: inline-block;
    font-weight: 400;
    margin-top: 4rem; }
  .home-text .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    @media (min-width: 600px) {
      .home-text .buttons {
        flex-direction: row; }
        .home-text .buttons a:nth-child(2) {
          margin-left: 2rem; } }
  .home-text .gravity-theme {
    text-align: left !important;
    border: 1px solid #e6e7e8;
    border-radius: 8px;
    padding: 2rem; }
    .home-text .gravity-theme .gfield_label {
      font-weight: 300 !important; }
    .home-text .gravity-theme input[type='text'], .home-text .gravity-theme input[type='email'], .home-text .gravity-theme input[type='tel'], .home-text .gravity-theme textarea {
      border: 1px solid #e6e7e8;
      background: #f9f9f9;
      border-radius: 4px;
      height: 40px; }
    .home-text .gravity-theme .gfield_consent_label a {
      color: #00003d; }
  .home-text .js-cm-form input[type="email"] {
    width: 100%;
    height: 40px;
    font-size: 1.1rem;
    padding: 1rem;
    background: #fafafa;
    border: 1px solid #eee; }

.home-text-small h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 100;
  margin-bottom: 3rem;
  text-transform: capitalize;
  letter-spacing: 0; }
.home-text-small p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin: 0 0 1rem 0; }
.home-text-small .outline {
  margin-top: 2rem;
  display: inline-block; }

.left-align {
  text-align: left; }

.small-text p {
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  color: #111; }
.small-text li {
  font-size: 1.1rem;
  line-height: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 100; }
.small-text a {
  color: #00003d; }
.small-text h2 {
  margin-bottom: 1rem;
  color: #00003d;
  letter-spacing: 0; }
.small-text h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #00003d; }

.home-cruises {
  width: 100%;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  background-size: cover !important;
  background-position: bottom center !important; }
  @media (min-width: 992px) {
    .home-cruises {
      padding: 8rem 0; } }
  .home-cruises .content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 1rem; }
    @media (min-width: 992px) {
      .home-cruises .content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end; } }
    .home-cruises .content .buttons {
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: center; }
      .home-cruises .content .buttons button {
        appearance: none;
        cursor: pointer;
        background: none;
        border: 0;
        padding: 0;
        font-size: 1.1rem;
        color: #bd9b60;
        margin: 0 0.5rem;
        transition: .3s; }
        .home-cruises .content .buttons button.active {
          color: #2ad5e8;
          border-bottom: 1px solid #2ad5e8; }
        .home-cruises .content .buttons button:hover, .home-cruises .content .buttons button:focus {
          color: #2ad5e8; }
      .home-cruises .content .buttons select {
        width: auto;
        padding: 0.3rem 0.5rem;
        border: 1px solid #FFF;
        border-radius: 8px;
        background: url("/wp-content/uploads/2025/09/down-arrow.png");
        background-size: 12px;
        background-repeat: no-repeat;
        background-position: 95% 50%;
        font-size: 1.1rem;
        color: #FFF;
        appearance: none;
        cursor: pointer;
        transition: border 0.3s, box-shadow 0.3s;
        margin: 0 0.5rem;
        position: relative; }
        .home-cruises .content .buttons select:after {
          content: " ";
          background: pink;
          position: absolute;
          top: 50%;
          right: 0;
          transform: translateY(-50%);
          pointer-events: none;
          color: #555;
          font-size: 12px;
          width: 15px;
          height: 15px; }
  .home-cruises h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    color: #bd9b60;
    padding: 0;
    margin: 0 0 1rem 0;
    position: relative; }
    @media (min-width: 992px) {
      .home-cruises h2 {
        font-size: 3rem;
        line-height: 3rem;
        margin: 0; } }
  .home-cruises p {
    font-size: 1.5rem;
    line-height: 2rem;
    color: #FFF;
    padding: 0;
    margin: 0;
    position: relative; }
    @media (min-width: 992px) {
      .home-cruises p {
        font-size: 1.2rem;
        line-height: 1.2rem;
        color: #2ad5e8; } }
  .home-cruises .slideset-container {
    position: relative;
    width: 100%; }
    .home-cruises .slideset-container .slide-arrows, .home-cruises .slideset-container .slide-arrows-01, .home-cruises .slideset-container .slide-arrows-02, .home-cruises .slideset-container .slide-arrows-03, .home-cruises .slideset-container .slide-arrows-04, .home-cruises .slideset-container .slide-arrows-05, .home-cruises .slideset-container .slide-arrows-06, .home-cruises .slideset-container .slide-arrows-07 {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2rem;
      width: 100%; }
      .home-cruises .slideset-container .slide-arrows button, .home-cruises .slideset-container .slide-arrows-01 button, .home-cruises .slideset-container .slide-arrows-02 button, .home-cruises .slideset-container .slide-arrows-03 button, .home-cruises .slideset-container .slide-arrows-04 button, .home-cruises .slideset-container .slide-arrows-05 button, .home-cruises .slideset-container .slide-arrows-06 button, .home-cruises .slideset-container .slide-arrows-07 button {
        appearance: none;
        cursor: pointer;
        background: none;
        border: 0;
        transition: .3s;
        padding: 0;
        display: flex;
        margin: 0 0.5rem; }
        .home-cruises .slideset-container .slide-arrows button:hover, .home-cruises .slideset-container .slide-arrows button:focus, .home-cruises .slideset-container .slide-arrows button:focus-within, .home-cruises .slideset-container .slide-arrows-01 button:hover, .home-cruises .slideset-container .slide-arrows-01 button:focus, .home-cruises .slideset-container .slide-arrows-01 button:focus-within, .home-cruises .slideset-container .slide-arrows-02 button:hover, .home-cruises .slideset-container .slide-arrows-02 button:focus, .home-cruises .slideset-container .slide-arrows-02 button:focus-within, .home-cruises .slideset-container .slide-arrows-03 button:hover, .home-cruises .slideset-container .slide-arrows-03 button:focus, .home-cruises .slideset-container .slide-arrows-03 button:focus-within, .home-cruises .slideset-container .slide-arrows-04 button:hover, .home-cruises .slideset-container .slide-arrows-04 button:focus, .home-cruises .slideset-container .slide-arrows-04 button:focus-within, .home-cruises .slideset-container .slide-arrows-05 button:hover, .home-cruises .slideset-container .slide-arrows-05 button:focus, .home-cruises .slideset-container .slide-arrows-05 button:focus-within, .home-cruises .slideset-container .slide-arrows-06 button:hover, .home-cruises .slideset-container .slide-arrows-06 button:focus, .home-cruises .slideset-container .slide-arrows-06 button:focus-within, .home-cruises .slideset-container .slide-arrows-07 button:hover, .home-cruises .slideset-container .slide-arrows-07 button:focus, .home-cruises .slideset-container .slide-arrows-07 button:focus-within {
          background: rgba(255, 255, 255, 0.2); }
        .home-cruises .slideset-container .slide-arrows button iconify-icon, .home-cruises .slideset-container .slide-arrows-01 button iconify-icon, .home-cruises .slideset-container .slide-arrows-02 button iconify-icon, .home-cruises .slideset-container .slide-arrows-03 button iconify-icon, .home-cruises .slideset-container .slide-arrows-04 button iconify-icon, .home-cruises .slideset-container .slide-arrows-05 button iconify-icon, .home-cruises .slideset-container .slide-arrows-06 button iconify-icon, .home-cruises .slideset-container .slide-arrows-07 button iconify-icon {
          color: #FFF;
          padding: 0.3rem; }
  .home-cruises .cruises-feed, .home-cruises .cruises-feed-2, .home-cruises .cruises-feed-3, .home-cruises .cruises-feed-4, .home-cruises .cruises-feed-5, .home-cruises .cruises-feed-6, .home-cruises .cruises-feed-7, .home-cruises .cruises-feed-8 {
    margin-top: 4rem; }
    .home-cruises .cruises-feed a, .home-cruises .cruises-feed-2 a, .home-cruises .cruises-feed-3 a, .home-cruises .cruises-feed-4 a, .home-cruises .cruises-feed-5 a, .home-cruises .cruises-feed-6 a, .home-cruises .cruises-feed-7 a, .home-cruises .cruises-feed-8 a {
      width: 100%;
      position: relative;
      margin: 0 1rem;
      overflow: hidden;
      text-decoration-color: transparent; }
      .home-cruises .cruises-feed a:hover .overlay, .home-cruises .cruises-feed a:focus .overlay, .home-cruises .cruises-feed-2 a:hover .overlay, .home-cruises .cruises-feed-2 a:focus .overlay, .home-cruises .cruises-feed-3 a:hover .overlay, .home-cruises .cruises-feed-3 a:focus .overlay, .home-cruises .cruises-feed-4 a:hover .overlay, .home-cruises .cruises-feed-4 a:focus .overlay, .home-cruises .cruises-feed-5 a:hover .overlay, .home-cruises .cruises-feed-5 a:focus .overlay, .home-cruises .cruises-feed-6 a:hover .overlay, .home-cruises .cruises-feed-6 a:focus .overlay, .home-cruises .cruises-feed-7 a:hover .overlay, .home-cruises .cruises-feed-7 a:focus .overlay, .home-cruises .cruises-feed-8 a:hover .overlay, .home-cruises .cruises-feed-8 a:focus .overlay {
        background: none; }
      .home-cruises .cruises-feed a:hover img, .home-cruises .cruises-feed a:focus img, .home-cruises .cruises-feed-2 a:hover img, .home-cruises .cruises-feed-2 a:focus img, .home-cruises .cruises-feed-3 a:hover img, .home-cruises .cruises-feed-3 a:focus img, .home-cruises .cruises-feed-4 a:hover img, .home-cruises .cruises-feed-4 a:focus img, .home-cruises .cruises-feed-5 a:hover img, .home-cruises .cruises-feed-5 a:focus img, .home-cruises .cruises-feed-6 a:hover img, .home-cruises .cruises-feed-6 a:focus img, .home-cruises .cruises-feed-7 a:hover img, .home-cruises .cruises-feed-7 a:focus img, .home-cruises .cruises-feed-8 a:hover img, .home-cruises .cruises-feed-8 a:focus img {
        transform: scale(1.3, 1.3); }
      .home-cruises .cruises-feed a .image, .home-cruises .cruises-feed-2 a .image, .home-cruises .cruises-feed-3 a .image, .home-cruises .cruises-feed-4 a .image, .home-cruises .cruises-feed-5 a .image, .home-cruises .cruises-feed-6 a .image, .home-cruises .cruises-feed-7 a .image, .home-cruises .cruises-feed-8 a .image {
        width: 100%;
        height: 300px;
        overflow: hidden;
        border-radius: 12px; }
      .home-cruises .cruises-feed a img, .home-cruises .cruises-feed-2 a img, .home-cruises .cruises-feed-3 a img, .home-cruises .cruises-feed-4 a img, .home-cruises .cruises-feed-5 a img, .home-cruises .cruises-feed-6 a img, .home-cruises .cruises-feed-7 a img, .home-cruises .cruises-feed-8 a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s; }
      .home-cruises .cruises-feed a .overlay, .home-cruises .cruises-feed-2 a .overlay, .home-cruises .cruises-feed-3 a .overlay, .home-cruises .cruises-feed-4 a .overlay, .home-cruises .cruises-feed-5 a .overlay, .home-cruises .cruises-feed-6 a .overlay, .home-cruises .cruises-feed-7 a .overlay, .home-cruises .cruises-feed-8 a .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        top: 0;
        left: 0;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        transition: .3s; }
        .home-cruises .cruises-feed a .overlay h3, .home-cruises .cruises-feed-2 a .overlay h3, .home-cruises .cruises-feed-3 a .overlay h3, .home-cruises .cruises-feed-4 a .overlay h3, .home-cruises .cruises-feed-5 a .overlay h3, .home-cruises .cruises-feed-6 a .overlay h3, .home-cruises .cruises-feed-7 a .overlay h3, .home-cruises .cruises-feed-8 a .overlay h3 {
          color: #FFF;
          text-decoration-color: transparent;
          font-size: 1.4rem;
          padding: 0;
          margin: 0;
          text-align: center; }
      .home-cruises .cruises-feed a p, .home-cruises .cruises-feed-2 a p, .home-cruises .cruises-feed-3 a p, .home-cruises .cruises-feed-4 a p, .home-cruises .cruises-feed-5 a p, .home-cruises .cruises-feed-6 a p, .home-cruises .cruises-feed-7 a p, .home-cruises .cruises-feed-8 a p {
        font-size: 1rem;
        text-align: left;
        margin-top: 0.5rem;
        color: #FFF; }

.home-vessels {
  width: 100%;
  height: 1000px;
  overflow: hidden;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 75% 0% !important;
  overflow: hidden;
  padding: 6rem 0 3rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .home-vessels h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    color: #FFF; }
  .home-vessels p {
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #2ad5e8; }
  .home-vessels .vessels {
    position: relative; }
    .home-vessels .vessels .vessel-container {
      width: 100%;
      margin: 0 auto;
      position: relative; }
      .home-vessels .vessels .vessel-container a {
        margin: 0 1rem;
        position: relative;
        overflow: visible !important; }
        .home-vessels .vessels .vessel-container a .image {
          width: 100%;
          height: 300px;
          border-radius: 12px;
          overflow: hidden;
          position: relative; }
          .home-vessels .vessels .vessel-container a .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .3s; }
        .home-vessels .vessels .vessel-container a .overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.3);
          border-radius: 12px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: center;
          transition: .3s; }
          .home-vessels .vessels .vessel-container a .overlay h3 {
            font-size: 1.5rem;
            color: #FFF;
            padding: 0;
            margin: 0;
            transition: .3s; }
          .home-vessels .vessels .vessel-container a .overlay span {
            color: #FFF;
            width: 100%;
            max-width: 200px;
            font-size: 1.5rem;
            transition: .3s;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            transition: .3s;
            opacity: 0;
            visibility: hidden; }
            .home-vessels .vessels .vessel-container a .overlay span:before {
              content: "";
              position: absolute;
              top: 0;
              left: 51%;
              right: 51%;
              background: #FFF;
              height: 1px;
              transition-property: left, right;
              transition-duration: 0.3s;
              transition-timing-function: ease-out; }
        .home-vessels .vessels .vessel-container a:hover .image img, .home-vessels .vessels .vessel-container a:focus .image img {
          transform: scale(1.3, 1.3); }
        .home-vessels .vessels .vessel-container a:hover .overlay, .home-vessels .vessels .vessel-container a:focus .overlay {
          background: none; }
          .home-vessels .vessels .vessel-container a:hover .overlay h3, .home-vessels .vessels .vessel-container a:focus .overlay h3 {
            opacity: 0; }
          .home-vessels .vessels .vessel-container a:hover .overlay span, .home-vessels .vessels .vessel-container a:focus .overlay span {
            opacity: 1;
            visibility: visible; }
            .home-vessels .vessels .vessel-container a:hover .overlay span:before, .home-vessels .vessels .vessel-container a:focus .overlay span:before {
              left: 0;
              right: 0; }

.slide-arrows-three {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%; }
  .slide-arrows-three button {
    appearance: none;
    cursor: pointer;
    background: none;
    border: 0;
    transition: .3s; }
    .slide-arrows-three button:hover, .slide-arrows-three button:focus, .slide-arrows-three button:focus-within {
      background: rgba(255, 255, 255, 0.2); }
    .slide-arrows-three button iconify-icon {
      color: #FFF;
      padding: 0.3rem; }

.testimonials {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center; }
  @media (min-width: 800px) {
    .testimonials {
      padding: 6rem 2rem; } }
  .testimonials .review {
    font-size: 1.6rem;
    line-height: 2rem; }
  .testimonials .name {
    font-size: 1.2rem; }
  .testimonials .outline {
    display: inline-block;
    font-size: 1rem;
    margin-top: 2rem; }
  .testimonials .slick-dots {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center; }
    .testimonials .slick-dots li {
      margin: 0 0.3rem; }
      .testimonials .slick-dots li.slick-active button {
        background: #00003d; }
      .testimonials .slick-dots li button {
        appearance: none;
        cursor: pointer;
        background: #bd9b60;
        border: 0;
        font-size: 0;
        overflow: hidden;
        width: 12px;
        height: 12px;
        border-radius: 100px; }
        .testimonials .slick-dots li button:hover, .testimonials .slick-dots li button:focus {
          background: #00003d; }

.home-routes-desktop {
  background-image: linear-gradient(180deg, #ffffff 0%, #ffffff 50%, #e6e7e8 50%, #e6e7e8 100%);
  padding: 4rem 0; }
  @media (min-width: 800px) {
    .home-routes-desktop {
      display: block; } }
  .home-routes-desktop .container {
    display: flex;
    flex-wrap: wrap;
    padding: 0 2rem;
    border-radius: 12px;
    overflow: hidden; }
    .home-routes-desktop .container .image-area {
      width: 60%;
      position: relative;
      height: 450px;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
      overflow: hidden; }
      .home-routes-desktop .container .image-area img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity .5s ease-in-out;
        pointer-events: none; }
        .home-routes-desktop .container .image-area img.visible {
          opacity: 1;
          z-index: 1; }
    .home-routes-desktop .container .content-area {
      width: 40%;
      padding: 2rem;
      background: #bd9b60;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center; }
      .home-routes-desktop .container .content-area h2 {
        font-size: 2.5rem;
        padding: 0;
        margin: 0;
        color: #00003d; }
      .home-routes-desktop .container .content-area .link-list {
        margin-top: 2rem; }
        .home-routes-desktop .container .content-area .link-list a {
          display: flex;
          align-items: center;
          padding-bottom: 0.5rem;
          font-size: 1.5rem;
          color: #00003d;
          text-decoration-color: transparent;
          transition: .3s; }
          .home-routes-desktop .container .content-area .link-list a iconify-icon {
            opacity: 0;
            visibility: hidden;
            color: #FFF;
            transition: .3s;
            display: flex;
            align-items: center;
            margin-left: 0.5rem; }
          .home-routes-desktop .container .content-area .link-list a:hover, .home-routes-desktop .container .content-area .link-list a:focus {
            color: #FFF; }
            .home-routes-desktop .container .content-area .link-list a:hover iconify-icon, .home-routes-desktop .container .content-area .link-list a:focus iconify-icon {
              opacity: 1;
              visibility: visible; }

.home-routes {
  width: 100%;
  height: 700px;
  position: relative; }
  @media (min-width: 800px) {
    .home-routes {
      display: none; } }
  .home-routes img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .home-routes .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; }
    .home-routes .overlay h2 {
      font-size: 2rem;
      color: #FFF;
      padding: 0;
      margin: 0; }
    .home-routes .overlay p {
      font-size: 1.5rem;
      line-height: 2rem;
      color: #FFF;
      padding: 0; }
    .home-routes .overlay .outline {
      color: #FFF;
      border-bottom-color: currentColor;
      transition: .3s; }
      .home-routes .overlay .outline:hover, .home-routes .overlay .outline:focus {
        color: #bd9b60; }

.home-charter {
  width: 100%;
  padding: 0 0 4rem 0;
  background: #FFF; }
  @media (min-width: 992px) {
    .home-charter {
      background: #e6e7e8;
      padding: 4rem 0 8rem 0; } }
  @media (min-width: 992px) {
    .home-charter .container {
      display: flex;
      align-items: center;
      padding: 0 1rem 0 4rem; } }
  @media (min-width: 13001px) {
    .home-charter .container {
      padding: 0 1rem; } }
  .home-charter .container .charter-carousel {
    position: relative;
    width: 100%; }
    @media (min-width: 992px) {
      .home-charter .container .charter-carousel {
        width: 50%;
        z-index: 11; } }
    .home-charter .container .charter-carousel .charter-carousel-wrapper {
      position: relative; }
    .home-charter .container .charter-carousel .slick-prev, .home-charter .container .charter-carousel .slick-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 100; }
    .home-charter .container .charter-carousel .slick-prev {
      left: -60px; }
    .home-charter .container .charter-carousel .slick-next {
      right: -60px;
      /* Adjust as needed */ }
    .home-charter .container .charter-carousel button {
      appearance: none;
      cursor: pointer;
      background: none;
      border: 0;
      padding: 0; }
      .home-charter .container .charter-carousel button iconify-icon {
        color: #bd9b60; }
    .home-charter .container .charter-carousel .image {
      width: 100%;
      height: 400px; }
      @media (min-width: 992px) {
        .home-charter .container .charter-carousel .image {
          border-radius: 12px;
          overflow: hidden; } }
      .home-charter .container .charter-carousel .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
  .home-charter .container .charter-content {
    width: 90%;
    background: #00003d;
    margin: -4rem 5% 0 5%;
    z-index: 10;
    display: block;
    border-radius: 12px;
    padding: 2rem;
    text-align: center; }
    @media (min-width: 992px) {
      .home-charter .container .charter-content {
        width: 60%;
        margin: 0 0 0 -10%;
        text-align: left;
        padding: 6rem 2rem 6rem 14rem;
        position: relative;
        opacity: 1;
        transform: translateY(0); } }
    .home-charter .container .charter-content h2 {
      font-size: 2rem;
      color: #bd9b60;
      padding: 0;
      margin: 0; }
      @media (min-width: 992px) {
        .home-charter .container .charter-content h2 {
          font-size: 2.5rem; } }
    .home-charter .container .charter-content h3 {
      color: #2ad5e8;
      font-size: 1.2rem;
      padding: 0;
      margin: 2rem 0 0 0; }
      @media (min-width: 992px) {
        .home-charter .container .charter-content h3 {
          margin: 0; } }
    .home-charter .container .charter-content p {
      color: #FFF;
      margin: 2rem 0; }
    .home-charter .container .charter-content .btn-arrow {
      color: #bd9b60;
      display: inline-flex;
      font-size: 1.2rem; }

.home-faqs {
  width: 100%;
  height: 500px;
  position: relative; }
  .home-faqs img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .home-faqs .overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
    height: auto;
    background: #FFF;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center; }
    .home-faqs .overlay h2 {
      font-size: 2rem;
      color: #00003d;
      padding: 0;
      margin: 0; }
    .home-faqs .overlay p {
      color: #00003d; }
  @media (min-width: 800px) {
    .home-faqs {
      max-width: 1300px;
      margin: 0 auto;
      padding: 6rem 2rem;
      display: flex;
      flex-wrap: wrap;
      height: auto;
      align-items: center; }
      .home-faqs img {
        width: 55%;
        height: 500px;
        object-fit: cover;
        border-radius: 12px;
        overflow: hidden; }
      .home-faqs .overlay {
        position: relative;
        transform: translateY(0);
        text-align: left;
        border: 1px solid #bd9b60; } }

.page-header {
  width: 100%;
  height: 400px;
  position: relative; }
  .page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .page-header .overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem; }
    .page-header .overlay h1 {
      font-size: 2rem;
      padding: 0;
      margin: 0;
      color: #FFF;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .3s;
      animation-fill-mode: forwards; }
      @media (min-width: 800px) {
        .page-header .overlay h1 {
          font-size: 3rem; } }

.page-header-full {
  height: calc(100svh - 72px); }
  .page-header-full .overlay {
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    padding-bottom: 5rem; }
    .page-header-full .overlay h1 {
      padding-top: 0;
      margin-bottom: 1rem; }
    .page-header-full .overlay p {
      max-width: 700px;
      margin: 0 auto;
      color: #FFF;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .5s;
      animation-fill-mode: forwards; }

.header-center .overlay {
  justify-content: center; }

.footer-banner {
  background-image: none;
  padding: 0;
  position: relative;
  display: none; }
  @media (min-width: 800px) {
    .footer-banner {
      display: block; } }
  .footer-banner .explore {
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    text-align: center;
    text-transform: uppercase;
    color: #FFF;
    letter-spacing: 0.4rem; }
  .footer-banner .container {
    max-width: none;
    padding: 0;
    border-radius: 0;
    position: relative; }
    .footer-banner .container .image-area {
      width: 100%;
      position: relative;
      border-radius: 0;
      height: 700px; }
    .footer-banner .container .content-area {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      left: 0;
      right: 0;
      padding: 2rem;
      position: absolute;
      z-index: 10;
      background: none;
      top: 50%;
      transform: translateY(-50%); }
      .footer-banner .container .content-area .content-container {
        width: 100%;
        max-width: 350px;
        background: #FFF;
        padding: 1rem;
        border-radius: 8px; }
        .footer-banner .container .content-area .content-container h2 {
          font-size: 1.8rem; }
        .footer-banner .container .content-area .content-container #mc_embed_signup_scroll .mc-field-group {
          margin-bottom: 1rem; }
        .footer-banner .container .content-area .content-container a {
          font-size: 1.3rem; }
        .footer-banner .container .content-area .content-container .content__gdprLegal a {
          font-size: 0.8rem; }
        .footer-banner .container .content-area .content-container .link-list a:hover, .footer-banner .container .content-area .content-container .link-list a:focus {
          color: #bd9b60; }
          .footer-banner .container .content-area .content-container .link-list a:hover iconify-icon, .footer-banner .container .content-area .content-container .link-list a:focus iconify-icon {
            color: #bd9b60; }
        .footer-banner .container .content-area .content-container .btn {
          margin-top: 1rem;
          display: inline-block; }

.faqs {
  margin-top: 6rem; }
  .faqs .accordion {
    -webkit-appearance: none;
    appearance: none;
    background: #00003d;
    border: 0;
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 100;
    color: #FFF;
    margin-bottom: 0.5rem;
    cursor: pointer; }
    .faqs .accordion .icon {
      background: #FFF;
      width: 30px;
      height: 30px;
      border-radius: 200px;
      position: relative; }
      .faqs .accordion .icon:before {
        content: ' ';
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 15px;
        height: 3px;
        background: #00003d;
        top: 45%;
        transition: .3s; }
      .faqs .accordion .icon:after {
        content: ' ';
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 15px;
        height: 3px;
        background: #00003d;
        top: 45%;
        transform: rotate(90deg);
        transition: .3s; }
    .faqs .accordion.active {
      margin-bottom: 0; }
      .faqs .accordion.active .icon:before {
        transform: rotate(45deg); }
      .faqs .accordion.active .icon:after {
        transform: rotate(135deg); }
  .faqs .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    text-align: left; }
    .faqs .content p {
      font-size: 1.2rem;
      margin: 1rem 0; }
    .faqs .content img {
      width: 100%;
      height: auto; }

.testimonials-full {
  width: 100%;
  background: #e6e7e8; }

#map {
  width: 100%;
  height: 500px; }

.grey-block {
  width: 100%;
  background: #e6e7e8;
  padding: 4rem 0; }
  @media (min-width: 800px) {
    .grey-block {
      padding: 6rem 0; } }
  .grey-block .content-block {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap; }
    @media (min-width: 800px) {
      .grey-block .content-block {
        flex-direction: row-reverse;
        padding: 0 4rem; } }
    .grey-block .content-block .image {
      width: 100%;
      height: 350px;
      border-radius: 8px;
      overflow: hidden; }
      @media (min-width: 800px) {
        .grey-block .content-block .image {
          width: 50%;
          height: auto; } }
      .grey-block .content-block .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .grey-block .content-block .content {
      padding-top: 2rem; }
      @media (min-width: 800px) {
        .grey-block .content-block .content {
          width: 50%;
          padding-right: 6rem;
          padding-top: 0;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center; } }
      .grey-block .content-block .content h2 {
        font-size: 2rem;
        padding: 0;
        margin: 0; }
  .grey-block .content-block-reverse {
    max-width: none; }
    @media (min-width: 800px) {
      .grey-block .content-block-reverse {
        flex-direction: row; } }
    @media (min-width: 2000px) {
      .grey-block .content-block-reverse {
        max-width: 1600px;
        padding: 4rem !important; } }
    .grey-block .content-block-reverse .image {
      border-radius: 0;
      min-height: 500px; }
      @media (min-width: 2000px) {
        .grey-block .content-block-reverse .image {
          border-radius: 8px;
          height: 500px; } }
    .grey-block .content-block-reverse .content {
      padding: 2rem; }
      @media (min-width: 992px) {
        .grey-block .content-block-reverse .content {
          padding: 5rem; } }

.blue-block {
  background: #00003d; }
  .blue-block .content-block .content h2 {
    color: #bd9b60; }
  .blue-block .content-block .content p {
    color: #FFF; }
  .blue-block .content-block .content a {
    color: #bd9b60; }

.image-content-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative; }
  @media (min-width: 576px) {
    .image-content-grid {
      padding: 4rem 0; } }
  @media (min-width: 992px) {
    .image-content-grid {
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      padding: 0 2rem 0 0;
      margin-top: 8rem;
      margin-bottom: 8rem; } }
  .image-content-grid .images {
    width: 100%;
    display: flex;
    flex-wrap: wrap; }
    @media (min-width: 992px) {
      .image-content-grid .images {
        width: 60%;
        flex-direction: column;
        align-items: flex-end;
        padding-right: 6rem; } }
    .image-content-grid .images .image {
      width: 100%;
      height: 350px;
      overflow: hidden;
      border-radius: 8px; }
      .image-content-grid .images .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .image-content-grid .images .image:nth-child(2), .image-content-grid .images .image:nth-child(3) {
        display: none; }
      @media (min-width: 576px) {
        .image-content-grid .images .image {
          border-radius: 0; }
          .image-content-grid .images .image:nth-child(1) {
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            width: 50%; }
          .image-content-grid .images .image:nth-child(2) {
            display: inline-block;
            width: 40%;
            margin-left: 10%;
            height: 250px;
            margin-top: 10rem;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px; } }
      @media (min-width: 992px) {
        .image-content-grid .images .image:nth-child(1) {
          width: 60%;
          border-radius: 8px;
          height: 300px; }
        .image-content-grid .images .image:nth-child(2) {
          width: 100%;
          margin-top: 5rem;
          margin-left: 0;
          border-radius: 0;
          border-top-right-radius: 8px;
          border-bottom-right-radius: 8px;
          height: 400px; } }
      @media (min-width: 1200px) {
        .image-content-grid .images .image:nth-child(3) {
          display: block;
          position: absolute;
          bottom: 0;
          right: 4rem;
          width: 35%;
          max-width: 400px;
          height: 300px;
          border-radius: 8px; } }
      @media (min-width: 1401px) {
        .image-content-grid .images .image:nth-child(2) {
          border-radius: 8px; } }
  .image-content-grid .content {
    padding-top: 2rem; }
    @media (min-width: 576px) {
      .image-content-grid .content {
        padding: 2rem; } }
    @media (min-width: 992px) {
      .image-content-grid .content {
        width: 40%;
        padding-top: 4rem; } }
    .image-content-grid .content h2 {
      font-size: 2rem;
      padding: 0;
      margin: 0; }

.image-content-grid-alt {
  margin-top: 0;
  margin-bottom: 0; }
  @media (min-width: 992px) {
    .image-content-grid-alt {
      padding: 8rem 0; } }
  @media (min-width: 992px) {
    .image-content-grid-alt .images {
      padding-right: 6rem;
      align-items: center; } }
  @media (min-width: 992px) {
    .image-content-grid-alt .images .image:nth-child(1) {
      width: 100%;
      height: 400px;
      border-radius: 0;
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px; }
    .image-content-grid-alt .images .image:nth-child(2) {
      width: 60%;
      height: 300px;
      border-radius: 8px; }
    .image-content-grid-alt .images .image:nth-child(3) {
      display: block !important;
      top: 10rem;
      position: absolute;
      right: 4rem;
      width: 35%;
      max-width: 400px;
      height: 300px;
      border-radius: 8px; } }
  @media (min-width: 1201px) {
    .image-content-grid-alt .images .image:nth-child(1) {
      border-radius: 8px;
      height: 450px; } }
  @media (min-width: 992px) {
    .image-content-grid-alt .content {
      padding: 4rem 2rem 0 2rem;
      margin-top: 350px; } }

.image-grid-grey {
  background: #e6e7e8; }

.gallery-feed {
  padding: 4rem 0 5rem 0; }
  .gallery-feed .content {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem; }
    .gallery-feed .content h2 {
      opacity: 1;
      transform: translateY(0); }

.gallery-container {
  width: 100%;
  position: relative; }
  .gallery-container .slide-arrows-four {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%; }
    .gallery-container .slide-arrows-four button {
      appearance: none;
      cursor: pointer;
      background: none;
      border: 0;
      transition: .3s;
      padding: 0;
      display: flex; }
      .gallery-container .slide-arrows-four button:hover, .gallery-container .slide-arrows-four button:focus, .gallery-container .slide-arrows-four button:focus-within {
        background: rgba(255, 255, 255, 0.2); }
      .gallery-container .slide-arrows-four button iconify-icon {
        color: #FFF;
        padding: 0.3rem; }

.acf-gallery-grid {
  position: relative; }
  .acf-gallery-grid a {
    margin: 0 1rem;
    height: 300px;
    border-radius: 8px;
    overflow: hidden; }
    .acf-gallery-grid a img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .3s; }
    .acf-gallery-grid a:hover img, .acf-gallery-grid a:focus img {
      transform: scale(1.1, 1.1); }

.cruise-tabs {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem; }
  @media (min-width: 800px) {
    .cruise-tabs {
      padding: 6rem 2rem; } }
  .cruise-tabs h2 {
    font-size: 2rem;
    text-align: center;
    padding: 0;
    margin: 0; }
  .cruise-tabs .faqs {
    margin-top: 4rem; }

.no-pad {
  padding: 0 !important; }

.sustainability-block {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem; }
  @media (min-width: 800px) {
    .sustainability-block {
      padding: 4rem; } }
  .sustainability-block .content-block {
    width: 100%;
    padding: 2rem;
    background: #e6e7e8;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 4rem; }
    .sustainability-block .content-block .image {
      width: 100%;
      height: 300px;
      border-radius: 8px;
      overflow: hidden; }
      @media (min-width: 800px) {
        .sustainability-block .content-block .image {
          width: 50%;
          height: auto; } }
      .sustainability-block .content-block .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .sustainability-block .content-block .content {
      width: 100%;
      padding-top: 2rem; }
      @media (min-width: 800px) {
        .sustainability-block .content-block .content {
          width: 50%;
          padding-top: 0;
          padding-left: 2rem;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center; } }
      .sustainability-block .content-block .content h2 {
        font-size: 2rem;
        padding: 0;
        margin: 0; }

.sustainability-accordion {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem 2rem; }
  @media (min-width: 800px) {
    .sustainability-accordion {
      padding: 0 4rem 4rem 4rem; } }
  .sustainability-accordion h2 {
    text-align: center;
    font-size: 2rem;
    padding: 0;
    margin: 0 0 2rem 0; }
  .sustainability-accordion .faqs .content {
    display: flex;
    flex-wrap: wrap; }
    .sustainability-accordion .faqs .content .image {
      width: 100%;
      height: 300px;
      border-radius: 8px;
      overflow: hidden;
      margin-top: 2rem; }
      .sustainability-accordion .faqs .content .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block; }
      @media (min-width: 800px) {
        .sustainability-accordion .faqs .content .image {
          width: 50%;
          height: auto;
          margin-bottom: 2rem; } }
    .sustainability-accordion .faqs .content .text {
      padding-bottom: 2rem;
      width: 100%; }
      @media (min-width: 800px) {
        .sustainability-accordion .faqs .content .text {
          width: 50%;
          padding-left: 2rem;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center;
          padding-bottom: 0; } }
      .sustainability-accordion .faqs .content .text h2 {
        padding-top: 2rem;
        text-align: left;
        margin: 0 0 0.5rem 0; }

.gold-box {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  @media (min-width: 1200px) {
    .gold-box {
      padding-right: 4rem; } }
  .gold-box .image {
    width: 100%;
    height: 450px; }
    @media (min-width: 992px) {
      .gold-box .image {
        width: 70%;
        height: 600px; } }
    .gold-box .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .gold-box .content {
    width: 90%;
    background: #bd9b60;
    margin: 0 5%;
    margin-top: -6rem;
    padding: 2rem;
    border-radius: 8px; }
    @media (min-width: 992px) {
      .gold-box .content {
        width: 35%;
        margin: 0 0 0 -6rem;
        display: inline-block;
        padding: 3rem; } }
    @media (min-width: 992px) {
      .gold-box .content {
        max-width: 500px; } }
    .gold-box .content h2 {
      font-size: 1.5rem;
      padding: 0;
      margin: 0; }

.multi-images {
  width: 100%;
  background: #FFF;
  margin: 4rem 0 0 0; }
  @media (min-width: 992px) {
    .multi-images {
      background: linear-gradient(180deg, #FFF 0%, #FFF 10%, #e6e7e8 10%, #e6e7e8 90%, #FFF 90%, #FFF 100%);
      margin: 8rem 0 0 0; } }
  .multi-images .container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem; }
    @media (min-width: 992px) {
      .multi-images .container {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: 225px 100px 100px 50px 100px;
        grid-gap: 5rem; } }
    .multi-images .container .image {
      width: 100%;
      height: auto;
      overflow: hidden;
      height: 300px; }
      @media (min-width: 992px) {
        .multi-images .container .image {
          height: auto; } }
      .multi-images .container .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .multi-images .container .image:nth-child(1) {
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px; }
        @media (min-width: 992px) {
          .multi-images .container .image:nth-child(1) {
            border-radius: 8px;
            grid-area: 1 / 1 / 2 / 5;
            margin-left: 2rem; } }
      .multi-images .container .image:nth-child(2) {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        margin-top: 4.5rem; }
        @media (min-width: 992px) {
          .multi-images .container .image:nth-child(2) {
            grid-column: 6/13;
            height: 500px; } }
        @media (min-width: 1300px) {
          .multi-images .container .image:nth-child(2) {
            margin-top: 2rem; } }
        @media (min-width: 1401px) {
          .multi-images .container .image:nth-child(2) {
            border-radius: 8px; } }
      .multi-images .container .image:nth-child(3) {
        display: none; }
        @media (min-width: 992px) {
          .multi-images .container .image:nth-child(3) {
            display: block;
            grid-area: 3 / 2 / 6 / 6;
            border-radius: 8px;
            height: 200px; } }
      .multi-images .container .image:nth-child(4) {
        display: none; }
        @media (min-width: 992px) {
          .multi-images .container .image:nth-child(4) {
            display: block;
            grid-area: 4 / 8 / 6 / 12;
            border-radius: 8px; } }
        @media (min-width: 1300px) {
          .multi-images .container .image:nth-child(4) {
            height: 250px; } }
    .multi-images .container .content {
      padding: 0 2rem;
      margin-top: -2rem;
      grid-column: 1/3; }
      @media (min-width: 992px) {
        .multi-images .container .content {
          grid-area: 2 / 1 / 4 / 6;
          margin-top: 0; } }

.multi-images-2 .container .image:nth-child(3) {
  display: none; }
  @media (min-width: 992px) {
    .multi-images-2 .container .image:nth-child(3) {
      display: block;
      grid-area: 4 / 2 / 6 / 6;
      border-radius: 8px;
      height: 250px; } }
.multi-images-2 .container .image:nth-child(4) {
  display: none; }
  @media (min-width: 992px) {
    .multi-images-2 .container .image:nth-child(4) {
      display: block;
      grid-area: 4 / 8 / 6 / 12;
      border-radius: 8px; } }
  @media (min-width: 1300px) {
    .multi-images-2 .container .image:nth-child(4) {
      height: 350px; }
      .multi-images-2 .container .image:nth-child(4) img {
        object-position: bottom center; } }

.image-content-grid-four {
  width: 100%;
  padding: 4rem 0; }
  @media (min-width: 992px) {
    .image-content-grid-four {
      max-width: 1400px;
      margin: 0 auto;
      padding: 4rem 2rem; } }
  .image-content-grid-four .images {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem; }
    @media (min-width: 992px) {
      .image-content-grid-four .images {
        grid-template-columns: repeat(12, 1fr);
        grid-gap: 0; } }
    .image-content-grid-four .images .image {
      width: 100%;
      overflow: hidden; }
      .image-content-grid-four .images .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .image-content-grid-four .images .image:nth-child(1) {
        height: 300px;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px; }
        @media (min-width: 992px) {
          .image-content-grid-four .images .image:nth-child(1) {
            grid-column: 8/13;
            border-radius: 8px;
            height: 350px; } }
      .image-content-grid-four .images .image:nth-child(2) {
        height: 300px;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        margin-top: 3rem; }
        @media (min-width: 992px) {
          .image-content-grid-four .images .image:nth-child(2) {
            grid-column: 2/6;
            border-radius: 8px;
            height: 250px; } }
      .image-content-grid-four .images .image:nth-child(3) {
        display: none; }
        @media (min-width: 992px) {
          .image-content-grid-four .images .image:nth-child(3) {
            grid-column: 1/7;
            border-radius: 8px;
            display: block;
            height: 350px;
            margin-top: 4rem; } }
      .image-content-grid-four .images .image:nth-child(4) {
        display: none; }
        @media (min-width: 992px) {
          .image-content-grid-four .images .image:nth-child(4) {
            display: block;
            grid-column: 9/12;
            height: 500px;
            margin-top: -10rem;
            border-radius: 8px; } }
  .image-content-grid-four .content {
    grid-column: 1/3;
    padding: 0 2rem; }
    @media (min-width: 992px) {
      .image-content-grid-four .content {
        grid-column: 1/7;
        grid-row: 1/2;
        padding: 2rem 0 0 0; } }

.empty-pad {
  padding-top: 12rem;
  display: block; }

#mc_embed_signup_scroll {
  display: flex;
  flex-wrap: wrap; }
  #mc_embed_signup_scroll .mc-field-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    margin-bottom: 2rem; }
    #mc_embed_signup_scroll .mc-field-group label {
      font-size: 0.9rem;
      margin-bottom: 0.5rem; }
    #mc_embed_signup_scroll .mc-field-group input[type='text'], #mc_embed_signup_scroll .mc-field-group input[type='email'] {
      height: 40px;
      border: 1px solid #e6e7e8;
      background: #f9f9f9;
      border-radius: 4px;
      font-size: 1rem;
      padding: 0.5rem; }
    @media (min-width: 576px) {
      #mc_embed_signup_scroll .mc-field-group:nth-child(1), #mc_embed_signup_scroll .mc-field-group:nth-child(2) {
        width: 50%; } }
  #mc_embed_signup_scroll .content__gdprLegal {
    padding: 0 1rem; }
    #mc_embed_signup_scroll .content__gdprLegal p {
      font-size: 0.8rem;
      line-height: 1rem; }

#mc-embedded-subscribe-form .clear {
  padding: 0 1rem;
  margin-top: 2rem; }

#mc-embedded-subscribe {
  appearance: none;
  background: #bd9b60;
  border: 0;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: .3s; }
  #mc-embedded-subscribe:hover, #mc-embedded-subscribe:focus {
    background: #00003d;
    color: #FFF; }

.big-image {
  width: 100%;
  height: 600px;
  position: relative; }
  @media (min-width: 800px) {
    .big-image {
      height: 700px; } }
  .big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .big-image .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem; }
    .big-image .overlay h2 {
      width: 100%;
      max-width: 600px;
      color: #FFF;
      font-size: 2rem;
      padding: 0;
      margin: 0; }

.no-grey {
  background: none; }

@media (min-width: 992px) {
  .gold-box-top {
    margin: 8rem 0; } }

.image-content-grid-new {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  position: relative; }
  @media (min-width: 576px) {
    .image-content-grid-new {
      padding: 4rem 0; } }
  @media (min-width: 992px) {
    .image-content-grid-new {
      flex-direction: row-reverse;
      padding: 0;
      margin: 0 auto;
      margin-top: 8rem;
      margin-bottom: 8rem; } }
  @media (min-width: 1401px) {
    .image-content-grid-new {
      padding: 0 2rem; } }
  .image-content-grid-new .images {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    @media (min-width: 992px) {
      .image-content-grid-new .images {
        width: 60%;
        padding-left: 4rem; } }
    .image-content-grid-new .images .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .image-content-grid-new .images .image:nth-child(1) {
      width: 100%;
      height: 350px;
      overflow: hidden;
      border-radius: 8px; }
      @media (min-width: 576px) {
        .image-content-grid-new .images .image:nth-child(1) {
          width: 50%;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; } }
      @media (min-width: 992px) {
        .image-content-grid-new .images .image:nth-child(1) {
          width: 70%;
          max-width: 350px;
          height: 250px;
          border-radius: 8px; } }
    .image-content-grid-new .images .image:nth-child(2) {
      display: none; }
      @media (min-width: 576px) {
        .image-content-grid-new .images .image:nth-child(2) {
          width: 40%;
          margin-left: 10%;
          border-top-left-radius: 8px;
          border-bottom-left-radius: 8px;
          height: 450px;
          margin-top: 4rem;
          display: flex;
          overflow: hidden; } }
      @media (min-width: 992px) {
        .image-content-grid-new .images .image:nth-child(2) {
          width: 100%;
          margin-left: 0; } }
      @media (min-width: 1401px) {
        .image-content-grid-new .images .image:nth-child(2) {
          border-radius: 8px; } }
    .image-content-grid-new .images .image:nth-child(3) {
      display: none; }
      @media (min-width: 992px) {
        .image-content-grid-new .images .image:nth-child(3) {
          display: flex;
          position: absolute;
          width: 400px;
          height: 300px;
          bottom: 4rem;
          left: 2rem;
          border-radius: 8px;
          overflow: hidden; } }
  .image-content-grid-new .content {
    width: 100%; }
    @media (min-width: 576px) {
      .image-content-grid-new .content {
        padding: 2rem; } }
    @media (min-width: 992px) {
      .image-content-grid-new .content {
        width: 40%; } }
    @media (min-width: 1401px) {
      .image-content-grid-new .content {
        padding: 0; } }

@media (min-width: 992px) {
  .food-block {
    padding: 8rem 4rem; } }

.logo-bar {
  width: 100%;
  background: #e6e7e8;
  padding: 2rem 0;
  margin-top: 6rem; }
  .logo-bar .container {
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto; }
    @media (min-width: 800px) {
      .logo-bar .container {
        flex-direction: row-reverse; } }
    .logo-bar .container .image {
      width: 100%;
      height: auto;
      text-align: center; }
      @media (min-width: 800px) {
        .logo-bar .container .image {
          width: 50%;
          padding-left: 0;
          display: flex;
          justify-content: flex-end;
          align-items: center; } }
      .logo-bar .container .image img {
        width: 100%;
        max-width: 250px;
        height: auto; }
    .logo-bar .container .text {
      width: 100%; }
      @media (min-width: 800px) {
        .logo-bar .container .text {
          width: 50%;
          padding-right: 3rem;
          display: flex;
          align-items: center;
          justify-content: center; } }

.full-image-block {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 992px) {
    .full-image-block {
      margin: 14rem 0; } }
  .full-image-block .image {
    width: 100%;
    height: 500px; }
    @media (min-width: 992px) {
      .full-image-block .image {
        width: 50%;
        height: 700px; } }
    .full-image-block .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .full-image-block .content {
    width: 100%;
    background: #00003d;
    padding: 4rem; }
    @media (min-width: 992px) {
      .full-image-block .content {
        width: 50%;
        background: #000;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center; } }
    .full-image-block .content h2 {
      color: #FFF;
      padding: 0;
      margin: 0; }
    .full-image-block .content p {
      color: #FFF; }
      .full-image-block .content p:last-child {
        margin-bottom: 0;
        padding-bottom: 0; }
  @media (min-width: 992px) {
    .full-image-block .topimage {
      position: absolute;
      top: -10rem;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 100%;
      max-width: 450px;
      height: 300px;
      border-radius: 8px;
      overflow: hidden; }
      .full-image-block .topimage img {
        width: 100%;
        height: 100%;
        object-fit: cover; } }
  @media (min-width: 992px) {
    .full-image-block .bottomimage {
      position: absolute;
      bottom: -8rem;
      left: 20rem;
      width: 100%;
      max-width: 300px;
      height: 450px;
      border-radius: 8px;
      overflow: hidden; }
      .full-image-block .bottomimage img {
        width: 100%;
        height: 100%;
        object-fit: cover; } }

.solo-tab {
  padding-top: 4rem; }
  @media (min-width: 800px) {
    .solo-tab {
      padding-top: 0; } }

.cruise-main.hide {
  display: none; }

.cruise-3-night {
  height: 0;
  overflow: hidden; }
  .cruise-3-night.active {
    height: auto; }

.cruise-6-night {
  height: 0;
  overflow: hidden; }
  .cruise-6-night.active {
    height: auto; }

.cruise-10-night {
  height: 0;
  overflow: hidden; }
  .cruise-10-night.active {
    height: auto; }

.vessel-massan {
  height: 0;
  overflow: hidden; }
  .vessel-massan.active {
    height: auto; }

.vessel-tarsan {
  height: 0;
  overflow: hidden; }
  .vessel-tarsan.active {
    height: auto; }

.vessel-etive {
  height: 0;
  overflow: hidden; }
  .vessel-etive.active {
    height: auto; }

.vessel-shiel {
  height: 0;
  overflow: hidden; }
  .vessel-shiel.active {
    height: auto; }

.xt-cruise-dates td, .xt-availability-table td {
  word-break: break-word; }

.xt-cruise-dates th, .xt-availability-table th {
  color: #00003d !important; }

.no-image-header {
  background: #00003d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem; }
  .no-image-header h1 {
    font-size: 2rem;
    color: #FFF;
    opacity: 0;
    transform: translate(1rem);
    animation: fadeup 1s ease;
    animation-delay: .3s;
    animation-fill-mode: forwards; }
    @media (min-width: 800px) {
      .no-image-header h1 {
        font-size: 2.5rem; } }

.xt-check-availability-form select {
  width: auto;
  padding: 0.3rem 0.5rem;
  border: 1px solid #00003d;
  border-radius: 8px;
  background: url("/wp-content/uploads/2025/09/down-arrow-black.png");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 95% 50%;
  font-size: 1.1rem;
  color: #00003d;
  appearance: none;
  cursor: pointer;
  transition: border 0.3s, box-shadow 0.3s;
  margin: 0 0.5rem;
  position: relative; }

.xt-check-availability-submit {
  appearance: none !important;
  background: #bd9b60 !important;
  font-size: 1.1rem;
  height: 34px;
  cursor: pointer; }
  .xt-check-availability-submit:hover, .xt-check-availability-submit:focus {
    background: #00003d !important;
    color: #bd9b60 !important; }

.xt-filter-row {
  flex-wrap: wrap;
  gap: 0 !important; }
  .xt-filter-row .xt-filter-item {
    width: 100%;
    padding: 0.5rem; }
    @media (min-width: 576px) {
      .xt-filter-row .xt-filter-item {
        width: 50%; } }
    .xt-filter-row .xt-filter-item select {
      margin: 0; }

@media (min-width: 800px) {
  .xt-filter-row-bottom .xt-filter-item {
    width: 25% !important; } }

/*# sourceMappingURL=style.css.map */
