/*!
Theme Name: luxury
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
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: luxury
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.

luxury 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

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: "DroidSerif-Regular";
  src: url("./assets/fonts/DroidSerif-Regular.ttf") format("ttf"),
    url("./assets/fonts/DroidSerif-Regular.ttf") format("ttf"),
    url("./assets/fonts/DroidSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Lulo-Clean";
  src: url("./assets/fonts/Lulo-Clean.ttf") format("ttf"),
    url("./assets/fonts/Lulo-Clean.ttf") format("ttf"),
    url("./assets/fonts/Lulo-Clean.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

:root {
  --primary: #603913;
  --secondary: #fca91b;
  --transition: all 0.3s linear;
  --primary-font: "Montserrat", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

a,
a:hover,
a:active {
  text-decoration: none;
}

body {
  font-family: "DroidSerif-Regular";
}

p {
  line-height: 1.5;
  color: #000;
}

h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: var(--primary-font);
  color: #000;
  font-weight: 500;
}

img {
  -o-object-fit: cover;
  object-fit: cover;
}

.list__item ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.section-t {
  padding-top: 70px;
}
.section-b {
  padding-bottom: 70px;
}
.section {
  padding: 70px 0;
}
.small__section {
  padding: 50px 0;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.mt-5 {
  margin-top: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mx-auto {
  margin: 0 auto;
}
.small-margin {
  margin: 20px 0;
}
.pb {
  padding-bottom: 20px;
}
.container-large {
  max-width: 1600px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding-left: 40px;
  padding-right: 40px;
}
.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  row-gap: 15px;
}
hr {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.content__wrapper {
  margin-top: 30px;
}
.the__content p,
.the__content li {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 10px 0;
}
.the__content li {
  line-height: 24px;
}
.the__content p:last-child {
  margin-bottom: 0;
}
.the__content p:first-child {
  margin-top: 0;
}

.the__content li:not(:last-child) {
  margin-bottom: 10px;
}
.the__content h1 {
  font-size: 32px;
}
.the__content h2 {
  font-size: 24px;
}
.the__content h3 {
  font-size: 18px;
}
.the__content h4 {
  font-size: 16px;
}
.the__content img {
  width: 100%;
}
.the__title {
  margin: 0;
  margin-bottom: 10px;
  font-size: 22px;
  color: #000;
  line-height: 1.8;
}
.the__title.large {
  font-size: 22px;
  color: var(--secondary);
  font-weight: 600;
  line-height: 26px;
  font-family: var(--primary-font);
  letter-spacing: -1px;
}
.the__title.small {
  font-size: 17px;
  color: var(--secondary);
  font-weight: 600;
  line-height: 20px;
  font-family: var(--primary-font);
}
.light__bg {
  background: #f5f8f9;
}

.hover__img {
  overflow: hidden;
  position: relative;
}
.hover__img a img {
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  width: 100%;
}
.hover__img:hover a img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sticky__top {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
}
.border__heading {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.border__heading::before,
.border__heading::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: hidden;
  width: 48%;
  height: 1.5px;
  content: "";
  background: -o-linear-gradient(right, #000 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#000),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  margin-left: 2%;
  opacity: 0.2;
}
.border__heading:before {
  margin-left: -50%;
}
.border__heading::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.border__heading span {
  background: #fff;
  position: relative;
  z-index: 10;
}
.main__heading {
  color: var(--primary);
  font-size: 26px;
  font-weight: 600;
  margin: 0;
}

.sub__heading,
.sub__heading p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.title__wrapper {
  text-align: center;
}
.sub__title p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  line-height: 27px;
}
.link__title {
  line-height: 18px;
  margin: 0;
}
.link__title a {
  font-size: 17px;
  color: var(--primary);
  font-weight: 700;
  line-height: 24px;
  font-family: var(--primary-font);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.link__title a:hover {
  color: var(--secondary);
}
.link__title.link__title-large a {
  font-size: 22px;
  color: var(--secondary);
  font-weight: 600;
  line-height: 26px;
}
.link__title.link__title-large a:hover {
  color: var(--primary);
}
.link__title.small a {
  font-size: 16px;
}

.single__heading {
  font-size: 40px;
  color: var(--primary);
  font-weight: 600;
}
.single__img {
  margin: 30px 0;
}
.single__img img {
  width: 100%;
}
.map__section iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
.grid__content {
  display: grid;
  grid-template-columns: 100px 1fr;
}
.author {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--primary-font);
  margin-bottom: 10px;
  display: block;
}
.author i {
  margin-right: 5px;
  font-size: 13px;
}
/*  */

/*  */

