/*!
Theme Name: tourreal
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: tourreal
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.

tourreal 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/
*/
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100;200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:wght@100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
:root {
  --primary--color: #ee931f;
  --secondary--color: #fff5e4;
  --tertiary--color: #01172f;
  --antonio-font: "Antonio", sans-serif;
  --rubik--font: "Rubik", sans-serif;
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a,
a:hover,
a:active {
  color: #333;
  text-decoration: none;
}
body {
  position: relative;
  font-family: var(--rubik--font);
}

p {
  margin: 0;
  line-height: 1.5;
  color: #333;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: var(--antonio-font);
  margin: 0;
  color: var(--text-color);
}
.section {
  padding: 85px 0;
}
.section-t {
  padding-top: 85px;
}
.section-b {
  padding-bottom: 85px;
}
.section-b {
  padding-bottom: 85px;
}
.mid-section {
  padding: 55px 0;
}
.site-header {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 6;
}
.site-header.uk-active {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.site-header.uk-active .line span:nth-child(2) {
  background-color: #000 !important;
}
.site-header.uk-active .line:hover span {
  background-color: #000;
}
.default-site-header.site-header {
  position: relative;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.09);
  z-index: 10000;
}
.site-branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.site-branding .custom-logo {
  width: 220px;
  padding: 20px 0;
}

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

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}
.nogap.grid {
  grid-gap: 0;
}
.gap-large {
  grid-gap: 50px;
}

.column-7 {
  grid-column: span 7;
}

.column-5 {
  grid-column: span 5;
}

.column-8 {
  grid-column: span 8;
}
.column-9 {
  grid-column: span 9;
}

.column-4 {
  grid-column: span 4;
}

.column-6 {
  grid-column: span 6;
}

.column-3 {
  grid-column: span 3;
}

.row-2 {
  grid-row: span 2;
}

.column-2 {
  grid-column: span 2;
}

.column-10 {
  grid-column: span 10;
}
.relative {
  position: relative;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
}
.lsection-tb {
  padding: 85px 0;
}
.mid.section-tb {
  padding: 45px 0;
}
.section-tb {
  padding: 75px 0;
}
.section {
  padding-top: 75px;
}
.section-b {
  padding-bottom: 75px;
}
.text-center {
  text-align: center;
}
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
.social-media {
  gap: 15px;
}
.social-media i {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-media i:hover {
  color: var(--primary--color);
}
.line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 25px;
  cursor: pointer;
  direction: rtl;
  gap: 5px;
}
.line span {
  height: 3px;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--primary--color);
}
.line:hover span {
  background-color: #000;
}
.line span:nth-child(2) {
  background-color: #000;
}
.line:hover span:nth-child(2) {
  width: 100%;
  background-color: var(--primary--color);
}
.line.active span {
  background-color: var(--primary--color);
}
.line.active span:nth-child(2) {
  display: none;
}
.line.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.line.active span:nth-child(3) {
  margin-top: -8px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.line span:nth-child(2) {
  width: 60%;
}
.default-site-header.site-header .line span:nth-child(2) {
  background-color: var(--primary--color);
}
.default-site-header.site-header .line:hover span {
  background-color: var(--primary--color);
}
.banner-item .item {
  width: 100%;
  position: relative;
  height: 850px;
  overflow: hidden;
}
.banner-section {
  background: #000;
  height: 850px;
  overflow: hidden;
}
.banner-item .item img {
  height: 100%;
  -o-object-position: top;
  object-position: top;
}
.banner-item .owl-carousel .owl-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
}
.banner-item .owl-carousel .owl-nav button span {
  line-height: 0;
  font-size: 0;
}
.banner-item .owl-carousel .owl-nav,
.banner-item .owl-carousel .owl-nav button {
  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;
  margin: 0;
  border-radius: 0;
}
.banner-item .owl-carousel .owl-nav button {
  padding: 15px !important;
}
.banner-item .owl-carousel .owl-nav button:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.banner-item .owl-carousel .owl-nav button.owl-prev span,
.banner-item .owl-carousel .owl-nav button.owl-next span {
  background-size: contain;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  display: block;
  opacity: 0.7;
}
.banner-item .owl-carousel .owl-nav button.owl-prev span {
  background-image: url("./assets/img/left-arrow.png");
}
.banner-item .owl-carousel .owl-nav button.owl-next span {
  background-image: url("./assets/img/right-arrow.png");
}
.banner-item .item::after {
  position: absolute;
  content: " ";
  width: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(25%, rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.8))
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0.8) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.banner-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 6;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.banner-text p {
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffffde;
}
.banner-text h1 {
  font-size: 60px;
  text-transform: uppercase;
  padding-bottom: 35px;
  position: relative;
  color: #fff;
}
.banner-text h1::after {
  content: " ";
  left: 50%;
  display: block;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 15px;
  width: 56px;
  height: 2px;
  background-color: #ee931fa1;
}
.header-wrap.mb {
  margin-bottom: 45px;
}
.header-wrap .headerwrap-content > span {
  font-size: 15px;
  color: var(--primary--color);
  font-weight: 400;
}
.headerwrap-contentwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.headerwrap-content.center {
  text-align: center;
  width: 55%;
  margin: 0 auto;
}
.headerwrap-contentwrap img {
  width: 64px;
}
.header-wrap .headerwrap-content > h2 {
  color: #222;
  line-height: 1.125;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
}
.header-wrap .headerwrap-content > h2.white {
  color: #fff;
}
.header-wrap .headerwrap-content > h2 span {
  color: var(--primary--color);
}
.header-wrap.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-wrap .headerwrap-content > p {
  color: #444;
  font-size: 16px;
  margin-top: 25px;
  font-weight: 300;
}
.header-wrap .headerwrap-content > p.white-60 {
  color: #ffffffe3;
}
.aboutus-container {
  position: relative;
  z-index: 9;
  place-items: center;
}
.aboutus-content {
  padding-right: 25px;
}
.aboutus-content .aboutus-thecontent {
  margin: 30px 0;
}
.aboutus-content .aboutus-thecontent p {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 28px;
}
.aboutus-content .aboutus-thecontent p:not(:last-child) {
  margin-bottom: 15px;
}
.about-img .about-img-container img {
  border-radius: 2px;
  height: 210px;
}

