/*!
Theme Name: RoyalTibet
Theme URI: http://underscores.me/
Author: Aviva
Author URI: http://avivanepal.com
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: royaltibet
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

RoyalTibet is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

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

:root {
  --primary-color: #b40d12;
  --secondary-color: #830004;
  --third-color: #ed3237;
  --transition-1: all 750ms ease;
  --font-1: "Nunito Sans", sans-serif;
  --font-2: "Nunito Sans", sans-serif;

  --wpforms-button-background-color-alt: var(--primary-color);
}

body {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  font-family: var(--font-1);
  color: #000;
  overflow-x: hidden !important;
}

button {
  border: 0;
  outline: 0;
  background: transparent;
  transition: var(--transition-1);
}

a:hover,
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-1);
}

.pointer-none {
  pointer-events: none;
}

.lh-28 {
  line-height: 28px;
}

.custom-gy-1 {
  --bs-gutter-y: 2.2rem;
}

input,
textarea {
  border: 0;
  width: 100%;
  transition: all 500ms ease;
}

input:focus {
  border: 0;
  outline: 0;
}

input[type="radio"],
input[type="checkbox"] {
  max-width: -moz-max-content;
  max-width: max-content;
}

select {
  width: 100%;
}

input {
  border-radius: 3px;
}

select {
  border: 0;
}

.container-inner {
  max-width: 1285px;
}

.container-padding {
  padding: 0 40px;
}

.container-medium {
  max-width: 1340px;
}

.container-large {
  max-width: 1530px;
}

.container-largest {
  max-width: 1920px;
}

.container-smaller {
  max-width: 1100px;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.bkg-white {
  background: #fff;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.text-333 {
  color: #333333;
}

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

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

.text-4141 {
  color: #414141;
}

.text-999 {
  color: #999999;
}

.text-666 {
  color: #666666;
}

header {
  background: var(--primary-color);
	position: relative;
	z-index: 99;
}
header .logo {
  max-width: 270px;
  padding: 10px 30px;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.168627451);
  position: relative;
  top: 0;
  min-height: 130px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .logo-parent {
  min-width: 270px;
}
header .buttons-cart {
  display: flex;
  gap: 7px;
}
header .buttons-cart button {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 100px;
  border: 1px solid transparent;
}
header .buttons-cart button:hover {
  border: 1px solid #eee;
}
header .right-content {
  padding: 0 125px 0 40px;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
header nav ul {
  display: flex;
  gap: 40px;
  color: #fff;
  font-weight: 500;
}
header .bottom-content {
  width: 100%;
  left: 0;
  right: 0;
  margin-top: 0;
  padding: 8px 0;
  padding-left: 260px;
  background: var(--secondary-color);
/*   position: absolute; */
}
header .bottom-content .notice {
  color: #fff;
  font-size: 16px;
  padding: 0 10px;
}

.button-style-1 {
  background: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 3px;
  color: #fff;
  max-width: -moz-max-content;
  max-width: max-content;
}
.button-style-1:hover {
  background: var(--third-color);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2509803922);
  color: #fff;
}

.hero {
  color: #1c1c1e;
  padding: 125px 0 0;
/*   margin-top: 45px; */
  position: relative;
}
.hero .bg-image {
  position: absolute;
  top: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: -1;
}
.hero .bg-image .right-side {
  transform: rotate(180deg);
}
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("./assets/images/noise.webp") repeat;
  top: 0;
  left: 0;
  z-index: -5;
}
.hero .gradients {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero .gradients::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgb(255, 245, 224);
  background: radial-gradient(
    circle,
    rgb(255, 245, 224) 0%,
    rgba(255, 245, 224, 0.801) 26%,
    rgba(255, 245, 224, 0.767) 100%
  );
  left: 0;
  top: -18%;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  opacity: 0.5;
}
.hero .gradients::after {
  content: "";
}
.hero .gradients .center-gradient {
  position: absolute;
  width: 550px;
  height: 550px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  background: rgb(255, 245, 224);
  background: radial-gradient(
    circle,
    rgb(255, 245, 224) 0%,
    rgba(255, 245, 224, 0.801) 26%,
    rgba(255, 245, 224, 0.767) 100%
  );
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.6;
}
.hero .hero-text h1 {
  font-size: 50px;
  line-height: 65px;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}
.hero .offers {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 35px 0 30px;
  max-width: -moz-max-content;
  max-width: max-content;
  position: relative;
}
.hero .offers .card-offer strong {
  font-size: 28px;
  font-weight: 800;
}
.hero .offers .card-offer p {
  color: #8e8e93;
  font-size: 16px;
}
.hero .offers::after {
  content: "";
  position: absolute;
  width: 2px;
  background: #efefef;
  left: 0;
  margin: auto;
  height: 50%;
  right: 10%;
  top: 0;
  bottom: 15px;
}
.hero .main-image {
  position: relative;
}
.hero .main-image img {
  border-radius: 50% 50% 0 0;
}
.hero .main-image .gradient-bg {
  position: absolute;
  width: 800px;
  height: 880px;
  z-index: -1;
  background: rgb(255, 245, 224);
  background: radial-gradient(
    circle,
    rgb(218, 190, 131) 0%,
    rgb(255, 245, 224) 36%,
    rgba(255, 245, 224, 0) 100%
  );
  border-radius: 50%;
  filter: blur(50px);
  top: -30%;
  right: -220px;
}

.search-parent {
  position: relative;
  z-index: 9;
}
.search-parent .title {
  background: #ed3237;
  padding: 8px 28px;
  border-radius: 5px 5px 0 0;
  font-size: 16px;
  color: #fff;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
}
.search-parent .search-bar {
  background: #fff;
  padding: 22px;
  display: flex;
  gap: 20px;
  width: 120%;
  position: relative;
  box-shadow: 0px 7px 22px 0px rgba(66, 71, 76, 0.1803921569);
  border-radius: 0 10px 10px 10px;
}
.search-parent .search-bar input {
  padding: 15px 20px;
  border: 1px solid #e5e5ea;
}
.search-parent .search-bar input::-moz-placeholder {
  font-weight: 700;
  font-size: 15px;
  color: #3a3a3c;
}
.search-parent .search-bar input::placeholder {
  font-weight: 700;
  font-size: 15px;
  color: #3a3a3c;
}
.search-parent .search-bar button {
  font-size: 16px;
  font-weight: 700;
  background: var(--third-color);
  padding: 10px 20px;
  border-radius: 10px;
  min-width: -moz-max-content;
  min-width: max-content;
  color: #fff;
}
.search-parent .search-bar button:hover {
  background: var(--secondary-color);
}

.video-play {
  position: absolute;
  z-index: auto;
  top: -20%;
  bottom: 0;
  margin: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  height: -moz-max-content;
  height: max-content;
}

.video-play a {
  font-weight: 900;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  transform: translateX(-50%);
  color: var(--third-color);
  background: #fff;
  box-shadow: 0px 0px 50px rgba(3, 4, 28, 0.1);
  z-index: 2;
  transition: all 600ms ease;
  height: 80px;
  width: 80px;
  font-size: 20px;
  line-height: 84px;
  box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.2549019608);
}

.video-play a::after {
  position: absolute;
  content: "";
  height: 105px;
  width: 105px;
  top: -13px;
  left: -13px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

.video-play a:hover {
  background: var(--secondary-color);
  color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 12, 12, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(180, 19, 19, 0.26);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(158, 17, 17, 0);
  }
}
.detail-expert .top-expert img {
  border: 1px solid #d4d4d4;
}
.detail-expert .top-expert span {
  display: inline-block;
  line-height: 22px;
}
.detail-expert .ask-question {
  padding: 8px 11px;
  justify-content: space-around;
}