.meta__info {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.meta__info i,
.meta__info span {
  font-size: 12px;
  color: #555;
  font-weight: 600;
}

/*  */

/*  */
.side__bar {
  border: 1px solid #f5f8f9;
}
.side__bar ul li a {
  color: #555;
  text-transform: capitalize;
  font-size: 14px;
  display: block;
  padding: 15px 20px;
  font-weight: 400;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
  margin-left: -20px;
}
.side__bar ul li a:hover {
  background: #fff;
  color: var(--primary);
  padding-left: 40px;
}

.side__bar ul li a::before {
  content: "\f061";
  font-family: "font awesome 6 free";
  font-weight: 900;
  position: relative;
  left: -20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  margin-right: 10px;
}
.side__bar ul li a:hover::before {
  left: 0;
  opacity: 1;
  visibility: visible;
}

/*  */

label {
  font-weight: 500;
  font-family: var(--primary-font);
}

.wpcf7 form .wpcf7-response-output {
  margin: 1em 0em 1em;
  font-family: var(--primary-font);
  font-size: 14px;
}

input:not([type="submit"]),
select,
textarea {
  width: 100%;
  outline: none;
  font-size: 16px;
  padding: 12px 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color: #333;
  margin-top: 7px;
  background: #00000009;
}

:focus-visible {
  outline: 2px dotted transparent;
}

/*  */

.btn,
input[type="submit"] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--secondary);
  font-family: var(--primary-font);
  overflow: hidden;
  border: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.btn-secondary {
  background: rgba(0, 0, 0, 0.2);
}
.btn-outline {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
}
input[type="submit"] {
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  z-index: 20;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
input[type="submit"]:hover {
  background: var(--primary);
  color: #fff;
}
.wpcf7-spinner {
  vertical-align: middle;
}

.btn::before {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--primary);
  position: absolute;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.btn:hover::before {
  right: auto;
  left: 0;
  width: 100%;
}

.btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 10px 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  z-index: 20;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-outline span {
  color: rgba(0, 0, 0, 0.5);
}
.btn__center {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn:hover span {
  color: #fff;
  -webkit-animation: scaleUp 0.3s ease-in-out;
  animation: scaleUp 0.3s ease-in-out;
}

@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*  */

/* 404 not found page */

.error-404 {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding-top: 213px;
  text-align: center;
}
.error-404 .error-watermark {
  position: absolute;
  top: calc(50% - 170px);
  left: 0;
  display: block;
  width: 100%;
  font-size: 320px;
  line-height: 1;
  color: #fd99101c;
  z-index: -1;
}
.error-404 .error-title {
  margin: 0;
  color: #000;
  font-size: 43px;
  word-wrap: break-word;
}
.error-404 .error-text {
  display: block;
  margin: 23px auto 5px;
}

/* 404 not found page */

/* Galleries
  --------------------------------------------- */

.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
  row-gap: 0;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 20px;
}
.gallery-item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}
/*  */

#primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#primary-menu > li > a {
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  font-weight: 500;
  z-index: 1000;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  padding: 18px 16px;
  letter-spacing: 1.6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-family: var(--primary-font);
}

#primary-menu > li > a:hover {
  color: var(--secondary) !important;
}
#primary-menu > li > a:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  top: 100%;
  left: 0.05em;
  right: 0.05em;
  background: var(--secondary);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(1, 0, 0, 1);
  transition: -webkit-transform 0.6s cubic-bezier(1, 0, 0, 1);
  -o-transition: transform 0.6s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.6s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.6s cubic-bezier(1, 0, 0, 1),
    -webkit-transform 0.6s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.6s cubic-bezier(1, 0, 0, 1),
    -webkit-transform 0.6s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.6s cubic-bezier(1, 0, 0, 1),
    -webkit-transform 0.6s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.6s cubic-bezier(1, 0, 0, 1),
    -webkit-transform 0.6s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.6s cubic-bezier(1, 0, 0, 1),
    -webkit-transform 0.6s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.6s cubic-bezier(1, 0, 0, 1),
    -webkit-transform 0.6s cubic-bezier(1, 0, 0, 1);
  transition: transform 0.6s cubic-bezier(1, 0, 0, 1),
    -webkit-transform 0.6s cubic-bezier(1, 0, 0, 1);
}
#primary-menu > li > a:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-duration: 0.9s;
  -o-transition-duration: 0.9s;
  transition-duration: 0.9s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}
.main-navigation.fixed #primary-menu > li > a,
.default-header .main-navigation #primary-menu > li > a {
  color: #000;
}
.main-navigation.fixed #primary-menu .current-menu-item > a,
.default-header .main-navigation #primary-menu .current-menu-item > a,
#primary-menu .current-menu-item > a,
#primary-menu > li.current-menu-parent > a {
  color: var(--secondary) !important;
}

.main-navigation.fixed .menu-main-menu-container,
.default-header .main-navigation .menu-main-menu-container {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/*  */

.site-header .site-branding {
  text-align: center;
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 100%;
  pointer-events: none;
}
.site-header .custom-logo-link {
  display: inline-block;
  padding: 30px;
  background: #fff;
  border-radius: 50%;
  pointer-events: auto;
}
.site-header .custom-logo-link .custom-logo {
  position: relative;
  left: -4px;
  top: 10px;
  width: 200px;
}
.logo__txt {
  font-size: 12px;
  font-family: var(--primary-font);
  color: #000;
  margin-top: 0;
  position: relative;
  top: -20px;
}
.main-navigation {
  z-index: 999;
  position: absolute;
  width: 100%;
  top: 20px;
}
.main-navigation.fixed,
.default-header .main-navigation {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
}
.main-navigation .custom-logo-link {
  background: transparent;
  padding: 10px !important;
  padding-bottom: 4px;
}

.main-navigation .custom-logo-link .custom-logo {
  position: static;
  width: 80px !important;
}
.nav__logo {
  display: none;
}
.main-navigation.fixed .nav__logo,
.default-header .main-navigation .nav__logo {
  display: block;
}
.main-navigation.fixed .div,
.default-header .main-navigation .div {
  display: none;
}
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-right .expert {
  text-transform: uppercase;
  color: #d3d2d0;
  font-size: 12px;
  font-weight: bold;
  font-family: var(--primary-font);
}
.header-right .expert a {
  font-size: 16px;
  display: block;
  color: #fff;
  font-weight: bold;
}
.main-navigation.fixed .header-right .expert,
.default-header .main-navigation .header-right .expert {
  color: #555;
}
.main-navigation.fixed .header-right .expert a,
.default-header .main-navigation .header-right .expert a {
  color: #333;
}
.main-navigation.fixed .menu-menu-1-container,
.default-header .main-navigation .menu-menu-1-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.nav__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-navigation.fixed .nav__wrapper,
.default-header .main-navigation .nav__wrapper {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.main-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main-navigation ul > li,
.main-navigation ul > li > ul > li {
  position: relative;
  text-align: left;
}
.main-navigation.fixed ul > li,
.default-header .main-navigation ul > li {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-navigation.fixed ul > li > a,
.default-header .main-navigation ul > li > a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-navigation #primary-menu > li.menu-item-has-children > ul li a {
  display: block;
  padding: 10px 20px;
  color: #000;
  position: relative;
  line-height: 20px;
  font-size: 13px;
  font-weight: 500;
  margin: 0 !important;
  text-transform: capitalize;
  font-family: var(--primary-font);
  width: 100%;
}

.main-navigation ul > li > ul {
  position: absolute;
  top: 150%;
  background: #fff;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: none;
  z-index: 2;
  /* display: none; */
  width: 230px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  left: 0;
}

.main-navigation ul > li:hover > ul {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.main-navigation ul > li > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-navigation ul > li > ul > li > ul {
  position: absolute;
  left: -80%;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: none;
  z-index: 2;
}

.main-navigation ul > li > ul > li:hover > ul {
  left: -100%;
  top: 0;
}
/* .main-navigation > div > ul > li.menu-item-has-children:hover > ul {
		-webkit-animation: fade-nav-up 0.3s ease-in-out forwards;
		animation: fade-nav-up 0.3s ease-in-out forwards;
	  } */

.main-navigation #primary-menu > li.menu-item-has-children > ul li a:hover {
  /* background: none repeat scroll 0 0 var(--primary); */
  text-decoration: none;
  color: #fff;
}

.main-navigation #primary-menu > li.menu-item-has-children > ul li:hover {
  background: var(--primary);
  /* border-top: 1px solid #fff; */
}
.main-navigation #primary-menu > li.menu-item-has-children > ul li:hover > a {
  color: #fff !important;
}

