/*!
Theme Name: panaromanepal
Theme URI: https://panoramanepal.com/
Author: Genesis Web Technology
Author URI: https://www.genesiswtech.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: panaromanepal
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.

panaromanepal 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

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

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary-color: #c23d27;
  --text-color: #333;
  --secondary-color: #d6b87d;
}

html {
  scroll-behavior: smooth;
}

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

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

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  background: #232222;
}

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

h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: "Montserrat", sans-serif;
  color: #000309;
  font-weight: 600;
}

.site-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}

.site-header.header-default {
  position: static;
  background: #000;
}

.site-header.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

.site-header .custom-logo {
  filter: brightness(0) invert(1);
  padding: 50px 0;
}

.site-header.fixed .custom-logo {
  padding: 15px 0;
  width: 60px;
}

.site-header.header-default .custom-logo {
  padding: 20px 0;
}

.site-header::before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #000;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.site-header.fixed::before {
  height: 100%;
  transition: height 0.3s ease-in-out;
  -webkit-transition: height 0.3s ease-in-out;
  -moz-transition: height 0.3s ease-in-out;
  -ms-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
}

.main-navigation > div > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

.main-navigation > div > ul > li {
  position: relative;
}

.main-navigation > div > ul > li:not(:last-child) {
  margin-right: 25px;
}

.main-navigation > div > ul > li > a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.main-navigation > div > ul > li > a i {
  font-size: 12px;
  margin-left: 5px;
}

.main-navigation > div > ul > li > a {
  position: relative;
}
.main-navigation > div > ul > li > a:before,
.main-navigation > div > ul > li > a:after {
  height: 6px;
  width: 6px;
  position: absolute;
  content: "";
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
}
.main-navigation > div > ul > li > a:before {
  left: -8px;
  top: -5px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transform: translate(100%, 50%);
  transform: translate(100%, 50%);
}
.main-navigation > div > ul > li > a::after {
  right: -8px;
  bottom: -5px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  border-top: 0;
}
/* .main-navigation > div > ul > li > a:hover,
.main-navigation > div > ul > li > .current a {
  color: #ffffff;
} */
.main-navigation > div > ul > li > a:hover:before,
.main-navigation > div > ul > li > .current a:before,
.main-navigation > div > ul > li > a:hover:after,
.main-navigation > div > ul > li > .current a:after,
.main-navigation > div > ul > li > .current a.active:after {
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  opacity: 1;
}

.main-navigation > div > ul > li > ul {
  position: absolute;
  top: 150%;
  left: 0;
  z-index: 21;
  width: 200px;
  background: #fff;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 4px solid var(--primary-color);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.main-navigation > div > ul > li > ul > li {
  padding: 8px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.main-navigation > div > ul > li > ul > li:first-child {
  border-top: none;
}

.main-navigation > div > ul > li > ul > li:hover {
  background: #00000018;
}

.main-navigation > div > ul > li > ul > li > a {
  font-weight: 600;
  text-align: left;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7490196078);
  display: block;
  position: relative;
}

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

.burger__menu {
  position: relative;
  cursor: pointer;
  display: none;
}

.burger__menu .bars:after,
.burger__menu .bars:before {
  background-color: #fff;
  position: absolute;
  content: "";
  display: inline-block;
  height: 2px;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  transition: all ease 0.5s;
  outline: 1px solid transparent;
  right: 0;
  width: 30px;
}

.burger__menu .bars::after {
  top: 10px;
  width: 35px;
}
.burger__menu .bars:before {
  top: -10px;
}

.burger__menu .bars {
  background-color: #fff;
  display: inline-block;
  width: 26px;
  height: 2px;
  position: relative;
  top: -10px;
  vertical-align: bottom;
  border-radius: 50px;
}

.burger__menu:hover .bars::before,
.burger__menu:hover .bars::after {
  width: 25px;
}

.banner__section,
.banner__section .banner__slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.banner__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoom 20s ease;
  -webkit-animation: zoom 20s ease;
}