.detail-expert > img {
  border-radius: 4px;
}
.detail-expert .ask-question {
  width: 100%;
  margin-top: 8px;
  border: 2px solid var(--third-color);
  padding: 6px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-expert .ask-question a {
  display: inline-block;
  min-width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-expert .ask-question a.whatsapp {
  background: #29a71a;
  border-radius: 100px;
  font-size: 24px;
  color: #fff;
}
.detail-expert .ask-question a.telegram {
  color: #039be5;
  font-size: 35px;
}
.detail-expert .ask-question a.viber {
  background: #8f5db7;
  border-radius: 100px;
  color: #fff;
}
.detail-expert .ask-question a.wechat {
  background: #2dc100;
  border-radius: 100px;
  font-size: 24px;
  color: #fff;
}
.detail-expert .ask-question a.line {
  color: #2dc100;
  font-size: 35px;
}
.detail-expert .ask-question a:hover {
  background: var(--third-color);
}
.detail-expert .ask-question a:hover.telegram {
  color: var(--third-color);
  background: transparent;
}
.detail-expert .ask-question a:hover.line {
  color: var(--third-color);
  background: transparent;
}
.detail-expert .fs-19 {
  font-size: 19px;
}

.section-gap {
  padding-top: 85px;
}

.title-section span {
  display: block;
  margin-bottom: 8px;
}
.title-section h2 {
  font-size: 30px;
  font-weight: 900;
}

.card-style-1 .universal-star {
  font-size: 11px;
}
.card-style-1 .img-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.card-style-1 .img-card a {
  position: relative;
  display: block;
}
.card-style-1 .img-card a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 73.5%,
    rgba(0, 0, 0, 0.96) 125%
  );
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.card-style-1 .img-card img {
  border-radius: 5px;
  transition: var(--transition-1);
}
.card-style-1 .img-card .info-card {
  position: absolute;
  width: 100%;
  padding: 18px 20px;
  bottom: 0;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-family: var(--font-2);
  color: #fff;
}
.card-style-1 .img-card .info-card .left-item {
  display: flex;
  gap: 6px;
}
.card-style-1 .img-card .info-card .right-item {
  background: var(--secondary-color);
  padding: 2px 18px;
  border-radius: 3px;
}
.card-style-1 .text-card-1 {
  padding: 20px;
  padding-bottom: 0;
  text-align: center;
}
.card-style-1 .text-card-1 h3 {
  font-size: 20px;
  font-family: var(--font-2);
  color: #000;
}
.card-style-1 .text-card-1 p {
  font-weight: 700;
  font-size: 18px;
}
.card-style-1 .text-card-1 p .price {
  color: var(--third-color);
}
.card-style-1 .text-card-1 p .line {
  opacity: 0.2;
  font-weight: 400;
  margin: 0 10px;
}
.card-style-1:hover .img-card img {
  transform: scale(1.06);
}
.card-style-1:hover .text-card-1 h3 {
  color: var(--third-color);
}

.universal-star {
  display: flex;
  margin: 0;
  color: #f9c200;
  gap: 4px;
  align-items: center;
  font-size: 14px;
}

.recommended-tour {
  padding-top: 100px;
}
.recommended-tour #recommended-tour {
  margin-top: 35px;
}
.recommended-tour .owl-carousel .owl-stage-outer {
  overflow: visible !important;
  -webkit-clip-path: inset(-100vw -100vw -100vw 0);
  clip-path: inset(-100vw -100vw -100vw 0);
  --webkit-clip-path: inset(-100vw -100vw -100vw 0);
  position: relative;
}
.recommended-tour .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 34%;
  z-index: 0;
}
.recommended-tour .owl-nav button {
  width: 55px;
  height: 55px;
  font-size: 25px;
  border-radius: 100px !important;
  color: #fff !important;
  position: absolute;
  background: #fff !important;
  color: #666666 !important;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2509803922);
}
.recommended-tour .owl-nav button.owl-prev {
  margin-left: 20px;
  left: 0;
}
.recommended-tour .owl-nav button.owl-next {
  right: 0;
  margin-right: 30px;
}
.recommended-tour .owl-nav button:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}

.group-joining {
  position: relative;
  margin-top: 80px;
  padding-bottom: 80px;
}
.group-joining h2 {
  margin-bottom: 30px;
}
.group-joining::after {
  content: "";
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("./assets/images/symbol.webp");
  opacity: 0.1;
  z-index: -4;
}
.group-joining::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(240, 226, 226, 0.7490196078);
  top: 0;
  z-index: -3;
}
.group-joining .title-departure {
  padding: 20px;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
  border-radius: 5px 5px 0 0;
}
.group-joining .title-departure h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.group-joining h4.title:hover {
  color: var(--secondary-color);
}
.group-joining .box {
  box-shadow: 0px 0px 3px 0px rgba(204, 156, 156, 0.6980392157);
}
.group-joining .card-departure {
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
  transition: var(--transition-1);
}
.group-joining .card-departure:hover {
  background: #f4f4f4;
}
.group-joining .card-departure:last-child {
  border-radius: 0 0 5px 5px;
}
.group-joining .card-departure img {
  border-radius: 4px;
}
.group-joining .card-departure h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.group-joining .card-departure .data-duration {
  color: #8e8e8e;
  font-size: 17px;
}
.group-joining .card-departure .data {
  color: #1c1c1e;
  font-size: 16px;
}
.group-joining .join {
  padding: 10px 26px;
  border: 1px solid #aaaaaa;
  border-radius: 100px;
  font-size: 16px;
  color: var(--third-color);
  font-weight: 800;
}
.group-joining .join:hover {
  background: var(--third-color);
  color: #fff;
}

.text-8e8e {
  color: #8e8e8e !important;
}

.w-max {
  max-width: -moz-max-content;
  max-width: max-content;
}

.button-outline {
  padding: 7px 20px;
  border: 2px solid var(--third-color);
  color: var(--third-color);
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
}
.button-outline:hover {
  border-color: var(--secondary-color);
}

.welcome .button-outline {
  border-color: #fff;
  color: #fff;
}
.welcome .button-outline:hover {
  background: #b30909;
}
.welcome .button-outline.bkg-red {
  background: #b30909;
}
.welcome .button-outline.bkg-red:hover {
  background: #6d0303;
}
.card-welcome {
  display: flex;
  gap: 18px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1294117647);
  padding: 30px 28px;
  border-radius: 10px;
  height: 100%;
  background: #fff;
}
.card-welcome .icon {
  margin-top: 20px;
}
.card-welcome h3 {
  font-size: 20px;
  color: #171717;
  font-weight: 900;
  letter-spacing: 0.3px;
}
.card-welcome p {
  color: #17080a;
  margin: 0;
}

.trip-month {
  position: relative;
}
.trip-month .image-month {
  position: relative;
}
.trip-month .image-month::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 27.5%,
    rgba(0, 0, 0, 0.7) 78.5%
  );
  top: 0;
  left: 0;
  border-radius: 8px;
}
.trip-month .image-month img {
  border-radius: 8px;
}
.trip-month .video-play {
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}
.trip-month .video-play a {
  color: #fff;
  background: var(--third-color);
}
.trip-month .video-play a::after {
  background: transparent;
  height: 80px;
  width: 80px;
  top: 0;
  left: 0;
}
.trip-month .bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  top: -23%;
  max-height: 610px;
}
.trip-month .bg-overlay::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("./assets/images/bg.webp") no-repeat;
  background-size: cover;
  opacity: 0.11;
}
.trip-month .text-content {
  position: absolute;
  bottom: 0;
  margin: 30px 50px;
  z-index: 8;
}
.trip-month .text-content .card-month {
  color: #fff;
  text-align: center;
}
.trip-month .text-content .card-month span {
  font-size: 16px;
  font-weight: 700;
}
.trip-month .text-content .card-month p {
  margin-top: 5px;
  border: 3px solid var(--third-color);
  padding: 5px 25px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 700;
}
.trip-month .text-content .card-month p.price {
  background: var(--third-color);
}
.trip-month .text-content h2 {
  color: #fff;
  font-weight: 800;
  font-size: 32px;
}
.trip-month .triangle {
  border-right: 130px solid transparent;
  border-left: 130px solid #fff;
  border-bottom: 130px solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  left: -5px;
  top: -5px;
  z-index: 2;
  border-radius: 15px 0 0 0;
}
.trip-month .triangle span {
  position: absolute;
  font-size: 15px;
  width: 100px;
  text-align: center;
  font-weight: 700;
  line-height: 19px;
  left: -135px;
  top: 24px;
  transform: rotate(-45deg);
  color: #333333;
}