.main-navigation #primary-menu > li.menu-item-has-children > ul li a {
  color: var(--primary);
}

.main-navigation #primary-menu > li.menu-item-has-children > a {
  padding-right: 30px !important;
}
.main-navigation #primary-menu > li.menu-item-has-children > a::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  color: #fff;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.main-navigation.fixed #primary-menu > li.menu-item-has-children > a::before,
.default-header
  .main-navigation
  #primary-menu
  > li.menu-item-has-children
  > a::before {
  color: #000;
}
.main-navigation
  #primary-menu
  > li.menu-item-has-children.current-menu-item
  > a::before,
.main-navigation
  #primary-menu
  > li.menu-item-has-children.current-menu-parent
  > a::before {
  color: var(--secondary);
}
.top__head.uk-active
  .main-navigation
  #primary-menu
  > li.menu-item-has-children
  > a::before {
  color: #000;
}
.main-navigation #primary-menu > li.menu-item-has-children:hover > a::before,
.top__head.uk-active
  .main-navigation
  #primary-menu
  > li.menu-item-has-children:hover
  > a::before {
  color: var(--secondary);
}

.main-navigation #primary-menu > li.menu-item-has-children:hover > a::after {
  -webkit-transform: scaleX(1) !important;
  -ms-transform: scaleX(1) !important;
  transform: scaleX(1) !important;
  -webkit-transition-duration: 0.9s !important;
  -o-transition-duration: 0.9s !important;
  transition-duration: 0.9s !important;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1) !important;
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1) !important;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1) !important;
  -webkit-transform-origin: 0 50% !important;
  -ms-transform-origin: 0 50% !important;
  transform-origin: 0 50% !important;
}
.main-navigation #primary-menu > li.menu-item-has-children:hover > a {
  color: var(--secondary) !important;
}

.main-navigation
  #primary-menu
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > a::after,
.main-navigation
  #primary-menu
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block !important;
  font-size: 10px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-navigation
  #primary-menu
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > a,
.main-navigation
  #primary-menu
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.burger__menu {
  display: inline-block;
  padding: 5px 10px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  margin: 5px;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.burger__menu:hover {
  background: var(--secondary);
  color: #fff;
}

/*  */
.default-site {
  margin-top: 95px;
}
/*  */
#offcanvas-overlay .uk-offcanvas-bar {
  background: #fff;
  padding: 20px 0;
  padding-top: 0;
}
#offcanvas-overlay .uk-offcanvas-bar .custom-logo-link {
  display: block;
  width: 100%;
  background: #fff;
}
#offcanvas-overlay .uk-offcanvas-bar .custom-logo {
  width: 100px;
  margin: 0 auto;
  display: block;
  background: #fff;
  padding-top: 10px;
}
.uk-offcanvas-overlay::before {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.uk-offcanvas-overlay::before {
  width: 0;
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.uk-offcanvas-overlay.uk-open::before {
  width: 100%;
}
.uk-offcanvas-bar-animation {
  -webkit-transition: left 0.3s ease-out;
  -o-transition: left 0.3s ease-out;
  transition: left 0.3s ease-out;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
#offcanvas-overlay ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#offcanvas-overlay #primary-menu1 > li > a {
  color: var(--primary);
  text-transform: capitalize;
  font-size: 14px;
  padding: 10px 20px;
  display: block;
  font-weight: 500;
  font-family: var(--primary-font);
}
#offcanvas-overlay .uk-offcanvas-close {
  color: rgb(231, 28, 28);
  top: 3px;
  right: 3px;
}
#offcanvas-overlay #primary-menu1 > li > ul,
#offcanvas-overlay #primary-menu1 > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

#offcanvas-overlay #primary-menu1 li {
  position: relative;
  cursor: pointer;
}
#offcanvas-overlay #primary-menu1 > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#offcanvas-overlay #primary-menu1 > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

