/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  overflow-x: hidden;
}

a {
  color: #652d92;
}

a:hover {
  color: #f26628;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

.cursive {
  font-family: 'Great Vibes';
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f26628;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #652d92;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #f26628;
  color: #fff;
}

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #f0f0f0;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  border-bottom: solid 1px #ddd;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #f26628;
}

#topbar .contact-info i {
  color: #f26628;
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #f26628;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #652d92;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #2c4964;
}

#header .logo img {
  max-height: 80px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #2c4964;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  padding: 5px 2px;
  border-bottom: 2px solid #fff;
  font-weight: 600;;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #f26628;
  border-color: #f26628;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #f26628;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.appointment-btn {
  margin-left: 25px;
  background: #652d92;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #f26628;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 40px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #652d92;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2c4964;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #652d92;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #FFF;
  font-size: 14px;
  background: #391358;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #652d92;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #FFF;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #FFF;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #FFF;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #f26628;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #FFF;
  color: #652d92;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #f26628;
  color: #fff;
  text-decoration: none;
}

.h-40 {
  height: 40% !important;
}

/*** Section Title ***/
.section-title, .section-title-white {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: #f26628;
}

.section-title-left-none::before {
    position: unset;
}

.text-white{
    color: #fff !important;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: #f26628;
}

.section-title-white::before {
    background: #FFF;
}

.section-title-white::after {
    background: #FFF;
}

.orange {
  color: #f26628 !important;
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}

.text-start {
  text-align: left !important;
}
.text-end {
  text-align: right !important;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.fw-normal {
    font-weight: 400 !important;
}
.fw-bold {
    font-weight: 700 !important;
}
.fw-semibold {
    font-weight: 600 !important;
}
.fw-bolder {
    font-weight: bolder !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}
.start-0 {
  left: 0 !important;
}
.top-100 {
  top: 100% !important;
}

.cuise-label {
  position: relative;
  top: -15px;
  border-radius: 0.25rem;
  padding: 0.25rem 1rem;
  color: #fff;
}
.cuise-label:hover {
  color: #fff;
}

/* destination */

.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(101, 45, 146, 0.14);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}

/* hero-inner page  */

/* #hero-inner {
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;       
}

#hero-inner {
  padding-top: 300px;  
}

#hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  z-index: 1;
}

#hero-inner h1,
#hero-inner h2 {
  position: relative;
  z-index: 2;
}

#hero-inner h1 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 500;
  text-align: center;
}

#hero-inner h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 400;
  text-align: center; }*/





/* HERO INNER BASE */
#hero-inner {
  width: 100%;
  height: 60vh;                  /* Default height */
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 300px;
}

/* Overlay */
#hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  z-index: 1;
}

/* Content Position */
#hero-inner .inner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  transform: translateY(40px);   /* Moves text slightly downward */
  padding: 0 20px;
}

/* Headings */
#hero-inner h1 {
  font-family: 'Great Vibes';
  color: #fff;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 500;
  text-align: center;
}

#hero-inner h2 {  
  color: #fff;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

#hero-inner h1,
#hero-inner h2 {
  position: relative;
  z-index: 2;
}


/* Large Desktop */
@media (min-width: 1400px) {
  #hero-inner {
    height: 65vh;
  }
}

/* Tablet */
@media (max-width: 991px) {
  #hero-inner {
    height: 50vh;
  }

  #hero-inner h1 {
    font-size: 42px;
  }

  #hero-inner h2 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #hero-inner {
    height: 40vh;
  }

  #hero-inner .inner-content {
    transform: translateY(20px);
  }

  #hero-inner h1 {
    font-size: 28px;
  }

  #hero-inner h2 {
    font-size: 18px;
  }
}





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, rgb(42, 44, 57) 0%, rgb(51, 54, 74) 100%);
  padding: 0;
  /* height: calc(100vh - 10px);  */
  /* height: 90vh; */
}

/* #hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
} */

#hero .carousel-container {
  display: flex;
  justify-content: flex-end;   /* push to bottom */
  align-items: center;         /* keep horizontally centered */
  flex-direction: column;
  text-align: center;
  padding-bottom: 120px;        /* space from bottom */
  height: 100%;
}

#hero h2,
#hero p {
  max-width: 600px;
}

#hero .carousel-item {
  /* height: 70vh; */
  /* min-height: 100vh; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  top: 150px;
}

#hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
}

/* Desktop */
#hero,
#hero .carousel-item,
#hero .carousel-container {
  height: 90vh;
  top: 0;
}