.btn-explore {
  position: absolute;
  right: 0;
  z-index: 99;
  bottom: -10px;
}
.btn-explore a {
  background: #fff;
  padding: 12px 35px;
  color: #333333;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2509803922);
}
.btn-explore a:hover {
  background: var(--secondary-color);
  color: #fff;
}

.card-style-2 .universal-star {
  font-size: 11px;
}
.card-style-2 .img-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.card-style-2 .img-card a {
  position: relative;
  display: block;
}
.card-style-2 .img-card a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 66.48%,
    rgba(0, 0, 0, 0.76) 100%
  );
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border-radius: 5px 5px 0 0;
}
.card-style-2 .img-card img {
  border-radius: 5px;
  transition: var(--transition-1);
  transform: scale(1);
}
.card-style-2 .img-card .info-card {
  position: absolute;
  width: 100%;
  padding: 18px 20px;
  bottom: 0;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-family: var(--font-2);
  color: #fff;
}
.card-style-2 .img-card .info-card .left-item {
  display: flex;
  gap: 6px;
}
.card-style-2 .img-card .info-card .right-item {
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 500;
}
.card-style-2 .text-card-1 {
  padding: 20px;
  text-align: center;
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.0784313725);
}
.card-style-2 .text-card-1 h3 {
  font-size: 20px;
  color: #333;
}
.card-style-2 .text-card-1 p {
  color: var(--third-color);
  font-weight: 900;
  font-size: 22px;
  margin: 0;
}
.card-style-2 .text-card-1 p span {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.card-style-2 .selling-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(237, 50, 55, 0.8117647059);
  padding: 4px 15px;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  cursor: pointer;
  border-radius: 100px;
}
.card-style-2:hover .img-card img {
  transform: scale(1.06);
}
.card-style-2:hover .text-card-1 h3 {
  color: var(--primary-color);
}

.popular-tour .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 34%;
  z-index: 0;
}
.popular-tour .owl-nav button {
  width: 55px;
  height: 55px;
  font-size: 25px;
  border-radius: 100px !important;
  color: #fff !important;
  position: absolute;
  background: #fff !important;
  color: #666666 !important;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2509803922);
}
.popular-tour .owl-nav button.owl-prev {
  margin-left: -25px;
  left: 0;
}
.popular-tour .owl-nav button.disabled {
  opacity: 1;
}
.popular-tour .owl-nav button.owl-next {
  right: 0;
  margin-right: -25px;
}
.popular-tour .owl-nav button:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}

.faqs .faq-image {
  margin-top: 75px;
}
.faqs .accordion {
  --bs-accordion-btn-focus-border-color: none;
  --bs-accordion-active-bg: none;
}
.faqs .accordion-item {
  border: 0;
  padding: 10px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1215686275);
  margin-bottom: 12px;
}
.faqs .accordion-item .accordion-button {
  color: #333;
  padding-bottom: 10px;
  font-weight: 400;
  background: transparent !important;
  font-size: 18px;
}
.faqs .accordion-item .accordion-button::after {
  left: 0;
  right: auto;
  background: url("./assets/images/what-icon.webp") no-repeat;
  background-size: contain;
  width: 23px;
  height: 23px;
  position: absolute;
}
.faqs .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faqs .accordion-item .accordion-button[aria-expanded~="true"] {
  color: var(--primary-color);
}
.faqs .accordion-item .accordion-body,
.faqs .accordion-item .accordion-button {
  padding-left: 38px;
  padding-top: 0;
  background: #fff;
}
.faqs .accordion-item .accordion-body {
  line-height: 28px;
  font-size: 16px;
}
.faqs .accordion-item .accordion-body p {
  margin-bottom: 0;
}
.faqs .accordion-button:not(.collapsed)::after {
  transform: none;
}

.planning {
  padding: 60px 0 60px 0;
  color: #fff;
  position: relative;
}
.planning::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  top: 0;
  z-index: -2;
}
.planning .icon {
  font-size: 30px;
  margin-bottom: 12px;
}
.planning h2 {
  font-size: 32px;
  font-weight: 800;
}
.planning .btn-explore {
  left: 0;
  right: 0;
}
.planning .bg-image {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0.08;
}
.planning .bg-image img {
  width: 100%;
  height: auto;
}

.recommended-package {
  background: #eee;
  padding-bottom: 50px;
}
.recommended-package .card-style-2 .text-card-1 {
  background: transparent;
  box-shadow: none;
}

.testimonials .row .col-lg-4:last-child .card-testimonial {
  border-right: 0;
}
.testimonials .card-testimonial {
  display: flex;
  gap: 15px;
  border-right: 1px solid rgba(217, 217, 217, 0.4117647059);
  padding-right: 30px;
}
.testimonials .card-testimonial .text-card {
  margin-top: 20px;
  color: #444444;
}
.testimonials .card-testimonial .user-info {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}
.testimonials .card-testimonial .user-info .image img {
  border-radius: 100px;
}
.testimonials .card-testimonial .user-info .right-side {
  line-height: 22px;
}
.testimonials .card-testimonial .user-info .universal-star li {
  font-size: 12px;
  color: #f9c200;
}
.testimonials .card-testimonial .user-info .name span {
  color: #999999;
  font-size: 16px;
}

.company-infos {
  background: #333;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  padding: 28px 40px;
  border-radius: 8px;
}
.company-infos .card-info {
  display: flex;
  gap: 10px;
  align-items: center;
}
.company-infos .card-info .text {
  color: #fff;
  font-size: 18px;
  line-height: 23px;
}
.company-infos .card-info .text a {
  font-size: 16px;
}
.company-infos .card-info .text a:hover {
  color: var(--third-color);
}

.affiliated ul {
  gap: 12px !important;
}
.affiliated ul li {
  background: #fff;
  width: auto;
  max-width: 45px;
  height: 45px;
  box-shadow: 0px 4px 75px -10px rgba(0, 0, 0, 0.1607843137);
  display: flex;
  align-items: center;
  justify-content: center;
}
.affiliated ul li img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.we-accept li {
  max-width: 65px !important;
}

.sub-form {
  display: flex;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2509803922);
  align-items: center;
  border-radius: 5px;
}
.sub-form input {
  padding: 10px 20px;
  font-size: 16px;
}
.sub-form input::-moz-placeholder {
  font-weight: 300;
}
.sub-form input::placeholder {
  font-weight: 300;
}
.sub-form button {
  padding: 10px 30px;
  margin-right: 2px;
  border-radius: 4px;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  background: #b40d12;
  color: #fff;
  font-size: 16px;
}
.sub-form button i,
.sub-form button svg {
  font-size: 11px;
}
.sub-form button:hover {
  background: var(--secondary-color);
}

.footer-menus {
  padding-top: 75px;
  margin-top: 70px;
  position: relative;
}
.footer-menus::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #94090d;
  top: 0;
  left: 0;
  right: 0;
  z-index: -5;
}

.footer-options ul li {
  margin: 10px 0;
  margin-left: 25px;
}
.footer-options ul li:first-child {
  margin-top: 0;
}
.footer-options ul li a {
  color: #fff;
  font-size: 17px;
  display: block;
  font-weight: 300 !important;
}
.footer-options ul li a:hover {
  transform: translateX(10px);
}
.footer-options ul .arrow {
  position: absolute;
  margin-left: -25px;
}

footer .bottom-social-links li a {
  width: 38px;
  height: 38px;
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2509803922);
  background: #fff;
}
footer .bottom-social-links li a img {
  transition: var(--transition-1);
}
footer .bottom-social-links li a:hover {
  background: var(--third-color);
}
footer .bottom-social-links li a:hover img {
  filter: brightness(0) invert(1);
}
footer .image-footer {
  position: absolute;
  margin-top: -95px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: -moz-max-content;
  max-width: max-content;
}
footer .image-footer img {
  width: 100%;
  height: auto;
}
footer .image-bottom {
  position: absolute;
  max-width: -moz-max-content;
  max-width: max-content;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: -4;
  opacity: 0.07;
}

