/*============================
    GLOBAL CSS START
============================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p,
span {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  color: var(--paraColor);
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--bodyFont);
}

img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

input,
textarea {
  width: 100%;
  padding: 13px 20px;
  outline: none;
  resize: none;
  border: 1px solid #e4e7e9;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
}

input::placeholder,
textarea::placeholder {
  color: #a6a6ac;
}

button {
  border: none;
}

:root {
  --colorPrimary: #ff5533;
  --colorSecondary: #1a2b49;
  --colorBlue: #0e77f3;
  --colorGreen: #1dd83b;
  --colorRed: #eb4c4c;
  --colorBlack: #040618;
  --colorWhite: #ffffff;
  --paraColor: #747d87;
  --ratingColor: #ffa121;
  --bodyFont: "Inter", sans-serif;
  --boxShadow: 0px 24px 60px 0px rgba(10, 37, 64, 0.14);
}

.common_btn {
  background: var(--colorPrimary);
  color: var(--colorWhite);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 9px 25px;
  justify-content: center;
  text-transform: capitalize;
  position: relative;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  z-index: 1;
  overflow: hidden;
}

.common_btn i {
  margin-left: 8px;
  margin-top: 3px;
}

.common_btn span {
  width: 13px;
  margin-right: 8px;
  margin-top: -4px;
}

.common_btn:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--colorBlack);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.common_btn:hover:after {
  top: auto;
  bottom: 0;
  height: 100%;
}

.section_heading {
  text-align: center;
}

.section_heading.heading_left,
.section_heading.heading_left h2 {
  text-align: left;
}

.section_heading h2,
.section_heading h2 span {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  display: inline-block;
  color: var(--colorBlack);
  position: relative;
}

.section_heading h2::after {
  position: absolute;
  content: "";
  background: url(../images/heading_shape.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 43px;
  top: -20px;
  right: -33px;
}

.section_heading h2 span::after {
  position: absolute;
  content: "";
  background: url(../images/heading_shape_2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80%;
  height: 12px;
  bottom: -8px;
  left: 10%;
  animation: heading_animi linear 2s infinite alternate;
  -webkit-animation: heading_animi linear 2s infinite alternate;
}

@keyframes heading_animi {
  from {
    transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    -o-transform: rotate(3deg);
  }

  to {
    transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
  }
}

.nextArrow,
.prevArrow {
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  text-align: center;
  background: var(--colorWhite);
  border: 1px solid rgba(4, 6, 24, 0.1);
  border-radius: 50%;
  font-size: 15px;
  color: var(--colorBlack);
  cursor: pointer;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.nextArrow,
.nextArrow:hover,
.prevArrow:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

.title {
  color: var(--colorBlack);
  display: block;
  font-size: 20px;
  font-weight: 600;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title:hover {
  color: var(--colorPrimary);
}

.read_btn {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-right: 30px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.read_btn::after {
  position: absolute;
  content: "\f054";
  font-family: "font awesome 5 free";
  font-weight: 600;
  font-size: 11px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  background: rgba(4, 6, 24, 0.06);
  color: var(--colorBlack);
  top: 1px;
  right: 0;
  padding-left: 2px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.read_btn:hover {
  color: var(--colorPrimary);
}

.read_btn:hover::after {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.owl-prev,
.owl-next {
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  text-align: center;
  background: var(--colorWhite) !important;
  border: 1px solid rgba(4, 6, 24, 0.1) !important;
  border-radius: 50% !important;
  font-size: 15px !important;
  color: var(--colorBlack) !important;
  position: absolute;
  top: 50% !important;
  right: -12px;
  transform: translateY(-50%) !important;
  -webkit-transform: translateY(-50%) !important;
  -moz-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  -o-transform: translateY(-50%) !important;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  z-index: 9;
}

.owl-prev {
  right: auto;
  left: -12px;
}

.owl-prev::after,
.owl-next::after {
  position: absolute;
  content: "\f061";
  font-family: "font awesome 5 free";
  font-weight: 600;
  font-size: 14px;
  color: var(--colorBlack);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.owl-prev::after {
  content: "\f060";
}

.owl-next,
.owl-prev:hover,
.owl-next:hover {
  background: var(--colorPrimary) !important;
  border-color: var(--colorPrimary) !important;
}

.owl-next::after,
.owl-prev:hover::after,
.owl-next:hover::after {
  color: var(--colorWhite);
}

.owl-prev span,
.owl-next span {
  font-size: 0;
}

.breadcrumb {
  display: block;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.breadcrumb_overlay {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(4, 6, 24, 0.4) 0%,
    rgba(4, 6, 24, 0) 100%
  );
  backdrop-filter: blur(0px);
  padding: 215px 0px 140px 0px;
}

.breadcrumb_text h1 {
  color: var(--colorWhite);
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 13px;
}

.breadcrumb_text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.breadcrumb_text ul li,
.breadcrumb_text ul li a {
  color: var(--colorWhite) !important;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  border-bottom: 1px solid transparent;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  text-transform: capitalize;
}

.breadcrumb_text ul li:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: rgb(255 255 255 / 78%);
  top: 11px;
  right: -30px;
}

.breadcrumb_text ul li a:hover {
  border-color: var(--colorWhite);
}

.pagination nav ul {
  gap: 10px;
}

.pagination nav ul li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border: 1px solid rgba(4, 6, 24, 0.1);
  background: rgba(255, 255, 255, 0);
  padding: 0;
  border-radius: 0 !important;
  font-size: 14px;
  font-weight: 600;
  color: var(--paraColor);
  transition: all linear 0.3s;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.pagination nav ul li a:hover,
.pagination nav ul li a.active {
  background: var(--colorPrimary);
  color: var(--colorWhite);
  border-color: var(--colorPrimary);
}

/*============================
    GLOBAL CSS END
============================*/