#offcanvas-overlay #primary-menu1 > li > a:hover,
#offcanvas-overlay #primary-menu1 > li > a.show-active,
#offcanvas-overlay #primary-menu1 > li > a:focus,
#offcanvas-overlay #primary-menu1 > li:hover > a,
#offcanvas-overlay #primary-menu1 > li:focus > a {
  background: var(--secondary);
  color: #fff;
}

#offcanvas-overlay #primary-menu1 > li:hover > a {
  color: #fff;
}
#offcanvas-overlay #primary-menu1 > li > ul > li:hover {
  background: rgba(255, 255, 255, 0.1);
}
#offcanvas-overlay #primary-menu1 li.menu-item-has-children span {
  color: var(--primary);
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 19px;
  width: 40px;
  height: 40px;
  background: #ffffffb2;
  right: 0;
}
#offcanvas-overlay #primary-menu1 li.menu-item-has-children span i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* #offcanvas-overlay #primary-menu1 li > ul {
	  background: #fff;
	} */
#offcanvas-overlay #primary-menu1 li.menu-item-has-children > ul {
  background: #fca91b1c;
}
#offcanvas-overlay
  #primary-menu1
  li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > ul {
  background: #fff;
}
#offcanvas-overlay #primary-menu1 > li.menu-item-has-children > span {
  top: 20px;
}

#offcanvas-overlay #primary-menu1 > li.menu-item-has-children ul li a {
  font-size: 13px;
  color: #1e1e1e;
  font-weight: 400;
  padding: 10px 30px;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-transform: capitalize;
  font-family: var(--primary-font);
}
#offcanvas-overlay #primary-menu1 > li.menu-item-has-children ul li a:hover {
  color: var(--primary);
}
/* #offcanvas-overlay #primary-menu1 > li.menu-item-has-children ul li a:hover {
	  background: rgba(115, 181, 95, 0.2);
	} */
#offcanvas-overlay
  #primary-menu1
  > li.menu-item-has-children
  ul
  li.menu-item-has-children
  ul
  li
  a {
  padding-left: 40px;
}
#offcanvas-overlay
  #primary-menu1
  > li.menu-item-has-children
  ul
  > li.menu-item-has-children
  > a {
  font-weight: 600;
  /* margin-left: 5px; */
}
#offcanvas-overlay
  #primary-menu1
  > li.menu-item-has-children
  ul
  li.menu-item-has-children
  ul
  li.menu-item-has-children
  ul
  li
  a {
  padding-left: 60px;
}
.uk-offcanvas {
  z-index: 10000;
}

/*  */

/*  */
.banner__section {
  height: 100vh;
  position: relative;
}
.banner__section figure {
  background: #111;
  display: block;
  position: relative;
  margin: 0;
  height: calc(100vh - 95px);
}

.banner__section figure img,
.page__banner figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner__section .owl-nav .owl-prev,
.banner__section .owl-nav .owl-next {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  text-indent: 101%;
  outline: none;
  white-space: nowrap;
  width: 20%;
  z-index: 4;
}

.banner__section .owl-nav .owl-prev {
  left: 0;
  cursor: url("./assets/img/angle-left.png") 0 0, pointer;
}

.banner__section .owl-nav .owl-next {
  right: 0;
  cursor: url("./assets/img/angle-right.png") 0 0, pointer;
}
.banner__item {
  position: relative;
}
.banner__section .banner__item::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 30.69%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    color-stop(30.69%, rgba(0, 0, 0, 0))
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 30.69%
  );
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.page__banner {
  height: 500px;
  background: #111;
  position: relative;
}
.page__banner figure {
  height: 500px;
}
.page__banner .banner__item::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 45.6%, #000 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(45.6%, rgba(0, 0, 0, 0)),
    to(#000)
  );
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.6%, #000 100%);
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.banner__text {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 10;
  width: 100%;
  text-align: center;
}
.banner__text .banner__heading {
  text-shadow: 3px 2px 1px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 40px;
  font-weight: 600;
}