.copyright a {
  color: #f77c03;
}

.scroll-top {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  transform: translateY(50%);
  transition: var(--transition-1);
}
.scroll-top button {
  color: #fff;
  background: var(--secondary-color);
  border-radius: 100px;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition-1);
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  transition: all 0.3s ease-out;
}

@keyframes rotate {
  0% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(0);
  }
}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.9;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.breadcrumb-custom {
  display: flex;
  list-style: none;
  padding-left: 0;
  align-items: center;
  font-size: 14px;
  gap: 8px;
  margin-bottom: 5px;
}
.breadcrumb-custom i,
.breadcrumb-custom svg {
  font-size: 11px;
}
.breadcrumb-custom a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.content-inside {
  line-height: 26px;
}
.content-inside a {
  color: var(--primary-color);
  font-weight: 600;
}
.content-inside p:last-child {
  margin-bottom: 0;
}
.content-inside ul:last-child {
  margin: 0;
}
.content-inside h2,
.content-inside h3,
.content-inside h4,
.content-inside h5,
.content-inside h6 {
  font-weight: 800;
  color: #171717;
}
.content-inside h2 {
  font-size: 26px;
}
.content-inside h3 {
  font-size: 24px;
}
.content-inside h4 {
  font-size: 22px;
}
.content-inside h5 {
  font-size: 20px;
}
.content-inside h6 {
  font-size: 19px;
}
.content-inside img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 14px;
}
.content-inside figure {
  max-width: 100%;
  height: auto;
}
.content-inside figure figcaption {
  font-size: 15px;
  color: var(--secondary-color);
  font-weight: 500;
}

.ribbon {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.card-testimonial .content-inside {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 20px;
}
.ribbon {
  --d: 0.8em; /* the depth */
  position: absolute;
  inset-inline: calc(-1 * var(--d));
  line-height: 2;
  background-color: var(--secondary-color); /* the main color */
  top: 18px;
  width: 100%;
  left: 0;
}

.right-link-lists {
  position: relative;
  background: #eee;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 2px 2px 10px -4px rgba(0, 0, 0, 0.2509803922);
  border: 1px solid #bbb8b8;
}
.right-link-lists .head-link {
  font-size: 21px;
  display: block;
  font-weight: 800;
  position: relative;
}

.right-link-lists .head-link:after {
  content: "";
  background: #aeaeae;
  border-radius: 10px;
  display: block;
  margin: 5px 0;
  width: 40px;
  height: 2px;
}
.right-link-lists ul {
  list-style: none;
  padding-left: 0;
	margin: 0;
}
.right-link-lists ul li {
  padding-left: 23px;
  position: relative;
  margin: 8px 0;
}

.right-link-lists ul li a {
  font-weight: 500;
  font-size: 17px;
  color: #333;
}
.right-link-lists ul li::before {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 100px;
  background: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: var(--transition-1);
}
.right-link-lists ul li:last-child {
  margin-bottom: 0;
}
.right-link-lists ul li:hover {
  color: var(--secondary-color);
}
.right-link-lists ul li:hover::before {
  width: 30px;
  left: -20px;
  background: var(--primary-color);
}

.search-normal .search-bar {
  width: 100%;
}

.inner-page-hero h1 {
  font-size: 34px !important;
  line-height: 47px !important;
}

.blog-single h1 {
  font-size: 36px !important;
}

.card-docs a {
  position: relative;
  width: 100%;
  display: block;
}
.card-docs a img {
  border-radius: 7px;
  transition: var(--transition-1);
}
.card-docs a span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary-color);
  padding: 10px 20px;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 0 0 7px 7px;
  transition: var(--transition-1);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-docs a:hover span {
  height: 110px;
  background: rgba(131, 0, 4, 0.5803921569);
}
.card-docs a:hover img {
  filter: saturate(1.4);
}

.card-team .image-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.card-team .image-card img {
  border-radius: 10px 10px 0 0;
  transition: var(--transition-1);
}
.card-team .text-card {
  padding: 15px 0;
  text-align: center;
  border: 1px solid #b9b9b9;
  background: rgba(131, 0, 4, 0.0588235294);
  transition: var(--transition-1);
}
.card-team .text-card .title {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 23px;
}
.card-team .text-card span {
  color: #333;
}
.card-team:hover .image-card img {
  transform: scale(1.08);
}
.card-team:hover .text-card {
  background: #fff;
}
.card-team.inside-card img {
  border-radius: 4px !important;
}
.card-team.inside-card .text-card {
  border: 0;
  border-bottom: 1px solid rgba(92, 92, 92, 0.233);
  border-left: 1px solid rgba(92, 92, 92, 0.233);
  border-right: 1px solid rgba(92, 92, 92, 0.233);
  background: #fff;
}

.box-content {
  background: rgba(247, 247, 247, 0.5333333333);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.right-content {
  position: sticky;
  top: 20px;
  height: auto;
}

.has-lining {
  position: relative;
}
.has-lining::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background: rgba(92, 92, 92, 0.233);
  left: 0;
  right: 0;
  margin: auto;
}

.list-photo-member ul li img {
  border-radius: 6px;
  transition: var(--transition-1);
  width: 100%;
}
.list-photo-member ul li a {
  display: block;
  overflow: hidden;
  border-radius: 3px;
}
.list-photo-member ul li a:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.content-card {
  display: none;
}

#loadMore {
  text-align: center;
  transition: var(--transition-1);
  transition: 200ms all cubic-bezier(0.445, 0.05, 0.55, 0.95);
  background: var(--primary-color);
  padding: 10px 25px;
  color: #fff;
  border-radius: 5px;
}
#loadMore .loading-msg {
  display: none;
}
#loadMore.loading .default-msg {
  display: none;
  animation: FadeOut 1.5s linear forwards;
}
#loadMore.loading .arrow {
  display: none;
}
#loadMore.loading .loading-msg {
  display: inline-block;
  animation: fadeIn 1.5s linear forwards;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}
.spinner2 {
  margin: 0 auto;
  text-align: center;
  display: none;
}
.spinner2 > div {
  width: 7px;
  height: 7px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1.2s infinite ease-in-out both;
}
.spinner2 .bounce1 {
  animation-delay: -0.32s;
}
.spinner2 .bounce2 {
  animation-delay: -0.16s;
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
#loadMore.loading .spinner2 {
  display: inline;
}
#loadMore.loading .spinner2 > div {
  background-color: #333;
}
#loadMore.loading .icon-arrow {
  display: none;
}

.detail-expert .ask-question.right-expert {
  margin-top: 0;
  border: 0;
  padding: 0;
}

.card-blogs {
  position: relative;
}
.card-blogs .image {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
}
.card-blogs .image img {
  border-radius: 7px;
  transition: var(--transition-1);
}
.card-blogs .image .publish {
  background: rgba(237, 50, 55, 0.8117647059);
  top: 20px;
  left: 20px;
  padding: 4px 20px;
  position: absolute;
  border-radius: 100px;
  font-size: 12px;
  color: #eee;
  font-weight: 700;
}
.card-blogs .text-blog {
  padding: 16px;
}
.card-blogs .text-blog h2 {
  font-size: 24px;
  font-weight: 700;
}
.card-blogs .text-blog p {
  color: #888;
  font-size: 16px;
}
.card-blogs:hover img {
  transform: scale(1.05);
}
.card-blogs:hover a {
  color: var(--primary-color);
}

.card-right-side .img-card-right {
  min-width: 70px;
  overflow: hidden;
  border-radius: 4px;
}
.card-right-side .img-card-right img {
  border-radius: 4px;
  width: 70px;
  transition: var(--transition-1);
}
.card-right-side .title {
  font-size: 16px;
}
.card-right-side .date {
  font-size: 12px;
}
.card-right-side:hover .img-card-right img {
  transform: scale(1.1);
}
.card-right-side:hover .title {
  color: var(--primary-color);
}