/* Large Desktop */
@media (min-width: 1400px) {
  #hero,
  #hero .carousel-item,
  #hero .carousel-container {
    height: 90vh;
  }
}

/* Normal Desktop */
@media (min-width: 1200px) and (max-width: 1399px) {
  #hero,
  #hero .carousel-item,
  #hero .carousel-container {
    height: 45vh;
  }
}

/* Laptop / Tablet Landscape */
@media (min-width: 992px) and (max-width: 1199px) {
  #hero,
  #hero .carousel-item,
  #hero .carousel-container {
    height: 40vh;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  #hero,
  #hero .carousel-item,
  #hero .carousel-container {
    height: 40vh;
  }
}

/* Mobile */
@media (max-width: 767px) {
  #hero,
  #hero .carousel-item,
  #hero .carousel-container {
    height: 65vh;
  }
}

#hero .carousel-item {
  background-size: cover;
  background-position: center center;
}

@media (max-width: 768px) {
  #hero .carousel-item {
    background-position: center top;
  }

  #hero .carousel-container {
    align-items: center;
    text-align: center;
    padding: 0 20px 60px 20px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 24px;
  }

  #hero p {
    width: 95%;
    font-size: 14px;
  }

  #hero .btn-get-started {
    padding: 10px 24px;
    font-size: 13px;
  }
}

#hero .carousel-container {
  padding: 0 20px;
}

#hero h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #ef6603;
}

#hero .btn-get-started:hover {
  background: #ef6603;
  color: #fff;
  text-decoration: none;
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  z-index: 9;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/* Initial state (hidden & slightly down) */
#hero .carousel-item h2,
#hero .carousel-item p,
#hero .carousel-item .btn-get-started {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* When slide becomes active */
#hero .carousel-item.active h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

#hero .carousel-item.active p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

#hero .carousel-item.active .btn-get-started {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

/* all page hero bg  */