.home__banner .banner__text {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  bottom: auto;
}
.home__banner .banner__text .banner__heading {
  font-size: 70px;
  font-family: "Lulo-Clean";
  font-weight: 600;
  line-height: 70px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.home__banner .banner__text .banner__heading span {
  display: block;
  font-family: var(--primary-font);
  font-weight: 400;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  font-size: 22px;
}
/*  */
.bg__section {
  position: relative;
}
.bg__section::before,
.bg__section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  width: 400px;
  height: 200px;
  background-size: contain;
  z-index: -1;
}
.bg__section::before {
  top: 20px;
  background-image: url("./assets/img/cloud.png");
  left: 0;
}
.bg__section::after {
  bottom: 100px;
  right: 0;
  width: 280px;
  background-image: url("./assets/img/cloud2.png");
}
.about__heading {
  color: var(--secondary);
  font-size: 40px;
  font-weight: 600;
  text-transform: initial;
  margin: 0;
}
.about__subhead {
  color: var(--primary);
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.small__content {
  max-width: 715px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  z-index: 1;
}
.aboutimg__wrapper {
  position: relative;
  z-index: 1;
}
.about__content p {
  text-align: center;
  font-size: 18px;
  line-height: 32px;
}
.about__content .sub__heading p:last-child {
  margin-bottom: 0;
}
.about__img {
  position: relative;
  z-index: 2;
}
.about__img img {
  height: 420px;
  width: 100%;
}
/*  */
.experience .main__heading {
  text-align: right;
}
.featured__trips .main__heading {
  color: var(--secondary);
}
.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.border-top .sub__heading {
  max-width: 360px;
}
.border-top .sub__heading p:last-child {
  margin-bottom: 0;
}
.experience .sub__heading {
  text-align: right;
}
.overlay__card {
  position: relative;
}
.overlay__card .hover__img img {
  width: 100%;
  height: 400px;
}
.overlay__card::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 52.6%, #000 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(52.6%, rgba(0, 0, 0, 0)),
    to(#000)
  );
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.6%, #000 100%);
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.txt-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  pointer-events: none;
  padding-bottom: 25px;
}
.txt-overlay .overlay__head {
  margin: 0;
  padding-left: 40px;
  line-height: 0;
  text-align: right;
}
.txt-overlay .overlay__head a {
  color: #fff;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}
.badge {
  position: absolute;
  top: 25px;
  right: 24px;
  background: var(--primary);
  padding: 3px 10px;
  border-radius: 500px;
}
.badge span {
  color: #fff;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  display: block;
  font-family: var(--primary-font);
}
.trip__img__wrapper .txt-overlay {
  left: 0;
}

.trip__img__wrapper .txt-overlay .overlay__head {
  padding-right: 40px;
  padding-left: 0;
  text-align: left;
}
.trip__img__wrapper .badge {
  left: 24px;
  right: auto;
  background: var(--secondary);
}

/*  */
.arrow-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.arrow-container a.uk-invisible {
  opacity: 0.5 !important;
  visibility: visible !important;
  cursor: default;
}
.myarrow {
  cursor: pointer;
}

.carousel__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.carousel__title div:first-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/*  */
.why__section {
  position: relative;
}
.why__section::before,
.why__section::after {
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
}
.why__section::before {
  left: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background: -o-linear-gradient(250deg, #000 -41.93%, rgba(0, 0, 0, 0) 44.67%);
  background: linear-gradient(200deg, #000 -41.93%, rgba(0, 0, 0, 0) 44.67%);
}
.why__section::after {
  right: 0;
  background: -o-linear-gradient(250deg, #000 -41.93%, rgba(0, 0, 0, 0) 44.67%);
  background: linear-gradient(200deg, #000 -41.93%, rgba(0, 0, 0, 0) 44.67%);
}
.why__section .icon {
  text-align: center;
}
.why__section .icon img {
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  width: 60px;
}
.why__section .txt {
  font-family: var(--primary-font);
  color: var(--secondary);
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  text-transform: lowercase;
  margin-top: 5px;
}
.why__wrapper {
  margin-top: 50px;
}
.why__wrapper .sub__heading p:last-child {
  margin-bottom: 0;
}
.gradient__border {
  width: 100%;
  height: 1px;
  opacity: 0.1;
  background-image: -o-linear-gradient(right, #000 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#000),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.rotate__border {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0.2;
}

.blog__wrapper .hover__img img {
  height: 390px;
  width: 100%;
}
.blog__wrapper .the__content {
  margin-top: -5px;
}
.card__content p {
  font-size: 15px;
  line-height: 22px;
  font-family: var(--primary-font);
}
.dates {
  color: rgba(0, 0, 0, 0.4);
  font-size: 34px;
  font-weight: 300;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-family: var(--primary-font);
}

.dates span {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(252, 169, 27, 0.7);
  padding: 3px 16px;
  font-family: var(--primary-font);
  border-top: 1px solid #fff;
}
.custom-nav {
  overflow: hidden;
}
.custom-nav .owl-nav {
  position: absolute;
  top: -64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  right: 20px;
}
.custom-nav .owl-nav .prev-slide,
.custom-nav .owl-nav .next-slide {
  position: relative;
}
.custom-nav .owl-nav .prev-slide::before,
.custom-nav .owl-nav .next-slide::before {
  content: "";
  background-image: url("./assets/img/arrow-primary.svg");
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-nav .owl-nav .next-slide::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.testimonial__wrapper .hover__img img {
  height: 366px;
  width: 100%;
}
.testimonial__profile {
  width: 80px;
  height: 80px;
}
.testimonial__profile img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.testimonial__content .info div {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  font-family: var(--primary-font);
}
.testimonial__content .info span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 15px;
  font-weight: 400;
  font-family: var(--primary-font);
}
/*  */
.site-footer {
  background: #eee;
  margin-top: 130px;
  position: relative;
}
.footer__link {
  position: relative;
}
.footer__link::after {
  content: "";
  background-image: url("./assets/img/footer-bg.png");
  bottom: -35px;
  right: 0;
  position: absolute;
  background-repeat: no-repeat;
  width: 500px;
  height: 200px;
  pointer-events: none;
  z-index: 1;
}
.footer__link {
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 0;
}
.footer__socialicon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer__socialicon,
.footer__link .list__item {
  position: relative;
  z-index: 2;
}
.footer__socialicon a {
  display: inline-block;
  padding: 10px 2px;
}

.footer__socialicon a i {
  opacity: 0.5;
  color: #555;
  font-size: 20px;
}
.footer__socialicon a:hover i {
  opacity: 1;
}

.footer__link .list__item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 5px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer__link .list__item ul li a {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-family: var(--primary-font);
}
.footer__link .list__item ul li a:hover {
  color: var(--secondary);
}
.footer__content {
  padding: 50px 0;
  padding-top: 60px;
  position: relative;
  z-index: 2;
}
.footer_logo img {
  width: 150px;
}
.footer__list {
  margin-top: 20px;
}
.footer__list h2 {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
  margin-bottom: 5px;
}
.footer__list ul li,
.footer__list ul li a {
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--primary-font);
  line-height: 24px;
}
.footer__list ul li a:hover {
  color: var(--secondary);
}
.footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.bottom__footer {
  margin-top: 70px;
  border-top: 1px solid #fff;
  padding-top: 10px;
}

.bottom__footer span {
  opacity: 0.7;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--primary-font);
}
.bottom__footer span strong {
  color: rgba(0, 0, 0, 0.95);
}
.bottom__footer span a {
  color: rgba(0, 0, 0, 0.95);
  font-weight: bold;
}

.footer__txt span {
  color: #fff;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
  font-size: 80px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: -4px;
  display: block;
  font-family: var(--primary-font);
}
.footer__txt span:first-child {
  text-align: right;
}

.custom-nav .the__content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.trip__title {
  color: var(--primary);
  text-transform: capitalize;
}

.divider {
  opacity: 0.2;
  width: 100%;
  height: 1px;
  background: -o-linear-gradient(
    right,
    rgba(0, 0, 0, 0) 0%,
    #000 51.04%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0)),
    color-stop(51.04%, #000),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 0%,
    #000 51.04%,
    rgba(0, 0, 0, 0) 100%
  );
  margin: 40px 0;
}
.trip__fact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.trip__fact .wrapper {
  display: grid;
  grid-template-columns: 40px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.trip__fact .wrapper .icon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
}
.trip__fact .wrapper .txt p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  font-family: var(--primary-font);
}
.trip__fact .wrapper .txt span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--primary-font);
  display: block;
}

.trip__wrapper {
  scroll-margin-top: 160px;
}
.trip__wrapper:not(:last-child) {
  margin-bottom: 40px;
}
.trip__overview {
  margin-top: 50px;
  scroll-margin-top: 160px;
}
.trip__section {
  margin-bottom: 50px;
}
.read-more {
  margin: 20px auto;
}
.readmore-text {
  height: 242.25px;
  overflow: hidden;
  position: relative;
}

.readmore-text::after {
  content: "";
  height: 88px;
  width: 100%;
  content: "";
  bottom: 0;
  left: 0;
  z-index: 1;
  position: absolute;
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0), #fff 80%);
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0), #fff 80%);
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    color-stop(80%, #fff)
  );
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    #fff 80%
  );
}