.info {
  font-size: 17px;
}
.info i,
.info svg {
  color: var(--secondary-color);
}

.row-contact-details .card-detail {
  border-radius: 4px;
  display: flex;
  padding-left: 12px;
  margin-top: 16px;
  border-bottom: 1px solid #e1e1e1;
  gap: 15px;
  color: #5b5b5b;
  padding-bottom: 10px;
  align-items: center;
}
.row-contact-details .card-detail:last-child {
  border-bottom: 0;
}
.row-contact-details .card-detail .icon {
  font-size: 19px;
}
.row-contact-details .card-detail .text-card a,
.row-contact-details .card-detail .text-card p {
  font-family: var(--font-2);
  font-weight: 600;
}
.row-contact-details .card-detail .text-card a:hover {
  color: var(--secondary-color);
}
.row-contact-details .card-detail .text-card span {
  font-weight: 600;
  color: var(--third-color);
  font-size: 15px;
  font-family: var(--font-2);
}

.right-contact .right-link-lists {
  padding: 20px;
  background: transparent;
} /*# sourceMappingURL=style.css.map */

.content-team {
  padding-bottom: 70px;
}

.right-link-lists.blog-right ul li {
  padding-left: 0 !important;
}

.right-link-lists.blog-right ul li:before {
  display: none !important;
}

.bd_toc_container .bd_toc_wrapper .bd_toc_content_list_item ul li > ul {
  padding-left: 0;
}

.bd_toc_container {
  background-color: transparent !important;
  border: 0 !important;
}

.wpforms-page-indicator-steps {
  min-width: 165px;
}

.wpforms-submit {
  padding: 0 25px !important;
}

/* PKG */

.package-images .bottom-btns {
  position: absolute;
  left: 35px;
  bottom: 30px;
}

.package-contents h1 {
  font-size: 35px;
}

.content-card {
  display: none;
}

.default-arrow .owl-stage-outer {
  margin-bottom: 35px;
}
.default-arrow
  .owl-stage-outer
  .owl-stage
  .owl-item:nth-child(2)
  .card-style-1
  .selling-tag {
  background: var(--primary-color);
}
.default-arrow
  .owl-stage-outer
  .owl-stage
  .owl-item:nth-child(3)
  .card-style-1
  .selling-tag {
  background: #8ba521;
}
.default-arrow .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 37%;
  z-index: 0;
}
.default-arrow .owl-nav button {
  width: 55px;
  height: 55px;
  font-size: 20px;
  border-radius: 100px !important;
  color: #fff !important;
  position: absolute;
  background: #fff !important;
  color: #000 !important;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.2509803922);
}
.default-arrow .owl-nav button.owl-prev {
  margin-left: -25px;
  left: 0;
}
.default-arrow .owl-nav button.owl-next {
  right: 0;
  margin-right: -25px;
}
.default-arrow .owl-nav button.disabled {
  opacity: 1;
}
.default-arrow .owl-nav button:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}

.package-images {
  position: relative;
}
.package-images .owl-next,
.package-images .owl-prev {
  background: rgba(255, 255, 255, 0.43) !important;
  color: #333 !important;
}
.package-images .owl-nav button.owl-next {
  margin-right: 50px;
}
.package-images .owl-nav button.owl-prev {
  margin-left: 50px;
}
.package-images .owl-nav button {
  width: 60px !important;
  height: 60px !important;
  background: rgba(253, 216, 217, 0.58) !important;
}
.package-images .owl-nav {
  top: 0;
  bottom: 0;
}
.package-images .video-play {
  z-index: 99;
  top: auto;
  right: auto !important;
}
.package-images .video-play a {
  height: 50px !important;
  width: 50px !important;
  font-size: 17px;
  line-height: 55px;
  transform: translateX(0);
}
.package-images .video-play a::after {
  height: 65px !important;
  width: 65px !important;
  top: -8px;
  left: -8px;
}
.package-images .images {
  position: relative;
}
.package-images .images img {
  border-radius: 6px;
}
.package-images .images::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 74%,
    rgba(0, 0, 0, 0.68) 100%
  );
  bottom: 0;
  left: 0;
  border-radius: 6px;
}
.package-images .video-play {
  left: 55px;
  bottom: 30px;
  position: static;
}
.package-images .view-all {
  background: #fff;
  z-index: 99;
  padding: 5px 24px;
  border-radius: 100px;
  font-size: 15px;
  box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.1019607843);
  font-family: var(--font-2);
	min-width: max-content;
}
.package-images .view-all:hover {
  background: #222;
  color: #fff;
}

.card-fact {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-2);
}
.card-fact .text {
  line-height: 24px;
}
.card-fact span {
  font-weight: 700;
  color: #767676;
  font-size: 16px;
}
.card-fact p {
  color: #222;
  font-weight: 800;
  font-size: 17px;
  margin: 0;
}
.card-fact .icon {
  min-width: 57px;
  height: 57px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-gap {
  padding-top: 55px;
}

.font-2 {
  font-family: var(--font-2);
}

.package-title {
  margin-bottom: 15px;
}
.package-title h2 {
  font-size: 27px;
  font-weight: 800;
  color: var(--primary-color);
}

.highlights {
  background: rgba(217, 217, 217, 0.2);
  margin-top: 55px;
  padding: 40px 35px;
  position: relative;
  border: 1px solid rgba(180, 13, 18, 0.22);
}
.highlights::before {
  content: "";
  width: 265px;
  height: 10px;
  background: #b40d12;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -5px;
  border-radius: 0 10px 10px 0;
}
.highlights h2 {
  font-size: 27px;
  color: #333;
  font-weight: 800;
}
.highlights ul {
  list-style: none;
  padding-left: 0;
}
.highlights ul li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
}
.highlights ul li:first-child {
  margin-top: 0;
}
.highlights ul li:last-child {
  margin-bottom: 0;
}
.highlights ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url("./assets/images/checkmark.webp") no-repeat;
}

.itinerary .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.2392156863);
  margin-bottom: 25px;
  background: rgba(240, 240, 240, 0.4784313725) !important;
  padding: 14px 24px;
}
.itinerary .accordion-item h3 {
  color: #333 !important;
}
.itinerary .accordion-item h3 span:first-child {
  font-size: 16px;
}
.itinerary .accordion-item h3 span:last-child {
  font-size: 20px;
}
.itinerary .accordion-item .top-itinerary {
  display: flex;
  align-items: center;
}
.itinerary .accordion-item .accordion-button {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 45px;
  line-height: 26px;
  background: transparent !important;
}
.itinerary .accordion-item .accordion-button::after {
  content: "";
  background: url("./assets/images/plus-icon.webp") no-repeat !important;
  background-size: contain !important;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 25px;
  height: 25px;
}
.itinerary .accordion-item[aria-expanded~="true"] .accordion-button::after {
  content: "";
  background: url("./assets/images/minus-icon.webp") no-repeat !important;
  background-size: contain !important;
}
.itinerary .accordion-item .accordion-body {
  padding-left: 0;
  padding-top: 3px;
  margin-top: 14px;
}
.itinerary .accordion-item .accordion-body .itinerary-cards {
  display: flex;
  gap: 10px;
  align-items: center;
}
.itinerary .accordion-item .accordion-body .itinerary-cards .text-card {
  line-height: 23px;
}
.itinerary .accordion-item .accordion-body .itinerary-cards .text-card h4 {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 15px;
}
.itinerary .accordion-item .accordion-body .itinerary-cards .text-card span {
  font-size: 17px;
  color: #333;
  font-weight: 700;
}

