@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-color: #04a6eb;
  --secondary-color: #ef5350;
  --dark-color: #1f2933;
  --primary-hover-color: #008bc5;
  --orange-color: #ef5350;
  --black-color: #000;
  --white-color: #ffffff;
  --gray-color: #f2f2f2;
  --primary-font: 'Poppins', sans-serif;
  --transition: ease all 0.6s;
  --bs-border-color: #f2f2f2;
}

body {
  font-size: 15px;
  font-family: var(--primary-font);
  color: var(--dark-color);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.5;
}

p:last-child {
  margin-bottom: 0;
}

.accessibility {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.accessibility:focus {
  position: static;
  width: auto;
  height: auto;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-holder {
  flex-grow: 1;
}

figure {
  margin-bottom: 0;
}

.block {
  padding: 50px 0;
}

.sm-body-text {
  font-size: 15px;
}

.md-body-text {
  font-size: 16px;
}

.lg-body-text {
  font-size: 17px;
}

.section-head {
  margin-bottom: 40px;
}

.section-title {
  color: var(--dark-color);
  font-size: 30px;
  margin-bottom: 10px;
}

.rounded {
  border-radius: 15px !important;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li:before {
  content: '\f00c';
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Fontawesome';
  color: var(--secondary-color);
}

.single-content ul {
  margin-bottom: 20px;
}

.bullet-list,
.bullet-list ul,
.single-content ul {
  list-style: disc;
  padding-left: 17px;
}

.bullet-list li,
.check-list li {
  margin-bottom: 5px;
}

.bullet-list li::marker,
.single-content ul li::marker {
  font-size: 25px;
  line-height: 1;
  color: var(--primary-color);
}

.bullet-list li:last-child,
.check-list li:last-child {
  margin-bottom: 0;
}

.bullet-list ul li::marker,
.single-content ul li::marker {
  font-size: 16px;
}

.bullet-list ul li {
  margin-bottom: 2px;
}
.bullet-list ul li:last-child {
  margin-bottom: 10px;
}

.sticky {
  position: sticky;
  top: 100px;
}

.view-link svg {
  font-size: 12px;
}

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

.view-link:hover {
  color: var(--secondary-color);
}

.view-link svg {
  font-size: 12px;
  transition: var(--transition);
}

.view-link:hover svg {
  transform: translateX(5px);
}

.card {
  border: none;
  border-radius: 25px;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(184, 38, 49, 0.06);
}

.card.hover-shadow-card:hover {
  border-color: transparent;
  box-shadow: 8px 0 35px rgba(184, 38, 49, 0.15);
}

.card-body {
  padding: 30px;
}

.card-body .icon {
  margin-bottom: 30px;
}

.card-body .icon img {
  height: 60px;
  object-fit: contain;
}

.card-body h3 {
  font-size: 20px;
}

.sticky-section {
  position: sticky;
  top: 100px;
}

/* ---------------------
Colors
--------------------- */

.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.table-primary {
  --bs-table-bg: var(--primary-color) !important;
  --bs-table-color: var(--white-color);
}

.table-secondary {
  --bs-table-bg: var(--secondary-color) !important;
  --bs-table-color: var(--white-color);
}

.table > :not(caption) > * > * {
  padding: 15px;
}

/* ---------------------
Forms
--------------------- */

input[type='text'],
input[type='email'],
input[type='password'],
input[type='file'],
select {
  height: 50px;
  border-radius: 0 !important;
}

textarea {
  height: 100px;
  border-radius: 0 !important;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
input[type='file'],
textarea,
textarea.form-control {
  padding-left: 20px;
  border-color: #d0d0d0;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  color: var(--white-color);
  border-radius: 50%;
  background-color: var(--primary-color);
  z-index: 5;
  background-image: none;
  opacity: 1;
}

.btn-close:hover {
  color: var(--white-color);
  opacity: 1;
}

/* ---------------------
Buttons
--------------------- */
.btn {
  position: relative;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  transition: var(--transition);
}

.btn-lg {
  font-size: 16px;
  font-weight: 500;
  padding-top: 13px;
  padding-bottom: 13px;
}

.btn .fa-arrow-right {
  font-size: 14px;
  transition: var(--transition);
}

.btn:hover .fa-arrow-right {
  transform: translateX(5px);
}

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

.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary,
.btn-secondary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-light {
  color: var(--dark-color);
  background-color: var(--white-color);
  border-color: var(--white-color);
}

.btn:after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(
    to bottom,
    rgba(229, 172, 142, 0),
    rgba(255, 255, 255, 0.4) 50%,
    rgba(229, 172, 142, 0)
  );
  transform: rotateZ(60deg) translate(-5em, 10em);
}
/*This activates the sheen once the button has been hovered*/
.btn:hover::after {
  animation: sheen 1.5s forwards;
}
@keyframes sheen {
  100% {
    transform: rotateZ(60deg) translate(1em, -9em);
  }
}

/* Swiper Button */

.swiper-button-next,
.swiper-button-prev {
  top: unset;
  bottom: -0;
  width: auto;
  height: 10px;
}

.swiper-button-next {
  right: unset;
  left: 40px;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: var(--secondary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: 'Fontawesome';
  font-size: 14px;
  color: var(--black-color);
}

.swiper-button-prev:after {
  content: '\f060';
}

.swiper-button-next:after {
  content: '\f061';
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 20px;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  width: 50px;
  opacity: 1;
}

/* ---------------------
Page Banner
--------------------- */

.page-banner {
  position: relative;
  isolation: isolate;
  text-align: center;
  color: var(--white-color);
}

.page-banner.overlay figure {
  position: relative;
}

.page-banner.overlay figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,000000+100&0+0,0.9+100 */
  background: linear-gradient(
    to bottom,
    rgba(30, 87, 153, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.page-banner .banner-img img {
  width: 100%;
}

.page-head {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  padding: 50px 10px;
}

.page-banner h1 {
  font-size: 38px;
  margin-bottom: 0;
}

.breadcrumb-wrap {
  background-color: #fffaec;
  padding: 8px 0;
}

.breadcrumb {
  margin-bottom: 0;
}

.single-post .breadcrumb {
  justify-content: flex-start;
  padding: 15px 0;
  font-weight: 400;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '\f105';
  font-family: 'Fontawesome';
  font-size: 12px;
  margin-top: 3px;
}

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

.breadcrumb-item a {
  color: var(--dark-color);
}

.woocommerce-breadcrumb {
  color: var(--primary-color);
  padding: 30px 0;
}

.woocommerce-breadcrumb a {
  color: var(--dark-color);
}

/* ---------------------
Header
--------------------- */

/* Header Top */
.header-top {
  padding: 13px 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00a8ec+0,e83e8c+100 */
  background: linear-gradient(
    to right,
    rgba(0, 168, 236, 1) 0%,
    rgba(232, 62, 140, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.header-top * {
  color: var(--white-color);
}

/* Header Main*/

.header-main {
  padding: 10px 0;
}

.site-logo {
  width: 150px;
}

.offcanvas-body {
  padding: 0;
}

.slicknav_menu {
  padding: 0;
}
.slicknav_nav .slicknav_row,
.slicknav_nav li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
  color: var(--white-color);
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f26317+0,fd8b28+100 */
  background: linear-gradient(
    to right,
    rgba(242, 99, 23, 1) 0%,
    rgba(253, 139, 40, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-radius: 0;
}

.slicknav_nav .slicknav_row:hover a {
  color: var(--white-color);
}

.slicknav_nav .slicknav_row:hover > a {
  background-color: transparent;
}

.main-navigation {
  display: none;
  font-family: var(--primary-font);
  width: auto;
}

.main-navigation ul.menu > li {
  margin-right: 25px;
}

.main-navigation ul.menu > li:last-child {
  margin-right: 0;
}

.main-navigation a {
  font-size: 16px;
  font-weight: 500;
}

.current_page_item > a,
.menu-item > a:hover {
  color: var(--primary-color);
}

.slicknav_menu {
  background-color: transparent;
}

.slicknav_nav a {
  color: var(--dark-color);
}

.si-wrap a {
  margin-right: 15px;
}

.si-wrap a:last-child {
  margin-right: 0;
}

.si-wrap a:hover {
  color: var(--primary-color);
}

.banner-slider .swiper-slide img {
  width: 100%;
}

/* -------------------------------------------------------
                  Package Card
------------------------------------------------------- */

.package-card {
  background-color: #f7f7f7;
  border-radius: 5px;
}

.package-card .package-card-body {
  padding: 15px;
}
.package-card.horizontal {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: transparent;
}

.package-card.horizontal figure {
  flex: 30%;
}

.package-card figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
}

.package-card.horizontal .package-card-body {
  flex: 70%;
  padding: 0;
}

.package-card .package-card-body .card-title {
  font-size: 18px;
  margin-bottom: 15px;
}

.package-card .package-card-body .card-title a:hover {
  color: var(--primary-color);
}

.package-card .package-card-body .meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 12px;
}

.package-card .package-card-body .meta-tags .meta-item {
  display: flex;
  align-items: center;
  width: calc(50% - 10px);
  box-sizing: border-box;
}

.package-card .package-card-body .meta-tags .meta-item .icon {
  color: var(--primary-color);
  float: left;
  margin-right: 8px;
}

.package-card .package-card-body .meta-tags .meta-item p {
  display: block;
  overflow: hidden;
}

.package-card .package-card-body .package-price {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 600;
}

.package-card .package-card-body .package-price span {
  color: #6b7280;
  font-size: 16px;
  font-weight: 400;
}

/* -------------------------------------------------------
                  Destination Card
------------------------------------------------------- */

.destination-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.destination-card figure {
  position: relative;
}

.destination-card figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.destination-card figure img {
  width: 100%;
}

.destination-card-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  padding: 15px;
  text-align: center;
  color: var(--white-color);
}

.destination-card-body .card-title {
  font-weight: 600;
  margin-bottom: 10px;
}

/* -------------------------------------------------------
                  Blog Card
------------------------------------------------------- */

.blog-card figure {
  position: relative;
}

.blog-card figure .post-date {
  position: absolute;
  top: 15px;
  right: 0;
  padding: 5px 20px;
  color: var(--white-color);
  font-weight: 500;
  background-color: var(--primary-color);
  border-radius: 5px 0 0 5px;
}

.blog-card figure img {
  width: 100%;
  aspect-ratio: 67 / 46;
  object-fit: cover;
  border-radius: 8px;
}

.blog-card .blog-card-body {
  padding: 15px 0;
}

.blog-card .blog-card-body .title {
  font-size: 18px;
  font-weight: 600;
}

.blog-card .blog-card-body p {
  color: #4c4c4c;
}

.cruise-package-section {
  background-color: #f7fdff;
}

.counter-wrap {
  display: flex;
  flex-wrap: wrap;
}

.counter-wrap .half-card {
  width: 50%;
}

.counter-wrap .full-card {
  width: 100%;
}

.counter-wrap .half-card,
.counter-wrap .full-card {
  padding: 7px;
}

.counter-wrap .half-card .card-inner,
.counter-wrap .full-card .card-inner {
  border-radius: 8px;
}

.counter-wrap .half-card .card-inner {
  padding: 30px;
}

.counter-wrap .full-card .card-inner {
  padding: 40px 30px;
}

.counter-wrap .half-card .card-inner {
  background-color: #f2f2f2;
}

.counter-wrap .full-card .card-inner {
  position: relative;
  color: var(--white-color);
  background-color: var(--primary-color);
  isolation: isolate;
}

.counter-wrap .full-card .card-inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/counter-overlay.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.counter-wrap .card-inner h3 {
  font-size: 48px;
  font-weight: 600;
}

.counter-wrap .card-inner p {
  font-size: 22px;
  font-weight: 500;
}

.card-slider figure img {
  width: 100%;
  aspect-ratio: 415/380;
  object-fit: cover;
  border-radius: 8px;
}

.service-box {
  background-color: var(--bs-border-color);
  padding: 30px;
  height: 100%;
  border-radius: 8px;
}

.service-box:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.service-box .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 50%;
  margin-bottom: 25px;
}

.service-box h4:hover a {
  color: var(--white-color);
}

.faq-section {
  background-color: #f7fdff;
}

.accordion-item {
  background-color: transparent;
  border-bottom: 1px solid #eaecf0;
  overflow: hidden;
}
.accordion-item:first-of-type {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.accordion-button {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  padding: 25px 0;
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: transparent;
  box-shadow: none;
}

.faq-wrap .accordion-body {
  padding: 0 0 25px 0;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  color: var(--primary-color);
  font-family: 'Fontawesome';
  background-image: none;
}

.accordion-button::after {
  content: '\f055';
}

.accordion-button:not(.collapsed)::after {
  content: '\f056';
}

.site-footer {
  position: relative;
  background-color: var(--primary-color);
  isolation: isolate;
}

.site-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/footer-overlay.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.site-footer .footer-top {
  padding: 60px 0 30px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  width: 150px;
}

.footer-title {
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-menu a {
  color: var(--white-color);
}

.footer-menu a:hover {
  color: var(--secondary-color);
}

.footer-item .qr {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.footer-item .qr img {
  width: 100%;
  height: auto;
}

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

.contact-item {
  margin-bottom: 20px;
}

.contact-item .icon {
  float: left;
  margin-right: 10px;
  color: var(--white-color);
}

.contact-item .detail {
  overflow: hidden;
}

.contact-item .detail a {
  display: block;
  color: var(--white-color);
}

.site-footer .si-wrap a {
  color: var(--white-color);
}

.footer-bottom {
  color: var(--white-color);
  padding: 20px 0;
}

/* -------------------------------------------------------
                     Service page
------------------------------------------------------- */

.service-card-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    'item-1 item-2 item-3'
    'item-1 item-2 item-4';
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.service-card.item-1 {
  grid-area: item-1;
}
.service-card.item-2 {
  grid-area: item-2;
}
.service-card.item-3 {
  grid-area: item-3;
}
.service-card.item-4 {
  grid-area: item-4;
}
.service-card.item-5 {
  grid-area: item-5;
}
.service-card.item-6 {
  grid-area: item-6;
}
.service-card.item-7 {
  grid-area: item-7;
}
.service-card.item-8 {
  grid-area: item-8;
}
.service-card.item-9 {
  grid-area: item-9;
}
.service-card.item-10 {
  grid-area: item-10;
}

.service-card figure {
  position: relative;
}

.service-card a,
.service-card a figure {
  display: block;
  width: 100%;
  height: 100%;
}

.service-card figure:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,000000+100&0+0,1+100 */
  background: linear-gradient(
    to bottom,
    rgba(30, 87, 153, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.service-card figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 420 / 250;
  object-fit: cover;
}

.service-card-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.service-card-body .title {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 600;
}

/* -------------------------------------------------------
                     Scrollbar
------------------------------------------------------- */

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background-color: var(--light-primary-color);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
}

/* -------------------------------------------------------
                         Shine Effect
------------------------------------------------------- */

.shine-overlay {
  position: relative;
  overflow: hidden;
}
.shine-overlay:hover .shine {
  display: block;
}

.shine {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    color-stop(50%, rgba(255, 255, 255, 0.8)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: skew(30deg);
  animation: shine 5s linear 1;
}

@keyframes shine {
  0% {
    left: -50%;
    opacity: 0;
  }
  50% {
    left: 25%;
    opacity: 0.5;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.wpcf7-spinner {
  position: absolute;
}

.banner-content {
  opacity: 0;
  transform: translateY(70px);
  transition: all 2s ease;
}

.swiper-slide-active .banner-content {
  opacity: 1;
  transform: translateY(0);
}