.readmore-text.expanded::after {
  display: none;
}

.tripdetails__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 959px) {
  .tripdetails__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

.tripdetails__col--main,
.tripdetails__col--side {
  min-width: 0;
}

@media (min-width: 959px) {
  .tripdetails__col--main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 370px);
    flex: 0 0 calc(100% - 370px);
    padding-right: 70px;
  }
}

@media (min-width: 959px) {
  .tripdetails__col--side {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 370px;
    flex: 0 0 370px;
  }
}

@media (max-width: 959px) {
  .tripdetails__col--side {
    margin-top: 40px;
  }
}

.trip__highlight {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.trip__highlight .hightlight__wrapper {
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  width: 70%;
}
.trip__list ul {
  padding-left: 15px;
  margin-bottom: 0;
}
.iti__dates {
  margin-right: 8px;
  position: -webkit-sticky;
  position: sticky;
  top: 170px;
}
.iti__dates span {
  background: var(--primary);
}
.iti__date__title h3 {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 10px;
  margin-top: -5px;
}
.itinerary__wrapper .itinerary__items:not(:last-child) {
  margin-bottom: 40px;
}
.trip__gallery .overlay__card .hover__img img {
  height: 250px;
}
.trip__gallery__wrapper {
  padding: 0 50px;
  position: relative;
}
.trip__gallery__wrapper .arrow-container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  left: 0;
  pointer-events: none;
}
.trip__gallery__wrapper .arrow-container .myarrow {
  pointer-events: initial;
}

.trip__price__card {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px;
  position: relative;
  padding-bottom: 100px;
}
.card__info {
  position: relative;
  z-index: 2;
  text-align: center;
}

.trip__price__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(
    bottom,
    rgba(252, 169, 27, 0.75) 0%,
    rgba(252, 169, 27, 0.75) 100%
  );
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(252, 169, 27, 0.75)),
    to(rgba(252, 169, 27, 0.75))
  );
  background: linear-gradient(
    0deg,
    rgba(252, 169, 27, 0.75) 0%,
    rgba(252, 169, 27, 0.75) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.trip__price__card h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.78px;
  margin: 0;
}
.trip__price__card del {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--primary-font);
  margin-top: 10px;
  display: block;
}
.trip__price__card p {
  color: #fff;
  font-family: "DroidSerif-Regular";
  font-size: 60px;
  font-weight: 400;
  margin: 0;
  line-height: 100%;
}
.trip__price__card span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--primary-font);
  margin-top: -3px;
  display: block;
}
.trip__inc-exc {
  margin-top: -48px;
  position: relative;
  z-index: 2;
}
.trip__inc-exc .uk-subnav-pill a {
  background-color: transparent;
  color: #fff;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 24px;
}
.trip__inc-exc .uk-subnav-pill > .uk-active > a {
  background-color: #f2f2f2;
  color: var(--primary);
}
.trip__inc-exc .uk-subnav-pill a:hover {
  color: var(--primary);
}

.trip__inc-exc .uk-subnav > * {
  padding-left: 0;
}
.trip__inc-exc .uk-subnav {
  margin-left: 0;
  margin: 0;
}
.trip__inc-exc .uk-switcher,
.trip__price__btn,
.download__btn__desktop {
  background: #f2f2f2;
  padding: 20px 24px;
}
.download__btn__desktop {
  padding-top: 0;
}
.download__btn__desktop a {
  width: 100%;
}
.trip-map-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.trip-map-head p {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--primary-font);
  cursor: pointer;
}
.trip-map-head p:hover {
  color: var(--primary);
}
.trip-map-img::after {
  content: " ";
}
.trip-map-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.trip-map-img:hover .trip-map-img-content {
  opacity: 1;
}
.trip-map-img-content {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 0;
  cursor: pointer;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.trip-map-img-content p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--primary-font);
}
.trip-map-img-content p i {
  margin-left: 10px;
}
.trip-map-img img {
  height: 350px;
  width: 100%;
}
.trip__container {
  position: relative;
}
.trip__sidebar {
  position: absolute;
  top: 0;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  height: 100%;
}