.note {
  margin-top: 30px;
  padding: 25px 35px;
  position: relative;
  border: 1px solid rgba(39, 39, 39, 0.5019607843);
  background: #f8f7f7;
}
.note h2 {
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 700;
}
.note::before {
  content: "";
  width: 265px;
  height: 10px;
  background: #1a1a1a;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: -5px;
  border-radius: 10px 0 0 10px;
}
.note .note-icon {
  border: 1px solid #1a1a1a;
  background: #f8f7f7;
  width: 55px;
  height: 55px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.note .line {
  position: relative;
}
.note .line::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #1a1a1a;
  position: absolute;
  bottom: 0;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
}
.note .content-inside p {
  margin: 0;
}

.includes {
  margin-top: 30px;
}
.includes h3 {
  font-size: 19px;
  font-weight: 700;
  color: #059c1b;
  padding-left: 20px;
  width: 265px;
  text-align: center;
}
.includes ul {
  list-style: none;
  padding-left: 0;
}
.includes ul li {
  padding-left: 30px;
  position: relative;
  margin: 10px 0;
}
.includes ul li::before {
  content: "";
  width: 22px;
  height: 20px;
  position: absolute;
  background: url("./assets/images/include.webp") no-repeat;
  background-size: contain;
  left: 0;
  top: 5px;
}
.includes .box {
  border: 1px solid rgba(77, 165, 40, 0.5019607843);
  box-shadow: 0px 1px 11px 0px rgba(0, 0, 0, 0.0705882353);
  padding: 15px 25px;
  background: rgba(217, 217, 217, 0.2);
  position: relative;
}
.includes .box::before {
  content: "";
  width: 265px;
  height: 6px;
  background: #4da528;
  position: absolute;
  left: 20px;
  top: 0;
  margin-top: -3px;
  border-radius: 10px;
}

.excludes {
  margin-top: 30px;
}
.excludes h3 {
  font-size: 19px;
  font-weight: 700;
  color: #cd1414;
  padding-left: 20px;
  width: 265px;
  text-align: center;
}
.excludes ul {
  list-style: none;
  padding-left: 0;
}
.excludes ul li {
  padding-left: 30px;
  position: relative;
  margin: 10px 0;
}
.excludes ul li::before {
  content: "";
  width: 22px;
  height: 20px;
  position: absolute;
  background: url("./assets/images/exclude.webp") no-repeat;
  background-size: contain;
  left: 0;
  top: 5px;
}
.excludes .box {
  border: 1px solid rgba(205, 20, 20, 0.5019607843);
  box-shadow: 0px 1px 11px 0px rgba(0, 0, 0, 0.0705882353);
  padding: 15px 25px;
  background: rgba(217, 217, 217, 0.2);
  position: relative;
}
.excludes .box::before {
  content: "";
  width: 265px;
  height: 6px;
  background: #cd1414;
  position: absolute;
  left: 20px;
  top: 0;
  margin-top: -3px;
  border-radius: 10px;
}

.faqs-package .accordion-button:not(.collapsed) {
  color: inherit !important;
  background-color: #fff !important;
}
.faqs-package .accordion-button {
  padding: 12px 25px 12px 15px;
}
.faqs-package .accordion-button span {
  padding-right: 15px;
  color: #222;
}
.faqs-package .accordion-button:focus {
  border-color: #fff !important;
  box-shadow: none !important;
}
.faqs-package h3.accordion-header {
  border-radius: 4px;
}
.faqs-package h3.accordion-header button {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}
.faqs-package .accordion-item {
  margin-bottom: 7px;
  color: #fff;
}
.faqs-package .accordion-item:last-child {
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.faqs-package .accordion-item .accordion-body {
  padding: 10px 18px 18px;
  font-size: 18px;
  color: #333;
  font-size: 17px;
}
.faqs-package .accordion-item .accordion-button::after {
  background: url("./assets/images/plus.webp") no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}
.faqs-package .accordion-item .accordion-button[aria-expanded="true"]::before {
  background: #0069b0 !important;
}

.reviews .universal-star {
  color: #f49421;
  font-size: 14px;
}
.reviews .btn-style-1 {
  border-radius: 4px;
  border: 2px solid #770505;
  color: #fff;
  background: var(--primary-color);
  padding: 10px 35px;
  display: block;
}
.reviews .btn-style-1:hover {
  background: #29312b !important;
}
.reviews #loadMore {
  border: 2px solid #2e2e2e;
  color: #3a3a3a;
  min-width: 180px;
  padding: 10px 22px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 !important;
  transition: var(--transition-1);
  background: transparent;
}
.reviews #loadMore:hover {
  color: #fff;
}

.trip-advisor-2 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trip-advisor-2 span {
  font-size: 16px;
}

.card-review {
  box-shadow: 0px 2px 1px 0px #d8d8d8;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.card-review .text {
  display: block;
  padding-left: 0;
}
.card-review h3 {
  font-weight: 800;
  font-size: 20px;
}
.card-review .content-inside {
  margin-top: 20px;
}
.card-review .universal-star {
  display: flex;
  gap: 3px;
}
.card-review .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-review .client-info img {
  border-radius: 100px;
  max-width: -moz-max-content;
  max-width: max-content;
}
.card-review .client-info .text {
  line-height: 24px;
}
.card-review .client-info .text span {
  font-weight: 500;
}

.hero-package {
  padding-top: 80px;
}
.related-trips {
  padding: 70px 0;
  margin-top: 70px;
  background: rgba(230, 238, 232, 0.5019607843);
}

.pkg-right {
  background: #fff;
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.2509803922);
  padding: 24px;
  border-radius: 7px;
  position: sticky;
  top: 70px;
  min-width: 360px;
  right: 0;
  margin-left: -51px;
  z-index: 77;
  margin-top: 50px;
}
.pkg-right .text-through {
  text-decoration: line-through;
  color: #838383;
  font-size: 16px;
  font-weight: 500;
}
.pkg-right .price {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary-color);
}
.pkg-right .pax {
  font-size: 14px;
  color: #646464;
}
.pkg-right .button {
  display: flex;
  gap: 6px;
  justify-content: space-between;
  margin-bottom: 6px;
}
.pkg-right .button .book-now {
  background: var(--primary-color);
  color: #fff;
  width: 100%;
  max-width: 100%;
}
.pkg-right .button .cart {
  max-width: -moz-max-content;
  max-width: max-content;
  background: var(--primary-color);
}
.pkg-right .button button {
  border-radius: 4px;
}
.pkg-right .button button:hover {
  background: #9e0707;
}
.pkg-right .btn-style-1 {
  margin: 0;
  padding: 10px 16px;
  max-width: 100%;
  width: 100%;
  display: block;
  border: 0;
}
.pkg-right .reviews-num .top {
  display: flex;
  gap: 7px;
}
.pkg-right .reviews-num .top .small {
  background: var(--primary-color);
  padding: 0 15px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}
.pkg-right .wishlist {
  background: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 25px;
  right: 20px;
}
.pkg-right .wishlist:hover {
  background: #4f0a0a;
}
.pkg-right .starts {
  font-size: 15px;
  color: #929292;
}
.pkg-right .customize {
  background: rgba(232, 232, 232, 0.8);
  color: #333;
  font-weight: 600;
  border-radius: 4px;
}
.pkg-right .customize:hover {
  color: #fff;
  background: var(--secondary-color);
}
.pkg-right .cart {
  border: 1px solid var(--primary-color);
  background: transparent !important;
}
.pkg-right .cart img {
  filter: brightness(0);
}
.pkg-right .inquiry {
  width: 100%;
  border: 1px solid var(--primary-color);
  font-weight: 600;
  border-radius: 4px;
}
.pkg-right .inquiry:hover {
  color: var(--secondary-color);
}

.shared-items {
  margin-top: 12px;
}

.sharing-items,
.download {
  padding: 5px 18px;
  box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.1019607843);
  font-size: 15px;
}

.download {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  justify-content: center;
}

.sharing-items,
.download {
  border-radius: 100px;
}

.share-button {
  position: relative;
  z-index: 99;
}

.toggle {
  position: relative;
  z-index: 10;
  border-radius: 25px;
  cursor: pointer;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  font-weight: 600;
}

.toggle-input {
  display: none;
}