.about-img .about-img-container-first img:first-child,
.about-img .about-img-container-second img:last-child {
  height: 320px;
}
.about-img {
  position: relative;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.about-img .aboutus-logo {
  position: absolute;
  padding: 5px;
  width: 80px;
  z-index: 66;
  background-color: #fff;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about-img .aboutus-logo img {
  height: 100%;
}

.aboutus-section {
  position: relative;
  z-index: 2;
}
.aboutus-section::after {
  content: " ";
  background-image: url("./assets/img/mountainbg.png");
  width: 100%;
  height: 500px;
  z-index: 3;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.page-content input[type="submit"],
.btn {
  padding: 14px 18px;
  border: none;
  border-radius: 5px;
  background-color: var(--primary--color);
  color: #fff;
  border: 1px solid var(--primary--color);
  font-size: 16px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
  text-transform: uppercase;
}
.page-content input[type="submit"] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn.btn-outline {
  color: var(--primary--color);
  background-color: transparent;
  border: 1px solid var(--primary--color);
}
.iti-price-container .btn {
  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;
  border-radius: 0;
}
.btn:hover {
  color: var(--primary--color);
  background-color: var(--secondary--color);
}

.featured-tripsection {
  overflow: hidden;
  position: relative;
  background-color: var(--secondary--color);
}
.featured-tripsection > .uk-container {
  position: relative;
  z-index: 2;
}
.featured-tripsection::after {
  content: "";
  background-image: url("./assets/img/pattern.png");
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  opacity: 0.04;
}
.services-container > ul {
  list-style: none;
}

.hidden {
  display: none !important;
}
.show {
  display: block !important;
}

.videoplayerfallback.show {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.eachtrip.no-br {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.eachtrip.no-br,
.eachtrip.no-br .zoom-container,
.eachtrip.no-br .zoom-container img {
  border-radius: 0;
  position: relative;
}
.eachtrip .eachtrip-content.ontopcontent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000),
    to(transparent)
  );
  background: -o-linear-gradient(bottom, #000, transparent);
  background: linear-gradient(to top, #000, transparent);
  text-align: center;
}
.eachtrip > a.price-container .price {
  position: absolute;
  right: 15px;
  padding: 5px 16px;
  background-color: var(--primary--color);
  bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  font-family: var(--antonio-font);
  border-radius: 3px;
}

.eachtrip .eachtrip-content.ontopcontent h3 a {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.eachtrip .eachtrip-content.belowcontent h3 a {
  font-size: 26px;
  font-weight: 600;
  color: #333;
}
.eachtrip .eachtrip-content.belowcontent {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.eachtrip-icondescription {
  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;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px dashed #01172f29;
}
.eachtrip-icondescription.white {
  border-color: rgba(255, 255, 255, 0.4);
}
.eachtrip-icondescription .eachtrip-eachdesc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
.eachtrip-icondescription.white .eachtrip-eachdesc p {
  color: #fff;
}
.eachtrip-icondescription .eachtrip-eachdesc p {
  color: #454545;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--antonio-font);
}
.eachtrip-icondescription .eachtrip-eachdesc span {
  font-family: var(--rubik--font);
  color: var(--primary--color);
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
}
.eachtrip-icondescription.white img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.eachtrip-icondescription img {
  min-width: 30px;
  max-width: 30px;
}
.eachtrip a img {
  border-radius: 8px;
  height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
}
.eachtrip a.small {
  height: 350px;
}
.eachtrip a.small img {
  height: 100%;
}
.featured-tripcontainer {
  position: relative;
  z-index: 2;
}
.featured-tripcontainer .owl-carousel .owl-nav button {
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: var(--tertiary--color);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
.testimonial-container .owl-carousel .owl-nav button {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: var(--tertiary--color);
}
.featured-tripcontainer .owl-nav button.owl-prev {
  left: -35px;
}
.featured-tripcontainer .owl-nav button span,
.testimonial-container .owl-nav button span {
  font-size: 0;
  display: block;
  position: relative;
}
.featured-tripcontainer .owl-nav button.owl-prev span::after,
.testimonial-container .owl-nav button.owl-prev span::after {
  content: "\f060";
  font-family: "FONT AWESOME 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: #fff;
}
.featured-tripcontainer .owl-nav button.owl-next span::after,
.testimonial-container .owl-nav button.owl-next span::after {
  content: "\f061";
  font-family: "FONT AWESOME 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: #fff;
}
.featured-tripcontainer .owl-nav button.owl-next {
  right: -35px;
}
/* .featured-tripcontainer .owl-carousel .owl-stage-outer {
  overflow: visible;
} */
.featured-tripcontainer .owl-carousel .owl-item.active {
  opacity: 1;
  pointer-events: all;
}
/* .featured-tripcontainer .owl-carousel .owl-item {
  position: relative;
  opacity: 0.1;
  pointer-events: none;
} */

.zoom-container,
.zoomreverse-container {
  overflow: hidden;
  border-radius: 8px;
  display: block;
  position: relative;
}
.zoom-container img,
.zoomreverse-container:hover img {
  border-radius: 8px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.zoomreverse-container img {
  border-radius: 8px;
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.zoom-container:hover img {
  border-radius: 8px;
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.whyus-section {
  position: relative;
  overflow-x: hidden;
  background: var(--tertiary--color);
}
.whyus-section::after {
  content: " ";
  background-image: url("./assets/img/art1.png");
  width: 200px;
  height: 505px;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.14;
  background-repeat: no-repeat;
  background-size: contain;
}
.whyus-section > * {
  position: relative;
  z-index: 2;
}
/* .whyus-section::after {
  content: " ";
  position: absolute;
  opacity: 0.07;
  background-image: url("./assets/img/Contour\ Line.png");
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
} */
.readmore-btn {
  margin-top: 35px;
}
.readmore-btn.center {
  text-align: center;
}
.eachwhyus > div {
  position: relative;
  display: block;
  height: 350px;
}
.eachwhyus > div img {
  height: 100%;
}

.eachus-content {
  position: absolute;
  z-index: 2;
  padding: 15px;
  width: 100%;
  bottom: 0;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000),
    to(transparent)
  );
  background-image: -o-linear-gradient(bottom, #000, transparent);
  background-image: linear-gradient(to top, #000, transparent);
}
.eachus-content {
  height: 60px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.eachwhyus:hover .eachus-content {
  height: 100%;
}
.eachwhyus:hover .eachus-content p,
.eachwhyus:hover .eachus-content .btn {
  opacity: 1;
}

.eachus-content p,
.eachus-content .btn {
  opacity: 0;
}
.eachwhyus:hover .eachus-content p {
  color: #fff;
  font-size: 16px;
  margin: 15px 0;
}
.eachus-content h4 a {
  color: #fff;
  font-size: 24px;
}
.testimonial-section {
  /* background-image: url("./assets/img/banner1.png");
  background-attachment: fixed;
  background-size: cover; */
  position: relative;
  background-position: top center;
}
.testimonial-section .headerwrap-content {
  position: relative;
  z-index: 2;
}
/* .testimonial-section::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(to bottom, #fff, rgba(0, 0, 0, 0.5));
} */
.testimonial-container .owl-carousel {
  position: relative;
  z-index: 2;
}
.testimonial-container .owl-carousel .owl-stage {
  margin-bottom: 30px;
}
.eachtestimonial-container {
  padding: 25px;
  background: #fff;
  border-radius: 14px;
  margin: 5px;
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.eachtestimonial-container .eachtestimonial-content p {
  color: #444;
  font-size: 16px;
  font-weight: 400;
}
.eachtestimonial-container .eachtestimonial-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px dashed #01172f29;
}
.eachtestimonial-container .eachtestimonial-footer .et-content {
  padding-left: 25px;
}
.eachtestimonial-container .eachtestimonial-footer .et-img img {
  height: 58px;
  width: 58px;
  border-radius: 100%;
}
.eachtestimonial-container .eachtestimonial-footer .et-content h4 {
  font-family: var(--rubik--font);
  color: #454545;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 550;
}

.eachtestimonial-container .eachtestimonial-footer .et-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  list-style: none;
}

.eachtestimonial-container .eachtestimonial-footer .et-content ul li i {
  color: goldenrod;
  font-size: 12px;
}
.eachblog-img {
  display: block;
  height: 250px;
}
.eachblog-img img {
  width: 100%;
  height: 100%;
}
.eachblog {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.eachblog .eachblog-content {
  padding: 20px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.eachblog .eachblog-content .eachblog-date {
  color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.eachblog .eachblog-content h3 {
  margin: 5px 0;
  line-height: 24px;
}
.eachblog .eachblog-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.7);
}
.eachblog .eachblog-content h3 a {
  font-size: 22px;
  font-family: var(--rubik--font);
  font-weight: 600;
  color: var(--tertiary--color);
}
.eachblog .eachblog-content .eachblog-date span {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  font-weight: 500;
}
.eachblog .eachblog-content .eachblog-date i {
  font-size: 14px;
}

.eachblog .eachblog-content .readmore {
  padding-top: 15px;
  display: inline-block;
  position: relative;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.eachblog .eachblog-content .readmore:hover {
  color: var(--primary--color);
}
.eachblog .eachblog-content .readmore:hover:after {
  width: 100%;
  background-color: var(--primary--color);
}
.eachblog .eachblog-content .readmore::after {
  content: " ";
  position: absolute;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  width: 50%;
  height: 2px;
  bottom: -5px;
  background-color: rgba(0, 0, 0, 0.7);
}
.site-footer {
  padding-top: 55px;
  position: relative;
  background-color: #222222ee;
  background-image: url("./assets/img/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  background-blend-mode: overlay;
}
.site-footer .custom-logo {
  width: 200px;
}
.bottom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.site-footer .site-info ul {
  list-style: none;
  padding-top: 25px;
}
.site-footer .site-info ul li a,
.site-footer .site-info ul li {
  color: #ffffffde;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-footer .site-info ul li a:hover {
  color: var(--primary--color);
}
.site-footer .site-info ul:not(.socialmedia) li:not(:last-child) {
  padding-bottom: 15px;
}
.site-footer .site-info ul:not(.socialmedia) li i {
  margin-right: 15px;
}
.site-footer .site-info ul.socialmedia li i:hover {
  border-color: var(--primary--color);
}
.site-footer .site-info ul.socialmedia li i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid #ffffffde;
}
.site-footer .site-info ul.socialmedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

h3.footerhead {
  font-size: 26px;
  margin-bottom: 35px;
  color: var(--primary--color);
}
.footer-linkcontainer ul {
  list-style: none;
}
.footer-linkcontainer ul li:not(:last-child) {
  padding-bottom: 15px;
}
.footer-linkcontainer ul li a {
  color: #ffffffde;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 300;
}
.footer-linkcontainer ul li a:hover {
  color: var(--primary--color);
}

.site-footer .grid .column-3:not(:first-child) {
  padding-left: 20px;
}
.bottom-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 10px;
  margin-top: 35px;
  border-top: 1px solid #ffffff2d;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bottom-footer p,
.bottom-footer p > * {
  color: #ffffffde;
  font-size: 13px;
}

.main-navigation ul {
  list-style: none;
  text-align: center;
}
.main-navigation ul li:not(:last-child) {
  padding-bottom: 25px;
}

.main-navigation ul li a {
  color: var(--tertiary--color);
  font-size: 18px;
  font-family: var(--antonio-font);
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
/* .main-navigation > ul > li > a::after {
  content: " ";
  position: absolute;
  bottom: -5px;
  left: 0;
  background-image: linear-gradient(180deg, #dc143c 17.49%, #a4263f 72.49%);
  transition: all 0.3s ease;
  height: 1px;
  width: 0;
} */
/* .main-navigation ul li a:hover::after {
  width: 100%;
} */
.main-navigation ul li a:hover {
  color: var(--primary--color);
  text-shadow: none;
}

.weaccept-container {
  text-align: center;
}
.weaccept-container img {
  width: 250px;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}

.weaccept-container h3 {
  color: #fff;
  margin-bottom: 8px;
}
.single-banner {
  position: relative;
}
.single-banner-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 65px 0 45px 0;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000),
    to(transparent)
  );
  background: -o-linear-gradient(bottom, #000, transparent);
  background: linear-gradient(to top, #000, transparent);
}
.single-banner-content h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  font-family: var(--antonio-font);
  margin-top: 15px;
}
.single-banner-img,
.single-banner-img img {
  height: 90vh;
}

.single-banner-header,
.share-breadcrumb-container {
  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;
}
.single-banner-header > div:first-child {
  width: 75%;
}
.breadcrumb-single ul {
  list-style: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.breadcrumb-single ul li {
  position: relative;
}
.breadcrumb-single ul li:not(:last-child) {
  padding-right: 25px;
}
.breadcrumb-single ul li:not(:last-child):after {
  content: " \f054";
  font-family: "FONT AWESOME 5 FREE";
  font-size: 12px;
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  color: #fff;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.breadcrumb-single ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.breadcrumb-single ul li:last-child a {
  color: var(--primary--color);
}

.nav-section {
  background-color: #fff8ed;
  position: relative;
}

.itenary-navcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
}

.itenary-navcontainer ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.itenary-navcontainer ul li {
  padding: 25px 15px;
  position: relative;
}
.itenary-navcontainer ul li a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 450;
  color: #454545;
}
.itenary-navcontainer ul li.uk-active a,
.itenary-navcontainer ul li:hover a {
  color: var(--primary--color);
}
.itenary-navcontainer ul li.uk-active::after,
.itenary-navcontainer ul li:hover::after {
  width: 100%;
}
.itenary-navcontainer ul li::after {
  content: " ";
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary--color);
}
.the-content ul li,
.the-content p {
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
  color: #454545;
}
.the-content :is(h1, h2, h3, h4, h5, h5) {
  color: var(--primary--color);
  margin: 15px 0;
}
.the-content p a,
.the-content a {
  color: var(--primary--color);
}
.the-content ul {
  padding-left: 20px;
}
.the-content ul li {
  list-style-type: disc;
}
.the-content ul li:not(:last-child) {
  padding-bottom: 10px;
}
.the-content ul li::marker {
  color: var(--primary--color);
}
.the-content p:not(:last-child) {
  margin-bottom: 15px;
}
.each-iti-head {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  position: relative;
  margin-bottom: 25px;
}
.each-sub-iti-head {
  font-size: 30px;
  position: relative;
  color: #343434;
  margin-bottom: 20px;
  font-weight: 600;
}
.eachsingle-page-item:not(:last-child) {
  margin-bottom: 35px;
}
.eachsignle-iti-container ul {
  list-style: none;
}
.eachsignle-iti-container ul li {
  background-size: 20px !important;
  vertical-align: middle;
  padding-left: 40px;
  margin: 0;
  color: #454545;
  font-size: 16px;
  font-weight: 400;
  background: url(./assets/img/record.png) no-repeat left 4px;
}
.eachsignle-iti-container ul li span {
  color: var(--tertiary--color);
  font-weight: 500;
  min-width: 45px;
  margin-right: 15px;
  display: inline-block;
}
.eachsignle-iti-container ul li:not(:last-child) {
  padding-bottom: 15px;
}
.excluded-container {
  margin-top: 35px;
  padding: 25px 35px;
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 8px;
  background-color: rgba(255, 0, 0, 0.04);
}

.cost-container ul {
  list-style: none;
}

.cost-container ul li {
  background-size: 20px !important;
  vertical-align: middle;
  padding-left: 35px;
  margin: 0;
  color: #454545;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}
.cost-container ul li:not(:last-child) {
  padding-bottom: 15px;
}
.excluded-container ul li {
  background: url(./assets/img/close.png) no-repeat left 5px;
}
.excluded-container ul li {
  background-size: 12px !important;
}
.included-container ul li {
  background: url(./assets/img/checkmark.png) no-repeat left 3px;
}
.gallery-iti-container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}
.eachgallery-iti-container img {
  border-radius: 4px;
  height: 100%;
}
.eachgallery-iti-container {
  grid-column: span 4;
}

.booking-form-container {
  padding: 25px 30px;
  background-color: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.booking-form-container .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 15px;
}

.booking-form-container .wpcf7-form p {
  grid-column: span 6;
}
.booking-form-container .wpcf7-form p:nth-child(2),
.booking-form-container .wpcf7-form p:nth-child(7),
.booking-form-container .wpcf7-form p:nth-child(8) {
  grid-column: span 12;
}
.page-content input,
.booking-form-container .wpcf7-form p input,
.booking-form-container .wpcf7-form p select,
.booking-form-container .wpcf7-form p textarea {
  width: 100%;
  font-size: 15px;
  color: #222;
  font-weight: 400;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 4px;
  margin-top: 5px;
  outline: none;
  font-family: var(--rubik--font);
}

.booking-form-container .wpcf7-form p input::-webkit-input-placeholder,
.booking-form-container .wpcf7-form p select::-webkit-input-placeholder,
.booking-form-container .wpcf7-form p textarea::-webkit-input-placeholder {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.booking-form-container .wpcf7-form p input::-moz-placeholder,
.booking-form-container .wpcf7-form p select::-moz-placeholder,
.booking-form-container .wpcf7-form p textarea::-moz-placeholder {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.booking-form-container .wpcf7-form p input:-ms-input-placeholder,
.booking-form-container .wpcf7-form p select:-ms-input-placeholder,
.booking-form-container .wpcf7-form p textarea:-ms-input-placeholder {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.booking-form-container .wpcf7-form p input::-ms-input-placeholder,
.booking-form-container .wpcf7-form p select::-ms-input-placeholder,
.booking-form-container .wpcf7-form p textarea::-ms-input-placeholder {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.booking-form-container .wpcf7-form p input::placeholder,
.booking-form-container .wpcf7-form p select::placeholder,
.booking-form-container .wpcf7-form p textarea::placeholder {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}
.booking-form-container .wpcf7-form p label {
  font-size: 14px;
  color: #333;
  font-weight: 400;
}
.booking-form-container .wpcf7-form p input[type="submit"] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--primary--color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.booking-form-container .wpcf7-response-output {
  grid-column: span 12;
  margin: 5px 0 !important;
}
.sidebar-single-container {
  z-index: 900;
}
.sidebar-single-container > div:not(:last-child) {
  margin-bottom: 35px;
}
.tourfacts-section {
  position: relative;
  background-image: url("./assets/img/texture.png");
  overflow: hidden;
  position: relative;
  background-repeat: repeat;
  padding: 45px 0;
}
.tourfacts-section::after {
  content: " ";
  background-color: #ffd8a130;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.tourfacts-container ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tourfacts-container * {
  position: relative;
  z-index: 2;
}
.tourfacts-container ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.tourfacts-container ul li:not(:last-child) {
  margin-bottom: 15px;
}
.tourfacts-container ul li img {
  width: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}
.tourfacts-container ul li div span {
  color: var(--primary--color);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.tourfacts-container ul li div p {
  font-size: 16px;
  font-weight: 400;
  color: #494949;
}
.side-price-container {
  background-color: #01172f09;
  /* background-image: url("./assets/img/pattern2.jpg"); */
  /* background-repeat: repeat; */
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.side-price-container > p {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -10px;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
  padding: 4px 16px;
  font-size: 14px;
  background-color: #333;
  position: relative;
  text-align: center;
  z-index: 4;
}
.side-price-container > p::after {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  left: -3px;
  top: 0;
  z-index: 1;
  -webkit-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  transform: skew(-20deg);
  background-color: #333;
}
.page-side-container ul,
.side-price-container ul {
  list-style: none;
  margin: 25px 0;
  padding: 15px;
  background-color: #fff;
}
.side-price-container ul:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-side-container ul li:not(:last-child),
.side-price-container ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.side-price-container ul li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.side-price-container ul li del {
  font-size: 16px;
  font-weight: 400;
  color: #dc143c9f;
}
.side-price-container ul li p {
  font-size: 24px;
  font-weight: 600;
  color: green;
}
.side-price-container ul li span:first-child {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}
.side-price-container ul li span:last-child {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
}
.side-price-container h4 {
  text-align: center;
  font-size: 24px;
  color: #343434;
  font-weight: 700;
}

.side-price-btn {
  margin-bottom: 25px;
  text-align: center;
}

.page-side-container {
  position: relative;
  padding: 45px 0 0 0;
  background-color: #01172f09;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.page-side-container h3 {
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 16px;
  white-space: nowrap;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 16px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--tertiary--color);
}
.page-side-container ul {
  padding: 15px 0;
  margin-bottom: 0;
}
.page-side-container ul li {
  padding: 0 15px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-side-container ul li:hover a {
  color: var(--primary--color);
}
.contact-iti-container {
  padding-top: 20px;
  position: relative;
}
.contact-iti-container::after {
  content: " ";
  width: 70%;
  margin: 0 auto;
  height: 1px;
  background: -o-radial-gradient(
    circle,
    rgba(238, 147, 31, 1) 0%,
    rgba(238, 147, 31, 0.19931722689075626) 100%
  );
  background: radial-gradient(
    circle,
    rgba(238, 147, 31, 1) 0%,
    rgba(238, 147, 31, 0.19931722689075626) 100%
  );
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.contact-iti-container p {
  text-align: center;
}
.contact-iti-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}
.contact-iti-container ul li:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-iti-container ul li i {
  color: #343434;
}
.videoplayer {
  padding-bottom: 100%;
}
.maintrip-section {
  padding: 105px 0;
  background-image: url("./assets/img/nepalmountain.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.maintrip-section > span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -10px;
  font-weight: 500;
  z-index: 2;
  padding: 3px 15px;
  text-transform: uppercase;
  background-color: var(--primary--color);
  color: #222;
}
.maintrip-section::after {
  content: " ";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.maintrip-section .uk-container {
  position: relative;
  z-index: 2;
}

.maintrip-content {
  width: 60%;
  margin: 0 auto;
}
.maintrip-content .the-content p {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}
.site-header-container {
  position: relative;
  background: #fff;
}
.overlaymenu {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100vh;
  display: none;
}
.overlaymenu-wrap {
  background-color: #222;
  padding-bottom: 35px;
  display: block;
  height: auto;
}

.site-header-container.active {
  background-color: #fff;
}
.overlaymenu.active {
  display: block !important;
  overflow-y: auto;
  -webkit-animation: fadein 0.7s cubic-bezier(0.25, 0.1, 0, 0.24) forwards;
  animation: fadein 0.7s cubic-bezier(0.25, 0.1, 0, 0.24) forwards;
}
.overlaymenu.active .overlaymenu-bg {
  -webkit-animation: fadein 0.7s ease forwards;
  animation: fadein 0.7s ease forwards;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
body.overlaymenu-active {
  overflow-y: hidden;
}

.overlaymenu-container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding: 45px 0;
  gap: 16px;
}
.headermenu-container {
  grid-column: span 3;
}
.overlaymenu-container h3 {
  color: #fff;
  font-weight: 800;
  padding-bottom: 25px;
  text-transform: uppercase;
  font-size: 30px;
}

.headermenu-container ul {
  list-style: none;
}
.headermenu-container ul li:not(:last-child) {
  padding-bottom: 5px;
}
.bottom-headcontent > div > ul > li > a,
.headermenu-container > div > ul li a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-size: 14px;
}
.bottom-headcontent > ul li a:hover,
.headermenu-container ul li a:hover {
  color: var(--primary--color);
}
.bottom-headcontent {
  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;
}
.bottom-headcontent > div > ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bottom-headcontent > div > ul li:not(:last-child) {
  margin-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 15px;
}
.date-available-container table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.09);
  text-align: center;
}

.date-available-container table tbody tr:nth-child(even),
.date-available-container table thead {
  background-color: #eee;
}
.date-available-container table tbody tr td:not(:last-child),
.date-available-container table thead tr td:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.date-available-container table thead tr td {
  padding: 15px 10px;
  color: #333;
  font-weight: 500;
  font-size: 17px;
  text-transform: uppercase;
}
.date-available-container table tbody tr td {
  padding: 12px;
  font-size: 15px;
  font-weight: 400;
  color: #454545;
}
.each-available-container {
  padding: 15px 20px 30px 20px;
  position: relative;
  border-radius: 8px;
  -webkit-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
}
.each-available-container > a {
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--primary--color);
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 24px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.each-available-container > a:hover {
  background-color: var(--secondary--color);
  color: var(--primary--color);
}
.each-available-container div:not(:last-child) {
  padding-bottom: 10px;
}
.each-available-container div span {
  color: #454545;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.each-available-container div p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.breadcrumb-container {
  padding: 10px 0;
  background-color: var(--tertiary--color);
}

.breadcrumbs-section ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.breadcrumbs-section ul li {
  position: relative;
}
.breadcrumbs-section ul li:not(:last-child) {
  padding-right: 30px;
}

.breadcrumbs-section ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
}
.breadcrumbs-section ul li::after {
  content: "\f054";
  font-size: 11px;
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "FONT AWESOME 5 FREE";
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs-section ul li:last-child::after {
  content: " ";
}
.bg-page-header {
  background-image: url("./assets/img/texture.png");
  background-position: center;
  background-repeat: repeat;
  position: relative;
}
.bg-page-header .uk-container {
  position: relative;
  z-index: 2;
}
.bg-page-header::after {
  content: " ";
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(238, 147, 31, 0.2)),
    to(#fff)
  );
  background: -o-linear-gradient(top, rgba(238, 147, 31, 0.2) 0%, #fff);
  background: linear-gradient(to bottom, rgba(238, 147, 31, 0.2) 0%, #fff);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1;
}
.page-header h1 {
  color: #343434;
  font-weight: 700;
}
.page-header .the-content {
  padding-top: 45px;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 15px;
}

.eachgallery {
  grid-column: span 4;
}
.eachgallery img {
  height: 350px;
}
.eachgallery:first-child {
  grid-column: span 7;
}
.eachgallery:nth-child(2) {
  grid-column: span 5;
}
.contact-header {
  font-weight: 700;
  color: #222;
  margin-bottom: 35px;
}

.contact-container .contact-infos .eachcontact-info {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.contact-container .contact-infos .eachcontact-info:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.contact-container .contact-infos .eachcontact-info .eachcontact-content span {
  color: #777;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
}
.contact-container .contact-infos .eachcontact-info .eachcontact-content p,
.contact-container .contact-infos .eachcontact-info .eachcontact-content p a {
  color: #454545;
  font-size: 18px;
  font-weight: 400;
}
.contact-container .contact-infos .eachcontact-info .socialmedia ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-container .contact-infos .eachcontact-info .socialmedia ul li i {
  color: #454545;
  font-size: 18px;
}
.contact-container
  .contact-infos
  .eachcontact-info
  .socialmedia
  ul
  li:not(:last-child) {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.contact-container .contact-infos .eachcontact-info img {
  width: 38px;
  -o-object-fit: contain;
  object-fit: contain;
}
.contact-container .contact-forms {
  padding: 35px;
  background-color: #f7f7f7;
  border-radius: 5px;
}

.contact-container .contact-forms h4 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 15px;
  font-weight: 650;
}
.contact-container .contact-forms .wpcf7-form p:not(:last-child) {
  margin-bottom: 15px;
}
.contact-container .contact-forms .wpcf7-form input,
.contact-container .contact-forms .wpcf7-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  outline: none;
  background-color: #0000000c;
  border-bottom: 2px solid var(--primary--color);
  font-family: var(--secondary-font);
  font-size: 15px;
  color: #444;
  font-weight: 450;
}
.contact-container .contact-forms .wpcf7-form input[type="submit"] {
  background-color: var(--primary--color);
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 3px;
  font-family: var(--secondary-font);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  padding: 14px 18px;
}
.contact-container .contact-forms .wpcf7-form textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 150px;
}
.contact-container .contact-forms .wpcf7-form label {
  color: #000000e5;
  font-size: 14px;
}
#st-cmp-v2 .st-cmp-app .st-cmp-settings {
  display: none !important;
}
.map-section iframe {
  width: 100% !important;
  height: 450px !important;
}

.error-404 .page-header .page-title {
  font-size: 34px;
  font-weight: 700;
  color: #454545;
}
.error-404 img {
  width: 450px;
}
.gallery-page-container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 15px;
}
.eachgallery-page {
  grid-column: span 4;
}
.page-content-content > h1 {
  margin-bottom: 45px;
}

.blog-content-wrapper .mid-section {
  padding-bottom: 30px;
}

.blog-content-wrapper .blog-content p {
  margin-top: 20px;
}

.blog-content-wrapper .blog-update {
  padding: 15px;
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.blog-content-wrapper .blog-update span {
  color: #000;
  font-size: 14px;
  margin-right: 15px;
}

/* navvbar */
#primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#primary-menu li {
  padding: 0;
  position: relative;
}
#primary-menu li a {
  margin: 0 20px;
}
/* 
.main-navigation > div > ul > li.menu-item-has-children > ul,
.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 183px;
  padding: 0;
  font-size: 14px;
  text-align: left;
  text-transform: capitalize;
  list-style: none;
  background: rgba(255, 255, 255, 0.8);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: 1px solid #adb0b2;
}
.main-navigation > div > ul > li.menu-item-has-children > ul li {
  border-bottom: 1px dotted #c9c9c9;
  position: relative;
}
.main-navigation > div > ul > li.menu-item-has-children > ul li a {
  display: block;
  padding: 10px 20px;
  clear: both;
  color: #555555;
  white-space: nowrap;
  position: relative;
  line-height: 16px;
  font-size: 14px;
  font-weight: 500;
  margin: 0 !important;
}
.main-navigation > div > ul > li.menu-item-has-children > ul li a:hover {
  background: none repeat scroll 0 0 rgba(210, 210, 210, 0.5);
  text-decoration: none;
}

.main-navigation > div > ul > li.menu-item-has-children:hover > ul,
.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children:hover
  > ul {
  display: block;
  animation: fade-nav-up 0.3s ease-in-out forwards;
  top: 100%;
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.84);
  border-color: -moz-use-text-color #bdbdbd #bdbdbd;
  border-image: none;
  border-right: 1px solid #bdbdbd;
  border-style: none solid solid;
  border-width: 0 1px 1px;
  border-top: 1px solid #bdbdbd;
}

.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children:hover
  > ul {
  left: 100%;
  top: 0;
}

.main-navigation > div > ul > li.menu-item-has-children a {
  margin-right: 5px !important;
}
.main-navigation > div > ul > li.menu-item-has-children::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.main-navigation
  > div
  > 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;
}
.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children >
  a {
    display: flex;
    justify-content: space-between;
}

@keyframes fade-nav-up {
  0% {
    opacity: 0;
    top: 150%;
  }
  100% {
    opacity: 1;
    top: 100%;
  }
} */

.main-navigation ul > li,
.main-navigation ul > li > ul > li {
  position: relative;
  text-align: left;
}
.main-navigation > div > ul > li.menu-item-has-children > ul li a {
  display: block;
  padding: 10px 20px;
  clear: both;
  color: #555555;
  white-space: nowrap;
  position: relative;
  line-height: 16px;
  font-size: 14px;
  font-weight: 500;
  margin: 0 !important;
}

.main-navigation ul > li > ul {
  position: absolute;
  top: 120%;
  width: 230px;
  opacity: 0;
  visibility: hidden;
  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: 1px solid #adb0b2;
  z-index: 2;
}

.main-navigation ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.main-navigation ul > li > ul > li > ul {
  position: absolute;
  left: 120%;
  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: 1px solid #adb0b2;
  z-index: 2;
}

.main-navigation ul > li > ul > li:hover > ul {
  left: 100%;
  top: 0;
}
.main-navigation > div > ul > li.menu-item-has-children {
  margin-right: 20px;
}
.main-navigation > div > ul > li.menu-item-has-children > ul li a:hover {
  background: none repeat scroll 0 0 rgba(210, 210, 210, 0.5);
  text-decoration: none;
}

.main-navigation > div > ul > li.menu-item-has-children a {
  margin-right: 5px !important;
}
.main-navigation > div > ul > li.menu-item-has-children::after {
  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;
}

.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > a::after,
.main-navigation
  > div
  > ul
  > 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;
}

.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > a,
.main-navigation
  > div
  > ul
  > 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;
}

.small-cap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.page-numbers {
  height: 30px;
  width: 30px;
  display: inline-block;
  background: transparent;
  line-height: 30px;
  color: var(--primary--color);
  border: 1px solid var(--primary--color);
  text-align: center;
}

.page-numbers:hover {
  background: rgba(238, 147, 31, 0.1);
}

.page-numbers.current {
  background: var(--primary--color);
  color: #fff;
  border: 1px solid transparent;
}
.page-numbers.dots {
  border: none;
  margin: 0;
  width: auto;
  height: auto;
}
.page-numbers.current:hover {
  background: var(--primary--color);
}
.page-numbers.dots:hover {
  background: transparent;
}
.page-numbers.next,
.page-numbers.prev {
  background: var(--tertiary--color);
  color: #fff;
  border: 1px solid transparent;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 10px;
  font-size: 12px;
}

.page-numbers.next:hover,
.page-numbers.prev:hover {
  background: var(--tertiary--color);
}

.testimonial-container .owl-carousel .owl-stage-outer {
  height: 250px;
}

.testimonial-container .owl-carousel .owl-stage,
.testimonial-container .owl-carousel .owl-item,
.testimonial-container .owl-carousel .owl-item .item {
  height: 100%;
}

.testimonial-container .eachtestimonial-container {
  height: 96%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.testimonial-container .eachtestimonial-container .eachtestimonial-content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

/*  */

.banner__text {
  position: absolute;
  bottom: 70px;
  left: 0;
  z-index: 10;
  width: 100%;
}
.banner__flex {
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: 40px;
  align-items: flex-end;
}
.special__banner .item {
  position: relative;
}
.special__banner .item::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.27) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );

  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.special__banner .item::before {
  content: "";
  border: 1px solid #fff;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  position: absolute;
  z-index: 10;
}
.banner__slider {
  height: 850px;
}
.banner__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__content {
  margin-bottom: 150px;
}
.banner__text h1 {
  font-weight: 700;
  font-size: 72px;
  line-height: 93px;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  max-width: 650px;
}
.banner__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  max-width: 450px;
  color: #ffffff;
  margin-top: 20px;
}

.banner__text span {
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  background: var(--primary--color);
  padding: 10px 16px;
  display: inline-block;
  margin-bottom: 10px;
}

.hover__img {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.hover__img img {
  transition: all 0.3s linear;
}
.hover__img img:hover {
  transform: scale(1.1);
}
.banner__thumbnail__wrapper {
  height: 100%;
  position: relative;
}
.banner__thumbnail__wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner__thumbnail__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  pointer-events: none;
}

.thumbnail__txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  pointer-events: none;
}

.thumbnail__txt span {
  font-size: 12px;
  padding: 5px 14px;
  border: 1px solid #fff;
}
.thumbnail__txt h2 {
  font-size: 24px;
  line-height: 34px;
  color: #ffffff;
  max-width: 150px;
  text-shadow: 0px 1.65079px 1.65079px rgba(0, 0, 0, 0.25);
}

.special__heading {
  font-weight: 700;
  font-size: 34px;
  line-height: 44px;
  text-transform: capitalize;
  color: #262626;
  padding-bottom: 10px;
  display: inline-block;
  width: max-content;
  border-bottom: 4px solid var(--primary--color);
}
.special__heading.white {
  border-bottom: 4px solid #fff;
  color: #fff;
}
.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;
}
.photo__expedition__info {
  max-width: 550px;
  margin-top: 40px;
  position: relative;
  padding-left: 40px;
}
.photo__expedition__info::before {
  content: "";
  position: absolute;
  border: 1px dashed var(--primary--color);
  height: 100%;
  top: 0;
  left: 0;
}
.photo__expedition__info::after {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  background: var(--primary--color);
  border-radius: 50%;
}
.photo__expedition__info .wrapper:not(:last-child) {
  margin-bottom: 20px;
}
.photo__expedition__info .wrapper {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
  align-items: center;
}
.photo__expedition__info .wrapper > div img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.photo__expedition__info .wrapper > div {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #727272;
}
.photo__expedition__info .wrapper > div strong {
  color: #ee9322;
  font-weight: 500;
}

.photo__expedition__overview__img {
  position: relative;
}
.photo__expedition__overview__img img {
  height: 600px;
}
.photo__expedition__overview__img .img-left {
  position: absolute;
  top: 20%;
  left: 0;
  width: 80%;
}
.photo__expedition__overview__img .img-left img {
  border: 7px solid #fff;
  border-radius: 0px 0px 0px 150px;
}
.photo__expedition__overview__img .img-right {
  text-align: right;
}
.photo__expedition__overview__img .img-right img {
  width: 80%;
}
.the-content.small {
  margin: 0 auto;
  max-width: 700px;
}
.content__wrapper {
  margin-top: 40px;
}

.top__photo__tab {
  box-shadow: 0px 0px 17.2px -1px #00000040;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  margin: 0;
  margin-bottom: 50px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.top__photo__tab li {
  padding-left: 10px;
}
.top__photo__tab li a {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  font-family: var(--antonio-font);
  text-transform: capitalize;
  color: #262626bd !important;

  border-radius: 500px;
  padding: 5px 30px !important;
}
.top__photo__tab li.uk-active a {
  background: var(--primary--color);
  color: #fff !important;
}

.plus-icon img {
  height: 55px;
  width: 55px;
}
.top__photo__card .top__photo__img img {
  border-radius: 0px 57px 0px 57px;
  height: 350px;
}
.top__photo__card .card__content {
  padding: 30px 40px 40px;
}
.top__photo__card .card__content h3 {
  margin: 0;
  line-height: 100%;
}
.top__photo__card .card__content h3 a {
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  color: #262626;
  opacity: 0.75;
  font-family: var(--antonio-font);
}
.top__photo__card {
  border: 1px solid #d2d2d2;
  border-radius: 0px 57px 0px 57px;
  transition: all 0.3s linear;
}
.top__photo__card:hover {
  background: #ffd9aa;
}

.why__photo__expedition {
  background-image: url("./assets/img/special-bg.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.why__photo__expedition::after {
  content: " ";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0000007d;
}
.why__photo__expedition .uk-container {
  position: relative;
  z-index: 2;
}

.why__photo__icon {
  width: 120px;
  height: 120px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.why__photo__icon img {
  width: 40px;
}
.why__photo__content h3 {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;

  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 5px;
  text-align: center;
  font-family: var(--rubik--font);
}
.why__photo__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  font-family: var(--rubik--font);
  max-width: 250px;
  margin: 0 auto;
}
.why__photo__expedition .content__wrapper {
  margin-top: 70px;
}

.itinerary__highlights__card {
  box-shadow: 0px 0px 17.3px -2px #00000040;
  padding: 20px;
  padding-bottom: 40px;
}
.itinerary__highlights__img img {
  width: 100%;
  height: 300px;
}
.itinerary__highlights__content {
  margin-top: 30px;
}
.itinerary__highlights__content h3 {
  background: var(--primary--color);
  color: #fff;
  font-family: var(--antonio-font);
  font-weight: 700;
  font-size: 25px;
  line-height: 33px;
  text-transform: capitalize;
  padding: 10px 20px;
}
.list__item ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.itinerary__highlights__content .list__item ul li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #262626a9;
  align-items: center;
}
.itinerary__highlights__content .list__item ul li img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.itinerary__highlights__content .list__item ul li:not(:last-child) {
  margin-bottom: 20px;
}

.special__inc__exc {
  background: #fff1e0;
  box-shadow: 0px 0px 17.7px -2px #00000040;
  padding: 70px;
}

.special__inc__exc .list__item ul li {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: rgba(38, 38, 38, 0.65);
  position: relative;
  padding-left: 30px;
}
.special__inc__exc .list__item ul li:not(:last-child) {
  margin-bottom: 20px;
}

.special__inc__exc .list__item ul li::before {
  background-image: url("./assets/img/arrow.png");
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.special__inc__exc .list__item.exc ul li::before {
  background-image: url("./assets/img/close.png");
}
.special__accommodation__wrapper {
  position: relative;
}
.special__accommodation__wrapper .play__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.special__accommodation__wrapper .play__btn img {
  width: 55px;
  height: 55px;
}
.special__accommodation__wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.71) 100%
  );
  pointer-events: none;
}
.special__accommodation__wrapper .hover__img a > img {
  height: 500px;
}
.special__accommodation__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 40px;
  z-index: 1;
  pointer-events: none;
}

.special__accommodation__content h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  color: #ffffffd3;
}
.special__accommodation__content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #ffffffd8;
  margin-top: 10px;
}