.hero-about {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/kontiki/bg_kontiki.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-contact {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/bg_contact.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-inquiry {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/bg_inquiry.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-kontiki {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/kontiki/bg_kontiki.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-moondance {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/moondance/bg_moondance.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-sindbad {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/sindbad/bg_sindbad.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-kontiki-itineraries {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/kontiki/bg_kontiki-Itineraries.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-moondance-itineraries {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/moondance/bg_moondance-Itineraries.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-sindbad-itineraries {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/sindbad/bg_sindbad-Itineraries.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-kontiki-accommodation {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/kontiki/bg_kontiki-accomodation.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-moondance-accommodation {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/moondance/bg_moondance-accomodation.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-sindbad-accommodation {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/sindbad/bg_sindbad-accomodation.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-about {
  position: relative;
  width: 100%;
  height: 500px !important;
  background: url("../img/bg_about.jpg") top center !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-offer {
    background: linear-gradient(rgba(43, 40, 37, 0.8), rgba(43, 40, 37, 0.8)) 0% 0% / cover, url(../img/bg_offer.jpg) center center no-repeat;
}


/* kontiki mail page */

.ch-grid {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
}

.ch-grid:after,
.ch-item:before {
	content: '';
    display: table;
}

.ch-grid:after {
	clear: both;
}

.ch-grid li {
	width: 280px;
	height: 300px;
	display: inline-block;
	margin: 15px;
}

.ch-item {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	position: relative;
	cursor: default;
	box-shadow: 
		inset 0 0 0 0 rgba(75, 27, 143, 0.4),
		inset 0 0 0 16px rgba(255,255,255,0.6),
		0 1px 2px rgba(0,0,0,0.1);
		
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.ch-img-1 { 
	background-image: url(../img/kontiki/presidential-suites.jpg);
}

.ch-img-2 { 
	background-image: url(../img/kontiki/Queen-Suites.jpg);
}

.ch-img-22 { 
	background-image: url(../img/kontiki/Junior-suites.jpg);
}

.ch-img-3 { 
	background-image: url(../img/kontiki/Double-Cabins.jpg);
}

.ch-img-4 { 
	background-image: url(../img/moondance/suites-deck.jpg);
}

.ch-img-5 { 
	background-image: url(../img/moondance/twin-cabins.jpg);
}

.ch-img-6 { 
	background-image: url(../img/sindbad/suites-king.jpg);
}

.ch-img-7 { 
	background-image: url(../img/sindbad/suites-double.jpg);
}

.ch-info {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0;
	
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	
	-webkit-backface-visibility: hidden; /*for a smooth font */

}

.ch-info h3 {
	color: #fff;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 2px;
	font-size: 22px;
	margin: 0 30px;
	padding: 65px 0 0 0;
	height: 110px;
	text-shadow: 
		0 0 1px #fff, 
		0 1px 2px rgba(0,0,0,0.3);
}

.ch-info p {
	color: #fff;
	padding: 10px 5px;
	font-style: italic;
	margin: 0 30px;
	font-size: 12px;
	border-top: 1px solid rgba(255,255,255,0.5);
}

.ch-info p a {
	display: block;
	color: #fff;
	color: rgba(255,255,255,0.7);
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 9px;
	letter-spacing: 1px;
	padding-top: 4px;
	font-family: 'Open Sans', Arial, sans-serif;
}


.ch-item:hover {
	box-shadow: 
		inset 0 0 0 210px rgba(75, 27, 143, 0.4),
		inset 0 0 0 16px rgba(255,255,255,0.8),
		0 1px 2px rgba(0,0,0,0.1);
}

.ch-item:hover .ch-info {
	opacity: 1;
	
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);	
}

.bg-pattern {
  background-image: url("../img/bg.jpg");
  background-repeat: repeat;
  background-size: auto;
}

/*--
    blog Start
--*/
#blog {
  padding-top: 75px;
  padding-bottom: 100px;
  background: url("../img/dining/kontiki/kontiki-dining-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1 ;
}

.blog-moondance {
  padding-top: 75px;
  padding-bottom: 100px;
  background: url("../img/dining/moondance/moondance-bg-dining.jpg") !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1 ;
}

.blog-sindbad {
  padding-top: 75px;
  padding-bottom: 100px;
  background: url("../img/dining/sindbad/sindbad-bg-dining.jpg") !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1 ;
}

#blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust 0.5 for opacity */
  z-index: -1;
}

/* #blog:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/overlay-pattern.png") #000000;
  opacity: 0.3;
} */

#blog .block .heading {
  color: #fff;
}
#blog .block ul {
  padding-top: 40px;
}
#blog .block ul li {
  overflow: hidden;
  width: 50%;
  float: left;
  background: #fff;
  text-align: center;
  color: #959595;
  transform: 1s;
}
#blog .block ul li:hover img {
  transform: scale(1.2) rotate(10deg);
}
#blog .block ul li h3 {
  color: #652D92;
  padding: 0px 40px 20px;
  line-height: 26px;
  position: relative;
}
#blog .block ul li h3:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90px;
  height: 2px;
  background: #F26628;
  margin-left: -45px;
}
#blog .block ul li p {
  padding-top: 25px;
}
#blog .block ul li .blog-img {
  float: left;
  width: 50%;
  height: 100%;
  background: red;
  overflow: hidden;
}
#blog .block ul li .blog-img img {
  -webkit-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
#blog .block ul li .blog-img-2 {
  width: 50%;
  float: right;
  overflow: hidden;
}
#blog .block ul li .blog-img-2 img {
  -webkit-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  width: 100%;
}
#blog .block ul li .content-right {
  padding: 40px 35px 23px;
  font-size: 16px;
  line-height: 26px;
  float: right;
  width: 50%;
  height: 100%;
  position: relative;
}
#blog .block ul li .content-right:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background: #fff;
  transform: rotate(45deg);
  margin-left: -15px;
}
#blog .block ul li .content-left {
  padding: 40px 35px 23px;
  width: 50%;
  height: 100%;
  float: left;
  position: relative;
  z-index: 999;
}
#blog .block ul li .content-left:after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: 0px;
  background: #fff;
  transform: rotate(45deg);
}
#blog .block .btn-more-info {
  float: right;
  padding: 28px 102.5px;
  border-radius: 0px;
  background: #ff530a;
  color: #fff;
  border: 1px solid transparent ;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
}
#blog .block .btn-more-info:hover {
  background: transparent;
  color: #ff530a;
  border: 1px solid #ff530a;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #blog .block {
    text-align: center;
  }
  #blog .block ul {
    padding-bottom: 40px;
  }
  #blog .block ul li {
    width: 100%;
  }
  #blog .block ul li h3 {
    padding: 0px 0px 30px;
  }
  #blog .block ul li .blog-img {
    width: 50%;
  }
  #blog .block ul li .blog-img img {
    width: 100%;
  }
  #blog .block ul li .blog-img-2 {
    width: 50%;
  }
  #blog .block ul li .blog-img-2 img {
    width: 100%;
  }
  #blog .block ul li .content-left {
    padding: 40px 20px 0;
  }
  #blog .block ul li .content-right {
    padding: 40px 20px 0;
  }
  #blog .block .btn-more-info {
    float: none;
    margin-top: 30px;
  }
  #blog .block .btn-more-info:hover {
    border-radius: 10px;
  }
}