@-webkit-keyframes zoom {
  from {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
  to {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}
@keyframes zoom {
  from {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
  to {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

.banner__slider--video video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.banner__slider::before,
.banner__slider::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}

.banner__slider::after {
  bottom: 0;
  top: auto;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.site-branding {
  margin-right: calc(24% - 186px);
}

.header-socials > a {
  margin-left: 9px;
  color: #fff;
  font-size: 18px;
}

.banner__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 99;
  text-align: center;
  padding-bottom: 75px;
}

.banner__content--search {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.banner__content--search form,
.footer-form form p {
  display: flex;
  position: relative;
}

.footer-form form p {
  max-width: 400px;
  margin: auto;
  margin-top: 45px;
}

.banner__content--search .btn,
.footer-form input[type="submit"] {
  position: absolute;
  right: 0;
  height: 100%;
  padding: 11px 30px;
  font-size: 16px;
}

.banner__content--search input,
.footer-form input {
  padding: 11px 29px;
  border: 1px solid #fff;
  outline: none;
  background: transparent;
  border-radius: 27px;
  -webkit-border-radius: 27px;
  -moz-border-radius: 27px;
  -ms-border-radius: 27px;
  -o-border-radius: 27px;
  color: #fff;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  height: 54px;
  width: 400px;
  line-height: 32px; /* 177.778% */
}

.footer-form input[type="submit"] {
  width: auto;
  color: #000;
  background: #fff;
}

.banner__content--search input::placeholder {
  color: #fff;
}

.banner__content--text h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  line-height: 60px; /* 120% */
  letter-spacing: -2.5px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  outline: none;
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--primary-color);
  border-radius: 50px;
  box-shadow: inset 0 0 0 0 var(--primary-color);
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  cursor: pointer;
  text-align: center;
}

.btn.btn-white {
  color: #000;
  background: #fff;
}

.btn.btn-green {
  background: #758d6b;
  color: #fff;
}

.btn:hover {
  background: var(--primary-color);
  background: var(--primary--color);
  box-shadow: inset 0 -100px 0 0 #758d6b;
  color: #fff;
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
}

.footer-form input[type="submit"]:hover {
  border-color: transparent;
  color: #fff;
}

.section {
  padding: 120px 0;
}

.customize__photo--slider .owl-carousel,
.masterpiece--slider .owl-carousel {
  padding: 0 111px;
}

.customize__photo--slider .item > a {
  display: block;
  width: 100%;
  max-height: 550px;
}

.masterpiece--slider .item > a {
  width: auto;
  text-align: center;
}

.masterpiece--slider .owl-item {
  justify-content: center;
}

.masterpiece--slider .item > a img {
  width: auto;
  height: auto;
}

.customize__photo--slider .item > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owl-dots {
  position: relative;
  bottom: -100px;
  text-align: center;
}

.owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.3) !important;
  margin-right: 5px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.owl-dots .owl-dot.active {
  width: 20px;
  background: var(--primary-color) !important;
}

.owl-nav {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  left: auto;
  right: 0;
}
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
}
.owl-nav .prev-slide,
.owl-nav .next-slide {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  background-image: url("./assets/img/arrow-left.svg");
  background-repeat: no-repeat;
  text-align: center;
  background-position: center;
  box-shadow: 1px 1px 6px #00000036;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.owl-nav .next-slide {
  background-image: url("./assets/img/arrow-right.svg");
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* .customize__photo--stacked {
  position: relative;
  top: 70px;
  left: -20px;
} */
/* .customize__photo--stacked > div > a {
  position: absolute;
  width: 65px;

  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
} */

.customize__photo--stacked > div {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.customize__photo--stacked > div:first-child {
  z-index: 3;
  left: 40px;
  top: -30px;
  transition-delay: 100ms;
}

.customize__photo--stacked > div:nth-child(2) {
  transition-delay: 200ms;
}

.customize__photo--stacked > div:last-child {
  transition-delay: 300ms;
}

.customize__photo--stacked > div:first-child > a {
  transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
}

.customize__photo--stacked > div:nth-child(2) {
  left: 15px;
  top: -15px;
}

.customize__photo--stacked > div:nth-child(2) > a {
  transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  -o-transform: rotate(15deg);
}

.customize__photo--stacked > div:last-child {
  z-index: 1;
}

.customize__photo--stacked > div span {
  color: #666;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  background: #fff;
  display: inline-block;
  display: none;
  border-radius: 10px;
  padding: 8px 20px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.customize__photo--stacked > div span::before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 16px solid transparent;
  border-right: 30px solid #fff;
  border-top: 14px solid transparent;
  position: absolute;
  bottom: -10px;
  right: 0;
  z-index: -1;
}

.customize__photo--stacked > div:not(:last-child) > a {
  display: block;
  width: 50px;
  /* border: 2px solid #fff; */
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.customize__photo {
  background-position: bottom;
  background-size: cover;
}

.customize__photo--stacked > div:last-child > a:not(:last-child) {
  display: block;
  width: 50px;
  /* border: 2px solid #fff; */
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.customize__photo--stacked > div > a img {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.3s linear ease-in-out;
  -webkit-transition: 0.3s linear ease-in-out;
  -moz-transition: 0.3s linear ease-in-out;
  -ms-transition: 0.3s linear ease-in-out;
  -o-transition: 0.3s linear ease-in-out;
}

.customize__photo--right .customize__photo--stacked > div > a img {
  max-width: fit-content;
}

.customize__photo--left .customize__photo--stacked > div > a img {
  object-position: right;
}

.customize__photo--stacked > div > a {
  overflow: hidden;
  height: 50px;
}

/* .customize__photo--stacked {
  padding-top: 150px;
  margin-top: 90px;
  padding-left: 150px;
} */

.customize__photo--detailing,
.customize__photo--detailing1 {
  height: 70px;
  margin-top: 70px;
}

.customize__photo--detailing1 {
  /* align-items: center; */
  display: flex;
  justify-content: space-between;
}

.customize__photo--left,
.customize__photo--right {
  position: relative;
}

.customize__photo--collage .heading-wrap {
  margin-top: 50px;
}

.customize__photo--stacked:hover > div:not(:last-child) > a {
  width: 70px;
  height: 70px;
}

.customize__photo--stacked:hover > div:last-child > a:not(:last-child) {
  width: 70px;
  height: 70px;
}

.customize__photo--stacked:hover > div:first-child {
  left: 0;
  top: -120px;
}

.customize__photo--stacked:hover > div:nth-child(2) {
  left: -30px;
  top: -80px;
}

.customize__photo--stacked:hover > div:last-child {
  left: -60px;
  top: -40px;
}

.customize__photo--stacked > div > a {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.customize__photo--stacked:hover > div > a {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.customize__photo--stacked:hover > div > span {
  display: block;
}

.customize__photo--stacked > div:first-child > span {
  left: -24px;
  top: -20px;
}
.customize__photo--stacked > div:nth-child(2) > span {
  left: -54px;
  top: -20px;
}
.customize__photo--stacked > div:last-child > span {
  left: -104px;
  top: -16px;
}

/* .customize__photo--stacked:hover {
  margin: 0;
} */

.customize__photo--stacked > div:last-child > a:last-child {
  margin-top: 15px;
  margin-left: -15px;
  white-space: nowrap;
  opacity: 0;
  display: none;
}

.customize__photo--stacked:hover > div:last-child > a:last-child {
  display: block;
  opacity: 1;
}

.customize__photo--right .customize__photo--stacked > div:first-child {
  left: -105px;
  top: -30px;
}

.customize__photo--right .customize__photo--stacked > div:last-child {
  left: -65px;
}

.customize__photo--right .customize__photo--stacked > div:nth-child(2) {
  left: -85px;
  top: -15px;
}
.customize__photo--right .customize__photo--stacked:hover > div:first-child {
  top: -120px;
  left: -160px;
}

.customize__photo--right .customize__photo--stacked:hover > div:nth-child(2) {
  left: -105px;
  top: -90px;
}

.customize__photo--right .customize__photo--stacked:hover > div:last-child {
  left: -70px;
  top: -50px;
}

.customize__photo--right .customize__photo--stacked > div span::before {
  border-right: none;
  border-left: 21px solid #fff;
  position: absolute;
  bottom: -8px;
  left: 0.1px;
  right: auto;
}

.customize__photo--right .customize__photo--stacked > div:first-child > span {
  left: 24px;
  top: -20px;
}
.customize__photo--right .customize__photo--stacked > div:nth-child(2) > span {
  left: 64px;
  top: -10px;
}

.customize__photo--right .customize__photo--stacked > div:last-child > span {
  left: 44px;
  top: -13px;
}

.customize__photo--right .customize__photo--stacked > div:first-child > a {
  transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
}
.customize__photo--right .customize__photo--stacked > div:nth-child(2) > a {
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
}

.heading-wrap {
}

.heading-wrap h2 {
  color: #758d6b;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px; /* 130% */
  letter-spacing: -1.2px;
  margin-bottom: 40px;
}

.masterpiece__section {
  padding: 60px;
  background: #232222;
}

.masterpiece__section > div {
  background-position: center center;
  background-size: cover;
}

.masterpiece__content {
  margin-top: 40px;
}

.masterpiece__content h2 {
  color: #fff;
  text-align: right;
  font-family: "Poppins", sans-serif;
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 110px; /* 85.714% */
  letter-spacing: -7px;
  margin: auto;
  text-transform: lowercase;
  text-shadow: 0 3px 3px #00000045;
}

.masterpiece__content p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  line-height: normal;
  width: 100%;
  text-shadow: 0 3px 3px #00000045;
}
.masterpiece__btn {
  margin-top: 170px;
}

.photo-wrap > a {
  display: block;
  width: 100%;
  /* height: 300px; */
}

.photo-wrap > a img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.photo-wrap h3,
.photo-wrap h3 a {
  margin: 0;
  color: #4d4d4d;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

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

/* .high__resolution--slider .heading-wrap {
  padding: 0 111px;
} */

.high__resolution--slider .heading-wrap h2 {
  color: #4d4d4d;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 85px; /* 128.788% */
  letter-spacing: -3.3px;
}

.high__resolution--slider .owl-nav .prev-slide,
.high__resolution--slider .owl-nav .next-slide {
  background-color: var(--secondary-color);
  background-image: url("./assets/img/arrow-white-left.svg");
}

.high__resolution--slider .owl-nav .next-slide {
  background-image: url("./assets/img/arrow-white-right.svg");
}

.owl-nav .prev-slide:hover,
.owl-nav .next-slide:hover {
  background-color: #758d6b;
}

.owl-nav .prev-slide:hover {
  background-image: url("./assets/img/arrow-white-left.svg");
}

.owl-nav .next-slide:hover {
  background-image: url("./assets/img/arrow-white-right.svg");
}

.scale {
  position: relative;
  overflow: hidden;
}

.scale::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 150%;
  background: #ffffff2d;
  content: "";
  -webkit-transition: -webkit-transform 0.6s;
  /* transition: -webkit-transform .6s; */
  -o-transition: transform 0.6s;
  /* transition: transform .6s; */
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate(45deg) translate3d(0, -100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate(45deg) translate3d(0, -100%, 0);
  z-index: 99;
}

.scale:hover::before {
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate(45deg) translate3d(0, 100%, 0);
  transform: scale3d(1.9, 1.4, 1) rotate(45deg) translate3d(0, 100%, 0);
}

.scale:hover img {
  transform: scale(1.1);
  transition: 0.3s linear;
}

.scale img {
  transition: 0.3s linear;
}

.about__section {
  background-position: center;
  background: #f1f1f1;
}

/* .about__img img {
  width: 100%;
  height: 100%;
  border: 20px solid #fff;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  box-shadow: 0px 4px 100px 20px rgba(0, 0, 0, 0.25);
} */

.about__content h2 {
  color: #413f3e;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: 70px; /* 106.061% */
  letter-spacing: -3.3px;
  margin: 0;
  margin-bottom: 12px;
}

.about__content p {
  color: #424240;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 160% */
}

.site-footer {
  position: relative;
  padding: 50px 0;
  background: #232222 url("./assets/img/panoramanepal-x2d-camera.png") 0 0
    no-repeat;
  background-position: 0 -230px;
  padding-bottom: 50px;
  background-size: cover;
}

.footer-top {
  width: 65%;
  margin: auto;
}

.footer-top h3 {
  margin: 0;
  /* margin-top: 25px; */
  margin-bottom: 12px;
  color: #fff;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 153.333% */
}

.footer-top p {
  color: #fff;
  width: 50%;
  margin: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 160% */
}

.footer-mid {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #ffffff20;
  border-bottom: 1px solid #ffffff20;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-links ul li {
  margin-right: 20px;
}

.footer-links ul li a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.footer-contacts {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  /* margin-top: 45px; */
}

.footer-contacts > div {
  position: relative;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #ffffff20;
}

.footer-contacts > div:last-child {
  /* padding-left: 62px; */
  /* padding-right: 0;
  margin: 0;
  border: 0; */
}

.footer-contacts > div span {
  display: block;
  text-align: right;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 30px; /* 166.667% */
}

.footer-contacts > div:last-child > span {
  text-align: left;
}

.footer-contacts > div a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
}

.footer-contacts > div svg {
  width: 20px;
  margin-right: 5px;
}

/* .footer-contacts > div svg {
  position: absolute;
  top: 10px;
  right: 59px;
} */

/* .footer-contacts > div:last-child svg {
  left: 0;
  right: auto;
} */

.footer-quotes {
  margin-top: 35px;
}

.footer-quotes p {
  position: relative;
  color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 33px; /* 150% */
  width: 60%;
  margin: auto;
  padding: 0 50px;
}

.footer-quotes p::before,
.footer-quotes p::after {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-size: 30px;
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}

.footer-quotes p::after {
  content: "\f10e";
  left: auto;
  right: 0;
  bottom: -5px;
  top: auto;
}

.footer-bottom {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid #ffffff20;
}

.footer-bottom p,
.footer-bottom ul li a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  margin: 0;
}

.footer-bottom p a {
  color: #fff;
}

.footer-bottom ul li a {
  line-height: normal;
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom ul li {
  line-height: 100%;
  display: inline-block;
}

.footer-bottom ul li:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #ffffff20;
}

.site-footer::before {
  content: "";
  background: linear-gradient(180deg, #23222254 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.site-info {
  position: relative;
}

.customize__photo--detailing1 {
  position: relative;
  /* width: 50%; */
  margin: auto;
}

.photo-center {
  height: 1px;
  width: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.high__resolution--photos {
  background: #ddd;
}
.single-heading {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #ffffff30;
}

.single-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 120% */
  letter-spacing: -2.5px;
}

.the-content,
.the-content p {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  line-height: 27px; /* 187.5% */
}

.the-content img {
  margin-top: 15px;
}

.photo-table table {
  width: 100%;
  border-collapse: collapse;
}

.photo-table {
  margin-top: 40px;
}
.photo-table table tr td,
.photo-table table tr th {
  padding: 15px 19px;
  color: #dad9d9;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  border-bottom: 2px solid #232222;
}

.photo-table table tr td:first-child {
  width: 30%;
}

.photo-table table tr:nth-child(odd) {
  background: #444343;
}

.photo-table table tr:nth-child(even) {
  background: #393838;
}

.photo-desc {
  margin-bottom: 50px;
}

.img-wrapper {
  background: #fff;
  padding-bottom: 0px;
}

.inc-exc {
  margin-bottom: 15px;
}

.the-content ul,
.inc-exc ul,
.highlights-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inc-exc ul li {
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
}

.the-content ul li,
.inc-exc ul li,
.highlights-col ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  color: #fff;
}

.the-content ul li::before,
.inc-exc ul li::before,
.highlights-col ul li::before {
  content: "";
  background: url("./assets/img/circ-check.svg") 0 0 no-repeat;
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
}

.inc-exc .excluded-desc ul li::before {
  background-image: url("./assets/img/circ-cross.svg");
}

.the-content p a {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 960px) {
  .uk-width-large\@m {
    width: 500px;
  }
}

.single-heading h3 {
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 171.429% */
  letter-spacing: -1.75px;
  margin: 0;
}

.single-heading p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 166.667% */
}

.photo-table {
  overflow: auto;
}

.photo-guidance .photo-table table thead tr th {
  font-weight: 700;
  line-height: 20px; /* 150% */
  text-transform: uppercase;
}

.photo-guidance .photo-table table thead tr {
  background: #4f4e4e;
}

.photo-guidance .photo-table table tr {
  text-align: center;
}

.photo-guidance .photo-table table tr td:first-child {
  width: 10%;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
}

.photo-guidance .photo-table table thead tr th:first-child {
  text-align: left;
}

.photo-guidance .photo-table table tr td:first-child span {
  text-transform: none;
  font-weight: 400;
}

.header--sidebar__nav .contact-info > div {
  text-align: center;
}

/* .header--sidebar__head img {
  width: 150px;
} */

.header--sidebar__overlay {
  background-color: rgba(0, 0, 0, 0.82);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 1026;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform-origin: 100% 50%;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  -webkit-transition: transform 0.8s ease 0s;
  -khtml-transition: transform 0.8s ease 0s;
  -moz-transition: transform 0.8s ease 0s;
  -ms-transition: transform 0.8s ease 0s;
  -o-transition: transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  /* cursor: url("../img/pointer.png"), auto; */
}

.header--sidebar__menu {
  position: fixed;
  z-index: 1029;
  top: 0;
  left: 0;
  bottom: 0;
  width: 265px;
  background-color: #fff;
  font-size: 15px;
  line-height: 26px;
  color: #383838;
  overflow: hidden;
  transform: translateX(-500px);
  -webkit-transform: translateX(-500px);
  -moz-transform: translateX(-500px);
  -ms-transform: translateX(-500px);
  -o-transform: translateX(-500px);
  -webkit-transition: transform 0.8s ease 0s;
  -khtml-transition: transform 0.8s ease 0s;
  -moz-transition: transform 0.8s ease 0s;
  -ms-transition: transform 0.8s ease 0s;
  -o-transition: transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  display: flex;
  flex-direction: column;
}

.header--sidebar__shownav .header--sidebar__menu {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.header--sidebar__shownav .header--sidebar__overlay {
  transform: scaleX(100%);
  -webkit-transform: scaleX(100%);
  -moz-transform: scaleX(100%);
  -ms-transform: scaleX(100%);
  -o-transform: scaleX(100%);
}
.header--sidebar__menu > div > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header--sidebar__menu > div > ul > li {
  padding: 7px 10px;
  border-bottom: 1px solid #eee;
  transform: translateX(100px);
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.header--sidebar__menu > div > ul > li > ul {
  display: none;
  list-style: none;
  background-color: #f3f3f3;
  padding: 0;
  margin: 10px 0 0 0;
}
.header--sidebar__menu > div > ul > li > ul > li a {
  padding: 7px 15px;
  display: block;
  color: var(--secondary--color);
  font-size: 14px;
  font-weight: 500;
}
.header--sidebar__menu > div > ul > li > a {
  color: #1a1a1a;
  position: relative;
  font-weight: 500;
  /* text-transform: uppercase; */
  display: block;
  font-size: 14px;
  -webkit-align-items: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.header--sidebar__shownav .header--sidebar__menu > div > ul > li {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  position: relative;
}
.header--sidebar__shownav .header--sidebar__menu > div > ul > li > i {
  position: absolute;
  right: 15px;
  cursor: pointer;
  color: var(--primary--color);
  padding: 10px;
  top: 2px;
}

.header--sidebar__head {
  background: #eee;
  text-align: center;
  padding: 15px;
}

.header--sidebar__footer {
  padding: 15px;
}

.header--sidebar__nav {
  display: none;
}

.info__sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.get__in__touch ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.get__in__touch ul li {
  display: grid;
  grid-template-columns: 50px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
}
.get__in__touch ul li:first-child {
  padding-top: 0;
}
.get__in__touch ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.get__in__touch ul li .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.get__in__touch ul li .icon i {
  font-size: 30px;
  color: #777;
  margin-right: 10px;
}
.get__in__touch ul li .txt h3 {
  margin: 0;
  color: rgba(17, 17, 17, 0.75);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.get__in__touch ul li .txt a,
.get__in__touch ul li .txt p {
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 17px;
  font-weight: 500;
}
.get__in__touch ul li .txt a:hover,
.get__in__touch ul li .txt p:hover {
  color: var(--primary-color);
}

.contact__form {
  background: #f5f5f5;
  padding: 30px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.map__section iframe {
  width: 100%;
  height: 500px;
  border: 0;
}
.map__section {
  margin-bottom: 30px;
}

.get__in__touch h4 {
  color: #222;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 7px;
  grid-column: span 12;
}

.social-media {
  margin-top: 12px;
  grid-column: span 12;
}

.social-media a {
  width: 35px;
  height: 35px;
  background: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1803921569);
  text-align: center;
  color: var(--primary-color);
  border-radius: 100%;
  line-height: 35px;
  margin: 0 10px 5px 0;
}

.social-media a:hover {
  background: var(--primary-color);
  color: #fff;
}

.contact__form p {
  margin: 0;
}

/* .contact__form p:not(:last-child) {
  margin-bottom: 20px;
} */

.order__form {
  padding: 30px;
  box-shadow: 0 1px 6px #00000025;
}

.contact__form p label,
.order__form label {
  display: block;
  font-size: 14px;
  margin-bottom: 7px;
  font-weight: 500;
}

.order__form label {
  display: block;
  margin-bottom: 20px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
}

.contact__form input[type="text"],
.contact__form input[type="password"],
.contact__form textarea,
.contact__form input[type="email"],
.contact__form input[type="date"],
.contact__form select,
.order__form input,
.order__form select,
.orderSelection select {
  margin-top: 5px;
  background: #fff;
  width: 100%;
  outline: none;
  color: #444;
  font-family: "Poppins", sans-serif;
  border: 1px solid #eee;
  height: 45px;
  box-sizing: border-box;
  padding: 8px 10px 8px 20px;
  /* border-radius: 0; */
  background: rgba(0, 0, 0, 0.06);
  font-weight: 600;
  font-size: 14px;
  border-bottom: solid 2px rgba(0, 0, 0, 0.14);
}

.orderSelection select {
  height: auto;
  margin: 0;
  font-size: 12px;
  cursor: pointer;
}

.orderSelection select option {
  cursor: pointer;
}

.contact__form textarea {
  height: 150px;
}

.contact__form form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
}

.contact__form form p {
  grid-column: span 6;
}

.contact__form form p:nth-last-of-type(1),
.contact__form form p:nth-last-of-type(2),
.contact__form form p:nth-last-of-type(3) {
  grid-column: span 12;
}

.contact__form form input[type="submit"],
.order__form input[type="submit"] {
  font-family: "Montserrat", sans-serif;
  padding: 12px 18px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  outline: none;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.order__form input[type="submit"] {
  width: auto;
}

.content-area p {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  text-align: justify;
}
.content-area p:not(:last-child) {
  margin-bottom: 15px;
}

.content-area p a {
  color: #2d74ff;
  text-decoration: underline;
}

.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5,
.content-area h6 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 32px;
  color: var(--primary-color);
}

.content-area ul,
.content-area ol {
  list-style: inherit;
  padding-left: 16px;
}

.content-area ul li,
.content-area ol li {
  margin-bottom: 10px;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

.content-area h1 {
  font-size: 42px;
  line-height: 50px;
}

.content-area h2 {
  font-size: 30px;
  line-height: 40px;
}

.content-area h3 {
  font-size: 26px;
}

.content-area h4 {
  font-size: 22px;
}

.contact__section--page {
  background: #fff;
}

.page__title {
  color: #111;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 800;
}

/* .high__resolution--slider .photo-wrap > a {
  height: 300px;
} */

.blog__section .photo-wrap p {
  margin: 0;
  margin-top: 8px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.blog__section.section {
  padding: 50px 0;
  background: #fff;
}

.stories__single--text {
  margin-top: 50px;
}

.stories__single--text h1 {
  font-size: 45px;
  font-weight: 600;
  color: #758d6b;
}

.post__meta span {
  font-size: 14px;
  font-weight: 500;
  margin-right: 15px;
}

.featured__post {
  margin: 50px 0;
}

.content-area img {
  width: 100%;
  margin-bottom: 25px;
}
.qty__size {
  display: block;
  width: 100%;
  height: 30px;
  margin: auto;
  position: absolute;
  left: 0;
}

.qty__size {
  display: none;
  margin-top: 3px;
  padding: 5px;
  font-size: 12px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.photo-table table tr td label {
  cursor: pointer;
  display: block;
  position: relative;
}

.booking-pricing > div {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #999;
}

.booking-desc h4 {
  font-weight: 600;
  margin-top: 8px;
}

.booking-pricing span {
  font-size: 14px;
  font-weight: 600;
  width: 25%;
}

.booking-pricing span:last-child {
  width: 10%;
}

.booking-pricing span span {
  display: block;
}

.booking-pricing span input {
  width: 50px;
  height: 30px;
  padding: 5px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.photo__note {
  padding: 30px;
  background: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  /*box-shadow: 8px 8px 0px 4px var(--primary-color);*/
}

.photo__note h3 {
  margin: 0;
  margin-bottom: 12px;
  color: #111;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.photo__note p {
  font-size: 17px;
  margin: 0;
  font-weight: 500;
  color: #333;
}

.authentic-photo-sample img {
  width: 50%;
  padding: 10px;
  max-width: 100%;
}

.availability-photos .single-heading {
  margin: 0;
  border: none;
  padding: 0;
}

/* .availability-photos .authentic-photo-sample img {
  height: 415px;
} */

.availability-photos .authentic-photo-sample span {
  font-size: 14px;
  color: #fff;
  text-align: center;
  display: block;
  font-weight: 600;
  font-style: italic;
}

.about__content .content-area p {
  color: #fafafa;
  text-align: center;
}

.single-heading span {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: -1.5px;
}

.page-template-template-about .about__section {
  display: none;
}

.why-choose-data {
  text-align: center;
}

.why-choose-data img {
  width: 50px;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.why-choose-data h3 {
  margin: 0;
  margin-top: 18px;
  font-size: 24px;
  color: #fafafa;
  /* text-transform: uppercase; */
  /* font-size: 20px; */
  letter-spacing: -1.5px;
}

.why-choose-data p {
  font-size: 15px;
  color: #fafafaa2;
  margin: 0;
  margin-top: 5px;
}

.photo-grid-auto {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.photo-grid-auto > div {
  flex: 1 1 25%;
  padding: 15px;
}

.photo__trip--iti .content-area,
.photo__trip--iti .content-area p {
  color: #f1f1f1;
}

.photo__trip--iti .content-area p em {
  color: #f1f1f1;
}

.photo__trip--iti .content-area h1,
.photo__trip--iti .content-area h2,
.photo__trip--iti .content-area h3,
.photo__trip--iti .content-area h4,
.photo__trip--iti .content-area h5,
.photo__trip--iti .content-area h6 {
  color: var(--secondary-color);
}

.photo__trip--iti .content-area ul li,
.photo__trip--iti .content-area ol li {
  color: #fafafa;
  font-size: 17px;
}

.photo__trip--iti .content-area ul {
  list-style: none;
  padding: 0;
}
.content-area h1 {
  font-size: 45px;
  line-height: 50px;
}

.content-area h2 {
  margin-top: 40px;
  font-size: 38px;
  line-height: 40px;
}

.content-area h3 {
  margin-top: 32px;
  font-size: 24px;
}

.content-area h4 {
  font-size: 20px;
}

.the-content figure {
  width: 100% !important;
}

.content-area figure img {
  margin-bottom: 2px;
}

.content-area figcaption,
.the-content figcaption {
  font-size: 14px;
  line-height: 24px;
  color: #ffffffcb;
  opacity: 1;
  font-weight: 400;
  text-align: left;
  margin-top: 8px !important;
}

.the__title {
  font-size: 30px;
  color: var(--secondary-color);
}

.trip__cost {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee77;
}

.gallery-data > a {
  display: block;
  width: 100%;
  /* height: 300px; */
}

.gallery-data > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-tour-nav {
  background-color: var(--secondary-color);
  z-index: 5;
  position: relative;
}
.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: flex;
  height: 100%;
}
.c-tour-nav__item {
  height: 100%;
}
.c-tour-nav__link {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 54px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: #222;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  text-decoration: none;
  padding: 0 20px;
}
.c-tour-nav__item:first-of-type .c-tour-nav__link::before {
  display: none;
}
.c-tour-nav__item.active-tab a,
.c-tour-nav__item a:hover {
  background: #fff;
  color: var(--primary-color);
}

.c-tour-nav__item.active-tab a {
  pointer-events: none;
}

.uk-grid-divider > :not(.uk-first-column)::before {
  border-color: #ffffff30;
}

.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: "Satoshi-Regular";
}

.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: "Satoshi-Regular";
  min-height: 36px;
}
.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 {
  padding: 10px 20px;
  margin-right: 0;
  font-size: 14px;
  font-weight: 500;
}
.trip__table table td .disable-btn {
  pointer-events: none;
  background: rgba(51, 51, 51, 0.2);
}
.trip__table table td .guaranteed {
  color: var(--primary--color);
}

.trip__date--price .photo-table table tr td:first-child {
  width: auto;
}

.trip__date--price .photo-table table tr th {
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
}

.photo-table table tr td:last-child a.btn {
  width: 100%;
}

.popup__form form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.popup__form form p {
  grid-column: span 6;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
}
#book-now .popup__form form p:nth-child(10),
#book-now .popup__form form p:nth-child(11),
#enquire-now .popup__form form p:nth-child(6),
#enquire-now .popup__form form p:nth-child(7),
.wpcf7-response-output {
  grid-column: span 12;
}

#enquire-now .popup__form form input[type="text"],
#enquire-now .popup__form form textarea,
#enquire-now .popup__form form input[type="email"],
#enquire-now .popup__form form input[type="number"],
#enquire-now .popup__form form input[type="date"],
#enquire-now .popup__form form select {
  background: #fff;
  width: 100%;
  outline: none;
  font-size: 14px;
  padding: 12px 10px;
  border-radius: 4px;
  color: #444;
  font-family: Poppins, sans-serif;
  border: 1px solid #cbcbcb;
}

#enquire-now .popup__form form input[type="submit"] {
  display: inline-block;
  outline: none;
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--primary-color);
  border-radius: 50px;
  box-shadow: inset 0 0 0 0 var(--primary-color);
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  cursor: pointer;
  text-align: center;
}

/* .scroll-content-body {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}
.each__section {
  height: 100vh;
  scroll-snap-align: start;
} */

.high__resolution--slider .items,
.masterpiece--slider .item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.masterpiece--slider {
  position: relative;
}

.masterpiece--slider .owl-nav {
  top: 86%;
}

.masterpiece--slider .owl-carousel .owl-nav button.owl-next {
  background: url("./assets/img/swipe-right.gif");
  background-size: 75px;
  background-position: bottom right;
  background-repeat: no-repeat;
  width: 75px;
  height: 75px;
}

.masterpiece--slider .owl-carousel .owl-nav button span {
  display: none;
}

.high__resolution--slider .owl-item,
.masterpiece--slider .owl-item {
  display: flex;
  flex: 1 0 auto;
  min-height: inherit;
  min-width: inherit;
  align-items: center;
}
/* 
.masterpiece--slider .owl-carousel {
  padding: 15px;
} */

.high__resolution--slider .owl-stage,
.masterpiece--slider .owl-stage {
  display: flex;
}

.customize__photo--slider .owl-carousel .owl-stage-outer,
.masterpiece--slider .owl-carousel .owl-stage-outer img {
  box-shadow: 0 3px 3px 3px #0000008f;
}

.high__resolution--slider .photo-wrap,
.about__img {
  /* display: inline-block; */
  vertical-align: middle;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  padding: 15px;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  aspect-ratio: 3/2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.high__resolution--slider .items {
  padding-bottom: 50px;
  width: 100%;
  height: 100%;
}

.high__resolution--slider .photo-wrap > a img {
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  margin: auto;
}

.high__resolution--slider .photo-wrap {
  height: 370px;
}

/* .customize__photo--datas {
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.default__photo a {
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.default__photo img {
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  margin: auto;
  box-shadow: 0 3px 3px 3px #0000008f;
}

/* .customize__photo--datas img {
  display: block;
} */

.customize__photo--datas img {
  display: none;
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  margin: auto;
}

.customize__photo--datas img.active {
  display: block;
}

.customize__photo--middle > a {
  display: block;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.customize__photo--middle > a.active {
  border: 2px solid #f1f1f1;
}

.customize__photo--middle > a span {
  width: 100%;
  display: block;
  height: 100%;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.customize__photo--middle > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customize__photo--middle p {
  font-weight: 500;
  font-size: 14px;
  margin: 0;
  margin-bottom: 12px;
}

.customize__photo--datas {
  position: relative;
}

.customize__photo--datas > img:first-child {
  position: absolute;
}

.customize__photo--datas {
  display: none;
}

.high__resolution--photos .uk-container {
  max-width: 1360px;
  /* width: 100%; */
}

.megaPixels__section > div {
  height: 100vh;
  background-position: center -75px;
  background-repeat: no-repeat;
  background-size: cover;
}
.pixels__container {
  overflow: hidden;
  padding: 120px 0;
}

.pixels__container > a {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pixels__container > a img {
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  margin: auto;
}

/* .megaPixels--slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.megaPixels-wrap {
  margin-right: 20px;
}

.megaPixels-wrap:first-child {
  width: 70%;
}

.megaPixels-wrap:last-child {
  width: 30%;
}

.swiper {
  width: 100%; 
  height: 100%; 
} */

.megaPixels__text div {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
  text-shadow: -3px 3px 5px rgba(0, 0, 0, 0.2);
}

.megaPixels__text div span.pixel__size {
  font-size: 75px;
}

.megaPixels__text div span:last-child {
  display: block;
  line-height: 63px;
}

.megaPixels__text div > div {
  margin-bottom: 20px;
}

.gallery__page {
  background: #ddd;
}

.high__resolution--slider .photo-wrap:hover {
  background: #fff;
}

.product-details h1 {
  color: #758d6b;
  margin-bottom: 0;
  margin-bottom: 4px;
}

.product__price {
  font-size: 21px;
  font-weight: bold;
  display: block;
  margin-top: 5px;
  color: #333;
}

.product-details p {
  font-size: 15px;
  color: #555;
  font-weight: 500;
  margin-bottom: 6px;
  margin-top: 6px;
}

.product-details .photo-table table tr:nth-child(2n + 1) {
  background: #eee;
}

.product-details .photo-table table tr:nth-child(2n) {
  background: #fff;
}

.product-details .photo-table table tr td,
.product-details .photo-table table tr th {
  color: #333;
  border-bottom: 1px solid #cbcbcb;
}

.product__section {
  padding: 75px 0;
}

/* .masterpiece--slider {
  background: url("./assets/img/swipe-right.gif");
  background-size: 75px;
  background-position: bottom right;
  background-repeat: no-repeat;
} */

/* .swiper-slide.swiper-slide-next,
.swiper-slide.swiper-slide-prev {
  display: none;
}

.swiper-slide.swiper-slide-active {
  display: block;
} */

.photo-wrap-content {
  margin-top: 12px;
}
.photo-wrap-content p {
  line-height: 100%;
  font-size: 18px;
  font-style: italic;
  margin: 0;
  color: #666;
  font-weight: 500;
}

.high__resolution--slider .photo-wrap {
  height: 250px;
}

.high__resolution--slider.heightWide .photo-wrap {
  height: 370px;
}

.art-gallery-banner img {
  width: 100%;
}

.photo-wrap-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.photo-wrap-content span {
  font-size: 14px;
}

.photo-wrap-content a.wishList {
  font-size: 20px;
  color: #666;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.print__option {
  /* margin-bottom: 20px; */
}

.print__option h3 {
  border: #bbb solid 2px;
  font-size: 16px;
  background-color: #eee;
  color: #666;
  border-radius: 4px 4px 4px 4px;
  box-shadow: 2px 2px 8px rgb(0 0 0/15%);
  padding: 8px 10px;
  -moz-transition: background-color 0.2s ease-in;
  -o-transition: background-color 0.2s ease-in;
  font-weight: 600;
  font-size: 12px;
  border: #ddd solid 2px;
  line-height: 18px;
  letter-spacing: 0;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.print__option h3::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 7px;
}

.customize__photo--options {
  /* max-width: 200px; */
  width: 100%;
  margin: auto;
  margin-bottom: 30px;
}

.print__option {
  position: relative;
}

.print__option ul {
  padding: 0;
  margin: 0;
  box-shadow: 2px 2px 8px rgb(0 0 0/15%);
  border: #ddd solid 2px;
  list-style: none;
  background: #eee;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 111;
  display: none;
}

.print__option ul li {
  margin: 0;
  padding: 8px 35px 7px 15px;
  color: #666;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  letter-spacing: 0;
  position: relative;
  border-bottom: 1px solid #00000028;
}

.print__option ul li span {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  display: inline-block;
  margin-top: 5px;
}

.print__option ul.selected {
  display: block;
}

.print__option ul li:hover {
  color: #5d8bc2;
  background: #d5e6fb;
}

.photo-wrap-content a.wishList.active i {
  font-weight: 900;
  color: red;
}

.order__note {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  margin-top: 15px;
  border: 1px solid #f4f4f4;
  box-shadow: 0 0 2px 1px #0000001a;
}

.order__note p {
  margin: 0;
  color: #3b3b3b;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
}

.orderSelection {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #00000041;
}

.orderSelection label,
.qty label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 12px;
}

.product-qty {
  /* width: 100%; */
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  background: #fff;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.product-qty .button-container {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.product-qty .button-container .qty {
  width: 100px;
  border: none;
  text-align: center;
  border: 1px solid #0000004d;
  border-left: 0;
  border-right: 0;
  background: #fff;
  font-size: 15px;
  font-weight: bold;
  color: #111;
  font-family: "Montserrat", sans-serif;
}

.product-qty .button-container button {
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  position: relative;
  border: 0;
  cursor: pointer;
  border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -ms-border-radius: 5px 0 0 5px;
  -o-border-radius: 5px 0 0 5px;
}

.product-qty .button-container button.cart-qty-plus {
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -ms-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
}

.cart-qty-plus::before,
.cart-qty-minus::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.cart-qty-minus::before {
  content: "\f068";
}

.orderPrice span {
  font-weight: 600;
  font-size: 25px;
}

.room__selections span {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 13px;
  line-height: 1.25rem;
  font-weight: 600;
  color: #111;
}
.room__selections span {
  padding: 0px;
}

.room__occupants span {
  font-size: 13px;
  --tw-text-opacity: 1;
  color: #333;
}

.room--selected {
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #a7a7a78c;
  padding-bottom: 0.75rem;
}

.order-table {
  padding: 30px;
  box-shadow: 0 0 2px 2px #0000000d;
  border-radius: 5px;
}

.room--selected:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.order-table .btn {
  width: 100%;
  margin-top: 25px;
}

.orderFrames {
  border-radius: 10px;
  cursor: pointer;
}

.orderFrames input[type="radio"] {
  display: none;
}

.orderFrames img {
  width: max-content;
  border-radius: 10px;
}

.orderFrames.active {
  border: 3px solid #000;
}

.page-template-template-order-form .about__section {
  display: none;
}

.post__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.post__meta span:first-child {
  padding-right: 15px;
  border-right: 1px solid #ccc;
}

.blog__wrapper {
  height: 100%;
  padding: 32px;
}

.blog__section .photo-wrap {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog__section .photo-wrap p.blogdate {
  font-size: 14px;
  margin: 0 0 8px;
  font-weight: 500;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.5em;
}

.error-img {
  background: #f1f1ef;
}