.toggle-input:checked + .toggle:after,
.toggle-input:checked + .toggle:before {
  content: "";
  position: absolute;
  height: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  left: 12px;
  top: 15px;
  width: 17px;
}

.toggle-input:checked + .toggle img {
  display: none !important;
}
.toggle-input:checked + .toggle span {
  opacity: 0;
  visibility: hidden;
}

.toggle-input:checked + .toggle:after {
  transform: rotate(45deg);
  animation: bar1 0.3s forwards;
}

.toggle-input:checked + .toggle:before {
  transform: rotate(-45deg);
  animation: bar2 0.3s forwards;
}

.sharing-list {
  background: #fff;
  margin: 0;
}

.sharing-list li {
  position: absolute;
  top: -8px;
  left: 0;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.43, 1.17, 0.69, 1.24);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: #fff;
  z-index: -3;
}

.sharing-list a {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 50px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sharing-list a:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 25px;
  font-family: "FontAwesome";
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: 50px;
  text-indent: 0;
  box-shadow: inset 0 0 0 1px #c8c7c0;
}

.sharing-list .twitter {
  background: #00ade7;
}
.sharing-list .facebook {
  background: #1877f2;
}
.sharing-list .whatsapp {
  background: #25d366;
}
.sharing-list .instagram {
  background: #8134af;
}
.sharing-list a:hover {
  background: var(--primary-color);
  border-radius: 100px;
}

input:checked ~ .sharing-list li {
  opacity: 1;
}

input:checked ~ .sharing-list li:nth-child(1) {
  top: -55px;
  left: -45px;
}

input:checked ~ .sharing-list li:nth-child(2) {
  top: -55px;
}

input:checked ~ .sharing-list li:nth-child(3) {
  top: -55px;
  left: 45px;
}

input:checked ~ .sharing-list li:nth-child(4) {
  top: 205px;
} /*# sourceMappingURL=package.css.map */

.contact-form div.wpforms-container-full:not(:empty) {
  margin: 0 auto;
}
.subscribe-form div.wpforms-container-full:not(:empty) {
  margin: 24px auto 0;
}

/* discount */
.discount-group {
  background: #ebebeb70;
  padding: 15px 20px;
  border-radius: 5px;
}

.discount-group ul li {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

/* carts */
/* Cart */

.input-group {
  position: relative;
  width: 100%;
  display: flex;
  padding-left: 12px;
  flex-wrap: nowrap !important;
  border: 1px solid #019801;
  background: #b40d1224;
  border: 1px solid #b40d12;
}

.input-group input {
  width: 100% !important;
  background: transparent;
  border: 0 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

.input-group button {
  background: #00286500;
  color: #00310a;
  min-width: 38px;
  height: 38px;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border-radius: 3px;
}

.input-group button:first-child {
  left: -13px;
}
.input-group button:last-child {
  left: 0;
}

.input-group .button-minus,
.input-group .button-plus {
  font-weight: bold;
  height: 38px;
  padding: 0;
  width: 38px;
  position: relative;
  border: 0;
}

.input-group .quantity-field {
  position: relative;
  height: 38px;
  left: -6px;
  text-align: center;
  width: 62px;
  display: inline-block;
  font-size: 13px;
  resize: vertical;
  min-width: 80px;
  margin-left: 10px;
  margin: 0 0 0;
}

.input-group input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

.cart-content .cart-thumbnail img {
  border-radius: 4px;
}

.cart-content .cart-info .cart-title {
  font-size: 20px;
}

.cart-content .cart-info p {
  font-size: 16px;
}

.cart-content .cart-info .cart-pricing strong {
  font-weight: 600;
  font-size: 18px;
}
.cart-content .cart-info .cart-pricing {
  font-size: 15px;
}

.addons {
  margin-top: 40px;
}
.addons .text-information {
  position: relative;
}
.addons .text-information .title {
  background: #fff;
  padding-right: 15px;
  position: relative;
  z-index: 5;
}
.addons .text-information .line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #0028653d;
  z-index: 1;
}

.addon-card {
  margin-top: 25px;
}

.right-cart {
  background: #f7f7f7;
  color: #000;
  padding: 30px;
  border-radius: 6px;
  position: sticky;
  top: 70px;
}
button.checkout {
  border-radius: 4px;
  margin-top: 25px;
  padding: 8px 25px;
  transition: all 500ms ease;
  font-weight: 400;
  color: #242424;
  background: #ececec;
}
button.checkout:hover {
  background: #511a1b;
  color: #fff;
}

.cart-left-content {
  padding: 30px;
  border-radius: 5px;
  background: #f5f5f5ba;
  border: 1px solid #1ca73824;
}

.total-all {
  text-align: center;
  border-radius: 4px;
  background: #f7f7f7;
  padding: 10px 15px;
  border: 2px solid #00336f1f;
}

.cart-left-content {
  margin-top: 35px;
}
.cart-left-content:first-child {
  margin-top: 0;
}

.total-amount {
  font-size: 22px;
}

.payable-amount strong {
  font-size: 22px;
}

.payable-amount hr {
  margin: 10px 0;
}

.cart h1 {
  position: absolute;
  color: #fff;
  z-index: 99;
  bottom: 40px;
}

.agree {
  font-size: 16px;
}
.agree input,
.advance input {
  max-width: max-content;
}

/* Contact */
.contact-details-cart {
  padding: 30px;
  border: 1px solid #b9b9b9;
  border-radius: 5px;
  margin-top: 30px;
  background: #fff;
}
.contact-details-cart input {
  width: 100%;
  border: 1px solid #d5d5d5;
  min-height: 43px;
  padding: 0 12px;
  border-radius: 2px;
}

.contact-form-cart label {
  width: 100%;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 17px;
}

.contact-details-cart input:focus,
.contact-details-cart select:focus {
  outline: 1px solid #002050 !important;
}

.contact-form-cart .form-inside {
  margin-bottom: 20px;
}

.contact-form-cart textarea {
  padding: 20px;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
}

.contact-details-cart select {
  max-height: 43px;
  margin-bottom: 0;
  background: #fff;
  height: 100%;
  padding: 0 25px;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
}

.payment-details {
  padding: 30px;
  margin-top: 30px;
  color: #fff;
  background: #830004;
  border-radius: 5px;
}

.trip-image-cart {
  width: 100px;
}

.trip-image-cart img {
  border-radius: 4px;
}

.card-departure {
  border: 1px solid #d7d7d7;
  padding: 20px;
}

.fs-18 {
  font-size: 18px;
}
.fs-16 {
  font-size: 16px;
}

.card-departure .book-btn {
  background: #ff9c07;
  padding: 9px 18px;
  border-radius: 100px;
  color: #fff;
}
.card-departure .book-btn:hover {
  background: #ff9c0794;
  color: #000;
}
.fw-800 {
  font-weight: 800;
}
.departure-package .departure-table {
  padding: 20px 30px;
  border: 1px solid #cdd7da;
  border-radius: 8px;
}
.departure-package .top-departure {
  background: #f3f3f3;
  font-weight: 600;
  color: #222222;
}

/* Departure Loading */
.depart-data {
  display: none;
}
#one {
  display: block;
}
.loader {
  position: relative;
  margin: auto;
  aspect-ratio: 1;
  border-radius: 100vmin;
  overflow: hidden;
  width: 55px;
  padding: 14px;
  margin-top: 40px;
}
.loader::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.circular {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  transform-origin: center center;
  animation: 2s linear 0s infinite rotate;
}
.path {
  stroke: #002050;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: 1.5s ease-in-out 0s infinite dash;
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
    stroke: #e0e1e1;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes rotate {
  to {
    transform: rotate(1turn);
  }
}

.right-form {
  background: #fff;
  padding: 44px;
  border-radius: 10px;
  box-shadow: 0px 0px 25px 0 #0000000a;
  border: 1px solid #22222214;
}