/* trip nav */
.c-tour-nav {
  display: none;
}
.c-tour-nav.active__tournav {
  background-color: rgb(255, 244, 233);
  z-index: 100;
  position: -webkit-sticky;
  position: sticky;
  top: 97px;
  display: block;
  -webkit-animation: sticky 1s ease-in-out;
  animation: sticky 1s ease-in-out;
}
.c-tour-nav.remove__active {
  position: static;
}
.c-tour-nav ul {
  white-space: nowrap;
  overflow-x: auto;
  -ms-overflow-y: hidden;
  overflow-y: hidden;
}
.c-tour-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
}
.c-tour-nav__item {
  height: 100%;
}
.c-tour-nav__link {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 54px;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: #1a1a1ac7;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
  text-decoration: none;

  padding: 0 15px;
}

.c-tour-nav__item.active-tab a,
.c-tour-nav__item a:hover {
  background: #fff;
  color: var(--primary);
}

/* trip nav */

.sticky__price {
  position: -webkit-sticky;
  position: sticky;
  top: 180px;
  -webkit-animation: sticky 1s ease-in-out;
  animation: sticky 1s ease-in-out;
}
@-webkit-keyframes sticky {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes sticky {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes sticky-bottom {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes sticky-bottom {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*  */
.template-exp .badge {
  right: auto;
  left: 8px;
}
.template-exp .txt-overlay {
  right: auto;
  left: 0;
}
.template-exp .txt-overlay .overlay__head {
  padding-right: 40px;
  padding-left: 0;
}

.page__title {
  margin-bottom: -40px;
  padding-top: 30px;
}

.sticky__date {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.contact__list {
  margin-top: 10px;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.contact__list li {
  margin-bottom: 5px;
}
.contact__list li i {
  margin-right: 5px;
}

.contact__list li a {
  padding: 0;
}
.about__page .sub__heading p {
  text-align: left;
}
.about__img__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  place-items: end;
  position: relative;
}
.about__img__grid::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url("./assets/img/about-shape.png");
  height: 260px;
  width: 260px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: -1;
  -webkit-animation: aboutImg 3s infinite linear;
  animation: aboutImg 3s infinite linear;
}
.about__img__grid img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
.about__img__grid .wrapper:first-child {
  height: 350px;
}
.about__img__grid .wrapper:nth-child(2) {
  height: 300px;
}
@-webkit-keyframes aboutImg {
  0% {
    -webkit-transform: translateZ(0) translateX(-50%);
    transform: translateZ(0) translateX(-50%);
  }
  50% {
    -webkit-transform: translate3d(0, -15px, 0) translateX(-50%);
    transform: translate3d(0, -15px, 0) translateX(-50%);
  }
  100% {
    -webkit-transform: translateZ(0) translateX(-50%);
    transform: translateZ(0) translateX(-50%);
  }
}
@keyframes aboutImg {
  0% {
    -webkit-transform: translateZ(0) translateX(-50%);
    transform: translateZ(0) translateX(-50%);
  }
  50% {
    -webkit-transform: translate3d(0, -15px, 0) translateX(-50%);
    transform: translate3d(0, -15px, 0) translateX(-50%);
  }
  100% {
    -webkit-transform: translateZ(0) translateX(-50%);
    transform: translateZ(0) translateX(-50%);
  }
}

.testimonial__card .testimonial__profile {
  width: 50px;
  height: 50px;
}

.testimonial__card .grid__content {
  grid-template-columns: 60px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 18px;
  margin: 20px 0;
}
.testimonial__card .testimonial__img img {
  width: 100%;
  height: 230px;
}

.testimonial__content-wrapper {
  padding: 0 18px 18px;
}

.testimonial__card .card__content {
  overflow: hidden;
}

a[data-readmore-toggle] {
  color: var(--primary);
  font-weight: bold;
  display: inline-block;
  font-size: 14px;
  margin-top: 10px;
  font-family: var(--primary-font);
}
a[data-readmore-toggle]:hover {
  color: var(--secondary);
}

.expand-all-accord {
  padding: 6px 18px;
  border: 1px solid var(--primary);
  font-size: 13px;
  color: var(--primary);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  height: 100%;
  font-weight: 600;
  text-transform: capitalize;
  display: none;
  font-family: var(--primary-font);
}
.expand-all-accord:hover {
  background: var(--primary);
  color: #fff;
}

.trip-advisor-logo {
  position: absolute;
  right: 10px;
  bottom: 104px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 10px;
  z-index: 100;
}
.trip-advisor-logo img {
  width: 65px !important;
}
.page__banner .trip-advisor-logo {
  bottom: 10px;
}

.footer__partner .item img {
  width: 145px;
  display: block;
  margin: 0 auto;
  height: 55px;
  -o-object-fit: contain;
  object-fit: contain;
}
.earthbound img {
  width: 200px;
}

/*  */

.trip__table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
  border: 1px solid #eee;
}

.trip__table table thead {
  background: rgba(255, 255, 255, 0.5);
}
.trip__table table thead th {
  padding: 16px 12px;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
  font-family: var(--primary-font);
}

.trip__table table tbody tr td {
  font-size: 14px;
  padding: 6px 12px;
  vertical-align: middle;
  color: #333333d0;
  font-weight: 600;
  position: relative;
  /* background: rgba(255, 255, 255, 0.5); */
  font-family: var(--primary-font);
  min-height: 36px;
  text-transform: capitalize;
}
.trip__table table tbody tr td::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-transform: capitalize;
  font-size: 13px;
  line-height: 1.23;
  left: 10px;
  letter-spacing: 1px;
  color: #000;
  display: none;
  text-align: left;
}
.trip__table table tbody tr:nth-child(even) {
  background: #f5f5f5;
}
.trip__table table tbody tr:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.trip__table table tbody tr:first-child {
  border-top: 1px solid #eee;
}
.trip__table table tbody tr td:not(:last-child),
.trip__table table thead th:not(:last-child) {
  border-right: 1px solid #eee;
}
.trip__table table td .btn span {
  padding: 8px 20px;
  font-size: 14px;
}
.trip__table table td .disable-btn {
  pointer-events: none;
  background: rgba(51, 51, 51, 0.2);
}
.trip__table table td .guaranteed {
  color: var(--primary);
}

.trip__card-container .hover__img img {
  height: 250px;
  width: 100%;
}

/*  */
.mobile__img img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}
.team-item {
  text-align: center;
}
.team-item figure {
  margin-bottom: 0;
}
.team-item figure img {
  width: 200px;
  height: 200px;
  max-width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.team-item .team-caption {
  padding: 15px 20px;
  text-align: center;
  line-height: 0.5;
}
.team-item .team-caption .team-member-title {
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-transform: capitalize;
}
.team-item .team-caption .team-member-title:hover {
  color: var(--secondary);
}
.team-item .team-caption .team-job-position {
  margin: 0;
  font-size: 14px;
  color: #838386;
  font-weight: 700;
  font-family: var(--primary-font);
  text-transform: capitalize;
}
.sticky__img {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.sticky__img img {
  width: 100%;
}
.team__designation {
  margin-top: -15px;
}
.team__designation p {
  color: var(--primary);
  font-weight: bold;
}

.default__table,
.holiday__table {
  border-collapse: collapse;
  width: 100%;
}
.default__table th,
.holiday__table th {
  padding: 10px;
}
.default__table td,
.holiday__table td {
  padding: 20px;
}
.default__table td img {
  margin: 0 auto;
  display: block;
  width: 80px;
}
.default__table tr td:first-child {
  width: 200px;
}
.holiday__table tr td:nth-child(2) , .holiday__table tr td:last-child{
  width: 200px;
}
.related__trips .item {
  position: relative;
}

.hotel__category .hotel__wrapper:not(:last-child) {
  margin-bottom: 40px;
}
.hotel__title {
  margin: 10px 0 5px;
}

.singlepage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.singlepage__grid .wrapper:first-child {
  grid-column: span 3;
}

.singlepage__grid .wrapper img {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.singlepage__grid .gallery__wrapper {
  width: 100%;
  height: 100%;
}
.singlepage__grid .wrapper img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.singlepage__grid .wrapper:first-child img {
  height: 400px;
}

.hover__gallery::after {
  content: " ";
}
.hover__gallery {
  position: relative;
  overflow: hidden;
}
.hover__gallery img {
  width: 100%;
}
.hover__gallery:hover .hover__gallery__content {
  opacity: 1;
  height: 100%;
}
.hover__gallery__content {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 0;
  cursor: pointer;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.hover__gallery__content p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  font-family: var(--primary-font);
}
.hover__gallery__content p i {
  margin-left: 10px;
}
.iti__hotel__title {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--primary-font);
  margin: 10px 0;
}
.iti__hotel__title a {
  color: var(--secondary);
}
.iti__hotel__title a:hover {
  color: #555;
}
.iti__hotel__img .hover__gallery img {
  height: 230px;
}

.single__hotel__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.single__hotel__flex .btn i {
  margin-left: 10px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hotel__wrapper .hover__img img {
  height: 240px;
}

.no__content {
  max-width: 400px;
  background: rgb(255, 244, 233);
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
  padding: 30px;
  text-align: center;
  margin: 0 auto;
  border: 1px solid #eee;
}
.no__content__desc {
  font-family: var(--primary-font);
  font-weight: 600;
  color: #212121;
  font-size: 20px;
}
.no__content i {
  font-size: 30px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.overlay__price{
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* pop up */
.popup-bg {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.75);
  display: none;
  z-index: 100000;
  overflow-y: auto;
  padding: 50px 30px;
  height: 100vh;
}
.popup-bg .popup {
  display: none;
  padding: 25px;
  border-radius: 8px;
  overflow-y: auto;
  margin: 0 auto;
  position: relative;
  width: 700px;
  background: #fff;
}
.uk-modal-close-default {
  cursor: pointer;
  top: 5px !important;
  right: 5px !important;
}

#success-pop,#popupGetPdf,#downloadpop {
  width: 500px;
  padding: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}
#success-pop .success-msg,#popupGetPdf .form__wrapper  {
  text-align: center;
}
#success-pop img,#popupGetPdf img{
  width: 120px;
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
}
.pdf-loader{
  width: 30px;
  height: 30px;
  display: none;
  position: absolute;
  left: 65%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pdf__wrapper {
  position: relative;
}
.pdf__wrapper input.pdf-send {
  display: block;
  margin: 20px auto 0;
  border-radius: 5px;
}
.pdf__wrapper img.pdf-loader {
  top: auto;
  bottom: 4px;
  transform: translateX(75%);
  left: auto;
  right: 25%;
}
.pdf-after-msg {
  margin: 0;
}
.the__content ul,
.the__content ul li {
  text-align: left;
}