.special__arrow i{
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.photography__mentor__info{
  margin-top: 40px;
  max-width: 530px;
}
.photography__mentor__info .wrapper:not(:last-child) {
  margin-bottom: 20px;
}
.photography__mentor__info .wrapper {
  font-family: var(--rubik--font);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(38, 38, 38, 0.65);

}
.photography__mentor__info .wrapper strong {
  font-weight: 500;
  font-size: 20px;

  color: #ee9322;
}
.photography__mentor__card {
  border: 1px solid #d2d2d2;
  padding: 20px;
  border-radius: 27px;
}
.photography__mentor__card ul li strong{
  color: #727272 !important;
  font-weight: 600 !important;

}
.photography__mentor__card ul li{
font-family: var(--rubik--font);
font-size: 18px;
line-height: 26px;
color: #727272;


}
.photography__mentor__card ul li:not(:last-child){
  margin-bottom: 10px;
}

.photography__mentor__img{
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}
.photography__mentor__img img {
	width: 100%;
	position: relative;
	z-index: 1;
  padding: 20px;
}
.photography__mentor__img::before {
	content: "";
	width: 50%;
	height: 50%;
	position: absolute;
  bottom: 0;
  left: 0;
  background: var(--primary--color);
}
.photography__mentor__img::after {
	content: "";
	border: 1px solid #fff;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	top: 50%;
	transform:translate(-50%, -50%) scale(0.92);
	left: 50%;
	position: absolute;
	z-index: 10;
}