@media only screen and (max-width: 767px) {
  #blog .block ul {
    padding-bottom: 30px;
  }
  #blog .block ul li {
    float: none;
    width: 100%;
    height: 100%;
  }
  #blog .block ul li .blog-img {
    float: none;
    width: 100%;
  }
  #blog .block ul li .blog-img img {
    width: 100%;
  }
  #blog .block ul li .blog-img-2 {
    float: none;
    width: 100%;
  }
  #blog .block ul li .blog-img-2 img {
    width: 100%;
  }
  #blog .block ul li .content-right {
    float: none;
    width: 100%;
    padding: 20px 35px;
  }
  #blog .block ul li .content-right:after {
    display: none;
  }
  #blog .block ul li .content-left {
    float: none;
    width: 100%;
    padding: 20px 35px;
  }
  #blog .block ul li .content-left:after {
    display: none;
  }
  #blog .block .btn-more-info {
    float: none;
    margin-top: 30px;
    padding: 28px 85px;
  }
  #blog .block .btn-more-info:hover {
    border-radius: 10px;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .owl-nav, .gallery .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.gallery .owl-item {
  border-left: 15px solid #ffffff00;
  border-right: 15px solid #ffffff00;
}

.gallery .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #652d923f !important;
}

.gallery .owl-dot.active {
  background-color: #652d92 !important;
}

.gallery .gallery-carousel .owl-stage-outer {
  overflow: visible;
}

.gallery .gallery-carousel .center {
  border: 6px solid #652d92;
  margin: -10px;
  box-sizing: content-box;
  padding: 4px;
  /* background: #fff; */
  z-index: 1;
  border-radius: 10px;
}

.owl-carousel .owl-item img {
  border-radius: 15px;
}

.border-end {
    border-right: 1px solid #dee2e6 !important;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .content {
  padding: 30px 0;
}

.about-us .content h3 {
  font-weight: 700;
  font-size: 34px;
}

.about-us .content p {
  margin-bottom: 0;
}

.about-us .content .icon-box {
  margin-top: 25px;
}

.about-us .content .icon-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.about-us .content .icon-box i {
  font-size: 35px;
  float: left;
  color: #652d92;
}

.about-us .content .icon-box p {
  font-size: 15px;
  color: #90847f;
  margin-left: 60px;
}

.about-us .image {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .about-us .image {
    text-align: center;
  }
  .about-us .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .about-us .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #f26628;
  float: left;
  width: 44px;
  height: 44px;
  background: #ffeee8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2b2320;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #65534c;
}

.contact .info:hover i {
  background: #f26628;
  color: #fff;
}

.contact .info a {
  color: #65534c;
}

.contact .info a:hover {
  color: #f26628;
}

.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #f26628;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #f26628;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* mail form */
.form_main .form_inp_full {
    width: 100%;
    float: left;
}
.form_main .form_inp_full .form_inp_1 {
    width: 50%;
    float: left;
}
/* .form_main .form_inp_full .form_inp_1 label {
    width: 100%;
    float: left;
    margin: 0 0 5px 0;
}
.form_main .form_inp_full .form_inp_1 input {
    width: 90%;
    padding: 5px;
    margin: 0 0 10px 0;
    border-radius: 4px;
    border: solid 1px #ccc;
} */

.form_main input, .form_main select, .form_main input, .form_main textarea {
  padding: 5px;
  margin: 0 0 10px 0;
  border-radius: 4px;
  border: solid 1px #ccc;
  float: left;
  display: flex;
  width: -webkit-fill-available;
  color: #9f9f9f;
}

.form-control::placeholder {
  color: #9f9f9f;
  opacity: 1;
}

.form_main label {
  float: left;
  margin: 0 0 5px 0;
  display: flex;
  width: -webkit-fill-available;
  font-size: 14px;
}

.form_main .form_inp_full .form_inp_1 select {
    width: 94%;
    padding: 5px;
    margin: 0 0 10px 0;
}
.form_main .form_inp_full .form_inp_1 textarea {
    width: 91%;
    padding: 5px;
    margin: 0 0 10px 0;
}
.form_main .form_inp_full button {
    padding: 10px 20px;
    background: #333;
    border: none;
    color: #fff;
    cursor: pointer;
}