.form input:not(input[type="radio"], input[type="checkbox"]) {
  width: 100%;
  border-radius: 4px;
  min-height: 35px;
  padding: 6px;
}
.form label {
  width: 100%;
  color: #333;
  padding-left: 4px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 17px;
}
.form .input-field {
  margin-top: 18px;
}
.form textarea {
  width: 100%;
  padding: 10px;
}

.form select {
  width: 100%;
  padding: 10px;
  background: #fff;
  font-weight: 300;
  color: #2c2c2c;
}

.form textarea {
  min-height: 150px;
}
.form input[type="submit"] {
  transition: all 600ms ease;
}
.form input[type="submit"]:hover {
  background: #000;
}
.form input,
.form textarea,
.form select {
  -webkit-box-shadow: 0px 0px 9px 0px rgba(123, 123, 123, 0);
  box-shadow: 0px 0px 9px 0px rgba(123, 123, 123, 0);
  border: 1px solid rgba(67, 89, 72, 0.53);
}

.form .upload-btn {
  max-width: 150px;
}

.form #travelPhotosPreview,
.form #profilePreview {
  max-width: 100%;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.form #travelPhotosPreview img,
.form #profilePreview img {
  height: auto;
  object-fit: contain;
  max-width: 100px;
  max-height: 100px;
  width: auto;
  border-radius: 5px;
}

.form #travelPhotosPreview:has(img),
.form #profilePreview:has(img) {
  margin-top: 15px;
}

#travelers {
  pointer-events: none;
}

/* Loading State */
.loading-state.active {
  display: inline-block;
}
.loading-state.active .loading {
  border-radius: 50%;
  border-top-color: #73080c !important;
  animation: loading 1s linear infinite;
  width: 28px;
  height: 28px;
  border: 5px solid #ddd;
}
.payment-proceed {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
button.checkout {
  margin-top: 0 !important;
}

.quantity-field {
  pointer-events: none;
}
.travel_date {
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background: #f4f4f4;
  border: 1px solid #83000494 !important;
  padding: 10px 15px;
}
.addons {
  margin-top: 18px;
}
textarea {
  background: #fff !important;
  height: 180px !important;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 9px;
  height: 9px;
}
.table-condensed {
  width: 160px;
  height: 160px;
  font-size: 11px;
}
.table-condensed td {
  padding: 2px !important;
}
.datepicker td {
  width: 10px;
  height: 10px;
  padding: 3px 5px !important;
}
.datepicker th {
  padding: 0 10px;
}
.datepicker .datepicker-switch {
  font-size: 15px;
}
.cart-date {
  position: relative;
}
.cart-date img {
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  height: 25px;
  margin-right: 15px;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  pointer-events: none;
}

.item-card-parent {
  display: none;
}

.in-wishlist {
  color: #00ade7 !important;
}

/* Toast Wishlist */
#toaster {
  background: #00bd1e;
  color: #fff;
  padding: 1em 1.4em;
  height: 45px;
  position: fixed;
  right: 15px;
  top: 20px;
  font-weight: 700;
  border-radius: 3px;
  transform: translateX(140%);
  transition: transform ease 0.7s;
  font-size: 13px;
  display: flex;
  z-index: 999999999;
}

#toaster.is-visible {
  transform: translateX(0);
}

#toaster.is-visible.red {
  background: rgb(161, 1, 1);
}

#toaster .loading-state {
  display: none;
}

.nolp {
  margin-top: 15px;
}
.nolp {
  color: var(--primary-color);
}

.form-control {
  border-radius: 2px !important;
  padding: 10px 18px !important;
  background: transparent !important;
}

.loading-state.active {
  display: inline-block;
}
.loading-state.active .loading {
  border-radius: 50%;
  border-top-color: #73080c !important;
  animation: loading 1s linear infinite;
  width: 28px;
  height: 28px;
  border: 5px solid #ddd;
}
.payment-proceed {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
button.checkout {
  margin-top: 0 !important;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(80deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-popup {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

.loading-popup-content {
  background-color: #fff;
  margin: 15% auto; /* 15% from top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 60%; /* Could be more or less, depending on screen size */
  text-align: center;
}

.loading-popup p {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
.fixed-departures button.btn-style-1 {
  padding: 6px 30px !important;
}

.fixed-departures .departure-table {
  background: #ffffff9e !important;
}
.fixed-departures button.btn-style-1:hover {
  color: #fff !important;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  background: #0000005c;
  z-index: 999;
  top: 0;
  left: 0;
}
.overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-write-review {
  background: #002050 !important;
}

.list-photo-traveler img {
  border-radius: 8px !important;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #ffffff; /* Adjust color as needed */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px; /* Space between spinner and message */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.book-btn {
  flex: 1;
}

.card-left-content .input-group button {
  background: #0c468a;
}
.form-all {
  background: #fff;
  padding: 38px 50px;
}

.group-prices.main-prices.show {
  position: static;
  visibility: visible;
  opacity: 1;
}

.price-addon {
  color: #0090d8;
  font-weight: 500;
}

.addons .addon-title {
  background: #eee;
  padding: 15px 20px;
}
.addons .data-addons {
  padding: 15px 20px;
  border-bottom: 1px solid #7575753d;
}

.addons .addon-title h3 {
  margin: 0;
  font-size: 18px;
  color: #141414;
}
.addons-data {
  border: 2px solid #eee;
  border-radius: 10px;
}

.addon-options-pkg i,
.addon-options-pkg svg {
  font-size: 12px;
}

/* Pagination*/

.pagination {
  padding: 20px 0;
}

.pagination ul {
  margin-left: 0;
  padding-left: 0;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
  color: #183761;
  text-decoration: none;
}

.navigation li {
  display: inline;
  display: inline-grid;
  margin-bottom: 10px;
  margin-left: 7px;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
  background-color: #ffffff;
  border-radius: 3px;
  cursor: pointer;
  padding: 7px 18px;
  font-weight: 400;
  font-size: 14px;
}

.navigation li a:hover,
.navigation li.active a {
  background-color: #00336f;
  color: #fff;
}
.navigation li a {
  border: 1px solid var(--primary-color);
}

.cart-left-content .remove-cart,
.card-2 .remove-cart {
  top: -19px;
  font-size: 21px;
  right: 6px;
  width: 45px;
  height: 45px;
  margin: 0;
  position: absolute;
  color: #b40d12;
  background: #ececec;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.cart-left-content .remove-cart:hover,
.card-2 .remove-cart:hover {
  color: #610105;
}

.card-2 .remove-cart {
  width: 35px;
  height: 35px;
}

.select-box-title select {
  background: #eee;
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
}

.departures-page .card-departure .join {
  padding: 10px 25px;
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 700;
}

.departures-page .card-departure .join:hover {
  background: var(--secondary-color);
}

.departures-page .card-departure .img a img {
  border-radius: 4px;
}

.departure-datas {
  display: none;
}

.inner-page-hero {
  padding: 45px 0 0;
}

.card-departure {
  border: 1px solid #d7d7d7;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.card-departure .btn-join button {
  background: #333;
  color: #fff !important;
  transition: var(--transition-1);
  font-size: 16px;
  font-weight: 600;
  padding: 9px 25px;
  border-radius: 5px;
}
.card-departure .btn-join button:hover {
  background: #111;
}

/* Toast Wishlist */
#toaster {
  background: #01461a;
  color: #fff;
  padding: 1em 1.4em;
  height: 45px;
  position: fixed;
  right: 15px;
  top: 20px;
  font-weight: 700;
  border-radius: 3px;
  transform: translateX(140%);
  transition: transform ease 0.7s;
  font-size: 13px;
  display: flex;
  align-items: center;
  z-index: 999999999;
}

#toaster.is-visible {
  transform: translateX(0);
}

#toaster.is-visible {
  background: #3e3e3e;
}

#toaster .loading-state {
  display: none;
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator::after {
font-size: 12px !important;
}


.whatsapp-footer {
  position: fixed;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.16);
  z-index: 999999;
  background: #159143;
  border: 1px solid #cad1ea;
right: 20px;
bottom: 86px;
}

.whatsapp-footer:hover {
  color: #fff;
  background: #086229;
}