/*============================
    HOME PAGE 01 START
============================*/
/* menu start */
.main_menu {
  width: 100%;
  height: 80px;
  background: var(--colorWhite);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all linear 0.3s;
  box-shadow: 0px 3px 3px 0px rgba(4, 6, 24, 0.1);
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu .navbar-brand {
  width: 135px;
  margin: 0;
  padding: 0;
  border-right: 1px solid rgba(10, 37, 64, 0.2);
  padding-right: 15px;
}

.main_menu .navbar-nav {
  line-height: 80px;
}

.main_menu .navbar-nav .nav-item {
  position: relative;
}

.main_menu .navbar-nav .nav-item .nav-link {
  background: transparent;
  border: 0;
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.7;
  text-transform: capitalize;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  padding: 0;
  margin: 0px 20px;
  position: relative;
}

.main_menu .navbar-nav .nav-item .nav-link i {
  margin-left: 3px;
}

.main_menu .navbar-nav .nav-item .nav-link::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: var(--colorPrimary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transition: all linear 0.3s;
  opacity: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu .navbar-nav .nav-item:hover .nav-link,
.main_menu .navbar-nav .nav-item .nav-link.active {
  color: var(--colorPrimary);
  opacity: 1;
}

.main_menu .navbar-nav .nav-item:hover .nav-link::after {
  opacity: 1;
}

.main_menu .nice-select:after {
  right: 3px;
  margin-top: -6px;
}

.main_menu .submenu {
  position: absolute;
  background: var(--colorWhite);
  line-height: 45px;
  width: 220px;
  top: 120%;
  left: 0px;
  border-top: 1px solid var(--colorPrimary);
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.25s;
  -webkit-transition: all linear 0.25s;
  -moz-transition: all linear 0.25s;
  -ms-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 999;
}

.main_menu .submenu li {
  position: relative;
}

.main_menu .child_menu li a,
.main_menu .submenu li a {
  display: block;
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  text-transform: capitalize;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  padding: 0px 20px;
  position: relative;
  border-bottom: 1px solid #0e77f324;
}

.main_menu .child_menu li:last-child > a,
.main_menu .submenu li:last-child > a {
  border: none;
}

.main_menu .submenu li a::after {
  position: absolute;
  content: "\f061";
  font-family: "font awesome 5 free";
  font-weight: 600;
  font-size: 10px;
  color: var(--paraColor);
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.main_menu .child_menu li a:hover,
.main_menu .child_menu li a.active,
.main_menu .submenu li:hover > a,
.main_menu .submenu li a.active {
  color: var(--colorPrimary);
  opacity: 1;
  padding-left: 25px;
}

.main_menu .submenu li > a.active::after,
.main_menu .submenu li:hover > a::after {
  color: var(--colorPrimary);
  right: 20px;
  opacity: 1;
}

.main_menu .navbar-nav .nav-item:hover .submenu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.main_menu .child_menu {
  position: absolute;
  background: var(--colorWhite);
  line-height: 45px;
  width: 220px;
  top: 20px;
  left: 100%;
  border-top: 1px solid var(--colorPrimary);
  opacity: 0;
  visibility: hidden;
  transition: all linear 0.25s;
  -webkit-transition: all linear 0.25s;
  -moz-transition: all linear 0.25s;
  -ms-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 999;
}

.main_menu .submenu li:hover .child_menu {
  top: -1px;
  opacity: 1;
  visibility: visible;
}

.main_menu.menu_fix {
  left: 0;
  top: 0;
  z-index: 999;
  animation: menu_animate 2s;
  -webkit-animation: menu_animate 2s;
}

@keyframes menu_animate {
  from {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
  }
}

/* menu end */

/* banner start */
.banner {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height: 100vh;
}

.banner div {
  height: 100%;
}

.banner_overlay {
  background: linear-gradient(
    100deg,
    rgba(4, 6, 24, 0.9) 0.42%,
    rgba(4, 6, 24, 0) 67.32%
  );
}

.banner_text {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.banner_text h5 {
  color: var(--colorRed);
  background: var(--colorWhite);
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.banner_text h1,
.banner_text h1 span {
  color: var(--colorWhite);
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -1.4px;
  max-width: 65%;
}

.banner_text h1 span {
  color: var(--colorPrimary);
}

.banner_text h1 span b {
  font-weight: 700 !important;
}

/* banner end */

/* destinations start */
.destinations {
  position: relative;
}

.destinations .nextArrow,
.destinations .prevArrow {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 1;
}

.destinations .prevArrow {
  right: auto;
  left: -8px;
  border: none;
}

.destinations .all_destination {
  color: var(--colorBlack);
  background: rgba(4, 6, 24, 0.06);
}

.destinations .all_destination:hover {
  color: var(--colorWhite);
}

.destinations .all_destination:after {
  background-color: var(--colorPrimary);
}

.destinations::after {
  position: absolute;
  content: "";
  background: url(../images/shape_1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 46px;
  height: 60px;
  left: 12%;
  top: 3%;
}

/* destinations end */

/* special offer start */
.offer_item {
  position: relative;
  height: 380px;
  overflow: hidden;
  margin-top: 25px;
}

.offer_item img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.offer_item .text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 60px;
  max-width: 70%;
}

.offer_item .text p {
  color: var(--colorWhite);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  background: var(--colorPrimary);
  display: inline-block;
  padding: 4px 12px;
  box-shadow: 0px 2px 3px 0px rgba(10, 37, 64, 0.1);
}

.offer_item .text h3 {
  color: var(--colorBlack);
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 35px;
  background: rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding: 8px 16px;
}

.offer_item_large .text {
  max-width: 50%;
}

.offer_item:hover img {
  transform: scale(1.06) rotate(2deg);
  -webkit-transform: scale(1.06) rotate(2deg);
  -moz-transform: scale(1.06) rotate(2deg);
  -ms-transform: scale(1.06) rotate(2deg);
  -o-transform: scale(1.06) rotate(2deg);
}

/* special offer end */

/* filter start */
.filter {
  position: relative;
}

.filter::after {
  position: absolute;
  content: "";
  background: url(../images/filter_bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.filter .section_heading h2::after {
  display: none;
}

.filter .section_heading span {
  color: var(--colorPrimary);
}

.filter .section_heading span b {
  font-weight: 700;
}

.filter .section_heading h2 span::after {
  display: none;
}

.filter .ah-headline.clip .ah-words-wrapper::before {
  top: 6px;
}

.common_card {
  background: var(--colorWhite);
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  box-shadow: rgb(100 100 111 / 13%) 0px 2px 14px 0px;
  padding-top: 1px;
}

.hotel_card_area .owl-stage {
  display: flex;
}

.hotel_card_area .owl-item {
  display: flex;
}

.hotel_card_area .owl-item .common_card {
  width: 100%;
}

.filter .common_card {
  margin: 5px 12px 20px 12px;
}

.destinations .common_card {
  margin: 5px 12px 20px 12px;
}

.common_card_img {
  height: 210px;
  position: relative;
  margin: 10px;
  overflow: hidden;
}

.common_card_img img {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.common_card_img span {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  color: var(--colorWhite);
  font-size: 13px;
  font-weight: 500;
  background: var(--colorPrimary);
  padding: 2px 14px;
  display: inline-block;
}

.common_card_img a {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: var(--colorBlack);
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  color: var(--colorWhite);
}

.common_card_img .common_card_image_link {
  background: transparent;
  border-radius: 0;
  color: inherit;
  display: block;
  height: 100%;
  line-height: normal;
  position: static;
  width: 100%;
}

.common_card_img .common_card_image_link img {
  height: 100%;
  object-fit: cover;
}

.common_card_img > a,
.common_card_text .author_img {
  display: none;
}

.common_card_img > a.common_card_image_link {
  display: block;
}

.common_card_text {
  flex: 1;
  padding: 10px 30px 35px 30px;
  position: relative;
}

.common_card_text .author_img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -27px;
  right: 30px;
}

.common_card_text .rating {
  color: var(--ratingColor);
  font-size: 14px;
  margin-bottom: 7px;
}

.common_card_text .rating span {
  font-size: 13px;
  margin-left: 5px;
}

.common_card_text .location {
  font-size: 14px;
  font-weight: 500;
  background: rgba(4, 6, 24, 0.06);
  padding: 4px 15px 4px 35px;
  margin-top: 18px;
  margin-bottom: 23px;
  position: relative;
  display: inline-block;
}

.common_card_text .location::after {
  position: absolute;
  content: "";
  background: url(../images/location_icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 18px;
  top: 6px;
  left: 13px;
}

.common_card_text .description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.common_card_text_footer {
  border-top: 1px solid rgba(4, 6, 24, 0.1);
  align-items: center;
  padding: 15px 30px;
}

.common_card_text_footer h5,
.common_card_text_footer h5 del,
.common_card_text_footer h5 span {
  font-size: 18px;
  font-weight: 500;
  color: var(--colorPrimary);
}

.common_card_text_footer h5 del,
.common_card_text_footer h5 span {
  color: var(--paraColor);
}

.filter .tab-content .tab-pane {
  transition: opacity 0.01s linear;
  -webkit-transition: opacity 0.01s linear;
  -moz-transition: opacity 0.01s linear;
  -ms-transition: opacity 0.01s linear;
  -o-transition: opacity 0.01s linear;
}

.common_card:hover .common_card_img img {
  transform: scale(1.07) rotate(2deg);
  -webkit-transform: scale(1.07) rotate(2deg);
  -moz-transform: scale(1.07) rotate(2deg);
  -ms-transform: scale(1.07) rotate(2deg);
  -o-transform: scale(1.07) rotate(2deg);
}

/* filter end */

/* why choose us start */
.why_choose_item {
  border: 1px solid rgba(4, 6, 24, 0.14);
  background: var(--colorWhite);
  position: relative;
  text-align: center;
  padding: 40px 30px;
  margin-top: 70px;
}

.why_choose_item span {
  display: block;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(4, 6, 24, 0.14);
  background: #fff;
  border-radius: 50%;
  padding: 26px;
  margin: 0 auto;
  margin-top: -85px;
}

.why_choose_item h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 8px;
}

.why_choose_item p {
  /* color: #747D87; */
  text-align: center;
  /* font-size: 15px; */
  /* font-weight: 500; */
  line-height: 24px;
}

.wsys__why_choose_us .section_heading h2 span::after {
  height: 10px;
  width: 100%;
  left: 0;
}

/* why choose us end */

/* testimonial start */
.testimonial .section_heading h2::after {
  display: none;
}

.testimonial_bg {
  position: relative;
  border: 1px solid rgba(10, 37, 64, 0.06);
  padding: 90px 80px;
  background: var(--colorWhite);
  z-index: 1;
}

.testimonial_bg::after {
  position: absolute;
  content: "";
  background: url(../images/testimonial_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.single_testimonial .rating {
  color: var(--ratingColor);
}

.single_testimonial .descroption {
  font-size: 18px;
  /* font-weight: 500; */
  line-height: 30px;
  margin-top: 12px;
  margin-bottom: 30px;
}

.single_testimonial_footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.single_testimonial_footer .img {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 15px;
}

.single_testimonial_footer h3 {
  color: var(--colorBlack);
  font-size: 18px;
  font-weight: 600;
}

.single_testimonial_footer h3 span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 5px;
}

.testimonial .nextArrow,
.testimonial .prevArrow {
  position: absolute;
  left: -420px;
  bottom: 95px;
}

.testimonial .prevArrow {
  left: -470px;
}

.testimonial .slick-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 50px;
}

.testimonial .slick-dots li button {
  width: 12px;
  height: 12px;
  border: 1px solid var(--colorBlack);
  font-size: 0;
  background: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.testimonial .slick-dots li.slick-active button {
  background: var(--colorBlack);
}

/* testimonial end */

/* counter start */
.counter_area {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(4, 6, 24, 0.14);
}

.counter_area li {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(4, 6, 24, 0.14);
  background: rgba(4, 6, 24, 0);
  padding: 50px;
}

.counter_area li:last-child {
  border: none;
}

.counter_area li .counter_icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.counter_area li h2,
.counter_area li h2 span {
  color: var(--colorBlack);
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}

/* counter end */

/* footer start */

footer {
  background: var(--colorSecondary);
}

.footer_link {
  padding-left: 20px;
}

.footer_link h3 {
  color: var(--colorWhite);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.footer_link ul li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--colorWhite);
  margin-top: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_link ul li a:hover {
  color: var(--colorWhite);
}

.footer_follow {
  margin-top: 0;
}

.footer_social_list {
  gap: 6px;
}

.footer_social_list li {
  display: flex;
}

.footer_link .footer_social_list li a {
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  justify-content: center;
  width: 40px;
  height: 40px;
  line-height: 1;
  margin-top: 0;
  text-align: center;
}

.footer_link .footer_social_list li a:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

.footer_getyourguide_link img {
  height: 22px !important;
  object-fit: cover !important;
  width: 22px !important;
  border-radius: 100%;
}

.footer_contact_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer_contact_item {
  align-items: flex-start;
  color: var(--colorWhite);
  display: flex;
  gap: 12px;
  line-height: 24px;
  transition: all linear 0.3s;
}

.footer_contact_item i {
  color: var(--colorWhite);
  flex: 0 0 18px;
  line-height: 24px;
  text-align: center;
}

.footer_contact_item span {
  color: var(--colorWhite);
  font-size: 15px;
  font-weight: 500;
}

.footer_contact_item:hover,
.footer_contact_item:hover i,
.footer_contact_item:hover span {
  color: var(--colorWhite);
}

.footer_company_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer_link .footer_company_list li a {
  margin-top: 0;
}

.footer_logo_area .footer_logo {
  display: inline-block;
  width: 135px;
}

.footer_logo_area p {
  line-height: 26px;
  margin-top: 25px;
  margin-bottom: 35px;
  text-align: left;
  max-width: 90%;
}

.footer_logo_area ul {
  gap: 6px;
}

.footer_logo_area ul li a {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--colorWhite);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_logo_area ul li a:hover {
  background: var(--colorPrimary) !important;
  border-color: var(--colorPrimary) !important;
  /* box-shadow: 0px 8px 16px 0px rgba(14, 119, 243, 0.3); */
}

.footer_copyright {
  background: var(--colorSecondary);
}

.footer_copyright_text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}

.footer_copyright_text p span {
  color: var(--colorWhite);
}

.footer_copyright_text .img {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 250px;
  height: 35px;
}

.footer_copyright_text .img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* footer end */

/*============================
    HOME PAGE 01 END
============================*/

/*============================
    HOME PAGE 02 START
============================*/
/* offer package start */
.offer_package_item {
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin: 0px 12px;
}

.offer_package_item .text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px;
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.offer_package_item .text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 600;
}

.offer_package_item .text h2 {
  color: var(--colorWhite);
  font-size: 26px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 30px;
}

.offer_package_item .text a {
  color: var(--colorWhite);
}

.offer_package_item .text a::after {
  background: rgba(255, 255, 255, 0.1);
  color: var(--colorWhite);
}

.offer_package_item .text a:hover {
  color: var(--colorBlack);
}

.offer_package_item .text a:hover:after {
  background: var(--colorBlack);
}

.offer_package .nextArrow,
.offer_package .prevArrow {
  position: absolute;
  top: -90px;
  right: 12px;
  z-index: 1;
}

.offer_package .prevArrow {
  right: 62px;
}

/* offer package end */

/*============================
    HOME PAGE 02 END
============================*/

/*============================
    HOME PAGE 03 START
============================*/
/* why choose 3 start */
.why_choose_3_text ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
}

.why_choose_3_text ul li .img {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(4, 6, 24, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
  padding: 17px;
}

.why_choose_3_text ul li .img {
  width: auto !important;
  height: auto !important;
}

.why_choose_3_text ul li .text {
  width: 70%;
}

.why_choose_3_text ul li .text h3 {
  font-size: 18px;
  font-weight: 600;
}

.why_choose_3_text ul li .text p {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.why_choose_3_img {
  height: 535px;
  position: relative;
}

.why_choose_3_img p {
  border-radius: 10px;
  background: var(--colorWhite);
  box-shadow: 0px 10px 20px 0px rgba(4, 6, 24, 0.1);
  position: absolute;
  bottom: 70px;
  right: -35px;
  padding: 20px 30px;
  font-size: 16px;
  max-width: 310px;
}

.why_choose_3_img p span {
  font-size: 16px;
  color: var(--colorBlack);
}

/* why choose 3 end */

/*============================
    HOME PAGE 03 END
============================*/

/*============================
    ABOUT US PAGE START
============================*/
.about_why_choose .section_heading h2::after {
  display: none;
}

.about .vision_mission_list {
  padding-left: 0;
}

.about .why_choose_3_text .vision_mission_list .vision_mission_item {
  align-items: flex-start;
  margin-top: 30px;
}

.about
  .why_choose_3_text
  .vision_mission_list
  .vision_mission_item:first-child {
  margin-top: 0;
}

.about .why_choose_3_text .vision_mission_list .text {
  width: 100%;
}

.about .vision_mission_list h3 {
  margin-bottom: 12px;
}

.about .vision_mission_list ol {
  counter-reset: mission;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.about .why_choose_3_text .about_intro_text,
.about .why_choose_3_text .vision_mission_list .vision_mission_body {
  display: block;
  color: var(--paraColor);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  text-align: justify;
}

.about .why_choose_3_text .about_intro_text {
  margin-bottom: 30px;
}

.about .why_choose_3_text .vision_mission_list p.vision_mission_body {
  margin-bottom: 0;
}

.about .why_choose_3_text .vision_mission_list ol li {
  counter-increment: mission;
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 6px;
  align-items: start;
  list-style: none;
  margin-top: 10px;
}

.about .why_choose_3_text .vision_mission_list ol li::before {
  content: counter(mission) ".";
  color: var(--paraColor);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.about .why_choose_3_text .vision_mission_list ol li:first-child {
  margin-top: 0;
}

/* team start */
.team .section_heading h2::after {
  display: none;
}

.single_team {
  position: relative;
  overflow: hidden;
  height: 525px;
  margin-top: 25px;
}

.single_team .text {
  background: var(--colorBlack);
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 100%;
  padding: 25px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  opacity: 0;
}

.single_team .text a {
  color: var(--colorWhite);
  text-align: center;
  margin-bottom: 5px;
}

.single_team .text a:hover {
  color: var(--colorPrimary);
}

.single_team .text p {
  color: var(--colorWhite);
  opacity: 0.6;
  text-align: center;
}

.single_team ul {
  position: absolute;
  top: 0;
  right: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  opacity: 0;
}

.single_team ul li a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--colorWhite);
  margin-bottom: 2px;
  color: var(--paraColor);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.single_team ul li a:hover {
  color: var(--colorBlack);
}

.single_team:hover .text {
  bottom: 0;
  opacity: 1;
}

.single_team:hover ul {
  opacity: 1;
  top: 30px;
  right: 30px;
}

.gallery .single_team {
  background: var(--colorWhite);
  box-shadow: rgb(100 100 111 / 13%) 0px 2px 14px 0px;
}

.gallery .single_team img {
  height: 100%;
  object-fit: cover;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.gallery .single_team::after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(4, 6, 24, 0.46);
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.gallery .single_team .text {
  top: 50%;
  bottom: auto;
  left: 50%;
  z-index: 1;
  width: calc(100% - 60px);
  padding: 0;
  background: transparent;
  text-align: center;
  transform: translate(-50%, -40%);
  -webkit-transform: translate(-50%, -40%);
  -moz-transform: translate(-50%, -40%);
  -ms-transform: translate(-50%, -40%);
  -o-transform: translate(-50%, -40%);
}

.gallery .single_team .text a,
.gallery .single_team .text p {
  color: var(--colorWhite);
}

.gallery .single_team .text p {
  opacity: 0.86;
}

.gallery .single_team ul,
.gallery .single_team:hover ul {
  display: none;
}

.gallery .single_team:hover img {
  transform: scale(1.07) rotate(2deg);
  -webkit-transform: scale(1.07) rotate(2deg);
  -moz-transform: scale(1.07) rotate(2deg);
  -ms-transform: scale(1.07) rotate(2deg);
  -o-transform: scale(1.07) rotate(2deg);
}

.gallery .single_team:hover::after {
  opacity: 1;
}

.gallery .single_team:hover .text {
  bottom: auto;
  opacity: 1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.trip_photo_card {
  aspect-ratio: 16 / 9;
  border: 0;
  cursor: pointer;
  display: block;
  height: auto;
  padding: 0;
  text-align: left;
  width: 100%;
}

.trip_photo_empty {
  color: var(--paraColor);
  font-size: 16px;
  line-height: 26px;
  margin-top: 25px;
  text-align: center;
}

.trip_photo_modal_open {
  overflow: hidden;
}

.trip_photo_modal[hidden] {
  display: none;
}

.trip_photo_modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 30px;
  position: fixed;
  z-index: 9999;
}

.trip_photo_modal_backdrop {
  background: rgba(4, 6, 24, 0.82);
  border: 0;
  cursor: pointer;
  inset: 0;
  padding: 0;
  position: absolute;
}

.trip_photo_modal_dialog {
  max-width: 960px;
  position: relative;
  width: min(100%, 960px);
  z-index: 1;
}

.trip_photo_modal_image {
  background: var(--colorBlack);
  display: block;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  width: 100%;
}

.trip_photo_modal_text {
  background: var(--colorWhite);
  padding: 22px 26px;
  text-align: center;
}

.trip_photo_modal_text h3 {
  color: var(--colorBlack);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.trip_photo_modal_text p {
  color: var(--paraColor);
  font-size: 16px;
  line-height: 26px;
}

.trip_photo_modal_close,
.trip_photo_modal_arrow {
  align-items: center;
  background: var(--colorWhite);
  border: 0;
  color: var(--colorBlack);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  position: absolute;
  transition: all linear 0.3s;
  width: 44px;
  z-index: 2;
}

.trip_photo_modal_close:hover,
.trip_photo_modal_arrow:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.trip_photo_modal_close {
  right: 0;
  top: -54px;
}

.trip_photo_modal_arrow {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.trip_photo_modal_arrow[hidden] {
  display: none;
}

.trip_photo_modal_arrow_prev {
  left: -64px;
}

.trip_photo_modal_arrow_next {
  right: -64px;
}

/* team end */

/* faq start */
/*============================
    ABOUT US PAGE END
============================*/

/*============================
    HOTEL DETAILS START
============================*/
.hotel_details .nextArrow,
.hotel_details .prevArrow {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 1;
}

.hotel_details .prevArrow {
  right: auto;
  left: -8px;
  border: 0;
}

.details_header {
  position: relative;
}

.details_header .video {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--colorWhite);
  color: var(--colorBlack);
  border: 1px solid #e6e6e8;
  border-radius: 50%;
  font-size: 16px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  margin-bottom: 10px;
}

.details_header .video:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.details_header h3 {
  margin: 0 !important;
}

.details_header .location {
  font-size: 14px;
  font-weight: 500;
  background: rgba(4, 6, 24, 0.06);
  padding: 4px 15px 4px 35px;
  margin-top: 18px;
  display: inline-block;
  position: relative;
}

.details_header .location::after {
  position: absolute;
  content: "";
  background: url(../images/location_icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 18px;
  top: 6px;
  left: 13px;
}

.details_header .bookmark {
  position: absolute;
  top: 0;
  right: 10px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  color: var(--colorBlack);
  background: rgba(4, 6, 24, 0.06);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.details_header .bookmark:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.details_header .rating {
  color: var(--ratingColor);
  font-size: 14px;
  margin-bottom: 7px;
}

.details_header .rating span {
  font-size: 13px;
  margin-left: 5px;
}

.area_border {
  border-bottom: 1px solid rgba(4, 6, 24, 0.06);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.area_border h3 {
  color: var(--colorBlack);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.details_about p {
  line-height: 26px;
  text-align: justify;
}

.full_description_read_more {
  margin-top: 20px;
}

.full_description_text {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
  max-height: 52px;
  overflow: hidden;
  text-align: justify;
}

.full_description_read_more.show_more .full_description_text {
  display: block;
  max-height: none;
  overflow: visible;
}

.full_description_text p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0 0 14px;
}

.full_description_text p:last-child {
  margin-bottom: 0;
}

.full_description_read_more_btn {
  margin-top: 8px;
}

.details_rules ul li {
  color: var(--paraColor);
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
  position: relative;
  padding-left: 15px;
}

.details_rules ul li::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--paraColor);
  top: 9px;
  left: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.details_rules .meeting_point_list li span,
.details_rules .meeting_point_list li p {
  color: var(--paraColor);
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
  text-align: justify;
}

.details_rules .meeting_point_list li p {
  margin-top: 4px;
}

.details_rules .details_include_list li {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  padding-left: 0;
}

.details_rules .details_include_list li::after {
  display: none;
}

.details_rules .details_include_list i {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 26px;
}

.details_rules .details_include_list .is_included i {
  color: #198754;
}

.details_rules .details_include_list .is_excluded i {
  color: var(--colorRed);
}

.important_information_list {
  display: grid;
  gap: 28px;
  margin-top: 20px;
}

.important_information_group h4 {
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 500;
  /* margin-bottom: 12px; */
  text-transform: capitalize;
}

.details_rules .important_information_group ul li {
  margin-top: 10px;
  text-align: justify;
}

.hotel_details_sidebar {
  padding-left: 50px;
}

.sidebar_booking {
  border: 1px solid rgba(4, 6, 24, 0.1);
  padding: 25px;
}

.sidebar_booking .nav {
  justify-content: space-between;
  gap: 10px;
}

.sidebar_booking .nav-item {
  width: 47.5%;
}

.sidebar_booking .nav-link {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 500;
  background: rgba(4, 6, 24, 0.06);
  width: 100%;
  border-radius: 0 !important;
}

.sidebar_booking_info form ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 12px;
}

.sidebar_booking_info form ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 10px;
  position: relative;
  z-index: 9;
  border: 1px solid rgba(4, 6, 24, 0.1);
}

.sidebar_booking_info form ul li:last-child {
  width: 100%;
  padding: 10px;
}

.sidebar_booking_info form ul li.qnty_open {
  z-index: 100;
}

.sidebar_booking_info form ul li .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: var(--colorBlack);
  font-size: 18px;
  font-weight: 500;
  border-right: 1px solid rgba(4, 6, 24, 0.1);
}

.sidebar_booking_info form ul li .text {
  width: 75%;
}

.sidebar_booking_info form ul li h3 {
  color: var(--paraColor);
  font-size: 12px;
  font-weight: 500;
  padding-left: 10px;
  margin-bottom: 5px;
}

.sidebar_booking_info form ul li .text h3 {
  margin-bottom: 0;
}

.sidebar_booking_info form ul li input {
  padding: 0 10px;
  border: none;
  font-size: 14px;
  font-weight: 600;
}

.sidebar_booking_info form ul li .tour-date,
.sidebar_booking_info form ul li .guest_input {
  caret-color: transparent;
  cursor: pointer;
}

.sidebar_booking_info form ul li input::placeholder {
  color: var(--colorBlack);
}

.sidebar_booking_info form ul li .guest_input {
  display: block;
  width: 100%;
  height: 26px;
  min-height: 26px;
  padding: 0 10px;
  border: none;
  overflow: hidden;
  resize: none;
  color: var(--colorBlack);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
}

.sidebar_booking_info form ul li .guest_input::placeholder {
  color: var(--colorBlack);
}

.sidebar_booking_info form ul li .select2-container {
  width: 100% !important;
}

.sidebar_booking_info form ul li .select2-container .select2-selection--single {
  height: auto;
  min-height: 26px;
  padding: 0 34px 0 10px;
  background: transparent;
  border: none;
  border-radius: 0;
}

.sidebar_booking_info
  form
  ul
  li
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  padding: 0;
}

.sidebar_booking_info
  form
  ul
  li
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  right: 8px;
  top: 0;
}

.sidebar_booking_info
  form
  ul
  li
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  right: 0;
  top: 50%;
  margin-top: -5px;
}

.select2-dropdown.language_select_dropdown {
  padding: 18px;
  background: var(--colorWhite);
  border: 1px solid #eee;
  border-radius: 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  animation: languageSelectDropdown 0.3s linear forwards;
}

@keyframes languageSelectDropdown {
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.select2-dropdown.language_select_dropdown .select2-results__options {
  max-height: none;
}

.select2-dropdown.language_select_dropdown .select2-results__option {
  min-height: auto;
  line-height: 1.4;
  padding: 12px 0;
  border-bottom: 1px solid rgba(4, 6, 24, 0.1);
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
}

.select2-dropdown.language_select_dropdown .select2-results__option:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.select2-dropdown.language_select_dropdown
  .select2-results__option:first-child {
  padding-top: 0;
}

.select2-container--default
  .language_select_dropdown
  .select2-results__option--selected,
.select2-container--default
  .language_select_dropdown
  .select2-results__option--highlighted.select2-results__option--selectable {
  background: transparent;
  color: var(--colorPrimary);
}

.sidebar_booking_info form .common_btn {
  width: 100%;
}

.booking_option_notice {
  color: var(--colorRed);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 12px;
}

.booking_option_notice[hidden] {
  display: none;
}

.sidebar_booking_info .quentity_dropdown {
  left: 0;
  right: 0;
  width: 100%;
  min-width: unset;
  padding: 18px;
  position: absolute;
  top: calc(100% + 12px);
  margin-top: 0;
  height: auto;
  min-height: 0;
  background: var(--colorWhite);
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  z-index: 1;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}

.sidebar_booking_info .quentity_dropdown.show_qnty {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}

.sidebar_booking_info .quentity_area p {
  font-size: 14px;
  font-weight: 500;
  color: var(--colorBlack);
}

.sidebar_booking_info .quentity_area .guest_age {
  color: var(--paraColor);
}

.sidebar_booking_info .quentity_area {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(4, 6, 24, 0.1);
  padding-bottom: 15px;
}

.sidebar_booking_info .quentity_area .qnty_item button {
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  border-radius: 50% !important;
  background: none;
  border: 1px solid #eee;
  transition: all linear 0.3s;
  font-size: 13px;
  margin: 0;
  padding: 0;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
}

.sidebar_booking_info .quentity_area .qnty_item input {
  width: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.sidebar_booking_info .quentity_area .qnty_item button.minus:hover {
  background: var(--colorRed);
  border-color: var(--colorRed);
}

.sidebar_booking_info .quentity_area .qnty_item button:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
  color: var(--colorWhite);
}

.sidebar_map {
  height: 270px;
  margin-top: 25px;
}

.sidebar_map iframe {
  width: 100%;
  height: 100%;
}

.room_details_slider_item {
  height: 570px;
  margin: 0px 12px;
}

.room_details .room_border {
  border-bottom: 1px solid rgba(4, 6, 24, 0.06);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

/*============================
    HOTEL DETAILS END
============================*/

/*============================
    ERROR START
============================*/
.error_text {
  text-align: center;
}

.error_text .img {
  max-height: 670px;
}

.error_text a {
  margin-top: 45px;
}

.error_text a i {
  margin-left: 0;
  margin-right: 8px;
}

/*============================
    ERROR END
============================*/

/*================================
    VIEW OPTION START
================================*/
.container_view_option {
  display: block;
  margin-top: 30px;
  padding: 30px;
  border: 1px solid rgba(4, 6, 24, 0.1);
}

.container_view_option[hidden] {
  display: none;
}

.container_view_option.view_option_accordion {
  padding: 0;
  border: none;
}

.view_option_area_border[hidden] {
  display: none;
}

.view_option_card + .view_option_card {
  margin-top: 14px;
}

.view_option_card {
  scroll-margin-top: 110px;
}

.view_option_toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(4, 6, 24, 0.1);
  background: var(--colorWhite);
  color: var(--colorBlack);
  text-align: left;
  transition: all linear 0.3s;
}

.view_option_toggle span {
  display: grid;
  gap: 5px;
}

.view_option_toggle strong {
  font-size: 18px;
  font-weight: 600;
}

.view_option_toggle small {
  color: var(--colorPrimary);
  font-size: 14px;
  font-weight: 600;
}

.view_option_toggle i {
  flex: 0 0 auto;
  transition: transform linear 0.3s;
}

.view_option_card.active .view_option_toggle {
  border-color: var(--colorPrimary);
}

.view_option_card.active .view_option_toggle i {
  transform: rotate(180deg);
}

.view_option_accordion .view_option_body {
  display: grid;
  grid-template-rows: 0fr;
  border-right: 1px solid rgba(4, 6, 24, 0.1);
  border-bottom: 1px solid rgba(4, 6, 24, 0.1);
  border-left: 1px solid rgba(4, 6, 24, 0.1);
  opacity: 0;
  transition: all linear 0.3s;
}

.view_option_accordion .view_option_body_inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: all linear 0.3s;
}

.view_option_accordion .view_option_card.active .view_option_body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.view_option_accordion .view_option_card.active .view_option_body_inner {
  padding: 24px 20px 24px;
}

.view_option_section h3 {
  color: var(--colorBlack);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.view_option_section h4 {
  color: var(--colorBlack);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.view_option_desc {
  line-height: 26px;
  text-align: justify;
}

.view_option_more {
  display: none;
}

.view_option_ellipsis {
  display: inline;
}

.view_option_desc.show_more .view_option_more {
  display: inline;
}

.view_option_desc.show_more .view_option_ellipsis {
  display: none;
}

.view_option_read_more {
  color: var(--colorPrimary);
  font-size: 15px;
  font-weight: 600;
  background: none;
  padding: 0;
}

.view_option_info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.view_option_info i {
  color: var(--colorPrimary);
  font-size: 18px;
  line-height: 1;
}

.view_option_info p {
  margin: 0;
}

.view_option_tomorrow_btn {
  line-height: 1.4;
  padding: 0;
  background: none;
  color: var(--colorPrimary);
  font-size: 15px;
  font-weight: 600;
}

.view_option_tomorrow_btn[hidden] {
  display: none;
}

.view_option_pickup_choices {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.view_option_pickup_choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(4, 6, 24, 0.1);
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.view_option_pickup_choice input {
  width: 16px;
  height: 16px;
  accent-color: var(--colorPrimary);
  flex: 0 0 auto;
}

.view_option_pickup_location {
  margin-top: 15px;
}

.view_option_pickup_location[hidden] {
  display: none;
}

.view_option_pickup_location label {
  display: block;
  color: var(--paraColor);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.view_option_pickup_location textarea {
  width: 100%;
  min-height: 92px;
  padding: 12px 14px;
  border: 1px solid rgba(4, 6, 24, 0.1);
  color: var(--colorBlack);
  cursor: text;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  resize: vertical;
}

.view_option_pickup_location textarea:focus {
  border-color: var(--colorPrimary);
}

.view_option_customer_fields {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.view_option_customer_fields label {
  display: grid;
  gap: 8px;
}

.view_option_customer_fields span {
  color: var(--paraColor);
  font-size: 13px;
  font-weight: 500;
}

.view_option_customer_fields input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(4, 6, 24, 0.1);
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
}

.view_option_customer_fields input:focus {
  border-color: var(--colorPrimary);
}

.view_option_times {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.view_time_btn {
  padding: 10px 18px;
  border: 1px solid rgba(4, 6, 24, 0.1);
  background: var(--colorWhite);
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 600;
  transition: all linear 0.3s;
}

.view_time_btn.active,
.view_time_btn:hover {
  border-color: var(--colorPrimary);
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.view_time_btn:disabled,
.view_time_btn.disabled {
  border-color: rgba(4, 6, 24, 0.08);
  background: rgba(4, 6, 24, 0.04);
  color: rgba(4, 6, 24, 0.35);
  cursor: not-allowed;
  opacity: 0.65;
}

.view_time_btn:disabled:hover,
.view_time_btn.disabled:hover {
  border-color: rgba(4, 6, 24, 0.08);
  background: rgba(4, 6, 24, 0.04);
  color: rgba(4, 6, 24, 0.35);
}

.view_option_price_list {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
}

.view_option_price_item {
  display: block;
}

.view_option_book_btn {
  margin-top: 20px;
}

.view_option_book_btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
/*================================
    VIEW OPTION END
================================*/

/*============================
    CONTACT START
============================*/
.contact_form h3 {
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 55px;
}

.contact_form form {
  background: #eff5fc;
  padding: 55px 410px 120px 80px;
  position: relative;
}

.contact_img {
  position: absolute;
  width: 370px;
  height: 590px;
  right: 0;
  bottom: 0;
}

.contact_input {
  margin-top: 20px;
}

.contact_input label {
  color: var(--colorBlack);
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.contact_input input,
.contact_input textarea {
  border: 0;
  border-radius: 0;
}

.contact_input textarea {
  padding: 20px;
}

.contact_input .form-check {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  min-height: auto;
  padding-left: 0;
}

.contact_input .form-check input {
  flex: 0 0 16px;
  height: 16px;
  margin: 2px 0 0;
  padding: 0;
  border-radius: 0;
  border: 1px solid rgb(4 6 24 / 25%);
  width: 16px;
}

.contact_input .form-check label {
  color: var(--colorBlack);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.contact_intro {
  margin-top: 70px;
  text-align: center;
}

.contact_intro h3 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact_intro p {
  line-height: 26px;
  margin: 0 auto 25px;
  max-width: 720px;
}

.contact_info_row {
  align-items: stretch;
}

.contact_info_row > [class*="col-"] {
  display: flex;
}

.contact_info_row .contact_info {
  height: calc(100% - 25px);
}

.contact_info {
  background: #eff5fc;
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 50px;
  margin-top: 25px;
  width: 100%;
}

.contact_info span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: block;
  border: 1px solid rgba(14, 119, 243, 0.3);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 17px;
}

.contact_info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 15px;
}

.contact_info p,
.contact_info a {
  font-size: 15px;
  font-weight: 500;
  color: var(--paraColor);
  display: block;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.contact_info a:hover {
  color: var(--colorPrimary);
}

.contact_map {
  height: 570px;
}

.contact_map iframe {
  width: 100%;
  height: 100%;
}

/*============================
    CONTACT END
============================*/

@media (max-width: 1199.98px) {
  .hotel_details_sidebar {
    margin-top: 40px;
  }

  .trip_photo_modal_arrow_prev {
    left: 10px;
  }

  .trip_photo_modal_arrow_next {
    right: 10px;
  }
}

@media (max-width: 767.98px) {
  .trip_photo_modal {
    padding: 18px;
  }

  .trip_photo_modal_image {
    max-height: calc(100vh - 250px);
  }

  .trip_photo_modal_text {
    padding: 18px;
  }

  .trip_photo_modal_text h3 {
    font-size: 22px;
  }

  .trip_photo_modal_close {
    right: 0;
    top: -50px;
  }
}
