@charset "UTF-8";

.container{
  max-width: 1220px;
}
/*---------------------------------
    Footer CSS 
-----------------------------------*/
.footer-area .comp-desc {
  letter-spacing: 0.01em;
}
.footer-area .footer-menu li {
  margin-bottom: 10px;
}
.footer-area .footer-menu li:last-child {
  margin-bottom: 0;
}
.footer-area .footer-menu li a {
  position: relative;
  padding-left: 17px;
}
.footer-area .footer-menu li a i {
  position: absolute;
  top: 2px;
  left: -4px;
  font-size: 20px;
  font-weight: 300;
  line-height: 0.8;
  margin: 0;
  color: var(--secondaryColor);
  transition: var(--transition);
}
.footer-area .social-profile.style-one li {
  margin-right: 4px;
}
.footer-area .social-profile.style-one li:last-child {
  margin-right: 0;
}
.footer-area .contact-info {
  margin-bottom: 45px;
}
.footer-area .contact-info li {
  margin-bottom: 20px;
}
.footer-area .contact-info li:last-child {
  margin-bottom: 0;
}
.footer-area .contact-info li span {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-right: 15px;
}
.footer-area .contact-info li a, .footer-area .contact-info li p {
  width: calc(100% - 57px);
  margin-left: auto;
}
.footer-area .contact-info li a:hover {
  color: var(--secondaryColor);
}
.footer-area .footer-bottom {
  padding: 10px 0;
  border-radius: 75px 75px 0 0;
  background-color: var(--whiteColor);
}
.footer-area .footer-bottom .copyright-text i {
  margin-right: 4px;
  font-weight: 300;
}
.footer-area.style-two {
  margin: 0 10px;
  border-radius: 10px 10px 0 0;
}
.footer-area.style-two .footer-bg-shape {
  border-radius: 10px 10px 0 0;
}


:root {
  --primaryFont: "Bellota", system-ui;
  --secondaryFont: "Laila", serif;
  --optionalFont: "Lily Script One", system-ui;
  --rubikFont: "Rubik", sans-serif;
  --josefinFont: "Josefin Sans", sans-serif;
  --primaryColor: #24584C;
  --secondaryColor: #FF820F;
  --optionalColor: #D0F3B5;
  --paraColor: #555555;
  --titleColor:#051A2E;
  --blackColor: #000;
  --whiteColor: #fff;
  --offwhiteColor: #E9E9E9;
  --sandColor: #F4F4F3;
  --aztechColor:#111828;
  --codColor: #12131B;
  --mildColor: #222;
  --slateGrayColor:#2a3439;
  --fontSize: 16px;
  --transition: all ease .5s;
}

/*---------------------------------
    General Styles
-----------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

.form-control:focus {
  box-shadow: none;
  outline: none;
}

a,
button,
input[type=submit] {
  cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

a {
  text-decoration: none;
  transition: all 0.4s ease;
}

a:hover,
a:focus {
  text-decoration: none;
  box-shadow: none;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--titleColor);
  font-weight: 700;
  font-family: var(--secondaryFont);
}

body {
  color: var(--paraColor);
  font-size: var(--fontSize);
  font-family: var(--primaryFont);
  font-weight: 400;
  line-height: 26px;
}

p {
  font-weight: 700;
}

.text_primary {
  color: var(--primaryColor);
}

.text_secondary {
  color: var(--secondaryColor);
}

.text-title {
  color: var(--blackColor);
}

.text-para {
  color: var(--paraColor);
}

.text-offwhite {
  color: var(--offwhiteColor);
}

.text-optional {
  color: var(--optionalColor);
}

.font-primary {
  font-family: var(--primaryFont);
}

.font-secondary {
  font-family: var(--secondaryFont);
}

.font-optional {
  font-family: var(--optionalFont);
}

.font-rubik {
  font-family: var(--rubikFont);
}

.bg_primary {
  background-color: var(--primaryColor) ;
}

.bg_secondary {
  background-color: var(--secondaryColor);
}

.bg-sand {
  background-color: var(--sandColor);
}

.bg-spring {
  background-color: #F9F6F1;
}

.bg-aqua {
  background-color: #E7F3F1;
}

.bg-peach {
  background-color: #EDF2F1;
}

.bg-yellow {
  background-color: var(--yellowColor);
}

.ht-46 {
  height: 46px;
}

.ht-49 {
  height: 49px;
}

.ht-50 {
  height: 50px;
}

.ht-52 {
  height: 52px;
}

.ht-152 {
  height: 152px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.lh-13 {
  line-height: 1.3;
}

.fw-extrabold {
  font-weight: 800;
}

.fw-black {
  font-weight: 900;
}

.resize-0 {
  resize: none;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-120 {
  padding-bottom: 120px;
}

.ptb-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-18 {
  margin-bottom: 18px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-22 {
  margin-bottom: 22px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  line-height: 15px;
  font-weight: 600;
  padding: 18px 27px 17px 27px;
  border-radius: 50px;
  border: 0px solid transparent;
  overflow: hidden;
  transition: var(--transition);
}
.btn:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  border-radius: 50px;
  transition: var(--transition);
}
.btn:after {
  width: 100%;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.btn:hover:after {
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.btn.style-one {
  color: var(--secondaryColor);
  background-color: rgba(255, 99, 71, 0.1);
}
.btn.style-one:after {
  background-color: var(--secondaryColor);
}
.btn.style-one:hover {
  color: var(--whiteColor);
}
.btn.style-one:hover span {
  background-color: var(--whiteColor);
  right: 13px;
}
.btn.style-one:hover span img {
  filter: brightness(1) invert(1);
}
.btn.style-two {
  color: var(--optionalColor);
  background-color: var(--primaryColor);
}
.btn.style-two:after {
  background-color: var(--optionalColor);
}
.btn.style-two:hover {
  color: var(--primaryColor);
}
.btn.style-three {
  color: #EEFCF7;
  background-color: var(--secondaryColor);
}
.btn.style-three:after {
  background-color: var(--primaryColor);
}
.btn.style-three:hover {
  color: var(--whiteColor);
}
.btn.style-four {
  color: var(--primaryColor);
  background-color: var(--whiteColor);
}
.btn.style-four:after {
  background-color: var(--primaryColor);
}
.btn.style-four:hover {
  color: var(--whiteColor);
}
.btn.style-five {
  color: var(--primaryColor);
  background-color: rgba(36, 88, 76, 0.16);
}
.btn.style-five:after {
  background-color: var(--primaryColor);
}
.btn.style-five:hover {
  color: var(--whiteColor);
}
.btn.style-six {
  color: var(--primaryColor);
  background-color: #E9EEED;
}
.btn.style-six:after {
  background-color: var(--primaryColor);
}
.btn.style-six:hover {
  color: var(--whiteColor);
}
.btn.style-seven {
  color: var(--primaryColor);
  background-color: var(--optionalColor);
}
.btn.style-seven:after {
  background-color: var(--secondaryColor);
}
.btn.style-seven:hover {
  color: var(--whiteColor);
}

.link {
  position: relative;
  padding-bottom: 1px;
  line-height: 1;
}
.link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  transition: var(--transition);
}
.link i {
  margin-left: 10px;
  font-size: 18px;
  line-height: 0.8;
  position: relative;
  top: 1px;
  transition: var(--transition);
}
.link img {
  position: relative;
  top: -1px;
  margin-left: 5px;
  transition: var(--transition);
}
.link:hover:after {
  width: 100%;
}
.link:hover img {
  margin-left: 9px;
}
.link:hover i {
  margin-left: 12px;
}
.link.style-one {
  color: var(--secondaryColor);
}
.link.style-one:after {
  background-color: var(--secondaryColor);
}
.link.style-two {
  color: var(--offwhiteColor);
}
.link.style-two:after {
  background-color: var(--whiteColor);
}
.link.style-two:hover {
  color: var(--whiteColor);
}
.link.style-two:hover i {
  color: var(--whiteColor);
}
.link.style-three {
  color: var(--offwhiteColor);
}
.link.style-three:after {
  background-color: var(--secondaryColor);
}
.link.style-three:hover {
  color: var(--secondaryColor);
}
.link.style-three:hover i {
  color: var(--secondaryColor);
}

.link-hover-white,
.link-hover-primary,
.link-hover-secondary,
.link-hover-title {
  position: relative;
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.6s;
}
.link-hover-white:hover,
.link-hover-primary:hover,
.link-hover-secondary:hover,
.link-hover-title:hover {
  background-size: 100% 2px;
}

.link-hover-title:hover {
  background-image: linear-gradient(var(--titleColor), var(--titleColor));
  color: var(--titleColor);
}

.link-hover-primary:hover {
  background-image: linear-gradient(var(--primaryColor), var(--primaryColor));
  color: var(--primaryColor);
}

.link-hover-secondary:hover {
  background-image: linear-gradient(var(--secondaryColor), var(--secondaryColor));
  color: var(--secondaryColor);
}

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

.hover-text-secondary:hover {
  color: var(--secondaryColor);
}

.tilt-img {
  transition: 0.3s ease;
  transform-style: preserve-3d;
}

.img-hover-zoom .img-zoom img {
  width: 100%;
  transition: transform 500ms;
  transform: perspective(0px) rotateX(0deg) rotateY(0deg) scaleX(1) scaleY(1);
  transform-origin: center center;
  height: 300px;
  object-fit: cover;
}
.img-hover-zoom:hover .img-zoom img {
  width: 100%;
  transform: perspective(600px) rotateX(0.06deg) rotateY(0deg) scaleX(1.09) scaleY(1.09);
}

.img-hover:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.destination-card.style-three:hover .img-hover:before,
.team-card:hover .img-hover:before,
.tour-card:hover .img-hover:before {
  animation: shine 0.75s;
}
.destination-card.style-three:hover .img-hover img,
.team-card:hover .img-hover img,
.tour-card:hover .img-hover img {
  transform: scale(1.05);
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.bg-f {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
}

.bg-rust {
  background-color: var(--rustColor);
}

.transition {
  transition: all 200ms linear;
}

.social-profile li {
  display: inline-block;
  margin-right: 5px;
}
.social-profile li:last-child {
  margin-right: 0;
}
.social-profile li a i {
  line-height: 0.8;
  transition: var(--transition);
}
.social-profile.style-one li {
  margin-right: 9px;
  line-height: 1;
}
.social-profile.style-one li:last-child {
  margin-right: 0;
}
.social-profile.style-one li a {
  width: 29px;
  height: 29px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
}
.social-profile.style-one li a i {
  font-size: 14px;
  line-height: 1;
  position: relative;
  color: var(--secondaryColor);
}
.social-profile.style-one li a:hover {
  background-color: var(--secondaryColor);
}
.social-profile.style-one li a:hover i {
  color: var(--whiteColor);
}
.social-profile.style-two li {
  margin-right: 9px;
  line-height: 1;
}
.social-profile.style-two li:last-child {
  margin-right: 0;
}
.social-profile.style-two li a {
  width: 31px;
  height: 31px;
  border-radius: 50px;
  background-color: rgba(36, 88, 76, 0.1);
}
.social-profile.style-two li a i {
  font-size: 16px;
  line-height: 1;
  position: relative;
  color: var(--primaryColor);
}
.social-profile.style-two li a:hover {
  background-color: var(--secondaryColor);
}
.social-profile.style-two li a:hover i {
  color: var(--whiteColor);
}

.section-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #FF820F;
  font-family: var(--optionalFont);
}

.section-title {
  font-family: var(--secondaryFont);
  font-weight: 700;
}
.section-title span {
  z-index: 1;
}
.section-title span img {
  bottom: 10px;
  left: 49%;
  z-index: -1;
  transform: translateX(-50%);
}
.section-title.style-one, .section-title.style-two, .section-title.style-three, .section-title.style-four {
  font-size: 40px;
  line-height: 50px;
}
.section-title.style-four {
  font-family: var(--primaryFont);
  font-size: 40px;
  line-height: 54px;
}
.section-title.style-four img {
  border-radius: 50px;
}

.slider-btn.style-one .prev-btn,
.slider-btn.style-one .next-btn, .slider-btn.style-two .prev-btn,
.slider-btn.style-two .next-btn, .slider-btn.style-three .prev-btn,
.slider-btn.style-three .next-btn, .slider-btn.style-four .prev-btn,
.slider-btn.style-four .next-btn {
  position: relative;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
.slider-btn.style-one .prev-btn:hover img,
.slider-btn.style-one .next-btn:hover img, .slider-btn.style-two .prev-btn:hover img,
.slider-btn.style-two .next-btn:hover img, .slider-btn.style-three .prev-btn:hover img,
.slider-btn.style-three .next-btn:hover img, .slider-btn.style-four .prev-btn:hover img,
.slider-btn.style-four .next-btn:hover img {
  filter: brightness(0) invert(1);
}
.slider-btn.style-one .prev-btn:before,
.slider-btn.style-one .next-btn:before, .slider-btn.style-two .prev-btn:before,
.slider-btn.style-two .next-btn:before, .slider-btn.style-three .prev-btn:before,
.slider-btn.style-three .next-btn:before, .slider-btn.style-four .prev-btn:before,
.slider-btn.style-four .next-btn:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--secondaryColor);
  opacity: 0;
  z-index: 0;
  transition: var(--transition);
}
.slider-btn.style-one .prev-btn:hover:before,
.slider-btn.style-one .next-btn:hover:before, .slider-btn.style-two .prev-btn:hover:before,
.slider-btn.style-two .next-btn:hover:before, .slider-btn.style-three .prev-btn:hover:before,
.slider-btn.style-three .next-btn:hover:before, .slider-btn.style-four .prev-btn:hover:before,
.slider-btn.style-four .next-btn:hover:before {
  width: 100%;
  opacity: 1;
}
.slider-btn.style-one .prev-btn, .slider-btn.style-two .prev-btn, .slider-btn.style-three .prev-btn, .slider-btn.style-four .prev-btn {
  margin-right: 15px;
}
.slider-btn.style-one .prev-btn,
.slider-btn.style-one .next-btn {
  background-color: #E9E9E9;
}
.slider-btn.style-one .prev-btn:before,
.slider-btn.style-one .next-btn:before {
  background-color: var(--secondaryColor);
}
.slider-btn.style-two .prev-btn,
.slider-btn.style-two .next-btn {
  background-color: #DCE4E2;
}
.slider-btn.style-two .prev-btn:before,
.slider-btn.style-two .next-btn:before {
  background-color: var(--secondaryColor);
}
.slider-btn.style-three .prev-btn,
.slider-btn.style-three .next-btn {
  background-color: var(--whiteColor);
}
.slider-btn.style-three .prev-btn:before,
.slider-btn.style-three .next-btn:before {
  background-color: var(--secondaryColor);
}
.slider-btn.style-four .prev-btn,
.slider-btn.style-four .next-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.17);
}
.slider-btn.style-four .prev-btn:before,
.slider-btn.style-four .next-btn:before {
  background-color: var(--secondaryColor);
  border-color: transparent;
}

.outline-0:focus {
  outline: none;
}

.round-5 {
  border-radius: 5px;
}

.round-6 {
  border-radius: 6px;
}

.round-10 {
  border-radius: 10px;
}

.round-15 {
  border-radius: 15px;
}

.round-20 {
  border-radius: 20px;
}

.rating li {
  display: inline-block;
}
.rating li i {
  line-height: 0.8;
  color: #FEC21E;
}

/*---------------------------------
   Preloader Area CSS
----------------------------------*/
.preloader-area {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  position: fixed;
  text-align: center;
  overflow: hidden;
  background-color: var(--whiteColor);
}
.preloader-area .spinner {
  width: 80px;
  height: 80px;
  border: 2px solid #f3f3f3;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 1s infinite linear;
  border-top: 3px solid var(--secondaryColor);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*---------------------------------
    Back To Top CSS
----------------------------------*/
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.09);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}
.progress-wrap::after {
  position: absolute;
  font-family: remixicon !important;
  content: "\ea76";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  left: 0;
  color: var(--secondaryColor);
  top: 2px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  animation: float 1500ms infinite ease-in-out;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap svg path {
  fill: none;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--secondaryColor);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
  stroke: var(--secondaryColor);
}

/*---------------------------------
     Animation CSS
----------------------------------*/
.rotate {
  animation: rotation 20s infinite linear;
}

.bounce {
  animation: float 1500ms infinite ease-in-out;
}

.moveHorizontal {
  animation: moveHorizontal 3000ms infinite ease-in-out;
}

.moveVertical {
  animation: moveVertical 3000ms infinite ease-in-out;
}

.zoomIn {
  animation: zoom-in 3500ms infinite ease-in-out;
}

.waving_left {
  animation: waving_left 7s infinite linear;
  transition: all 0.3s ease-in-out;
}

.waving_right {
  animation: waving_right 7s infinite linear;
  transition: all 0.3s ease-in-out;
}

.img-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

.img-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

.img-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

.moving_cloud_one {
  animation: movingclouds 20s linear infinite;
}

.moving_cloud_two {
  animation: movingclouds 45s linear infinite;
}

.moving_cloud_three {
  animation: movingclouds 19s linear infinite;
}

.moving_cloud_four {
  animation: movingclouds 35s linear infinite;
}

.moving_cloud_five {
  animation: movingclouds 50s linear infinite;
}

[data-aos=fade-up] {
  transform: translate3d(0, 40px, 0);
}
@keyframes waving_left {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(6deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes waving_right {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(-6deg);
  }
  75% {
    -webkit-transform: rotate(-3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes movingclouds {
  0% {
    margin-left: 100%;
  }
  100% {
    margin-left: -110%;
  }
}
@keyframes movingplane {
  0% {
    margin-left: 100%;
    top: 300px;
  }
  29% {
    margin-left: 50%;
    top: 50px;
    transform: rotate(20deg);
  }
  31% {
    transform: rotate(-20deg);
  }
  60% {
    margin-left: 0%;
    top: 300px;
  }
  100% {
    margin-left: -100%;
    top: 300px;
  }
}
.reveal-text {
  visibility: hidden;
  max-width: 100%;
}
.reveal-text .letter {
  position: relative;
  display: inline-block;
  will-change: transform;
  transform-style: preserve-3d;
}
.reveal-text .letter div {
  width: 100%;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.reveal-text .perspective {
  position: relative;
  display: inline-block;
}
.reveal-text .perspective div {
  position: relative;
  display: inline-block;
}
.reveal-text .word {
  display: inline-block;
}
@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(0.8, 0.8);
  }
  50% {
    transform: scale(1.07, 1.07);
  }
  100% {
    transform: scale(0.8, 0.8);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
/*-------------------------------
    Custom Cursor CSS
-------------------------------*/
.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  transition: all 150ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
  z-index: 999;
  border: 1px solid var(--secondaryColor);
}

.cursor-inner {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 0.9;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  background-color: var(--secondaryColor);
  z-index: 999;
}

.hover {
  border-color: transparent;
  opacity: 0.8;
  width: 3px;
  height: 3px;
  z-index: 999;
  background-color: var(--auto_secondaryColor);
}

.cursorinnerhover {
  width: 15px;
  height: 15px;
  opacity: 0.5;
}

/*---------------------------------
   Pagination CSS
----------------------------------*/
.pagination-area .page-numbers {
  position: relative;
  width: 50px;
  height: 50px;
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  background-color: #E5EBEA;
  transition: var(--transition);
  margin-right: 13px;
}
.pagination-area .page-numbers i {
  position: relative;
  top: 1px;
  font-size: 30px;
  font-weight: 300;
}
.pagination-area .page-numbers:last-child {
  margin-right: 0;
}
.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover {
  background-color: var(--secondaryColor);
  border-color: transparent;
  color: var(--whiteColor);
}
.pagination-area .page-numbers.current img, .pagination-area .page-numbers:hover img {
  filter: brightness(0) invert(1);
}

/*-------------------------------
        Breadcrumb CSS
-------------------------------*/
.breadcrumb-area {
  margin-top: -96px;
  padding: 205px 0 240px;
}
.breadcrumb-area .br-line-shape {
  top: 50%;
}
.breadcrumb-area .br-shape-one {
  position: absolute;
  top: 27%;
  left: 2%;
}
.breadcrumb-area .br-shape-one .circle {
  position: absolute;
  top: -17px;
  left: -43px;
  z-index: -1;
}
.breadcrumb-area .br-shape-two {
  position: absolute;
  top: 52%;
  right: 0%;
  transform: translateY(-50%);
}
.breadcrumb-area .br-menu li {
  display: inline-block;
  position: relative;
  font-weight: 700;
  margin-right: 9px;
  padding-right: 19px;
  color: var(--secondaryColor);
}
.breadcrumb-area .br-menu li:after {
  position: absolute;
  top: 0px;
  right: 0;
  content: "|";
  font-size: 16px;
  font-weight: 500;
  transform: rotate(-14deg);
  color: var(--paraColor);
}
.breadcrumb-area .br-menu li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.breadcrumb-area .br-menu li:last-child:after {
  display: none;
}
.breadcrumb-area .br-menu li a {
  color: var(--paraColor);
}
.breadcrumb-area .br-menu li a:hover {
  color: var(--secondaryColor);
}

#linePath {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

/*-------------------------------
        Hero Section CSS
-------------------------------*/
.hero-area.style-one {
  padding: 324px 0 350px;
  margin-top: -96px;
  background-image: url(../images/hero/hero-bg-1.jpg);
}
.hero-area.style-one .hero-shape-two {
  top: 18%;
  left: 6%;
}
.hero-area.style-one .hero-img-shape {
  bottom: -10px;
}
.hero-area.style-one .hero-img-shape .circle {
  position: absolute;
  top: 10%;
  left: 5%;
}
.hero-area.style-one .hero-content span {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
.hero-area.style-one .hero-content h1 {
  font-size: 80px;
  line-height: 90px;
  margin-bottom: 22px;
}
.hero-area.style-two {
  margin-top: -96px;
  padding: 170px 0 120px;
  background-image: url(../images/hero/hero-bg-2.png);
  background-color: var(--primaryColor);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-area.style-two .moving_cloud_one {
  top: 17%;
  opacity: 0.5;
}
.hero-area.style-two .moving_cloud_two {
  top: 23%;
  opacity: 0.5;
}
.hero-area.style-two .moving_cloud_three {
  top: 36%;
  opacity: 0.5;
}
.hero-area.style-two .moving_cloud_four {
  top: 51%;
  opacity: 0.5;
}
.hero-area.style-two .moving_cloud_five {
  top: 56%;
  opacity: 0.5;
}
.hero-area.style-two .hero-shape-one {
  top: 29%;
  left: 9%;
}
.hero-area.style-two .hero-shape-two {
  top: 20%;
  right: 6%;
}
.hero-area.style-two .hero-shape-three {
  top: 36%;
  right: 17%;
}
.hero-area.style-two .hero-content {
  margin-bottom: 65px;
}
.hero-area.style-two .hero-content span {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
}
.hero-area.style-two .hero-content h1 {
  font-size: 60px;
  line-height: 70px;
}
.hero-area.style-three .hero-slide-item {
  padding: 100px 0 185px;
  overflow: hidden;
  border-radius: 0;
}
.hero-area.style-three .hero-slide-item .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  -webkit-user-select: none;
  background-attachment: fixed;
  background-color: transparent;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  animation: zoomin 15s ease-in infinite;
  transition: all 0.5s ease-in-out;
  z-index: -1;
  filter: brightness(0.7);
}
.hero-area.style-three .hero-slide-item .hero-bg.bg-1 {
  background-image: url(../images/slider/slider-01.jpg);
}
.hero-area.style-three .hero-slide-item .hero-bg.bg-2 {
  background-image: url(../images/slider/slider-02.jpg);
}
.hero-area.style-three .hero-slide-item .hero-bg.bg-3 {
  background-image: url(../images/slider/slider-03.jpg);
}
.hero-area.style-three .hero-slide-item .hero-bg.bg-4 {
  background-image: url(../images/slider/slider-04.jpg);
}
.hero-area.style-three .hero-slide-item .hero-bg.bg-5 {
  background-image: url(../images/slider/slider-05.jpg);
}
.hero-area.style-three .hero-slide-item .hero-bg.bg-6 {
  background-image: url(../images/slider/slider-06.jpg);
}
.hero-area.style-three .hero-slide-item .hero-bg:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/hero/hero-overlay.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.hero-area.style-three .hero-slide-item .hero-bottom-shape {
  bottom: -2px;
}
.hero-area.style-three .hero-slide-item .hero-content span {
  font-size: 24px;
  margin-bottom: 15px;
}
.hero-area.style-three .hero-slide-item .hero-content h1 {
  font-size: 52px;
  line-height: 64px;
}

.hero-slider-one .slider-btn {
  position: absolute;
  top: 45%;
  right: 20px;
  z-index: 1;
  transform: translateY(-50%);
}
.hero-slider-one .slider-btn .prev-btn {
  margin-bottom: 5px;
}
.hero-slider-one .slider-btn .prev-btn {
  margin-top: 5px;
}

.hero-search-box {
  border-radius: 100px;
  padding: 36px 45px 45px;
  position: relative;
  z-index: 1;
}
.hero-search-box .hero-search-tablist {
  position: relative;
  z-index: 2;
  padding-left: 10px;
  margin-bottom: 18px;
}
.hero-search-box .hero-search-tablist .nav-item {
  margin-right: 25px;
}
.hero-search-box .hero-search-tablist .nav-item:last-child {
  margin-right: 0;
}
.hero-search-box .hero-search-tablist .nav-item .nav-link {
  font-family: var(--rubikFont);
  position: relative;
  padding: 0 0 3px;
  background-color: transparent;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-search-box .hero-search-tablist .nav-item .nav-link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  opacity: 0;
  transition: var(--transition);
}
.hero-search-box .hero-search-tablist .nav-item .nav-link img {
  position: relative;
  top: -2px;
  margin-right: 3px;
  width: 22px;
}
.hero-search-box .hero-search-tablist .nav-item .nav-link:hover:after, .hero-search-box .hero-search-tablist .nav-item .nav-link.active:after {
  width: 100%;
  opacity: 1;
}
.hero-search-box .tour-search-form .form-group-wrapper {
  width: calc(100% - 135px);
  margin-right: auto;
  -moz-column-gap: 14px;
  column-gap: 14px;
}
.hero-search-box .tour-search-form .form-group-wrapper .form-group {
  width: calc(25% - 14px);
}
.hero-search-box .tour-search-form .form-group-wrapper .form-group input, .hero-search-box .tour-search-form .form-group-wrapper .form-group select {
  font-family: var(--rubikFont);
}
.hero-search-box .tour-search-form button {
  width: 135px;
}
.hero-search-box .tour-search-form button.btn {
  padding: 15.5px 20px;
  color: var(--whiteColor);
}
.hero-search-box .tour-search-form button.btn.style-two:hover {
  color: var(--primaryColor);
}
.hero-search-box.style-one {
  margin-top: -114px;
}
.hero-search-box.style-one, .hero-search-box.style-three {
  margin-top: -114px;
  background-color: #EAEEF1;
  box-shadow: 0 0 40px rgba(36, 88, 76, 0.159);
}
.hero-search-box.style-one::before, .hero-search-box.style-three::before {
  position: absolute;
  top: 14px;
  left: 11px;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 100px;
  background-color: var(--whiteColor);
  z-index: 0;
}
.hero-search-box.style-one .hero-search-tablist, .hero-search-box.style-three .hero-search-tablist {
  border-bottom: 1px solid rgba(73, 124, 113, 0.19);
}
.hero-search-box.style-one .hero-search-tablist .nav-item .nav-link, .hero-search-box.style-three .hero-search-tablist .nav-item .nav-link {
  color: var(--paraColor);
}
.hero-search-box.style-one .hero-search-tablist .nav-item .nav-link:after, .hero-search-box.style-three .hero-search-tablist .nav-item .nav-link:after {
  background-color: #619F72;
}
.hero-search-box.style-one .hero-search-tablist .nav-item .nav-link:hover, .hero-search-box.style-one .hero-search-tablist .nav-item .nav-link.active, .hero-search-box.style-three .hero-search-tablist .nav-item .nav-link:hover, .hero-search-box.style-three .hero-search-tablist .nav-item .nav-link.active {
  color: var(--primaryColor);
}
.hero-search-box.style-one .hero-search-tablist .nav-item .nav-link:hover img, .hero-search-box.style-one .hero-search-tablist .nav-item .nav-link.active img, .hero-search-box.style-three .hero-search-tablist .nav-item .nav-link:hover img, .hero-search-box.style-three .hero-search-tablist .nav-item .nav-link.active img {
  filter: brightness(1) invert(0) grayscale(0);
}
.hero-search-box.style-one .tour-search-form .form-group-wrapper .form-group select, .hero-search-box.style-one .tour-search-form .form-group-wrapper .form-group input, .hero-search-box.style-three .tour-search-form .form-group-wrapper .form-group select, .hero-search-box.style-three .tour-search-form .form-group-wrapper .form-group input {
  height: 46px;
  border-radius: 50px;
  border: 1px solid rgba(36, 88, 76, 0.16);
  padding: 9px 15px;
}
.hero-search-box.style-three .tour-search-form .form-group-wrapper .form-group textarea{
    height: 46px;
  border-radius: 50px;
  border: 1px solid rgba(36, 88, 76, 0.16);
  padding: 9px 15px;
}
.hero-search-box.style-one .tour-search-form .form-group-wrapper .form-group input::-moz-placeholder, .hero-search-box.style-three .tour-search-form .form-group-wrapper .form-group input::-moz-placeholder {
  color: var(--paraColor);
}
.hero-search-box.style-one .tour-search-form .form-group-wrapper .form-group input::placeholder, .hero-search-box.style-three .tour-search-form .form-group-wrapper .form-group input::placeholder {
  color: var(--paraColor);
}
.hero-search-box.style-two {
  margin-top: -124px;
  background-color: var(--primaryColor);
}
.hero-search-box.style-two::before {
  position: absolute;
  top: 14px;
  left: 11px;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 100px;
  background-color: #D0F3B5;
  z-index: 0;
}
.hero-search-box.style-two .hero-search-tablist {
  border-bottom: 1px solid rgba(73, 124, 113, 0.19);
}
.hero-search-box.style-two .hero-search-tablist .nav-item .nav-link {
  color: var(--paraColor);
}
.hero-search-box.style-two .hero-search-tablist .nav-item .nav-link img {
  filter: brightness(0) invert(0) grayscale(0.1);
  opacity: 0.8;
}
.hero-search-box.style-two .hero-search-tablist .nav-item .nav-link:after {
  background-color: #619F72;
}
.hero-search-box.style-two .hero-search-tablist .nav-item .nav-link:hover, .hero-search-box.style-two .hero-search-tablist .nav-item .nav-link.active {
  color: var(--primaryColor);
}
.hero-search-box.style-two .hero-search-tablist .nav-item .nav-link:hover img, .hero-search-box.style-two .hero-search-tablist .nav-item .nav-link.active img {
  filter: brightness(1) invert(0) grayscale(0);
}
.hero-search-box.style-two .tour-search-form .form-group-wrapper .form-group select, .hero-search-box.style-two .tour-search-form .form-group-wrapper .form-group input {
  height: 46px;
  border-radius: 50px;
  border: 1px solid rgba(36, 88, 76, 0.16);
  padding: 9px 15px;
}
.hero-search-box.style-two .tour-search-form .form-group-wrapper .form-group input::-moz-placeholder {
  color: var(--paraColor);
}
.hero-search-box.style-two .tour-search-form .form-group-wrapper .form-group input::placeholder {
  color: var(--paraColor);
}
.hero-search-box.style-three {
  margin-top: -135px;
}

/* Zoom in Keyframes */
@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
} /*End of Zoom in Keyframes */
/* Zoom out Keyframes */
@keyframes zoomout {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
/*-------------------------------
        Feature Section CSS
-------------------------------*/
.feature-card.style-one, .feature-card.style-three {
  padding: 39px 22px 25px;
  border-radius: 9px 100px 9px 9px;
}
.feature-card.style-one .feature-icon, .feature-card.style-three .feature-icon {
  min-height: 55px;
  font-size: 30px;
  color: var(--primaryColor);
}
.feature-card.style-one h3, .feature-card.style-three h3 {
  margin: 22px 0 15px;
  line-height: 30px;
}
.feature-card.style-one:hover, .feature-card.style-three:hover {
  border-radius: 30px;
}
.feature-card.style-one {
  background-color: #F9F6F1;
}
.feature-card.style-two {
  padding: 39px 36px 3px;
  background-color: #F9F6F1;
  border-radius: 4px 100px 4px 4px;
}
.feature-card.style-two .feature-icon {
  min-height: 55px;
}
.feature-card.style-two h3 {
  margin: 15px 0 15px;
  line-height: 30px;
  padding-right: 30px;
}
.feature-card.style-two:hover {
  border-radius: 30px;
}
.feature-card.style-three {
  background-color: var(--whiteColor);
  border: 1px solid #a3a3a3;
}

.feature-area.style-one .feature-img-one {
  border-radius: 40px 40px 0 40px;
}
.feature-area.style-one .feature-img-one img {
  border-radius: 40px 40px 0 40px;
}
.feature-area.style-one .feature-img-two {
  border-radius: 40px 0 40px 40px;
}
.feature-area.style-one .feature-img-two img {
  border-radius: 40px 0 40px 40px;
}
.feature-area.style-one .feature-content .feature-list {
  -moz-columns: 2;
  columns: 2;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.feature-area.style-one .feature-content .feature-list li {
  background-color: #DFE8E6;
  border-radius: 5px;
  padding: 14px 20px;
  margin-bottom: 20px;
}
.feature-area.style-one .feature-content .feature-list li img {
  margin-right: 11px;
  position: relative;
  top: -1px;
}
.feature-area.style-one .feature-content .feature-list.style-two li {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.feature-area.style-one .feature-content .feature-list.style-two li img {
  filter: brightness(0) invert(1);
}
.feature-area.style-two .feature-img-wrap {
  padding: 20px 0 20px 20px;
}
.feature-area.style-two .feature-img-wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 70%;
  height: 100%;
  border-radius: 42px;
  background-color: rgba(36, 88, 76, 0.26);
  z-index: -1;
}
.feature-area.style-two .feature-img-wrap img {
  border-radius: 100px;
}
.feature-area.style-two .feature-content .tours-features-wrap {
  margin-bottom: -60px;
}
.feature-area.style-two .feature-content .tours-features-wrap .tours-feature-item {
  width: 50%;
  margin-bottom: 60px;
}
.feature-area.style-two .feature-content .tours-features-wrap .tours-feature-item:nth-child(even) {
  padding-left: 20px;
}
.feature-area.style-two .feature-content .tours-features-wrap .tours-feature-item .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background-color: #E7EEED;
}
.feature-area.style-two .feature-content .tours-features-wrap .tours-feature-item h3 {
  width: calc(100% - 101px);
  margin-left: auto;
  line-height: 34px;
}
.feature-area.style-three .feature-bg {
  background-image: url(../images/features/feature-img-1.jpg);
  height: 703px;
}
.feature-area.style-three .feature-content {
  padding: 20px 0;
}
.feature-area.style-three .feature-content .feature-item-wrap {
  margin-bottom: -30px;
}
.feature-area.style-three .feature-content .feature-item-wrap .feature-item {
  margin-bottom: 30px;
}
.feature-area.style-three .feature-content .feature-item-wrap .feature-item .feature-icon {
  width: 76px;
  height: 76px;
  background-color: var(--secondaryColor);
}
.feature-area.style-three .feature-content .feature-item-wrap .feature-item .feature-text {
  width: calc(100% - 106px);
  margin-left: auto;
}
.feature-area.style-three .feature-content .feature-item-wrap .feature-item .feature-text h3 {
  margin-bottom: 10px;
}
.feature-area.style-four .feature-content {
  position: relative;
  z-index: 1;
}
.feature-area.style-four .feature-content .section-para {
  margin-bottom: 35px;
}
.feature-area.style-four .feature-content .feature-list {
  -moz-columns: 2;
  columns: 2;
  margin-bottom: -20px;
}
.feature-area.style-four .feature-content .feature-list li {
  background-color: #EDEBE9;
  border-radius: 50px;
  padding: 7px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-size: 20px;
  transition: var(--transition);
}
.feature-area.style-four .feature-content .feature-list li span {
  width: 49px;
  height: 49px;
  display: inline-block;
  margin-right: 16px;
  background-color: var(--whiteColor);
}
.feature-area.style-four .feature-content .feature-list li span img {
  transition: var(--transition);
  display: inline-block;
}
.feature-area.style-four .feature-content .feature-list li span img:nth-child(1) {
  display: block;
}
.feature-area.style-four .feature-content .feature-list li span img:nth-child(2) {
  display: none;
}
.feature-area.style-four .feature-content .feature-list li:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.feature-area.style-four .feature-content .feature-list li:hover span img:nth-child(1) {
  display: none;
}
.feature-area.style-four .feature-content .feature-list li:hover span img:nth-child(2) {
  display: block;
}
.feature-area.style-five:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 28%;
  background-color: #EDF2F1;
  z-index: -1;
}
.feature-area.style-five .section-shape, .feature-area.style-seven .section-shape {
  bottom: 30px;
}
.feature-area.style-five .feature-content .section-title, .feature-area.style-seven .feature-content .section-title {
  margin-bottom: 50px;
}
.feature-area.style-five .feature-content .counter-card-wrap, .feature-area.style-seven .feature-content .counter-card-wrap {
  margin-bottom: 50px;
}
.feature-area.style-five .feature-content .counter-card-wrap .counter-card, .feature-area.style-seven .feature-content .counter-card-wrap .counter-card {
  margin: 0 -7px;
  width: 195px;
  height: 195px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.feature-area.style-five .feature-content .counter-card-wrap .counter-card:after, .feature-area.style-seven .feature-content .counter-card-wrap .counter-card:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid rgba(36, 88, 56, 0.34);
  border-radius: 50%;
}
.feature-area.style-five .feature-content .counter-card-wrap .counter-card h4, .feature-area.style-seven .feature-content .counter-card-wrap .counter-card h4 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 18px;
}
.feature-area.style-five .feature-content .counter-card-wrap .counter-card p, .feature-area.style-seven .feature-content .counter-card-wrap .counter-card p {
  font-size: 24px;
  line-height: 28px;
}
.feature-area.style-six .feature-content .tours-features-wrap {
  margin-bottom: -60px;
}
.feature-area.style-six .feature-content .tours-features-wrap .tours-feature-item {
  width: 50%;
  margin-bottom: 60px;
}
.feature-area.style-six .feature-content .tours-features-wrap .tours-feature-item:nth-child(even) {
  padding-left: 20px;
}
.feature-area.style-six .feature-content .tours-features-wrap .tours-feature-item .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background-color: #E7EEED;
}
.feature-area.style-six .feature-content .tours-features-wrap .tours-feature-item h3 {
  width: calc(100% - 101px);
  margin-left: auto;
  line-height: 34px;
}
.feature-area.style-six .feature-img-wrapper .exp-box {
  position: absolute;
  bottom: 14%;
  left: -20px;
  width: 273px;
  height: 215px;
  border-radius: 31px;
  border: 10px solid var(--whiteColor);
}
.feature-area.style-six .feature-img-wrapper .exp-box h3 {
  font-size: 96px;
}
.feature-area.style-six .feature-img-wrapper .exp-box p {
  font-size: 20px;
  margin-bottom: 0;
}

.video-area.style-one {
  padding: 165px 0 305px;
}
.video-area.style-one .tourists-shape {
  left: 40px;
}
.video-area.style-one .line-shape {
  top: 130px;
}
.video-area.style-one .section-shape-one {
  top: 8%;
  right: 7%;
}
.video-area.style-one .section-shape-two {
  top: 40%;
  right: 13%;
}
.video-area.style-one .play-video {
  width: 103px;
  height: 103px;
  border-radius: 10px;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--whiteColor);
  transition: var(--transition);
}
.video-area.style-one .play-video:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-color: var(--secondaryColor);
  border-radius: 10px;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}
.video-area.style-one .play-video:hover {
  border-color: transparent;
}
.video-area.style-one .play-video:hover:after {
  width: 100%;
  height: 100%;
}
.video-area.style-one .play-video img {
  position: relative;
  left: 2px;
}
.video-area.style-one .section-title {
  padding: 0 21px;
}

.booking-feature-area {
  background-color: #F9F6F1;
}

.simple-area.style-one {
  background-color: #F5F1EA;
  overflow: hidden;
  padding: 145px 50px;
}
.simple-area.style-one .section-shape-one {
  left: 6%;
}
.simple-area.style-one .section-shape-two {
  top: 30px;
  left: 15%;
}
.simple-area.style-one .simple-content .feature-list {
  margin-bottom: 30px;
}
.simple-area.style-one .simple-content .feature-list li {
  padding-left: 25px;
  margin-bottom: 10px;
}
.simple-area.style-one .simple-content .feature-list li:last-child {
  margin-bottom: 0;
}
.simple-area.style-one .simple-content .feature-list li img {
  position: absolute;
  top: 6px;
  left: 0;
}
.simple-area.style-one .simple-img-wrap {
  right: 50px;
}

/*-------------------------------
        City Section CSS
-------------------------------*/
.city-card.style-one .city-img:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0%;
  height: 100%;
  background-image: url(../images/cities/gradient-bg.png);
  background-position: top center;
  background-size: cover;
  background-color: var(--whiteColor);
  background-repeat: no-repeat;
  transition: var(--transition);
  z-index: 0;
  visibility: hidden;
  opacity: 0;
}
.city-card.style-one .city-img .tour-amt {
  top: 20px;
  font-size: 20px;
  line-height: 1;
  color: var(--primaryColor);
  padding: 3.5px 12px;
  border-radius: 0 50px 50px 0;
  background-color: #EEFCF7;
}
.city-card.style-one .city-img .city-hover-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  padding: 14px 20px 15px;
}
.city-card.style-one .city-img .city-hover-info .client-img {
  margin: 15px 0 20px;
}
.city-card.style-one .city-img .city-hover-info p, .city-card.style-one .city-img .city-hover-info .client-img, .city-card.style-one .city-img .city-hover-info h4, .city-card.style-one .city-img .city-hover-info .btn {
  transform: translateY(10px);
  opacity: 0;
}
.city-card.style-one .city-img .city-hover-info p {
  transition-delay: 0.2s;
}
.city-card.style-one .city-img .city-hover-info .client-img {
  transition-delay: 0.4s;
}
.city-card.style-one .city-img .city-hover-info h4 {
  transition-delay: 0.6s;
}
.city-card.style-one .city-img .city-hover-info a {
  transition-delay: 0.8s;
}
.city-card.style-one h3 {
  margin-top: 21px;
}
.city-card.style-one:hover .city-img:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.city-card.style-one:hover .city-img .city-hover-info {
  visibility: visible;
  opacity: 1;
  transition: var(--transition);
}
.city-card.style-one:hover .city-img .city-hover-info p,
.city-card.style-one:hover .city-img .city-hover-info .client-img,
.city-card.style-one:hover .city-img .city-hover-info h4,
.city-card.style-one:hover .city-img .city-hover-info a {
  transform: translateY(0);
  opacity: 1;
}
.city-card.style-two .city-img:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #D0F3B5;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.city-card.style-two .city-img .tour-amt {
  top: 20px;
  font-size: 20px;
  line-height: 1;
  color: var(--optionalColor);
  padding: 3.5px 12px;
  border-radius: 0 50px 50px 0;
  background-color: var(--primaryColor);
}
.city-card.style-two .city-img .city-hover-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  padding: 14px 20px 15px;
}
.city-card.style-two .city-img .city-hover-info .client-img {
  margin: 15px 0 20px;
}
.city-card.style-two .city-img .city-hover-info p, .city-card.style-two .city-img .city-hover-info .client-img, .city-card.style-two .city-img .city-hover-info h4, .city-card.style-two .city-img .city-hover-info .btn {
  transform: translateY(10px);
  opacity: 0;
}
.city-card.style-two .city-img .city-hover-info p {
  transition-delay: 0.2s;
}
.city-card.style-two .city-img .city-hover-info .client-img {
  transition-delay: 0.4s;
}
.city-card.style-two .city-img .city-hover-info h4 {
  transition-delay: 0.6s;
}
.city-card.style-two .city-img .city-hover-info a {
  transition-delay: 0.8s;
}
.city-card.style-two h3 {
  margin-top: 21px;
}
.city-card.style-two:hover .city-img:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.city-card.style-two:hover .city-img .city-hover-info {
  visibility: visible;
  opacity: 1;
  transition: var(--transition);
}
.city-card.style-two:hover .city-img .city-hover-info p,
.city-card.style-two:hover .city-img .city-hover-info .client-img,
.city-card.style-two:hover .city-img .city-hover-info h4,
.city-card.style-two:hover .city-img .city-hover-info a {
  transform: translateY(0);
  opacity: 1;
}

.popular-place-wrap {
  margin: 0 10px;
}
.popular-place-wrap .section-shape {
  right: 20%;
}
.popular-place-wrap .bg-shape {
  left: 55%;
  opacity: 0.8;
  transform: translateX(-50%);
}

/*-------------------------------
        Tour Section CSS
-------------------------------*/
.tour-area #scroll-line {
  position: absolute;
  top: 0;
  left: 28%;
  z-index: -1;
  transform: translateX(-50%);
}
.tour-area.style-two {
  padding-bottom: 400px;
}
.tour-area.style-two .text-shape {
  top: 2%;
}
.tour-area.style-two .tour-card-wrap .section-shape-one {
  bottom: 80px;
  left: 13%;
  max-width: 165px;
}
.tour-area.style-three .text-shape {
  top: 20px;
  width: 306px;
}
.tour-area.style-three #scroll-line-two {
  position: absolute;
  top: -50px;
  left: 36%;
  z-index: -1;
  transform: translateX(-50%);
}

.tour-card h3 {
  line-height: 26px;
}
.tour-card.style-one, .tour-card.style-two {
  padding: 25px 18px 20px;
}
.tour-card.style-one .btn, .tour-card.style-two .btn {
  padding: 11.5px 15px;
}
.tour-card.style-one .tour-img, .tour-card.style-two .tour-img {
  margin: 0px 0 14px;
}
.tour-card.style-one h3, .tour-card.style-two h3 {
  margin-bottom: 7px;
}
.tour-card.style-one .tour-action, .tour-card.style-two .tour-action {
  padding-top: 15px;
}
.tour-card.style-one .tour-action .tour-price span, .tour-card.style-two .tour-action .tour-price span {
  margin-bottom: 6px;
}
.tour-card.style-one .tour-action {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.tour-card.style-two .tour-action {
  border-top: 1px solid #FFFDFD;
}
.tour-card.style-four, .tour-card.style-five {
  border-radius: 10px;
  transition: var(--transition);
}
.tour-card.style-four h3, .tour-card.style-five h3 {
  font-size: 20px;
  line-height: 30px;
}
.tour-card.style-four .tour-img, .tour-card.style-five .tour-img {
  border-radius: 10px 10px 0 0;
}
.tour-card.style-four .tour-img > img, .tour-card.style-five .tour-img > img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.tour-card.style-four .tour-img .tour-metainfo, .tour-card.style-five .tour-img .tour-metainfo {
  width: calc(100% - 54px);
  margin: -28px auto 0;
  border-radius: 5px;
  padding: 12px 16px 12px;
  position: relative;
  background-color: var(--whiteColor);
  border-bottom: 4px solid #DAE3E1;
}
.tour-card.style-four .tour-img .tour-metainfo li, .tour-card.style-five .tour-img .tour-metainfo li {
  width: 50%;
  padding: 0;
  margin: 0;
  position: relative;
  font-weight: 700;
}
.tour-card.style-four .tour-img .tour-metainfo li, .tour-card.style-five .tour-img .tour-metainfo li i{
  color: var(--primaryColor);
}
.tour-card.style-four .tour-img .tour-metainfo li:after, .tour-card.style-five .tour-img .tour-metainfo li:after {
  position: absolute;
  top: 47%;
  right: 0px;
  content: "";
  width: 1px;
  height: 24px;
  transform: translateY(-50%);
  background-color: #EDE8E8;
}
.tour-card.style-four .tour-img .tour-metainfo li:nth-child(1):after, .tour-card.style-five .tour-img .tour-metainfo li:nth-child(1):after {
  right: 0px;
}
.tour-card.style-four .tour-img .tour-metainfo li:last-child, .tour-card.style-five .tour-img .tour-metainfo li:last-child {
  padding-left: 18px;
}
.tour-card.style-four .tour-img .tour-metainfo li:last-child::after, .tour-card.style-five .tour-img .tour-metainfo li:last-child::after {
  display: none;
}
.tour-card.style-four .tour-info, .tour-card.style-five .tour-info {
  padding: 15px;
}
.tour-card.style-four .tour-info h3, .tour-card.style-five .tour-info h3 {
  margin-bottom: 17px;
}
.tour-card.style-four .tour-info .ratings span, .tour-card.style-five .tour-info .ratings span {
  position: relative;
  top: 1px;
  margin-right: 8px;
}
.tour-card.style-four .tour-info .ratings .rating li img, .tour-card.style-five .tour-info .ratings .rating li img {
  max-width: 16px;
}
.tour-card.style-four:hover, .tour-card.style-five:hover {
  background-color: var(--sandColor);
}
.tour-card.style-four {
  background-color: #F2F6F6;
}
.tour-card.style-four:hover {
  background-color: var(--sandColor);
}
.tour-card.style-five {
  background-color: #EDEBE9;
  margin-bottom: 18px;
}
.tour-card.style-five:hover {
  background-color: #F2F6F6;
}

.tour-booking-list {
  border-bottom: none;
  padding-top: 25px;
  margin-bottom: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.tour-booking-list .nav-item {
  margin-right: 10px;
  border: none;
}
.tour-booking-list .nav-item:last-child {
  margin-right: 0;
}
.tour-booking-list .nav-item .nav-link {
  display: inline-block;
  line-height: 15px;
  font-weight: 600;
  padding: 14px 21px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  background-color: var(--whiteColor);
  color: var(--blackColor);
  transition: var(--transition);
}
.tour-booking-list .nav-item .nav-link.active, .tour-booking-list .nav-item .nav-link:hover {
  background-color: var(--primaryColor);
  color: var(--optionalColor);
}

.tour-metainfo li {
  line-height: 16px;
  padding: 8px 12px 6px;
  margin-bottom: 5px;
  margin-right: 8px;
}
.tour-metainfo li:last-child {
  margin-right: 0;
}
.tour-metainfo li span {
  margin-right: 9px;
  padding-right: 14px;
  position: relative;
}
.tour-metainfo li span:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "/";
  font-size: 16px;
  color: var(--primaryColor);
  transform: translateY(-50%);
}
.tour-metainfo li span:last-child {
  padding-right: 0;
  margin-right: 0;
}
.tour-metainfo li span:last-child:after {
  display: none;
}
.tour-metainfo li img {
  position: relative;
  top: -2px;
  margin-right: 5px;
}
.tour-metainfo.style-one li {
  border-radius: 50px;
  background-color: #E9EEED;
  color: var(--primaryColor);
}
.tour-metainfo.style-two li {
  border-radius: 50px;
  background-color: var(--whiteColor);
  color: var(--primaryColor);
}
.tour-metainfo.style-three li {
  border-radius: 50px;
  background-color: #EDF2F1;
  color: var(--primaryColor);
}

/*-------------------------------
    Destination Card CSS
-------------------------------*/
.destination-card.style-three .destination-info {
  padding: 8px 20px;
  bottom: 20px;
  left: 20px;
  min-width: 178px;
}
.destination-card.style-three .destination-info h6 {
  line-height: 24px;
}

/*-------------------------------
        Popular Place CSS
-------------------------------*/
.place-wrap.style-one {
  background-color: #DFE8E6;
}

.tour-slider-two .slider-btn .prev-btn,
.tour-slider-two .slider-btn .next-btn,
.city-slider-one .slider-btn .prev-btn,
.city-slider-one .slider-btn .next-btn,
.place-slider-one .slider-btn .prev-btn,
.place-slider-one .slider-btn .next-btn {
  position: absolute;
  top: 50%;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  transform: translateY(-50%);
  z-index: 2;
}
.tour-slider-two .slider-btn .prev-btn,
.city-slider-one .slider-btn .prev-btn,
.place-slider-one .slider-btn .prev-btn {
  left: 10px;
}
.tour-slider-two .slider-btn .next-btn,
.city-slider-one .slider-btn .next-btn,
.place-slider-one .slider-btn .next-btn {
  right: 10px;
}
.tour-slider-two:hover .slider-btn .prev-btn,
.tour-slider-two:hover .slider-btn .next-btn,
.city-slider-one:hover .slider-btn .prev-btn,
.city-slider-one:hover .slider-btn .next-btn,
.place-slider-one:hover .slider-btn .prev-btn,
.place-slider-one:hover .slider-btn .next-btn {
  visibility: visible;
  opacity: 1;
}

.tour-slider-two .slider-btn .prev-btn,
.tour-slider-two .slider-btn .next-btn {
  top: 37%;
}

.popular-place-card h3 {
  font-size: 22px;
  line-height: 32px;
}
.popular-place-card.style-one .place-header-info {
  padding: 22px 20px;
}
.popular-place-card.style-one .place-header-info .promo-offer {
  padding: 7px 19px 5px;
  line-height: 1;
  font-family: var(--josefinFont);
  border-radius: 50px;
}
.popular-place-card.style-one .place-header-info .add-to-wishlist {
  width: 34px;
  height: 34px;
  background-color: rgba(226, 107, 79, 0.12);
  transition: var(--transition);
}
.popular-place-card.style-one .place-header-info .add-to-wishlist i {
  transition: var(--transition);
  color: var(--secondaryColor);
  font-size: 20px;
  line-height: 1;
}
.popular-place-card.style-one .place-header-info .add-to-wishlist:hover {
  background-color: var(--secondaryColor);
}
.popular-place-card.style-one .place-header-info .add-to-wishlist:hover i {
  color: var(--whiteColor);
}
.popular-place-card.style-one .place-info {
  padding: 18px 21px 15px;
}
.popular-place-card.style-one .place-info .place-metainfo li {
  margin-right: 17px;
  font-family: var(--josefinFont);
  font-weight: 500;
  position: relative;
  padding-left: 22px;
  line-height: 1;
}
.popular-place-card.style-one .place-info .place-metainfo li i, .popular-place-card.style-one .place-info .place-metainfo li img {
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  transform: translateY(-50%);
}
.popular-place-card.style-one .place-info .place-metainfo li:last-child {
  margin-right: 0;
}
.popular-place-card.style-one .place-info .rating li i {
  font-size: 15px;
}
.popular-place-card.style-one .place-info .rating li img {
  max-width: 16px;
}
.popular-place-card.style-one .place-info h3 {
  margin: 14px 0 12px;
}
.popular-place-card.style-one .place-info .location {
  padding-left: 22px;
  position: relative;
}
.popular-place-card.style-one .place-info .location i, .popular-place-card.style-one .place-info .location img {
  position: absolute;
  top: 4px;
  left: 0;
}
.popular-place-card.style-one .place-action {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 21px 11px;
}
.popular-place-card.style-one .place-action .btn {
  padding: 10px 17px 10px 18px;
}

/*-------------------------------
        Counter & Map CSS
-------------------------------*/
.map-area.style-one {
  border-radius: 33px;
  padding-left: 25px;
  padding-right: 25px;
}
.map-area.style-one .map-shape-one {
  left: 50px;
}
.map-area.style-two {
  border-radius: 33px;
  background-color: #E1E8E6;
  margin: 0 10px;
}
.map-area.style-two .map-shape-one {
  left: 20px;
}
.map-area.style-one .tour-map-area .map-destination-item.style-one, .map-area.style-two .tour-map-area .map-destination-item.style-one {
  top: 19%;
  left: 18%;
}
.map-area.style-one .tour-map-area .map-destination-item.style-two, .map-area.style-two .tour-map-area .map-destination-item.style-two {
  bottom: 33%;
  left: 29%;
}
.map-area.style-one .tour-map-area .map-destination-item.style-three, .map-area.style-two .tour-map-area .map-destination-item.style-three {
  bottom: 17%;
  left: 56.5%;
}
.map-area.style-one .tour-map-area .map-destination-item.style-four, .map-area.style-two .tour-map-area .map-destination-item.style-four {
  top: 22%;
  right: 11%;
}
.map-area.style-one .tour-map-area .map-destination-item.style-four .map-destination-arrow, .map-area.style-two .tour-map-area .map-destination-item.style-four .map-destination-arrow {
  margin-left: -20px;
}
.map-area.style-one .tour-map-area .map-destination-item.style-five, .map-area.style-two .tour-map-area .map-destination-item.style-five {
  bottom: 33%;
  right: 3%;
}
.map-area.style-one .tour-map-area .map-destination-item:hover, .map-area.style-two .tour-map-area .map-destination-item:hover {
  transform: translateY(-5px);
}
.map-area.style-one .tour-map-area .map-destination-card, .map-area.style-two .tour-map-area .map-destination-card {
  padding: 3px;
  width: 192px;
}
.map-area.style-one .tour-map-area .map-destination-card .destination-img, .map-area.style-two .tour-map-area .map-destination-card .destination-img {
  width: 51px;
  border-radius: 10px;
}
.map-area.style-one .tour-map-area .map-destination-card .destination-img img, .map-area.style-two .tour-map-area .map-destination-card .destination-img img {
  border-radius: 10px;
}
.map-area.style-one .tour-map-area .map-destination-card .destination-info, .map-area.style-two .tour-map-area .map-destination-card .destination-info {
  width: calc(100% - 61px);
  margin-left: auto;
}
.map-area.style-one .tour-map-area .map-destination-card .destination-info h6, .map-area.style-two .tour-map-area .map-destination-card .destination-info h6 {
  font-size: 15px;
  line-height: 1;
}
.map-area.style-one .tour-map-area .map-destination-card .destination-info span, .map-area.style-two .tour-map-area .map-destination-card .destination-info span {
  font-size: 12px;
}

.counter-card-wrap.style-one .counter-card, .counter-card-wrap.style-two .counter-card {
  width: 25%;
  padding-left: 25px;
}
.counter-card-wrap.style-one .counter-card:after, .counter-card-wrap.style-two .counter-card:after {
  position: absolute;
  top: 0;
  right: 15px;
  content: "";
  width: 2px;
  height: 85%;
}
.counter-card-wrap.style-one .counter-card:first-child, .counter-card-wrap.style-two .counter-card:first-child {
  padding-left: 0;
}
.counter-card-wrap.style-one .counter-card:last-child:after, .counter-card-wrap.style-two .counter-card:last-child:after {
  display: none;
}
.counter-card-wrap.style-one .counter-card h4, .counter-card-wrap.style-two .counter-card h4 {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 18px;
  -webkit-text-fill-color: transparent;
}
.counter-card-wrap.style-one .counter-card p, .counter-card-wrap.style-two .counter-card p {
  font-size: 18px;
  line-height: 28px;
  max-width: 75%;
}
.counter-card-wrap.style-one .counter-card:after {
  border-right: 1px dashed rgba(255, 255, 255, 0.24);
}
.counter-card-wrap.style-one .counter-card h4 {
  -webkit-text-stroke: 1px var(--whiteColor);
}
.counter-card-wrap.style-one .counter-card p {
  color: #CFE9BC;
}
.counter-card-wrap.style-two .counter-card:after {
  border-right: 1px dashed rgba(85, 85, 85, 0.22);
}
.counter-card-wrap.style-two .counter-card h4 {
  -webkit-text-stroke: 1px #090A09;
}

/*-------------------------------
        Pricing Plan CSS
-------------------------------*/
.pricing-card.style-one {
  text-align: center;
  padding: 45px 30px 50px;
  background-color: #E9EEED;
  border-radius: 36px;
}
.pricing-card.style-one h5 {
  line-height: 34px;
  color: var(--blackColor);
}
.pricing-card.style-one .price-tag {
  font-size: 64px;
  line-height: 1;
  margin: 40px 0 39px;
}
.pricing-card.style-one .price-tag span {
  font-size: 36px;
  position: relative;
  top: -20px;
}
.pricing-card.style-one h6 {
  padding: 0 0 25px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}
.pricing-card.style-one .feature-list {
  width: auto;
  margin: 32px auto 27px;
}
.pricing-card.style-one .feature-list li {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 19px;
  color: #000;
  transition: var(--transition);
}
.pricing-card.style-one .feature-list li:last-child {
  margin-bottom: 0;
}
.pricing-card.style-one .feature-list li span {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
.pricing-card.style-one .btn {
  margin: 30px auto 0;
}
.pricing-card.style-one:hover {
  background-color: var(--primaryColor);
  transform: translateY(-5px);
}
.pricing-card.style-one:hover .price-tag {
  color: var(--optionalColor);
}
.pricing-card.style-one:hover .feature-list li {
  color: var(--whiteColor);
}
.pricing-card.style-one:hover h5, .pricing-card.style-one:hover .pricing-tag, .pricing-card.style-one:hover h6 {
  color: var(--whiteColor);
}
.pricing-card.style-one:hover h6 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}
.pricing-card.style-one:hover .btn.style-two {
  color: var(--primaryColor);
}
.pricing-card.style-one:hover .btn.style-two:after {
  height: 100%;
  visibility: visible;
  opacity: 1;
}

/*-------------------------------
        Promo Section CSS
-------------------------------*/
.promo-area {
  padding: 215px 0 280px;
}
.promo-area .flying-birds {
  position: absolute;
  top: 0;
  left: 57%;
  transform: translateX(-50%);
}
.promo-area .promo-img-one {
  left: 40px;
}

/*-------------------------------
    Newsletter & Video CSS
-------------------------------*/
.newsletter-box.style-one, .newsletter-box.style-two {
  padding: 83.5px 50px;
}
.newsletter-box.style-one h2, .newsletter-box.style-two h2 {
  font-size: 32px;
  line-height: 42px;
}
.newsletter-box.style-one .newsletter-bg-shape, .newsletter-box.style-two .newsletter-bg-shape {
  opacity: 0.6;
}
.newsletter-box.style-one {
  background-image: url(../images/newsletter-bg-2.jpg);
  margin-top: -170px;
}
.newsletter-box .newsletter-form input {
  width: calc(100% - 192px);
  margin-right: auto;
  height: 60px;
  padding: 12px 20px 12px 20px;
}
.newsletter-box .newsletter-form input::-moz-placeholder {
  color: var(--paraColor);
  opacity: 1;
}
.newsletter-box .newsletter-form input::placeholder {
  color: var(--paraColor);
  opacity: 1;
}
.newsletter-box .newsletter-form button {
  width: 172px;
  padding: 23px 15px;
}
.newsletter-box .newsletter-form button:after {
  border-radius: 5px;
}

/*-------------------------------
        Testimonial Card CSS
-------------------------------*/
.testimonial-area.style-two {
  background-color: #E8F1EF;
  margin: 0 10px;
}
.testimonial-area.style-two .section-shape {
  top: 15%;
  left: 18%;
}

.testimonial-card.style-one .client-img:after {
  position: absolute;
  top: 50%;
  right: -7px;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #F3F2F2;
  transform: translateY(-50%);
}
.testimonial-card.style-one .client-quote {
  padding: 32px 0 0;
}
.testimonial-card.style-one .client-quote p {
  font-size: 20px;
  line-height: 32px;
}
.testimonial-card.style-one .client-quote .quote-icon {
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
}
.testimonial-card.style-two {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  background-color: var(--whiteColor);
  padding: 35px 20px 45px;
  box-shadow: 0 0 50px rgba(36, 88, 76, 0.14);
  transition: var(--transition);
}
.testimonial-card.style-two:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: calc(100% + 11px);
  height: calc(100% - 15px);
  background-color: transparent;
  border-bottom: 10px solid rgba(36, 88, 76, 0.14);
  border-right: 10px solid rgba(36, 88, 76, 0.14);
  z-index: -1;
  border-radius: 0 15px 24px 24px;
  transition: var(--transition);
}
.testimonial-card.style-two h6 {
  font-size: 20px;
  line-height: 36px;
  margin-bottom: 4px;
}
.testimonial-card.style-two p {
  margin-bottom: 20px;
}
.testimonial-card.style-two:hover:after {
  border-bottom: 10px solid var(--optionalColor);
  border-right: 10px solid var(--optionalColor);
}
.testimonial-card.style-three .quote-icon {
  top: 10%;
  right: 15%;
}
.testimonial-card.style-three .client-info {
  margin: 30px 0 20px;
}
.testimonial-card.style-three .rating {
  margin: 20px 0 0;
}
.testimonial-card.style-three p {
  font-size: 32px;
  line-height: 42px;
  margin: 32px 0 0;
}

.testimonial-slider-one .slider-btn {
  margin-top: -45px;
}

.testimonial-slider-two {
  margin: -30px -10px -30px;
}
.testimonial-slider-two .testimonial-card.style-two {
  margin: 30px 10px 30px;
}

.testimonial-slider-three .slider-btn .prev-btn,
.testimonial-slider-three .slider-btn .next-btn {
  position: absolute;
  top: 42%;
  transition: var(--transition);
  transform: translateY(-50%);
  z-index: 2;
}
.testimonial-slider-three .slider-btn .prev-btn {
  left: 0px;
}
.testimonial-slider-three .slider-btn .next-btn {
  right: 0px;
}

/*-------------------------------
        Gallery Card CSS
-------------------------------*/
.gallery-card:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.49);
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  transition: var(--transition);
}
.gallery-card .zoom-icon {
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition-delay: 0.2s;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
}
.gallery-card:hover .zoom-icon {
  top: 50%;
  visibility: visible;
  opacity: 1;
}
.gallery-card:hover:after {
  visibility: visible;
  opacity: 1;
}

/*-------------------------------
        Bookng CSS
-------------------------------*/
.booking-box {
  background-color: #F9F6F1;
  border-radius: 50px;
  padding-left: 85px;
  padding-right: 85px;
}
.booking-box .feature-img {
  right: 40px;
}
.booking-box .booking-form .form-group input, .booking-box .booking-form .form-group select {
  height: 60px;
  padding: 10px 20px 10px 70px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 0 40px #E5E2DD;
}
.booking-box .booking-form .form-group input::-moz-placeholder {
  opacity: 1;
  color: var(--paraColor);
}
.booking-box .booking-form .form-group input::placeholder {
  opacity: 1;
  color: var(--paraColor);
}
.booking-box .booking-form .form-group img {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  border-right: 1px solid rgba(85, 85, 85, 0.24);
  padding-right: 15px;
}

/*-------------------------------
        Blog Card CSS
-------------------------------*/
.blog-card h3 {
  font-size: 22px;
  line-height: 32px;
}
.blog-card.style-one, .blog-card.style-three {
  padding: 12px;
}
.blog-card.style-one .blog-img-wrap .blog-date, .blog-card.style-three .blog-img-wrap .blog-date {
  width: 54px;
  writing-mode: vertical-lr; /* or vertical-lr */
  text-orientation: mixed;
  font-size: 24px;
  transform: translateX(-19px) rotate(180deg);
}
.blog-card.style-one .blog-img-wrap .blog-date:hover, .blog-card.style-three .blog-img-wrap .blog-date:hover {
  color: var(--primaryColor);
}
.blog-card.style-one .blog-img-wrap .blog-img, .blog-card.style-three .blog-img-wrap .blog-img {
  width: calc(100% - 54px);
}
.blog-card.style-one .blog-info, .blog-card.style-three .blog-info {
  padding: 25px 18px 20px;
}
.blog-card.style-one .blog-info .blog-metainfo, .blog-card.style-three .blog-info .blog-metainfo {
  margin-bottom: 13px;
}
.blog-card.style-one .blog-info h3, .blog-card.style-three .blog-info h3 {
  margin-bottom: 15px;
}
.blog-card.style-two .blog-img-wrap .blog-date {
  width: 46px;
  writing-mode: vertical-lr; /* or vertical-lr */
  text-orientation: mixed;
  font-size: 24px;
  transform: translateX(-19px) rotate(180deg);
}
.blog-card.style-two .blog-img-wrap .blog-date:hover {
  color: var(--primaryColor);
}
.blog-card.style-two .blog-img-wrap .blog-img {
  width: calc(100% - 46px);
}
.blog-card.style-two .blog-info {
  padding: 29px 0 0;
}
.blog-card.style-two .blog-info .blog-metainfo {
  margin-bottom: 13px;
}
.blog-card.style-two .blog-info h3 {
  margin-bottom: 15px;
}
.blog-card.style-three {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.blog-card.style-three:hover {
  border-color: transparent;
  background-color: var(--sandColor);
}

.blog-metainfo li {
  padding-right: 18px;
  margin-right: 12px;
  border-right: 1px solid var(--paraColor);
  line-height: 15px;
}
.blog-metainfo li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.blog-metainfo li a {
  color: var(--paraColor);
}
.blog-metainfo li a:hover {
  color: var(--secondaryColor);
}

.blog-slider-two .swiper-wrapper .swiper-slide.slide-25 {
  width: 30%;
}
.blog-slider-two .swiper-wrapper .swiper-slide.slide-50 {
  width: 38%;
}

/*-------------------------------
    Sidebar CSS
-------------------------------*/
.sidebar .sidebar-widget {
  margin-bottom: 30px;
  background-color: #F4F4F3;
}
.sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}
.sidebar .sidebar-widget .sidebar-widget-title {
  padding-bottom: 14px;
  border-bottom: 1px solid #E8E8E8;
}
.sidebar .sidebar-widget.style-one {
  padding: 30px 25px;
}
.sidebar .sidebar-widget.style-two {
  padding: 34px 35px;
}

.search-form input {
  height: 46px;
  padding: 12px 55px 12px 15px;
}
.search-form input::-moz-placeholder {
  color: var(--paraColor);
  opacity: 1;
}
.search-form input::placeholder {
  color: var(--paraColor);
  opacity: 1;
}
.search-form button {
  width: 42px;
  right: 4px;
  top: 4px;
  border-radius: 5px;
  height: calc(100% - 8px);
  background-color: var(--primaryColor);
}
.search-form button:hover {
  background-color: var(--secondaryColor);
}

.category-list li {
  margin-bottom: 10px;
}
.category-list li:last-child {
  margin-bottom: 0;
}
.category-list li a {
  color: var(--paraColor);
  font-weight: 700;
}
.category-list li a:hover, .category-list li a.active {
  color: var(--primaryColor);
  padding-left: 8px;
}

.rp-post-wrap .rp-post-card {
  margin-bottom: 35px;
}
.rp-post-wrap .rp-post-card:last-child {
  margin-bottom: 0;
}
.rp-post-wrap .rp-post-card .rp-post-img {
  width: 85px;
}
.rp-post-wrap .rp-post-card .rp-post-info {
  width: calc(100% - 100px);
  margin-left: auto;
}
.rp-post-wrap .rp-post-card .rp-post-info h6 {
  margin-top: 8px;
  line-height: 24px;
}
.rp-post-wrap.style-two .rp-post-img {
  height: 75px;
  padding: 15px;
}
.rp-post-wrap.style-two .rp-post-img img {
  max-width: 45px;
}

.tags-widget {
  margin-top: -15px;
}
.tags-widget li {
  display: inline-block;
  margin: 15px 6px 0px 0px;
}
.tags-widget li a {
  font-weight: 700;
  line-height: 16px;
  padding: 5px 10px 5px;
  color: var(--paraColor);
  background-color: var(--whiteColor);
  border-radius: 50px;
  transition: var(transition);
}
.tags-widget li a:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.tour-booking-widget .form-group select {
  border: 1px solid rgba(36, 88, 76, 0.16);
  border-radius: 50px;
  padding: 10px 15px;
  height: 48px;
}

.custom-select-field {
  background-image: url(../images/icons/down-arrow-ash.svg);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}
.custom-select-field:focus {
  outline: none;
}
.custom-select-field option {
  font-weight: 600;
}
.custom-select-field.filter-product {
  padding: 8px 15px;
}

.tour-offer-widget {
  background-image: url(../images/destinations/gradient-bg.png);
  padding: 84px 20px 90px;
}
.tour-offer-widget .client-img {
  margin: 15px 0 20px;
}

.destination-info-widget ul li {
  padding-left: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 27px;
  margin-bottom: 25px;
}
.destination-info-widget ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.destination-info-widget ul li:before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #BCBBBB;
}
.destination-info-widget ul li:after {
  position: absolute;
  top: 8px;
  left: 5px;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--secondaryColor);
}

.contact-box-widget.style-one {
  background-image: url(../images/contact-bg.jpg);
  height: 674px;
  border-radius: 5px;
}
.contact-box-widget.style-one .contact-box-info {
  border-radius: 5px;
  padding: 35px 15px 45px;
}
.contact-box-widget.style-one .contact-box-info img {
  top: -33px;
}
.contact-box-widget.style-one .contact-box-info a {
  font-size: 30px;
}

.range-slider-container .range-slider {
  height: 5px;
  background: rgba(0, 0, 0, 0.09);
  position: relative;
}
.range-slider-container .range-slider .range-progress {
  height: 5px;
  background: var(--primaryColor);
  border-radius: 0;
  position: absolute;
  left: 0;
  right: 0%;
}
.range-slider-container .range-input {
  position: relative;
}
.range-slider-container .range-input input {
  position: absolute;
  top: -6px;
  height: 5px;
  width: 100%;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.range-slider-container .range-input input[type=range]::-webkit-slider-thumb {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.09);
  border: 6px solid var(--primaryColor);
  pointer-events: auto;
  -webkit-appearance: none;
}
.range-slider-container .range-input input[type=range]::-moz-range-thumb {
  height: 5px;
  width: 5px;
  border: none;
  background: rgba(0, 0, 0, 0.09);
  border: 3px solid var(--primaryColor);
  border-radius: 50%;
  pointer-events: auto;
}
.range-slider-container .price-display {
  margin: 0 20px;
}
.range-slider-container .price-display span {
  width: 46%;
  display: block;
  background-color: var(--whiteColor);
  padding: 8px 10px;
  text-align: center;
  font-weight: 600;
  border-radius: 6px;
}

.radio-list .form-group {
  margin-bottom: 10px;
}
.radio-list .form-group:last-child {
  margin-bottom: 0;
}
.radio-list.style-two {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.radio-list.style-two li {
  width: 33.33%;
}
.radio-list.style-two .form-group {
  margin-bottom: 0;
}

/*---------------------------------
       FAQ & Account CSS 
-----------------------------------*/
.accordion .accordion-item {
  margin: 0 0 20px;
  border: none;
  padding: 0;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.accordion .accordion-item:last-child {
  margin: 0;
}
.accordion .accordion-item .accordion-header {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  border-radius: 0;
}
.accordion .accordion-item .accordion-header .accordion-button {
  display: flex;
  align-items: flex-start !important;
  margin: 0;
  font-size: 20px;
  font-family: var(--secondaryFont);
  font-weight: 700;
  line-height: 30px;
  color: var(--blackColor);
  text-align: left;
  align-items: center;
  padding: 15px 60px 15px 22px;
  border-radius: 5px;
  background-color: var(--sandColor);
  box-shadow: none;
  transition: var(--transition);
}
.accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.accordion .accordion-item .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.accordion .accordion-item .accordion-header .accordion-button .accord-arrow {
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: 15px;
  right: 29px;
  text-align: center;
}
.accordion .accordion-item .accordion-header .accordion-button .accord-arrow i {
  position: absolute;
  top: 50%;
  left: 51%;
  font-size: 35px;
  font-weight: 300;
  line-height: 0.9;
  display: block;
  margin: 0 auto;
  color: var(--blackColor);
  transform: translate(-50%, -50%);
}
.accordion .accordion-item .accordion-header .accordion-button .accord-arrow i.minus {
  visibility: hidden;
  opacity: 0;
  top: 50%;
}
.accordion .accordion-item:not(.collapsed) {
  box-shadow: none;
}
.accordion .accordion-item:not(.collapsed) .accordion-header .accordion-button {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.accordion .accordion-item:not(.collapsed) .accordion-header .accordion-button .accord-arrow i {
  color: var(--whiteColor);
}
.accordion .accordion-item .accordion-body {
  padding: 22px 10px 6px;
  border-top: none;
}
.accordion .accordion-item .accordion-body p {
  color: var(--paraColor);
  font-weight: 400;
}
.accordion .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}
.accordion.style-two .accordion-item .accordion-header .accordion-button {
  background-color: #EDF2F1;
}
.accordion.style-two .accordion-item:not(.collapsed) .accordion-header .accordion-button {
  background-color: var(--primaryColor);
}
.accordion.style-two .accordion-item .accordion-body p {
  line-height: 21px;
}

.accordion-item:not(.collapsed) .accordion-button span .plus {
  visibility: hidden;
  opacity: 0;
}
.accordion-item:not(.collapsed) .accordion-button span .minus {
  visibility: visible !important;
  opacity: 1 !important;
}

.account-wrap {
  padding: 75px;
}

.account-box {
  padding: 36px 50px 40px;
}
.account-box .form-group input {
  padding: 11px 20px;
}
.account-box .form-group input::-moz-placeholder {
  color: var(--paraColor);
  opacity: 1;
}
.account-box .form-group input::placeholder {
  color: var(--paraColor);
  opacity: 1;
}
.account-box .form-group input:focus {
  outline: 0;
}
.account-box .or-text {
  margin: 15px 0;
}
.account-box .or-text:after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(0, 13, 68, 0.2);
}
.account-box .or-text span {
  padding: 5px 14px;
  display: inline-block;
  z-index: 2;
  position: relative;
}
.account-box .btn.fb i {
  color: #0866ff;
  margin-right: 6px;
}
.account-box .btn.gg i {
  color: #FF6F61;
  margin-right: 6px;
}

/*-------------------------------
    Contact CSS
-------------------------------*/
.form-wrapper .form-group input, .form-wrapper .form-group textarea {
  padding: 12px 20px;
}
.form-wrapper .form-group input::-moz-placeholder, .form-wrapper .form-group textarea::-moz-placeholder {
  color: var(--paraColor);
  opacity: 1;
}
.form-wrapper .form-group input::placeholder, .form-wrapper .form-group textarea::placeholder {
  color: var(--paraColor);
  opacity: 1;
}
.form-wrapper .form-group input:focus, .form-wrapper .form-group textarea:focus {
  outline: none;
}

.contact-card-wrap .contact-card {
  margin-bottom: 25px;
  background-color: #F0F0F0;
  padding: 30px 30px;
  border-radius: 10px;
}
.contact-card-wrap .contact-card:last-child {
  margin-bottom: 0;
}
.contact-card-wrap .contact-card .contact-icon {
  width: 75px;
  height: 75px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.07);
  transition: var(--transition);
}
.contact-card-wrap .contact-card .contact-icon i {
  color: var(--primaryColor);
  font-size: 50px;
  line-height: 1;
  font-weight: 300;
  transition: var(--transition);
}
.contact-card-wrap .contact-card .contact-info {
  width: calc(100% - 100px);
  margin-left: auto;
  position: relative;
  top: -3px;
}
.contact-card-wrap .contact-card:hover {
  transform: translateY(-5px);
}
.contact-card-wrap .contact-card:hover .contact-icon {
  background-color: var(--primaryColor) !important;
}
.contact-card-wrap .contact-card:hover .contact-icon img {
  filter: brightness(0) invert(1);
}
.contact-card-wrap .contact-card:hover .contact-icon i {
  color: var(--whiteColor);
}

.contact-box {
  background-color: #EBF0F1;
  padding: 20px;
}
.contact-box .form-group input {
  height: 50px;
}
.contact-box .form-group textarea {
  height: 180px;
}

.comp-map.style-two {
  height: 500px;
  margin: 0 12px;
}

.checkbox {
  display: block;
}
.checkbox.form-check {
  padding-left: 0;
}
.checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  padding-left: 26px;
}
.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 6px;
}
.checkbox.style-one label {
  padding-left: 31px;
}
.checkbox.style-one label:before {
  width: 21px;
  height: 21px;
  border: 1px solid #D9D8D8;
  top: 2px;
  border-radius: 5px;
}
.checkbox.style-two label {
  padding-left: 31px;
}
.checkbox.style-two label:before {
  width: 19px;
  height: 19px;
  border: 1px solid #D9D8D8;
  top: 2px;
  border-radius: 3px;
}

.checkbox.style-one input:checked + label:before {
  border-color: transparent;
}

.checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
}

.checkbox.style-one input:checked + label:after {
  top: 2px;
  left: 0px;
  width: 21px;
  height: 21px;
  border-radius: 5px;
  background: var(--primaryColor);
}

.checkbox.style-two input:checked + label:after {
  top: 7px;
  left: 4.5px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #8BE9BC;
}

/*-------------------------------
        Product Card CSS
-------------------------------*/
.product-card .product-img {
  margin-bottom: 22px;
  height: 370px;
  padding: 20px;
}
.product-card .product-img:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(36, 88, 76, 0.16);
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
}
.product-card .product-img button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.product-card .product-info h3 {
  margin-bottom: 12px;
}
.product-card:hover .product-img button {
  visibility: visible;
  opacity: 1;
  bottom: 28px;
}
.product-card:hover .product-img:after {
  visibility: visible;
  opacity: 1;
}

/*-------------------------------
    Product Single CSS
-------------------------------*/
.single-product-img {
  height: 700px;
  padding: 25px;
}

.single-product-details h1 {
  font-size: 32px;
  margin-bottom: 15px;
}
.single-product-details .ratings {
  margin-bottom: 22px;
}
.single-product-details .ratings .rating li img {
  max-width: 17px;
}
.single-product-details .ratings a {
  position: relative;
  top: 3px;
}
.single-product-details .product-price {
  color: #057492;
}
.single-product-details .product-desc {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EBEBEB;
}
.single-product-details .product-add-to-cart .btn {
  padding: 13px 20px;
}
.single-product-details .product-add-to-cart .v-counter {
  width: 78px;
  height: 40px;
  margin-right: 15px;
  background-color: transparent;
  border: 1px solid #E6E6E6;
}
.single-product-details .product-add-to-cart .v-counter input {
  border-left: none;
  border-right: 1px solid rgba(28, 72, 85, 0.06);
  font-size: 15px;
  width: 38px;
}
.single-product-details .product-add-to-cart .v-counter input.count {
  padding-left: 0;
}
.single-product-details .product-add-to-cart .v-counter .minusBtn,
.single-product-details .product-add-to-cart .v-counter .plusBtn {
  position: absolute;
  z-index: 1;
  right: 0;
  width: 40px;
  height: 20px;
  padding: 0 10px;
}
.single-product-details .product-add-to-cart .v-counter .minusBtn {
  bottom: 0px;
  top: auto;
}
.single-product-details .product-add-to-cart .v-counter .minusBtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "\ea4e";
  font-family: remixicon !important;
  font-size: 21px;
  color: var(--paraColor);
  font-weight: 400;
  transform: translate(-50%, -50%);
}
.single-product-details .product-add-to-cart .v-counter .plusBtn {
  top: 0;
  bottom: auto;
  border-bottom: 1px solid #E6E6E6 !important;
}
.single-product-details .product-add-to-cart .v-counter .plusBtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "\ea78";
  font-size: 21px;
  font-family: remixicon !important;
  color: var(--paraColor);
  font-weight: 400;
  transform: translate(-50%, -50%);
}
.single-product-details .product-features li {
  margin-bottom: 8px;
}
.single-product-details .product-features li:last-child {
  margin-bottom: 0;
}
.single-product-details .return-policy li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.single-product-details .return-policy li:last-child {
  margin-bottom: 0;
}
.single-product-details .return-policy li:before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--primaryColor);
}

.product-tablist {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0;
}
.product-tablist .nav-item {
  margin-right: 30px;
}
.product-tablist .nav-item:last-child {
  margin-right: 0;
}
.product-tablist .nav-item .nav-link {
  font-family: var(--secondaryFont);
  font-size: 20px;
  font-weight: 500;
  color: var(--paraColor);
  transition: var(--transition);
  position: relative;
  background-color: transparent;
  padding: 0 2px 14px;
}
.product-tablist .nav-item .nav-link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 3px;
  background-color: var(--primaryColor);
  transition: var(--transition);
  opacity: 0;
}
.product-tablist .nav-item .nav-link:hover, .product-tablist .nav-item .nav-link.active {
  color: var(--titleColor);
}
.product-tablist .nav-item .nav-link:hover:after, .product-tablist .nav-item .nav-link.active:after {
  width: 100%;
  opacity: 1;
}

#product_desc p:last-child {
  margin-bottom: 0;
}

#product_review .add-star-rating {
  text-align: start;
  overflow: hidden;
}
#product_review .add-star-rating label {
  float: left;
  cursor: pointer;
  position: relative;
  margin-right: 3px;
}
#product_review .add-star-rating label:before {
  transition: var(--transition);
  content: "\f18b";
  font-family: remixicon !important;
  font-size: 20px;
  line-height: 1;
  color: #FFBA00;
  transition: var(--transition);
}
#product_review .add-star-rating input {
  display: none;
}
#product_review .add-star-rating input:checked ~ label:before, #product_review .add-star-rating:not(:checked) > label:hover:before, #product_review .add-star-rating:not(:checked) > label:hover ~ label:before {
  content: "\f186";
  color: #FFBA00;
}

/*-------------------------------
    Cart CSS
-------------------------------*/
.cart-wrapper {
  padding: 80px 40px 80px;
}

.cart-table table thead tr th {
  font-size: 18px;
  color: var(--blackColor);
  font-weight: 700;
  font-family: var(--secondaryFont);
  background-color: var(--whiteColor);
  border-bottom: none;
  padding: 13px 25px;
}
.cart-table table tbody tr td {
  padding: 20px 25px;
  background-color: transparent;
  border-bottom: 1px solid rgba(217, 216, 216, 0.37);
}
.cart-table table tbody tr td:first-child {
  padding-left: 0;
}
.cart-table table tbody tr td:last-child {
  padding-right: 0;
}
.cart-table table tbody tr td .cart-action i {
  color: #FF3B12;
}
.cart-table table tbody tr td .v-counter {
  width: 77px;
  height: 29px;
  border-radius: 50px;
  background-color: var(--whiteColor);
}
.cart-table table tbody tr td .v-counter input {
  border: none;
  height: 29px;
  float: left;
  font-size: 14px;
  width: 34px;
}
.cart-table table tbody tr td .v-counter .minusBtn,
.cart-table table tbody tr td .v-counter .plusBtn {
  z-index: 1;
  top: 0px;
  width: 19px;
  height: 29px;
  position: relative;
}
.cart-table table tbody tr td .v-counter .minusBtn {
  padding: 0 0 0 12px;
}
.cart-table table tbody tr td .v-counter .minusBtn:before {
  font-size: 30px;
  left: 15px;
}
.cart-table table tbody tr td .v-counter .plusBtn {
  padding: 0 12px 0 0;
}
.cart-table table tbody tr td .v-counter .plusBtn:before {
  font-size: 24px;
  right: 2px;
  left: auto;
}
.cart-table table tbody tr td .product-img {
  width: 77px;
  height: 74px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cart-table table tbody tr td a {
  font-size: 16px;
  font-weight: 600;
}

.v-counter {
  width: 136px;
  height: 40px;
  position: relative;
  border-radius: 3px;
  background-color: #F1F4F5;
}
.v-counter input {
  border: none;
  border-left: 1px solid rgba(28, 72, 85, 0.06);
  border-right: 1px solid rgba(28, 72, 85, 0.06);
  height: 40px;
  float: left;
  font-size: 15px;
  width: 45px;
  text-align: center;
  background-color: transparent;
}
.v-counter input:focus {
  outline: none;
}
.v-counter input.count {
  padding-left: 8px;
}
.v-counter .minusBtn,
.v-counter .plusBtn {
  z-index: 1;
  top: -2px;
  width: 45px;
  height: 40px;
  padding: 0 20px;
  position: relative;
}
.v-counter .minusBtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "-";
  font-size: 30px;
  color: var(--paraColor);
  font-weight: 500;
  transform: translate(-50%, -50%);
}
.v-counter .plusBtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "+";
  font-size: 30px;
  color: var(--paraColor);
  font-weight: 300;
  transform: translate(-50%, -50%);
}

.coupon-code button {
  position: absolute;
  top: 6px;
  right: 6px;
  background-color: var(--primaryColor);
  height: calc(100% - 12px);
  color: var(--optionalColor);
  transition: var(--transition);
  padding: 5px 25px;
  border-radius: 50px;
  font-weight: 500;
}
.coupon-code button:hover {
  background-color: var(--secondaryColor);
}
.coupon-code input {
  background-color: var(--whiteColor);
  height: 60px;
  border-radius: 50px;
  padding: 13px 200px 13px 18px;
}
.coupon-code input:focus {
  outline: none;
}
.coupon-code input::-moz-placeholder {
  color: var(--paraColor);
  opacity: 1;
}
.coupon-code input::placeholder {
  color: var(--paraColor);
  opacity: 1;
}

.cart-total {
  padding: 45px 46px 45px;
  border: 1px solid rgba(0, 0, 0, 0.11);
}

.cart-total-wrap {
  border: 1px solid rgba(196, 196, 196, 0.36);
}
.cart-total-wrap .cart-total-item {
  border-bottom: 1px solid rgba(196, 196, 196, 0.36);
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: 18px;
  padding-right: 15px;
}
.cart-total-wrap .cart-total-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.cart-total-wrap .cart-total-item span {
  font-weight: 700;
}

/*-------------------------------
       Checkout CSS
-------------------------------*/
.promo-login {
  padding: 16px 25px;
  border-radius: 3px;
}

.checkout-form .form-group input, .checkout-form .form-group select, .checkout-form .form-group textarea {
  padding: 10px 18px;
}
.checkout-form .form-group textarea {
  height: 84px;
  resize: none;
}
.checkout-form .form-group textarea::-moz-placeholder {
  color: var(--blackColor);
  font-weight: 700;
}
.checkout-form .form-group textarea::placeholder {
  color: var(--blackColor);
  font-weight: 700;
}

.checkout-total .checkout-total-header span {
  width: 50%;
  padding: 15px 34px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.checkout-total .checkout-total-header span:first-child {
  width: 55%;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.checkout-total .checkout-total-header span:last-child {
  width: 45%;
}
.checkout-total .checkout-total-wrap .checkout-total-item:first-child span {
  padding-top: 13px;
}
.checkout-total .checkout-total-wrap .checkout-total-item:last-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.checkout-total .checkout-total-wrap .checkout-total-item:last-child span {
  padding-top: 10px;
  padding-bottom: 16px;
}
.checkout-total .checkout-total-wrap .checkout-total-item:last-child span:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.checkout-total .checkout-total-wrap .checkout-total-item span {
  padding-top: 5px;
  padding-bottom: 9px;
}
.checkout-total .checkout-total-wrap .checkout-total-item span:first-child {
  width: 55%;
  padding-left: 34px;
  border-right: 1px solid rgba(165, 111, 73, 0.1);
}
.checkout-total .checkout-total-wrap .checkout-total-item span:last-child {
  width: 45%;
  padding-right: 34px;
  text-align: end;
}

.payment-method {
  background-color: #F3F3F3;
  padding: 30px 35px;
}
.payment-method .select-payment-method .checkbox {
  margin-bottom: 15px;
}
.payment-method .select-payment-method .checkbox:last-child {
  margin-bottom: 0;
}

/*--------------------------------------
    Blog, Tour & Destination Details CSS
---------------------------------------*/
.blog-desc p,
.tour-desc p,
.destination-desc p,
.terms-wrap p {
  margin-bottom: 15px;
}
.blog-desc p strong, .blog-desc p b,
.tour-desc p strong,
.tour-desc p b,
.destination-desc p strong,
.destination-desc p b,
.terms-wrap p strong,
.terms-wrap p b {
  color: var(--titleColor);
}
.blog-desc h1, .blog-desc h2, .blog-desc h3, .blog-desc h4, .blog-desc h5, .blog-desc h6,
.tour-desc h1,
.tour-desc h2,
.tour-desc h3,
.tour-desc h4,
.tour-desc h5,
.tour-desc h6,
.destination-desc h1,
.destination-desc h2,
.destination-desc h3,
.destination-desc h4,
.destination-desc h5,
.destination-desc h6,
.terms-wrap h1,
.terms-wrap h2,
.terms-wrap h3,
.terms-wrap h4,
.terms-wrap h5,
.terms-wrap h6 {
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.blog-desc h1,
.tour-desc h1,
.destination-desc h1,
.terms-wrap h1 {
  font-size: 40px;
}
.blog-desc h2,
.tour-desc h2,
.destination-desc h2,
.terms-wrap h2 {
  font-size: 36px;
}
.blog-desc h3,
.tour-desc h3,
.destination-desc h3,
.terms-wrap h3 {
  font-size: 32px;
}
.blog-desc h4,
.tour-desc h4,
.destination-desc h4,
.terms-wrap h4 {
  font-size: 28px;
}
.blog-desc h5,
.tour-desc h5,
.destination-desc h5,
.terms-wrap h5 {
  font-size: 24px;
}
.blog-desc h6,
.tour-desc h6,
.destination-desc h6,
.terms-wrap h6 {
  font-size: 20px;
}
.blog-desc p,
.tour-desc p,
.destination-desc p,
.terms-wrap p {
  font-weight: 700;
}
.blog-desc p a,
.tour-desc p a,
.destination-desc p a,
.terms-wrap p a {
  font-weight: 700;
  color: var(--secondaryColor);
}

.blog-desc ol,
.tour-desc ol,
.destination-desc ol,
.terms-wrap ol {
  margin-top: 20px;
  margin-bottom: 30px;
}
.blog-desc ol li,
.tour-desc ol li,
.destination-desc ol li,
.terms-wrap ol li {
  margin-bottom: 15px;
  padding-left: 3px;
}
.blog-desc .wp-blockquote,
.tour-desc .wp-blockquote,
.destination-desc .wp-blockquote,
.terms-wrap .wp-blockquote {
  padding: 50px 55px 50px 60px;
  margin-bottom: 50px;
}
.blog-desc .wp-blockquote p,
.tour-desc .wp-blockquote p,
.destination-desc .wp-blockquote p,
.terms-wrap .wp-blockquote p {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 30px;
}
.blog-desc .wp-blockquote .quote-icon,
.tour-desc .wp-blockquote .quote-icon,
.destination-desc .wp-blockquote .quote-icon,
.terms-wrap .wp-blockquote .quote-icon {
  right: 52px;
  bottom: 52px;
}
.blog-desc .wp-blockquote h6,
.tour-desc .wp-blockquote h6,
.destination-desc .wp-blockquote h6,
.terms-wrap .wp-blockquote h6 {
  font-size: 16px;
}
.blog-desc .single-img .single-blog-metainfo,
.tour-desc .single-img .single-blog-metainfo,
.destination-desc .single-img .single-blog-metainfo,
.terms-wrap .single-img .single-blog-metainfo {
  width: 63.5%;
  padding: 22px 20px 20px;
  border-radius: 10px 10px 0 0;
}
.blog-desc .feature-list.style-one li,
.tour-desc .feature-list.style-one li,
.destination-desc .feature-list.style-one li,
.terms-wrap .feature-list.style-one li {
  padding-left: 15px;
  margin-bottom: 8px;
  position: relative;
  color: #222;
  font-weight: 600;
}
.blog-desc .feature-list.style-one li a,
.tour-desc .feature-list.style-one li a,
.destination-desc .feature-list.style-one li a,
.terms-wrap .feature-list.style-one li a {
  color: var(--secondaryColor);
  font-weight: 700;
}
.blog-desc .feature-list.style-one li:last-child,
.tour-desc .feature-list.style-one li:last-child,
.destination-desc .feature-list.style-one li:last-child,
.terms-wrap .feature-list.style-one li:last-child {
  margin-bottom: 0;
}
.blog-desc .feature-list.style-one li:before,
.tour-desc .feature-list.style-one li:before,
.destination-desc .feature-list.style-one li:before,
.terms-wrap .feature-list.style-one li:before {
  position: absolute;
  top: 10.5px;
  left: 0;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--paraColor);
}
.blog-desc .feature-list.style-two li,
.tour-desc .feature-list.style-two li,
.destination-desc .feature-list.style-two li,
.terms-wrap .feature-list.style-two li {
  padding-left: 15px;
  margin-bottom: 10px;
}
.blog-desc .feature-list.style-two li:last-child,
.tour-desc .feature-list.style-two li:last-child,
.destination-desc .feature-list.style-two li:last-child,
.terms-wrap .feature-list.style-two li:last-child {
  margin-bottom: 0;
}
.blog-desc .feature-list.style-two li:before,
.tour-desc .feature-list.style-two li:before,
.destination-desc .feature-list.style-two li:before,
.terms-wrap .feature-list.style-two li:before {
  position: absolute;
  top: 10.5px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--paraColor);
}
.blog-desc .single-para,
.tour-desc .single-para,
.destination-desc .single-para,
.terms-wrap .single-para {
  margin-bottom: 20px;
}
.blog-desc .single-para:last-child,
.tour-desc .single-para:last-child,
.destination-desc .single-para:last-child,
.terms-wrap .single-para:last-child {
  margin-bottom: 0;
}
.blog-desc .single-para .feature-item-wrap .feature-item,
.tour-desc .single-para .feature-item-wrap .feature-item,
.destination-desc .single-para .feature-item-wrap .feature-item,
.terms-wrap .single-para .feature-item-wrap .feature-item {
  margin-bottom: 28px;
}
.blog-desc .single-para .feature-item-wrap .feature-item:last-child,
.tour-desc .single-para .feature-item-wrap .feature-item:last-child,
.destination-desc .single-para .feature-item-wrap .feature-item:last-child,
.terms-wrap .single-para .feature-item-wrap .feature-item:last-child {
  margin-bottom: 0;
}
.blog-desc .single-para .feature-item-wrap .feature-item span,
.tour-desc .single-para .feature-item-wrap .feature-item span,
.destination-desc .single-para .feature-item-wrap .feature-item span,
.terms-wrap .single-para .feature-item-wrap .feature-item span {
  width: 35px;
}
.blog-desc .single-para .feature-item-wrap .feature-item div,
.tour-desc .single-para .feature-item-wrap .feature-item div,
.destination-desc .single-para .feature-item-wrap .feature-item div,
.terms-wrap .single-para .feature-item-wrap .feature-item div {
  width: calc(100% - 35px);
}
.blog-desc .single-para .feature-item-wrap .feature-item div h6,
.tour-desc .single-para .feature-item-wrap .feature-item div h6,
.destination-desc .single-para .feature-item-wrap .feature-item div h6,
.terms-wrap .single-para .feature-item-wrap .feature-item div h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.post-metaoption {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 0 25px;
  margin-top: 30px;
}
.post-metaoption .tag-list li {
  display: inline-block;
}
.post-metaoption .tag-list li a {
  color: var(--paraColor);
}
.post-metaoption .tag-list li a:hover {
  color: var(--primaryColor);
}

.post-tag span,
.post-share span {
  margin-right: 5px;
}

.post-share ul {
  position: relative;
  top: 1px;
}

.comment-item-wrap .comment-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.comment-item-wrap .comment-item.reply {
  margin-left: 65px;
}
.comment-item-wrap .comment-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.comment-item-wrap .comment-item .comment-author-img {
  width: 50px;
  height: 50px;
}
.comment-item-wrap .comment-item .comment-author-info {
  width: calc(100% - 65px);
  margin-left: auto;
}
.comment-item-wrap .comment-item .comment-author-info .comment-author-name h5 {
  margin-bottom: 4px;
}
.comment-item-wrap .comment-item .comment-text {
  margin-top: 11px;
}
.comment-item-wrap .comment-item .comment-text p {
  margin: 0;
}
.comment-item-wrap .reply-btn {
  color: var(--primaryColor);
  line-height: 14px;
  font-weight: 700;
  padding: 10px 13px;
  border-radius: 50px;
  display: inline-block;
  background-color: rgba(27, 111, 88, 0.1);
}
.comment-item-wrap .reply-btn:hover {
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  border-color: transparent;
}

.add-star-rating {
  text-align: start;
  overflow: hidden;
}
.add-star-rating label {
  float: right;
  cursor: pointer;
  position: relative;
  margin-right: 3px;
}
.add-star-rating label:before {
  transition: var(--transition);
  content: "\f18b";
  font-family: remixicon !important;
  font-size: 16px;
  line-height: 1;
  color: #FFBA00;
  transition: var(--transition);
}
.add-star-rating input {
  display: none;
}
.add-star-rating input:checked ~ label:before, .add-star-rating:not(:checked) > label:hover:before, .add-star-rating:not(:checked) > label:hover ~ label:before {
  content: "\f186";
  color: #FFBA00;
}

.tour-desc .single-tour-img {
  padding: 25px 22px 0;
  position: relative;
  z-index: 1;
}
.tour-desc .single-tour-img img{
  max-height: 450px;
  object-fit: cover;
  width: 100%;
}
.tour-desc .single-tour-img:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 94%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: -1;
}
.tour-desc .comp-map {
  width: 100%;
  height: 430px;
}

.tour-price h6 {
  font-size: 24px;
}
.tour-price h3 {
  font-size: 40px;
}




/*---------------------------------
     Responsive CSS 
-----------------------------------*/
@media only screen and (max-width: 767px) {
  .footer-area .footer-widget-title.mb-30 {
    margin-bottom: 20px;
  }
  .footer-area .footer-bottom {
    padding: 10px 0;
    border-radius: 25px 25px 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-area .logo {
    margin-top: -4px;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-area.style-two .container-fluid {
    padding-left: 90px;
    padding-right: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .sm-none {
    display: none;
  }
  .fs-xx-14 {
    font-size: 14px;
  }
  .fs-24 {
    font-size: 22px;
  }
  .fs-32 {
    font-size: 26px;
  }
  .pt-90 {
    padding-top: 30px;
  }
  .pt-95 {
    padding-top: 35px;
  }
  .pt-120 {
    padding-top: 60px;
  }
  .pb-90 {
    padding-bottom: 30px;
  }
  .pb-95 {
    padding-bottom: 35px;
  }
  .pb-120 {
    padding-bottom: 60px;
  }
  .ptb-120 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mb-sm-10 {
    margin-bottom: 10px;
  }
  .mb-sm-20 {
    margin-bottom: 20px;
  }
  .pagination-area .page-numbers {
    width: 40px;
    height: 40px;
    margin-right: 8px;
    font-size: 14px;
  }
  .pagination-area .page-numbers i {
    font-size: 24px;
  }
  .pagination-area .page-numbers img {
    max-width: 19px;
  }
  .pagination-area .page-numbers:last-child {
    margin-right: 0;
  }
  .section-title {
    font-size: 26px;
    line-height: 33px;
  }
  .section-title.style-one, .section-title.style-two, .section-title.style-three {
    font-size: 26px;
    line-height: 34px;
  }
  .section-title.style-four {
    font-size: 26px;
    line-height: 37px;
  }
  .section-title.style-four img {
    max-height: 35px;
  }
  .section-title.mb-50 {
    margin-bottom: 35px;
  }
  .slider-btn.style-one .prev-btn,
  .slider-btn.style-one .next-btn, .slider-btn.style-two .prev-btn,
  .slider-btn.style-two .next-btn, .slider-btn.style-three .prev-btn,
  .slider-btn.style-three .next-btn, .slider-btn.style-four .prev-btn,
  .slider-btn.style-four .next-btn {
    width: 44px;
    height: 44px;
  }
  .slider-btn.style-one .prev-btn img,
  .slider-btn.style-one .next-btn img, .slider-btn.style-two .prev-btn img,
  .slider-btn.style-two .next-btn img, .slider-btn.style-three .prev-btn img,
  .slider-btn.style-three .next-btn img, .slider-btn.style-four .prev-btn img,
  .slider-btn.style-four .next-btn img {
    max-width: 20px;
  }
  .slider-btn.style-one .prev-btn, .slider-btn.style-two .prev-btn, .slider-btn.style-three .prev-btn, .slider-btn.style-four .prev-btn {
    margin-right: 10px;
  }
  .breadcrumb-area {
    margin-top: -80px;
    padding: 100px 0 80px;
  }
  .breadcrumb-area .br-line-shape {
    top: 50%;
  }
  .breadcrumb-area .br-shape-one {
    display: none;
  }
  .breadcrumb-area .br-shape-two {
    display: none;
  }
  .hero-area.style-one {
    padding: 194px 0 210px;
  }
  .hero-area.style-one .hero-img-shape {
    max-width: 150px;
  }
  .hero-area.style-one .hero-shape-two {
    top: 15%;
    left: 6%;
    max-width: 100px;
  }
  .hero-area.style-one .hero-content span {
    font-size: 18px;
  }
  .hero-area.style-one .hero-content h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .hero-area.style-two {
    padding: 170px 0 30px;
  }
  .hero-area.style-two .hero-content span {
    font-size: 20px;
  }
  .hero-area.style-two .hero-content h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .hero-area.style-two .hero-shape-one {
    max-width: 40px;
  }
  .hero-area.style-two .hero-shape-two {
    max-width: 40px;
  }
  .hero-area.style-two .hero-shape-three {
    max-width: 70px;
  }
  .hero-area.style-three .hero-slide-item {
    padding: 130px 0 180px;
  }
  .hero-area.style-three .hero-slide-item:after {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .hero-area.style-three .hero-slide-item .hero-content span {
    font-size: 20px;
  }
  .hero-area.style-three .hero-slide-item .hero-content h1 {
    font-size: 28px;
    line-height: 38px;
  }
  .hero-slider-one .slider-btn {
    display: flex;
    align-items: center;
    flex-direction: row !important;
    justify-content: center;
    top: auto;
    bottom: 75px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .hero-slider-one .slider-btn .prev-btn img {
    transform: rotate(-90deg);
  }
  .hero-search-box {
    border-radius: 30px;
    padding: 36px 22px 45px;
  }
  .hero-search-box.style-one, .hero-search-box.style-two, .hero-search-box.style-three {
    margin-top: -64px;
  }
  .hero-search-box.style-one::before, .hero-search-box.style-two::before, .hero-search-box.style-three::before {
    top: 14px;
    left: 6px;
    border-radius: 30px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }
  .hero-search-box .hero-search-tablist {
    border-bottom: none !important;
  }
  .hero-search-box .hero-search-tablist .nav-item {
    margin-right: 0;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  }
  .hero-search-box .hero-search-tablist .nav-item:last-child {
    margin-right: 0;
  }
  .hero-search-box .tour-search-form .form-group-wrapper {
    width: 100%;
    margin-right: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
  .hero-search-box .tour-search-form .form-group-wrapper .form-group {
    width: 100%;
    margin-bottom: 16px;
  }
  .hero-search-box .tour-search-form button {
    width: 100%;
    display: block;
  }
  .feature-card.style-one h3 {
    max-width: 100%;
  }
  .feature-area.style-one .feature-img-one {
    border-radius: 30px 30px 0 30px;
  }
  .feature-area.style-one .feature-img-one img {
    border-radius: 30px 30px 0 30px;
  }
  .feature-area.style-one .feature-img-two {
    border-radius: 30px 0 30px 30px;
  }
  .feature-area.style-one .feature-img-two img {
    border-radius: 30px 0 30px 30px;
  }
  .feature-area.style-one .feature-content .feature-list {
    -moz-columns: 1;
    columns: 1;
    -moz-column-gap: 0;
    column-gap: 0;
  }
  .feature-area.style-two .feature-img-wrap {
    padding: 15px 0 15px 15px;
  }
  .feature-area.style-two .feature-img-wrap img {
    border-radius: 50px;
  }
  .feature-area.style-two .feature-content .tours-features-wrap {
    margin-bottom: -30px;
  }
  .feature-area.style-two .feature-content .tours-features-wrap .tours-feature-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .feature-area.style-two .feature-content .tours-features-wrap .tours-feature-item:nth-child(even) {
    padding-left: 0;
  }
  .feature-area.style-four .feature-content .section-para {
    margin-bottom: 25px;
  }
  .feature-area.style-four .feature-content .feature-list {
    -moz-columns: 1;
    columns: 1;
  }
  .feature-area.style-five .feature-content .counter-card-wrap, .feature-area.style-seven .feature-content .counter-card-wrap {
    justify-content: center;
  }
  .feature-area.style-five .feature-content .counter-card-wrap .counter-card, .feature-area.style-seven .feature-content .counter-card-wrap .counter-card {
    width: 300px;
    height: 300px;
    margin: 0 auto 10px;
  }
  .feature-area.style-six .feature-content .tours-features-wrap {
    margin-bottom: -30px;
  }
  .feature-area.style-six .feature-content .tours-features-wrap .tours-feature-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .feature-area.style-six .feature-content .tours-features-wrap .tours-feature-item:nth-child(even) {
    padding-left: 0;
  }
  .feature-area.style-six .feature-img-wrapper .exp-box {
    bottom: 14%;
    left: -20px;
    width: 185px;
    height: 145px;
    border-width: 5px;
  }
  .feature-area.style-six .feature-img-wrapper .exp-box h3 {
    font-size: 46px;
  }
  .feature-area.style-six .feature-img-wrapper .exp-box p {
    font-size: 16px;
  }
  .booking-box {
    border-radius: 20px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .tour-area.style-two {
    padding-bottom: 200px;
  }
  .tour-area.style-two .text-shape {
    max-width: 220px;
    top: 5%;
  }
  .tour-area.style-two .tour-card-wrap .section-shape-one {
    bottom: 0px;
    max-width: 70px;
  }
  .tour-area.style-two .man-running {
    max-width: 190px;
  }
  .simple-area.style-one {
    padding: 60px 20px 0;
  }
  .simple-area.style-one .simple-content {
    margin-bottom: 30px;
  }
  .simple-area.style-one .simple-img-wrap {
    max-width: 200px;
    right: -50px;
    position: relative !important;
  }
  .pricing-card.style-one {
    padding: 30px 20px 35px;
  }
  .pricing-card.style-one .price-tag {
    font-size: 44px;
    margin: 30px 0 30px;
  }
  .pricing-card.style-one .price-tag span {
    font-size: 26px;
  }
  .pricing-card.style-one .feature-list {
    margin: 22px auto 20px;
  }
  .map-area.style-one, .map-area.style-two {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 140px;
  }
  .map-area.style-one .map-shape-one, .map-area.style-two .map-shape-one {
    max-width: 120px;
    left: 20px;
  }
  .map-area.style-one .tour-map-area .map-destination-item.style-one, .map-area.style-two .tour-map-area .map-destination-item.style-one {
    top: -5px;
    left: -12px;
  }
  .map-area.style-one .tour-map-area .map-destination-item.style-two, .map-area.style-two .tour-map-area .map-destination-item.style-two {
    bottom: 0%;
    left: -12px;
  }
  .map-area.style-one .tour-map-area .map-destination-item.style-three, .map-area.style-two .tour-map-area .map-destination-item.style-three {
    bottom: -50px;
    left: 40%;
  }
  .map-area.style-one .tour-map-area .map-destination-item.style-four, .map-area.style-two .tour-map-area .map-destination-item.style-four {
    top: -15px;
    right: -12px;
  }
  .map-area.style-one .tour-map-area .map-destination-item.style-five, .map-area.style-two .tour-map-area .map-destination-item.style-five {
    bottom: 15%;
    right: -12px;
  }
  .map-area.style-one .tour-map-area .map-destination-item .map-destination-arrow, .map-area.style-two .tour-map-area .map-destination-item .map-destination-arrow {
    max-width: 30px;
  }
  .map-area.style-one .tour-map-area .map-destination-item .map-destination-card, .map-area.style-two .tour-map-area .map-destination-item .map-destination-card {
    width: 162px;
  }
  .map-area.style-one .tour-map-area .map-destination-item .map-destination-card .destination-img, .map-area.style-two .tour-map-area .map-destination-item .map-destination-card .destination-img {
    width: 41px;
  }
  .map-area.style-one .tour-map-area .map-destination-item .map-destination-card .destination-info, .map-area.style-two .tour-map-area .map-destination-item .map-destination-card .destination-info {
    width: calc(100% - 48px);
  }
  .map-area.style-one .tour-map-area .map-destination-item .map-destination-card .destination-info h6, .map-area.style-two .tour-map-area .map-destination-item .map-destination-card .destination-info h6 {
    font-size: 14px;
  }
  .map-area.style-one .tour-map-area .map-destination-item .map-destination-card .destination-info span, .map-area.style-two .tour-map-area .map-destination-item .map-destination-card .destination-info span {
    font-size: 10px;
  }
  .video-area.style-one {
    padding: 105px 0 205px;
  }
  .video-area.style-one .line-shape {
    top: 30px;
  }
  .video-area.style-one .leaf-one {
    max-width: 50px;
  }
  .video-area.style-one .section-shape-one {
    max-width: 50px;
  }
  .video-area.style-one .section-shape-two {
    max-width: 40px;
  }
  .video-area.style-one .tourists-shape {
    max-width: 120px;
  }
  .newsletter-box.style-one {
    margin-top: -100px;
  }
  .feature-area.style-three .feature-content {
    padding: 60px 0 0;
  }
  .feature-area.style-three .feature-bg {
    height: 400px;
  }
  .testimonial-card.style-one .client-img {
    margin-bottom: 25px;
  }
  .testimonial-card.style-one .client-img:after {
    display: nonen;
  }
  .testimonial-card.style-one .client-info-wrap .rating {
    margin-top: 5px;
  }
  .testimonial-card.style-one .client-quote {
    padding: 20px 0 0;
  }
  .testimonial-card.style-one .client-quote p {
    font-size: 16px;
    line-height: 26px;
  }
  .testimonial-card.style-one .client-quote .quote-icon {
    max-width: 230px;
  }
  .testimonial-card.style-three .quote-icon {
    right: 0%;
    max-width: 80px;
  }
  .testimonial-card.style-three p {
    font-size: 20px;
    line-height: 32px;
    margin: 32px 0 0;
  }
  .testimonial-area.style-two {
    margin: 0;
  }
  .testimonial-area.style-two .section-shape {
    top: 8%;
    left: 5%;
    max-width: 50px;
  }
  .testimonial-slider-one .slider-btn {
    margin-top: 30px;
  }
  .counter-card-wrap.style-one .counter-card, .counter-card-wrap.style-two .counter-card {
    width: 50%;
    padding-left: 0;
    text-align: center;
  }
  .counter-card-wrap.style-one .counter-card:after, .counter-card-wrap.style-two .counter-card:after {
    display: none;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(even):after, .counter-card-wrap.style-two .counter-card:nth-child(even):after {
    display: none;
  }
  .counter-card-wrap.style-one .counter-card h4, .counter-card-wrap.style-two .counter-card h4 {
    font-size: 40px;
  }
  .counter-card-wrap.style-one .counter-card p, .counter-card-wrap.style-two .counter-card p {
    font-size: 13px;
    line-height: 24px;
    max-width: 100%;
    padding: 0 5px;
  }
  .tour-metainfo li {
    font-size: 14px;
    margin-right: 6px;
    padding: 8px 10px 6px;
  }
  .tour-metainfo li:last-child {
    margin-right: 0;
  }
  .tour-card.style-four .tour-img .tour-metainfo {
    width: calc(100% - 24px);
    padding: 17px 11px 12px;
  }
  .tour-card.style-four .tour-img .tour-metainfo li {
    font-size: 12px;
  }
  .tour-card.style-four .tour-img .tour-metainfo li:last-child {
    padding-left: 10px;
  }
  .tour-card.style-four .tour-info {
    padding: 23px 20px 30px;
  }
  .tour-card.style-four .tour-info h3 {
    margin-bottom: 17px;
  }
  .tour-card.style-four .tour-info .ratings span {
    position: relative;
    top: 1px;
    margin-right: 8px;
  }
  .tour-card.style-four .tour-info .ratings .rating li img {
    max-width: 16px;
  }
  .accordion .accordion-item .accordion-header .accordion-button {
        font-size: 17px;
        padding: 16px 30px 16px 12px;
        line-height: 1.2;
  }
  .accordion .accordion-item .accordion-header .accordion-button .accord-arrow {
    width: 25px;
    height: 25px;
    top: 26px;
    right: 15px;
  }
  .accordion .accordion-item .accordion-header .accordion-button .accord-arrow i {
    font-size: 24px;
  }
  .accordion .accordion-item:not(.collapsed) {
    box-shadow: none;
  }
  .accordion .accordion-item:not(.collapsed) .accordion-header .accordion-button {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
  }
  .accordion .accordion-item:not(.collapsed) .accordion-header .accordion-button .accord-arrow i {
    color: var(--whiteColor);
  }
  .accordion .accordion-item .accordion-body {
    padding: 22px 0 6px;
    border-top: none;
  }
  .accordion .accordion-item .accordion-body p {
    color: var(--paraColor);
    font-weight: 400;
  }
  .accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
  }
  .newsletter-box.style-one, .newsletter-box.style-two {
    padding: 35px 20px 40px;
  }
  .newsletter-box.style-one h2, .newsletter-box.style-two h2 {
    font-size: 28px;
    line-height: 37px;
  }
  .newsletter-box.style-one .newsletter-form input, .newsletter-box.style-two .newsletter-form input {
    width: 100%;
    margin-right: 0;
    height: 60px;
    padding: 12px 20px 12px 20px;
  }
  .newsletter-box.style-one .newsletter-form button, .newsletter-box.style-two .newsletter-form button {
    margin-top: 15px;
    padding: 23px 15px;
    display: block;
    width: 100%;
  }
  .sidebar .sidebar-widget.style-one {
    padding: 25px 20px;
  }
  .sidebar .sidebar-widget.style-two {
    padding: 25px 20px;
  }
  .tour-offer-widget {
    padding: 60px 20px 60px;
  }
  .tour-offer-widget .client-img {
    margin: 15px 0 20px;
  }
  .tour-booking-list {
    border-bottom: none;
    padding-top: 25px;
    margin-bottom: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .tour-booking-list .nav-item {
    margin-right: 6px;
  }
  .tour-booking-list .nav-item:last-child {
    margin-right: 0;
  }
  .tour-booking-list .nav-item .nav-link {
    font-size: 15px;
    padding: 10px 11px;
  }
  .promo-area {
    padding: 40px 0 150px;
  }
  .promo-area .flying-birds {
    max-width: 35px;
  }
  .promo-area .promo-leaf-one,
  .promo-area .promo-leaf-two {
    max-width: 30px;
  }
  .promo-area .promo-img-one {
    max-width: 100px;
  }
  .promo-area .promo-img-two {
    max-width: 60px;
  }
  .promo-area .promo-text-img {
    padding: 0 20px;
  }
  .contact-card-wrap .contact-card {
    padding: 25px 22px;
  }
  .contact-card-wrap .contact-card .contact-icon {
    width: 75px;
    height: 75px;
  }
  .contact-card-wrap .contact-card .contact-icon i {
    font-size: 35px;
  }
  .contact-card-wrap .contact-card .contact-info {
    width: calc(100% - 95px);
  }
  .contact-box {
    padding: 20px;
  }
  .product-card .product-img {
    height: 300px;
  }
  .product-tablist {
    padding-bottom: 0;
    border-bottom: none;
  }
  .product-tablist .nav-item {
    margin-right: 0;
    margin-bottom: 14px;
    display: block;
    width: 100%;
  }
  .product-tablist .nav-item .nav-link {
    text-align: left;
    width: 100%;
  }
  .cart-wrapper {
    padding: 40px 15px 40px;
  }
  .cart-table.mb-50 {
    margin-bottom: 30px;
  }
  .coupon-code button {
    position: relative;
    top: auto;
    right: auto;
    background-color: var(--primaryColor);
    height: auto;
    transition: var(--transition);
    padding: 12px 20px;
    margin-top: 15px;
    display: block;
    width: 100%;
  }
  .coupon-code input {
    height: 54px;
    padding: 10px 20px 10px 18px;
  }
  .cart-total {
    padding: 25px 20px 25px;
  }
  .checkout-total .checkout-total-header span {
    width: 50%;
    padding: 15px 15px 10px;
  }
  .checkout-total .checkout-total-wrap .checkout-total-item span:first-child {
    padding-left: 15px;
  }
  .checkout-total .checkout-total-wrap .checkout-total-item span:last-child {
    padding-right: 15px;
  }
  .payment-method {
    padding: 25px 20px;
  }
  .blog-desc h1, .blog-desc h2, .blog-desc h3, .blog-desc h4, .blog-desc h5, .blog-desc h6,
  .tour-desc h1,
  .tour-desc h2,
  .tour-desc h3,
  .tour-desc h4,
  .tour-desc h5,
  .tour-desc h6,
  .destination-desc h1,
  .destination-desc h2,
  .destination-desc h3,
  .destination-desc h4,
  .destination-desc h5,
  .destination-desc h6,
  .terms-wrap h1,
  .terms-wrap h2,
  .terms-wrap h3,
  .terms-wrap h4,
  .terms-wrap h5,
  .terms-wrap h6 {
    line-height: 1.3;
  }
  .blog-desc h1,
  .tour-desc h1,
  .destination-desc h1,
  .terms-wrap h1 {
    font-size: 32px;
  }
  .blog-desc h2,
  .tour-desc h2,
  .destination-desc h2,
  .terms-wrap h2 {
    font-size: 30px;
  }
  .blog-desc h3,
  .tour-desc h3,
  .destination-desc h3,
  .terms-wrap h3 {
    font-size: 28px;
  }
  .blog-desc h4,
  .tour-desc h4,
  .destination-desc h4,
  .terms-wrap h4 {
    font-size: 26px;
  }
  .blog-desc h5,
  .tour-desc h5,
  .destination-desc h5,
  .terms-wrap h5 {
    font-size: 24px;
  }
  .blog-desc h6,
  .tour-desc h6,
  .destination-desc h6,
  .terms-wrap h6 {
    font-size: 20px;
  }
  .blog-desc .wp-blockquote,
  .tour-desc .wp-blockquote,
  .destination-desc .wp-blockquote,
  .terms-wrap .wp-blockquote {
    padding: 30px 22px 30px 22px;
    margin-bottom: 50px;
  }
  .blog-desc .wp-blockquote p,
  .tour-desc .wp-blockquote p,
  .destination-desc .wp-blockquote p,
  .terms-wrap .wp-blockquote p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 23px;
  }
  .blog-desc .wp-blockquote .quote-icon,
  .tour-desc .wp-blockquote .quote-icon,
  .destination-desc .wp-blockquote .quote-icon,
  .terms-wrap .wp-blockquote .quote-icon {
    right: 28px;
    bottom: 28px;
    max-width: 50px;
  }
  .blog-desc .single-img .single-blog-metainfo,
  .tour-desc .single-img .single-blog-metainfo,
  .destination-desc .single-img .single-blog-metainfo,
  .terms-wrap .single-img .single-blog-metainfo {
    width: 95%;
    padding: 16px 15px 16px;
  }
  .blog-desc .single-img .single-blog-metainfo .blog-date,
  .tour-desc .single-img .single-blog-metainfo .blog-date,
  .destination-desc .single-img .single-blog-metainfo .blog-date,
  .terms-wrap .single-img .single-blog-metainfo .blog-date {
    width: 100%;
    font-size: 18px;
    margin: 0 0 5px;
  }
  .blog-desc .feature-list.style-one li,
  .tour-desc .feature-list.style-one li,
  .destination-desc .feature-list.style-one li,
  .terms-wrap .feature-list.style-one li {
    padding-left: 15px;
    margin-bottom: 10px;
  }
  .blog-desc .feature-list.style-one li:last-child,
  .tour-desc .feature-list.style-one li:last-child,
  .destination-desc .feature-list.style-one li:last-child,
  .terms-wrap .feature-list.style-one li:last-child {
    margin-bottom: 0;
  }
  .blog-desc .feature-list.style-one li:before,
  .tour-desc .feature-list.style-one li:before,
  .destination-desc .feature-list.style-one li:before,
  .terms-wrap .feature-list.style-one li:before {
    position: absolute;
    top: 10.5px;
    left: 0;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--paraColor);
  }
  .blog-desc .feature-list.style-two li,
  .tour-desc .feature-list.style-two li,
  .destination-desc .feature-list.style-two li,
  .terms-wrap .feature-list.style-two li {
    padding-left: 15px;
    margin-bottom: 10px;
  }
  .blog-desc .feature-list.style-two li:last-child,
  .tour-desc .feature-list.style-two li:last-child,
  .destination-desc .feature-list.style-two li:last-child,
  .terms-wrap .feature-list.style-two li:last-child {
    margin-bottom: 0;
  }
  .blog-desc .feature-list.style-two li:before,
  .tour-desc .feature-list.style-two li:before,
  .destination-desc .feature-list.style-two li:before,
  .terms-wrap .feature-list.style-two li:before {
    position: absolute;
    top: 10.5px;
    left: 0;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--paraColor);
  }
  .blog-desc .single-para,
  .tour-desc .single-para,
  .destination-desc .single-para,
  .terms-wrap .single-para {
    margin-bottom: 40px;
  }
  .blog-desc .single-para:last-child,
  .tour-desc .single-para:last-child,
  .destination-desc .single-para:last-child,
  .terms-wrap .single-para:last-child {
    margin-bottom: 0;
  }
  .blog-desc .single-para .feature-item-wrap .feature-item,
  .tour-desc .single-para .feature-item-wrap .feature-item,
  .destination-desc .single-para .feature-item-wrap .feature-item,
  .terms-wrap .single-para .feature-item-wrap .feature-item {
    margin-bottom: 28px;
  }
  .blog-desc .single-para .feature-item-wrap .feature-item:last-child,
  .tour-desc .single-para .feature-item-wrap .feature-item:last-child,
  .destination-desc .single-para .feature-item-wrap .feature-item:last-child,
  .terms-wrap .single-para .feature-item-wrap .feature-item:last-child {
    margin-bottom: 0;
  }
  .blog-desc .single-para .feature-item-wrap .feature-item span,
  .tour-desc .single-para .feature-item-wrap .feature-item span,
  .destination-desc .single-para .feature-item-wrap .feature-item span,
  .terms-wrap .single-para .feature-item-wrap .feature-item span {
    width: 35px;
  }
  .blog-desc .single-para .feature-item-wrap .feature-item div,
  .tour-desc .single-para .feature-item-wrap .feature-item div,
  .destination-desc .single-para .feature-item-wrap .feature-item div,
  .terms-wrap .single-para .feature-item-wrap .feature-item div {
    width: calc(100% - 35px);
  }
  .blog-desc .single-para .feature-item-wrap .feature-item div h6,
  .tour-desc .single-para .feature-item-wrap .feature-item div h6,
  .destination-desc .single-para .feature-item-wrap .feature-item div h6,
  .terms-wrap .single-para .feature-item-wrap .feature-item div h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .post-metaoption {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0 0 25px;
    margin-top: 30px;
  }
  .post-metaoption .tag-list li {
    display: inline-block;
  }
  .post-metaoption .tag-list li a {
    color: var(--paraColor);
  }
  .post-metaoption .tag-list li a:hover {
    color: var(--primaryColor);
  }
  .post-tag span,
  .post-share span {
    margin-right: 5px;
  }
  .post-share ul {
    position: relative;
    top: 1px;
  }
  .comment-item-wrap .comment-item.reply {
    margin-left: 35px;
  }
  .tour-desc .single-tour-img {
    padding: 20px 16px 0;
  }
  .tour-desc .single-tour-img .single-tour-info .tour-metainfo {
    width: 100%;
  }
  .tour-desc .single-tour-img .single-tour-info .tour-price {
    margin-top: 10px;
  }
  .account-wrap {
    padding: 22px;
  }
  .account-box {
    padding: 30px 20px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-90 {
    padding-top: 50px;
  }
  .pt-95 {
    padding-top: 55px;
  }
  .pt-120 {
    padding-top: 80px;
  }
  .pb-90 {
    padding-bottom: 50px;
  }
  .pb-95 {
    padding-bottom: 55px;
  }
  .pb-120 {
    padding-bottom: 80px;
  }
  .ptb-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-title.style-one, .section-title.style-two, .section-title.style-three {
    font-size: 34px;
    line-height: 44px;
  }
  .section-title.style-four {
    font-size: 34px;
    line-height: 48px;
  }
  .breadcrumb-area {
    margin-top: -80px;
    padding: 115px 0 120px;
  }
  .breadcrumb-area .br-line-shape {
    top: 50%;
  }
  .breadcrumb-area .br-shape-one {
    max-width: 100px;
  }
  .breadcrumb-area .br-shape-two {
    max-width: 80px;
  }
  .hero-area.style-one {
    padding: 244px 0 310px;
  }
  .hero-area.style-one .hero-img-shape {
    max-width: 42%;
  }
  .hero-area.style-one .hero-content h1 {
    font-size: 48px;
    line-height: 58px;
  }
  .hero-area.style-two {
    padding: 150px 0 80px;
  }
  .hero-area.style-two .hero-img {
    max-width: 450px;
  }
  .hero-area.style-two .hero-shape-one {
    max-width: 80px;
  }
  .hero-area.style-two .hero-shape-two {
    max-width: 80px;
  }
  .hero-area.style-two .hero-shape-three {
    max-width: 80px;
  }
  .hero-area.style-two .hero-content h1 {
    font-size: 46px;
    line-height: 56px;
  }
  .hero-search-box {
    border-radius: 50px;
  }
  .hero-search-box.style-one, .hero-search-box.style-two, .hero-search-box.style-three {
    margin-top: -114px;
  }
  .hero-search-box.style-one::before, .hero-search-box.style-two::before, .hero-search-box.style-three::before {
    border-radius: 50px;
  }
  .hero-search-box .hero-search-tablist .nav-item {
    margin-right: 25px;
  }
  .hero-search-box .hero-search-tablist .nav-item:last-child {
    margin-right: 0;
  }
  .hero-search-box .tour-search-form .form-group-wrapper {
    width: 100%;
    margin-right: 0;
  }
  .hero-search-box .tour-search-form .form-group-wrapper .form-group {
    width: calc(50% - 7px);
    margin-bottom: 20px;
  }
  .hero-search-box .tour-search-form button {
    width: 100%;
    display: block;
  }
  .map-area.style-one .map-shape-one, .map-area.style-two .map-shape-one {
    max-width: 170px;
    left: 20px;
  }
  .map-area.style-one .tour-map-area .map-destination-item.style-one, .map-area.style-two .tour-map-area .map-destination-item.style-one {
    top: 14%;
    left: 10%;
  }
  .map-area.style-one .tour-map-area .map-destination-item.style-two, .map-area.style-two .tour-map-area .map-destination-item.style-two {
    bottom: 25%;
    left: 27%;
  }
  .map-area.style-one .tour-map-area .map-destination-item.style-three, .map-area.style-two .tour-map-area .map-destination-item.style-three {
    bottom: 0%;
    left: 52.5%;
  }
  .map-area.style-one .tour-map-area .map-destination-item.style-four, .map-area.style-two .tour-map-area .map-destination-item.style-four {
    top: 15%;
    right: 9%;
  }
  .map-area.style-one .tour-map-area .map-destination-item.style-five, .map-area.style-two .tour-map-area .map-destination-item.style-five {
    bottom: 25%;
    right: 3%;
  }
  .tour-area.style-two {
    padding-bottom: 350px;
  }
  .tour-area.style-two .text-shape {
    max-width: 220px;
    top: 5%;
  }
  .tour-area.style-two .tour-card-wrap .section-shape-one {
    bottom: 0;
  }
  .tour-area.style-two .man-running {
    max-width: 300px;
  }
  .simple-area.style-one {
    padding: 70px 40px;
  }
  .simple-area.style-one .simple-img-wrap {
    max-width: 300px;
  }
  .booking-box {
    padding-left: 45px;
    padding-right: 45px;
  }
  .booking-box .feature-img {
    right: 10px;
    max-width: 200px;
  }
  .testimonial-card.style-one .client-quote {
    padding: 15px 0 0;
  }
  .testimonial-card.style-one .client-quote p {
    font-size: 16px;
    line-height: 26px;
  }
  .testimonial-card.style-one .client-quote .quote-icon {
    max-width: 230px;
  }
  .testimonial-card.style-three .quote-icon {
    right: 6%;
    max-width: 200px;
  }
  .testimonial-card.style-three p {
    font-size: 24px;
    line-height: 37px;
    margin: 32px 0 0;
  }
  .testimonial-area.style-two .section-shape {
    max-width: 90px;
  }
  .testimonial-slider-one .slider-btn {
    margin-top: 25px;
  }
  .video-area.style-one {
    padding: 195px 0 305px;
  }
  .video-area.style-one .tourists-shape {
    max-width: 220px;
  }
  .feature-area.style-three .feature-content {
    padding: 80px 0 0;
  }
  .feature-area.style-three .feature-bg {
    height: 600px;
  }
  .counter-card-wrap.style-one .counter-card, .counter-card-wrap.style-two .counter-card {
    width: 50%;
    padding-left: 0;
  }
  .counter-card-wrap.style-one .counter-card:after, .counter-card-wrap.style-two .counter-card:after {
    right: 45px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(even):after, .counter-card-wrap.style-two .counter-card:nth-child(even):after {
    display: none;
  }
  .counter-card-wrap.style-one .counter-card p, .counter-card-wrap.style-two .counter-card p {
    font-size: 16px;
    line-height: 26px;
    max-width: 55%;
  }
  .promo-area {
    padding: 150px 0 160px;
  }
  .promo-area .promo-leaf-one,
  .promo-area .promo-leaf-two {
    max-width: 60px;
  }
  .promo-area .promo-img-one {
    max-width: 210px;
  }
  .promo-area .promo-img-two {
    max-width: 110px;
  }
  .newsletter-box.style-one, .newsletter-box.style-two {
    padding: 46px 30px 50px;
  }
  .newsletter-box.style-one h2, .newsletter-box.style-two h2 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .md-none {
    display: none !important;
  }
  .mb-md-20 {
    margin-bottom: 20px;
  }
  .mb-md-30 {
    margin-bottom: 30px;
  }
  .mt-md-50 {
    margin-top: 50px;
  }
  .blog-area .blog-section-shape {
    max-width: 100px;
  }
  .tour-slider-two .slider-btn,
  .city-slider-one .slider-btn,
  .place-slider-one .slider-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }
  .tour-slider-two .slider-btn .prev-btn,
  .tour-slider-two .slider-btn .next-btn,
  .city-slider-one .slider-btn .prev-btn,
  .city-slider-one .slider-btn .next-btn,
  .place-slider-one .slider-btn .prev-btn,
  .place-slider-one .slider-btn .next-btn {
    position: relative;
    top: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0%);
  }
  .tour-slider-two .slider-btn .prev-btn,
  .city-slider-one .slider-btn .prev-btn,
  .place-slider-one .slider-btn .prev-btn {
    left: auto;
    margin-right: 10px;
  }
  .tour-slider-two .slider-btn .next-btn,
  .city-slider-one .slider-btn .next-btn,
  .place-slider-one .slider-btn .next-btn {
    right: auto;
    margin-left: 10px;
  }
  .single-product-img {
    height: 500px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .lg-none {
    display: none;
  }
  .mb-lg-20 {
    margin-bottom: 20px;
  }
  .mb-lg-25 {
    margin-bottom: 25px;
  }
  .mt-lg-50 {
    margin-top: 50px;
  }
  .feature-area.style-six .feature-img-wrapper .exp-box {
    left: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-90 {
    padding-top: 70px;
  }
  .pt-95 {
    padding-top: 75px;
  }
  .pt-120 {
    padding-top: 100px;
  }
  .pb-90 {
    padding-bottom: 70px;
  }
  .pb-95 {
    padding-bottom: 75px;
  }
  .pb-120 {
    padding-bottom: 100px;
  }
  .ptb-120 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section-title.style-one, .section-title.style-two, .section-title.style-three, .section-title.style-four {
    font-size: 38px;
    line-height: 48px;
  }
  .breadcrumb-area {
    margin-top: -96px;
    padding: 175px 0 180px;
  }
  .breadcrumb-area .br-line-shape {
    top: 50%;
  }
  .breadcrumb-area .br-shape-one {
    max-width: 120px;
  }
  .breadcrumb-area .br-shape-two {
    max-width: 120px;
  }
  .hero-area.style-one {
    padding: 244px 0 290px;
  }
  .hero-area.style-one .hero-img-shape {
    max-width: 52%;
  }
  .hero-area.style-one .hero-content h1 {
    font-size: 48px;
    line-height: 58px;
  }
  .hero-area.style-two {
    padding: 150px 0 80px;
  }
  .hero-area.style-two .hero-img {
    max-width: 450px;
  }
  .hero-search-box .hero-search-tablist .nav-item {
    margin-right: 35px;
  }
  .hero-search-box .hero-search-tablist .nav-item:last-child {
    margin-right: 0;
  }
  .hero-search-box .tour-search-form .form-group-wrapper {
    width: 100%;
    margin-right: 0;
  }
  .hero-search-box .tour-search-form .form-group-wrapper .form-group {
    width: calc(50% - 7px);
    margin-bottom: 20px;
  }
  .hero-search-box .tour-search-form button {
    width: 100%;
    display: block;
  }
  .map-area.style-one .map-shape-one, .map-area.style-two .map-shape-one {
    max-width: 280px;
  }
  .counter-card-wrap.style-one .counter-card p, .counter-card-wrap.style-two .counter-card p {
    font-size: 16px;
    line-height: 26px;
    max-width: 80%;
  }
  .simple-area.style-one {
    padding: 100px 50px;
  }
  .simple-area.style-one .simple-img-wrap {
    max-width: 500px;
  }
  .feature-area.style-five .feature-content .counter-card-wrap .counter-card, .feature-area.style-seven .feature-content .counter-card-wrap .counter-card {
    width: 165px;
    height: 165px;
  }
  .feature-area.style-five .feature-content .counter-card-wrap .counter-card h4, .feature-area.style-seven .feature-content .counter-card-wrap .counter-card h4 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .feature-area.style-five .feature-content .counter-card-wrap .counter-card p, .feature-area.style-seven .feature-content .counter-card-wrap .counter-card p {
    font-size: 20px;
  }
  .booking-box .feature-img {
    max-width: 300px;
  }
  .testimonial-slider-one .slider-btn {
    margin-top: 25px;
  }
  .testimonial-card.style-three .quote-icon {
    right: 6%;
  }
  .testimonial-card.style-three p {
    font-size: 24px;
    line-height: 37px;
    margin: 32px 0 0;
  }
  .tour-area.style-two {
    padding-bottom: 500px;
  }
  .tour-area.style-two .text-shape {
    max-width: 220px;
    top: 5%;
  }
  .tour-area.style-two .tour-card-wrap .section-shape-one {
    bottom: 0;
  }
  .promo-area {
    padding: 150px 0 210px;
  }
  .promo-area .promo-leaf-one,
  .promo-area .promo-leaf-two {
    max-width: 70px;
  }
  .promo-area .promo-img-one {
    max-width: 300px;
  }
  .promo-area .promo-img-two {
    max-width: 200px;
  }
  .video-area .tourists-shape {
    max-width: 250px;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-box-widget.style-one .contact-box-info a {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-area.style-one {
    padding: 284px 0 310px;
  }
  .hero-area.style-one .hero-img-shape {
    max-width: 52%;
  }
  .hero-area.style-one .hero-content h1 {
    font-size: 60px;
    line-height: 70px;
  }
  .hero-area.style-two .hero-img {
    max-width: 550px;
  }
  .tour-area.style-two {
    padding-bottom: 500px;
  }
  .tour-area.style-two .text-shape {
    top: 2%;
  }
  .tour-area.style-two .tour-card-wrap > div:nth-child(2) .tour-card {
    margin-top: 60px;
  }
  .tour-area.style-two .tour-card-wrap > div:nth-child(3) .tour-card {
    margin-top: 80px;
  }
  .tour-area.style-two .tour-card-wrap > div:nth-child(4) .tour-card {
    margin-top: 100px;
  }
  .map-area.style-one .map-shape-one, .map-area.style-two .map-shape-one {
    max-width: 350px;
  }
  .simple-area.style-one .simple-img-wrap {
    max-width: 650px;
  }
  .blog-slider-two .swiper-wrapper .swiper-slide.slide-25 {
    width: 23%;
  }
  .blog-slider-two .swiper-wrapper .swiper-slide.slide-50 {
    width: 49%;
  }
  .video-area .tourists-shape {
    max-width: 350px;
  }
  .promo-area {
    padding: 150px 0 250px;
  }
  .promo-area .promo-img-one {
    max-width: 300px;
  }
  .promo-area .promo-img-two {
    max-width: 200px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-area.style-one .hero-img-shape {
    max-width: 46%;
  }
  .hero-area.style-two .hero-content {
    padding: 0 100px;
  }
  .promo-area .promo-img-one {
    max-width: 350px;
  }
  .promo-area .promo-img-two {
    max-width: 260px;
  }
  .video-area .tourists-shape {
    max-width: 400px;
  }
}
@media only screen and (min-width: 1400px) {
  .gx-xxl-25 {
    --bs-gutter-x: 2.5rem;
  }
  .fs-xxl-18 {
    font-size: 18px !important;
  }
  .fs-xxl-20 {
    font-size: 20px !important;
  }
  .fs-xxl-22 {
    font-size: 22px !important;
  }
  .w-xxl-80 {
    width: 80%;
  }
  .btn {
    font-size: 18px;
  }
  .section-title.style-one {
    font-size: 50px;
    line-height: 60px;
  }
  .section-title.style-two {
    font-size: 48px;
    line-height: 58px;
  }
  .section-title.style-three {
    font-size: 40px;
    line-height: 50px;
  }
  .section-title.style-four {
    font-size: 48px;
    line-height: 70px;
  }
  .breadcrumb-area .br-menu li {
    font-size: 24px;
  }
  .breadcrumb-area .br-menu li:after {
    font-size: 24px;
  }
  .breadcrumb-area .br-shape-one {
    top: 27%;
    left: 10%;
  }
  .breadcrumb-area .br-shape-two {
    right: 4%;
  }
  .hero-area.style-one .hero-content h1, .hero-area.style-two .hero-content h1 {
    font-size: 60px;
    line-height: 70px;
  }
  .counter-card-wrap.style-one .counter-card, .counter-card-wrap.style-two .counter-card {
    padding-left: 0;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(1):after, .counter-card-wrap.style-two .counter-card:nth-child(1):after {
    right: 50px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(2), .counter-card-wrap.style-two .counter-card:nth-child(2) {
    left: 25px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(2):after, .counter-card-wrap.style-two .counter-card:nth-child(2):after {
    right: 55px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(3), .counter-card-wrap.style-two .counter-card:nth-child(3) {
    left: 50px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(3):after, .counter-card-wrap.style-two .counter-card:nth-child(3):after {
    right: 25px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(4), .counter-card-wrap.style-two .counter-card:nth-child(4) {
    left: 95px;
  }
  .counter-card-wrap.style-one .counter-card p, .counter-card-wrap.style-two .counter-card p {
    max-width: 65%;
  }
  .feature-card.style-one h3 {
    max-width: 100%;
  }
  .feature-area.style-five .counter-card-wrap .counter-card, .feature-area.style-seven .counter-card-wrap .counter-card {
    width: 207px;
    height: 207px;
  }
  .feature-area.style-six .feature-img-wrap {
    margin-top: -70px;
  }
  .simple-area.style-one {
    padding: 125px 90px;
  }
  .simple-area.style-one .simple-img-wrap {
    right: 110px;
  }
  .testimonial-slider-one .slider-btn {
    margin-top: -65px;
  }
  .testimonial-card.style-one .client-quote-wrap {
    margin-top: 20px;
  }
  .testimonial-card.style-three p {
    padding: 0 120px;
  }
  .tour-area.style-two {
    padding-bottom: 500px;
  }
  .tour-area.style-two .text-shape {
    top: 8%;
  }
  .tour-area.style-two .tour-card-wrap > div:nth-child(2) .tour-card {
    margin-top: 120px;
  }
  .tour-area.style-two .tour-card-wrap > div:nth-child(3) .tour-card {
    margin-top: 220px;
  }
  .tour-area.style-two .tour-card-wrap > div:nth-child(4) .tour-card {
    margin-top: 320px;
  }
  .pricing-card.style-one {
    padding: 45px 50px 50px;
  }
  .pricing-card.style-one h6 {
    margin: 0 30px;
  }
  .blog-slider-two .swiper-wrapper .swiper-slide.slide-25 {
    width: 23%;
  }
  .blog-slider-two .swiper-wrapper .swiper-slide.slide-50 {
    width: 48%;
  }
  .contact-card-wrap .contact-card {
    padding: 30px 53px;
  }
  .contact-card-wrap .contact-card .contact-icon {
    width: 99px;
    height: 99px;
  }
  .contact-card-wrap .contact-card .contact-icon i {
    font-size: 50px;
  }
  .contact-card-wrap .contact-card .contact-info {
    width: calc(100% - 132px);
  }
}
@media only screen and (min-width: 1600px) {
  .container-fluid {
    max-width: 1920px;
  }
  .container.style-two {
    max-width: 1480px;
  }
  .container.style-three {
    max-width: 1400px;
  }
  .hero-area.style-one .hero-img-shape {
    max-width: auto;
  }
  .hero-area.style-one .hero-content span {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  .hero-area.style-one .hero-content h1 {
    font-size: 80px;
    line-height: 90px;
  }
  .hero-area.style-one .hero-content p {
    padding: 0 140px;
  }
  .hero-area.style-two .hero-content span {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  .hero-area.style-two .hero-content h1 {
    font-size: 80px;
    line-height: 90px;
  }
  .hero-search-box {
    padding: 45px 75px 39px;
  }
  .hero-search-box .hero-search-tablist .nav-item {
    margin-right: 65px;
  }
  .tour-card.style-one, .tour-card.style-two {
    padding: 25px 22px 20px;
  }
  .tour-card.style-one h3, .tour-card.style-two h3 {
    max-width: 85%;
  }
  .simple-area.style-one {
    padding: 155px 130px;
  }
  .simple-area.style-one .simple-img-wrap {
    right: 110px;
  }
  .counter-card-wrap.style-one .counter-card, .counter-card-wrap.style-two .counter-card {
    padding-left: 0;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(1):after, .counter-card-wrap.style-two .counter-card:nth-child(1):after {
    right: 50px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(2), .counter-card-wrap.style-two .counter-card:nth-child(2) {
    left: 65px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(2):after, .counter-card-wrap.style-two .counter-card:nth-child(2):after {
    right: 75px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(3), .counter-card-wrap.style-two .counter-card:nth-child(3) {
    left: 105px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(3):after, .counter-card-wrap.style-two .counter-card:nth-child(3):after {
    right: 65px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(4), .counter-card-wrap.style-two .counter-card:nth-child(4) {
    left: 135px;
  }
  .counter-card-wrap.style-one .counter-card p, .counter-card-wrap.style-two .counter-card p {
    font-size: 20px;
    line-height: 30px;
    max-width: 59%;
  }
  .counter-card-wrap.style-one .counter-card {
    padding-left: 0;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(1):after {
    right: 50px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(2) {
    left: 65px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(2):after {
    right: 75px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(3) {
    left: 105px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(3):after {
    right: 65px;
  }
  .counter-card-wrap.style-one .counter-card:nth-child(4) {
    left: 135px;
  }
  .counter-card-wrap.style-one .counter-card p {
    font-size: 20px;
    line-height: 30px;
    max-width: 59%;
  }
  .feature-area.style-four .feature-content {
    margin-top: 45px;
  }
  .feature-area.style-four .feature-content .section-title {
    left: -120px;
    position: relative;
  }
  .feature-area.style-four .feature-content .section-para {
    margin-left: -22px;
  }
  .feature-area.style-four .feature-content h6,
  .feature-area.style-four .feature-content .feature-list {
    padding-left: 65px;
  }
  .feature-area.style-four .feature-content .feature-list li {
    font-size: 24px;
  }
  .feature-area.style-five .feature-img, .feature-area.style-seven .feature-img {
    width: calc(100% + 40px);
  }
  .feature-area.style-five .feature-content, .feature-area.style-seven .feature-content {
    width: calc(100% - 140px);
    margin-left: auto;
    margin-top: 50px;
  }
  .feature-area.style-five .feature-content .counter-card-wrap .counter-card p, .feature-area.style-seven .feature-content .counter-card-wrap .counter-card p {
    padding: 0 20px;
  }
  .testimonial-card.style-two {
    padding: 35px 50px 45px;
  }
  .promo-area .promo-img-one {
    left: 120px;
  }
  .product-tablist .nav-item {
    margin-right: 130px;
  }
  .feature-area.style-one .feature-content {
    padding-left: 100px;
  }
  .feature-area.style-one .feature-content .feature-list {
    margin-right: 45px;
  }
  .feature-area.style-two .feature-content .tours-features-wrap .tours-feature-item:nth-child(even) {
    padding-left: 40px;
  }
  .blog-slider-two .swiper-wrapper .swiper-slide.slide-25 {
    width: 23%;
  }
  .blog-slider-two .swiper-wrapper .swiper-slide.slide-50 {
    width: 44%;
  }
  .cart-wrapper {
    padding: 80px 77px 80px;
  }
  .cart-wrapper.style-two {
    padding: 115px 120px;
  }
  .payment-method {
    padding: 33px 45px;
  }
}
@media only screen and (min-width: 1920px) {
  .container-fluid.style-one {
    padding-left: 100px;
    padding-right: 100px;
  }
  .container-fluid.style-two {
    padding-left: 95px;
    padding-right: 95px;
  }
  .container-fluid.style-three {
    padding-left: 100px;
  }
  .container-fluid.style-four {
    padding-left: 45px;
    padding-right: 45px;
  }
  .container.style-one {
    max-width: 1520px;
  }
  .container.style-three {
    max-width: 1350px;
  }
  .ps-xxl-55 {
    padding-left: 5.5rem !important;
  }
  .ps-xxl-75 {
    padding-left: 7.5rem !important;
  }
  .gx-xxl-23 {
    --bs-gutter-x: 2.3rem;
  }
  .hero-area.style-three {
    margin: -76px 10px 0;
  }
  .hero-area.style-three .hero-slide-item .container-fluid {
    padding-left: 85px;
    padding-right: 85px;
  }
  .hero-area.style-three .hero-slide-item .hero-content h1 {
    padding-right: 25px;
  }
  .map-area.style-one {
    padding-left: 80px;
    padding-right: 60px;
  }
  .map-area.style-two .map-shape-one {
    left: 90px;
  }
  .map-area.style-two .tour-map-area .map-destination-item.style-one {
    left: 24%;
  }
  .map-area.style-two .tour-map-area .map-destination-item.style-two {
    left: 34%;
  }
  .map-area.style-two .tour-map-area .map-destination-item.style-three {
    left: 59.5%;
  }
  .feature-card.style-one {
    padding: 39px 36px 25px;
  }
  .feature-card.style-one h3 {
    max-width: 86%;
  }
  .feature-area.style-three .feature-content {
    padding-right: 120px;
  }
  .feature-area.style-three .feature-content p {
    padding-right: 60px;
  }
  .feature-area.style-three .feature-bg {
    width: calc(100% + 38px);
    margin-left: -38px;
  }
  .blog-card.style-one h3 {
    max-width: 90%;
  }
}

.feature-area .feature-img-wrapper img{
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 15px;
}
.destination_images{
  height: 400px;
  object-fit: cover;
  width: 100%;
}
.tour-card.style-five .tour-info .btn{
  padding: 12px 17px 12px 17px;
}
.testi_monial_img{
  height: 200px;
  object-fit: cover;
  width: 100%;
}
:root {
  --theme-color :#24584C;
  --icon-font: 'Font Awesome 6 Pro';
}

.fw-medium {
  font-weight: 500 !important;
}
img{
  max-width: 100%;
  height: auto;
}

.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #ffffff;
  background-color: #82b440;
  padding: 10px 20px;
  box-shadow: 0 1px 20px 1px var(--theme-color);
  font-size: 13px;
  font-weight: 600;
  z-index: 10000;
}/* Keep this part */
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: #ffffff;
  background-color: #82b440;
  padding: 10px 20px;
  box-shadow: 0 1px 20px 1px var(--theme-color);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  z-index: 10000;
}

/* WhatsApp Button */
.buy-now-btn.btn-2 {
  top: auto;
  bottom: 20px;
  left: auto;
  right: 20px;
  padding: 10px;
  font-size: 50px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  box-shadow: 0 1px 8px 1px #f2f2f2;
}

/* Call Button */
.buy-now-btn.btn-3 {
  top: auto;
  bottom: 20px;
  right: auto;
  left: 20px;
  padding: 10px;
  font-size: 35px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  box-shadow: 0 1px 8px 1px #f2f2f2;
}

.buy-now-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
}

/* Updated Animation */
@keyframes rubberBand2 {
  0%   { transform: translateY(-50%) scale(1); }
  30%  { transform: translateY(-50%) scale3d(1.25, 0.75, 1); }
  40%  { transform: translateY(-50%) scale3d(0.75, 1.25, 1); }
  50%  { transform: translateY(-50%) scale3d(1.15, 0.85, 1); }
  65%  { transform: translateY(-50%) scale3d(0.95, 1.05, 1); }
  75%  { transform: translateY(-50%) scale3d(1.05, 0.95, 1); }
  100% { transform: translateY(-50%) scale(1); }
}
@keyframes rubberBand3 {
  0%   { transform: scale(1); }
  30%  { transform: scale3d(1.25, 0.75, 1); }
  40%  { transform: scale3d(0.75, 1.25, 1); }
  50%  { transform: scale3d(1.15, 0.85, 1); }
  65%  { transform: scale3d(0.95, 1.05, 1); }
  75%  { transform: scale3d(1.05, 0.95, 1); }
  100% { transform: scale(1); }
}

/* Animation trigger */
.buy-now-btn.animate {
  animation: rubberBand2 1s ease-in-out;
}

.buy-now-btn.animate.btn-3,
.buy-now-btn.animate.btn-2 {
  animation: rubberBand3 1s ease-in-out;
}
@media(max-width:768px){

  .buy-now-btn{
    padding: 6px 8px;
    font-size: 11px;
    right: 7px;
  }
  .buy-now-btn.btn-3{
    width: 55px;
    height: 55px;
    font-size: 27px;
  }
  .buy-now-btn.btn-2{
    width: 55px;
    height: 55px;
    font-size: 40px;
  }
}

.single-section {
  position: relative;
  img {
    max-height: 350px;
    object-fit: cover;
    border-radius: 15px;
  }
}

.single-section .image_section {
  position: relative;
}

.single-section .image_section .view-all {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(231, 56, 39, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(231, 56, 39, 0) 100%);
  margin-bottom: 0;
  padding: 10px;
  text-transform: capitalize;
  color: white;
  font-weight: 800;
  line-height: 1;
}

.single-section .image_section .slider-thumbnail {
  margin-top: 5px;
  overflow: hidden;
}

.single-section .image_section .slider-thumbnail .slick-slide>div {
  margin: 0 5px;
}

.single-section .image_section .slider-thumbnail .slick-list {
  margin-left: -5px;
  margin-right: -5px;
}

.single-section .facility_sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: white;
  margin-top: 20px;
}

.single-section .facility_sec .icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 50px;
  position: relative;
}

.single-section .facility_sec .icon-box svg {
  width: 30px;
  height: auto;
  fill: var(--theme-color );
}

.single-section .facility_sec .icon-box .content {
  margin-left: 15px;
}

.single-section .facility_sec .icon-box .content h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
}

.single-section .facility_sec .icon-box .content h6 {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
  margin-bottom: 0;
}

.single-section .facility_sec .icon-box:after {
  content: "";
  width: 1px;
  height: 25px;
  background-color: var(--theme-color );
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.single-section .facility_sec .icon-box:last-child:after {
  display: none;
}

.single-section .description-section .menu-top {
  margin-top: 30px;
  padding: 12px 0;
  background-color: white;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .menu-top li a {
  color: var(--theme-color );
  text-transform: uppercase;
  font-weight: 700;
  padding: 17px 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.active a {
  color: var(--theme-color );
  border-bottom: 2px solid var(--theme-color );
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.single-section .description-section .menu-top li.mobile-menu {
  display: none;
}

.single-section .description-section .menu-top.sticky {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 3px 20px 0px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  padding: 16px 0;
  -webkit-animation: smoothScroll 1s forwards;
  animation: smoothScroll 1s forwards;
}

.single-section .description-section .menu-top.sticky li a {
  padding: 15px 30px;
}

.single-section .description-section .menu-top.menu-up {
  margin-top: 0;
  margin-bottom: 30px;
}

.single-section .description-section .description-details .content-title {
  text-transform: uppercase;
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
}

.single-section .description-section .description-details .menu-part {
  margin-top: 20px;
  padding: 30px;
  background-color: white;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .description-section .description-details .menu-part.page-section .zoom-gallery>div:nth-child(-n+3) {
  margin-bottom: 0;
}

.single-section .description-section .description-details .menu-part .list-view {
  margin-top: 0;
}

.single-section .description-section .description-details .menu-part .list-view .list-img {
  width: 30%;
}

.single-section .description-section .description-details .menu-part .list-view .facility-icon {
  margin-top: 10px;
}

.single-section .description-section .description-details .menu-part .list-view .list-box {
  padding: 0;
}

.single-section .description-section .description-details .menu-part .list-view+.list-view {
  margin-top: 20px;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay {
  position: relative;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay .overlay-background i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  font-size: 22px;
  display: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part .zoom-gallery .overlay:hover .overlay-background i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-section .description-section .description-details .menu-part .zoom-gallery>div:nth-child(-n+3) {
  margin-bottom: 30px;
}

.single-section .description-section .description-details .menu-part.facility h6 {
  text-transform: capitalize;
  font-weight: 700;
  color: #222222;
}

.single-section .description-section .description-details .menu-part.facility h6 img {
  margin-right: 5px;
  width: 20px;
}

.single-section .description-section .description-details .menu-part.facility ul {
  margin-left: 10px;
}

.single-section .description-section .description-details .menu-part.facility ul li {
  display: block;
  text-transform: capitalize;
  line-height: 1.9;
}

.single-section .description-section .description-details .menu-part.facility ul li i {
  font-size: 8px;
  margin-right: 5px;
  color: rgba(0, 0, 0, 0.6);
}

.single-section .description-section .description-details .menu-part.map iframe {
  width: 100%;
  height: 420px;
  margin-bottom: -5px;
}

.single-section .description-section .description-details .menu-part.review .review-box .rating span {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-left: 10px;
  font-weight: 700;
}

.single-section .description-section .description-details .menu-part.review .review-box h6 {
  font-size: 14px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}

.single-section .description-section .description-details .menu-part.review .review-box p {
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .description-section .description-details .menu-part.review .review-box+.review-box {
  border-top: 1px solid #f9f9f9;
  padding-top: 12px;
  margin-top: 15px;
}

.single-section .description-section .description-details .menu-part.policy p {
  color: #212121;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.6;
}

.single-section .description-section .description-details.full-slider .menu-part {
  margin-top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 70px;
}

.single-section .description-section .description-details.full-slider .menu-part .row {
  margin-bottom: 20px;
}

.single-section .description-section.tab-section .menu-top {
  padding: 0;
  background-color: transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs {
  margin-bottom: 15px;
  background-color: white;
  border-bottom: none;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item.active {
  border: none;
  border-bottom: 2px solid var(--theme-color );
  color: var(--theme-color );
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
}

.single-section .description-section.tab-section .menu-top .nav-tabs .nav-item .nav-link.active {
  border: none;
  border-bottom: 2px solid var(--theme-color );
  color: var(--theme-color );
}

.single-section .description-section.tab-section .menu-top.sticky {
  background-color: white;
  margin-bottom: 0;
}

.single-section .description-section.tab-section .menu-top.sticky .nav-tabs {
  margin-bottom: 0;
}

.single-section .description-section.tab-section .description-details .menu-part {
  margin-top: 0;
}

.single-section .single-sidebar {
  background-color: white;
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar h4.title {
  text-transform: capitalize;
  font-weight: 700;
  margin-top: -4px;
}

.single-section .single-sidebar p {
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.single-section .single-sidebar p i {
  font-size: 13px;
  margin-right: 10px;
  color: rgba(0, 0, 0, 0.59);
}


.single-section .single-sidebar .newsletter-sec {
  padding: 20px;
}

.single-section .single-sidebar .newsletter-sec .button {
  margin-top: 15px;
  text-align: right;
}

.single-section .single-sidebar .newsletter-sec .button .btn {
  padding: 6px 14px;
  font-size: 14px;
  text-transform: capitalize;
}

.single-section .single-sidebar .overlay-map {
  position: relative;
  margin-bottom: 10px;
}

.single-section .single-sidebar .overlay-map img {
  height: 100px;
  width: 100%;
}

.single-section .single-sidebar .overlay-map iframe,
.single-section .single-sidebar .overlay-map .map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.0001;
  z-index: 1;
}

.single-section .single-sidebar .overlay-map h6 {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--theme-color );
  text-transform: capitalize;
  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
  z-index: 0;
  font-weight: 600;
  margin-bottom: 0;
}

.single-section .single-sidebar .price-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-section .single-sidebar .price-part .left-part a {
  color: var(--theme-color );
  font-weight: 700;
  text-transform: capitalize;
}

.single-section .single-sidebar .price-part .left-part span {
  display: block;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 24px;
}

.single-section .single-sidebar .price-part .left-part span i {
  font-size: 10px;
  margin-right: 5px;
  color: green;
}

.single-section .single-sidebar .price-part .left-part span.red {
  color: darkred;
}

.single-section .single-sidebar .price-part .right-part {
  margin-left: auto;
  text-align: right;
}

.single-section .single-sidebar .price-part .right-part span {
  color: rgba(0, 0, 0, 0.4);
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 700;
}

.single-section .single-sidebar .price-part .right-part p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--theme-color );
}

.single-section .single-sidebar .book-btn-section .btn-rounded {
  padding: 6px 14px;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 0;
}

.single-section .single-sidebar .contact-title {
  color: var(--theme-color );
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.single-section .single-sidebar .bottom_sec {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .bottom_sec h6 {
  text-transform: capitalize;
  color: var(--theme-color );
  font-size: 14px;
  font-weight: 700;
}

.single-section .single-sidebar .bottom_sec h6:last-child {
  margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-top: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-section .single-sidebar .weather-sec li svg {
  width: 40px;
  margin: 0;
}

.single-section .single-sidebar .weather-sec li h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.single-section .single-sidebar .weather-sec li h6 {
  font-size: 12px;
  margin-bottom: 0;
}

.single-section .single-sidebar .weather-sec li+li {
  margin-left: 20px;
}

.single-section .single-sidebar .social-box {
  margin-top: 18px;
}

.single-section .single-sidebar .social-box i {
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: white;
  padding: 9px;
  background-color: var(--theme-color );
  border-radius: 100%;
  width: 32px;
  height: 32px;
  text-align: center;
  margin-right: 3px;
}

.single-section .single-sidebar+.single-sidebar {
  margin-top: 30px;
}

.single-section .single-sidebar .order-cart .cart-items {
  margin-top: 20px;
}

.single-section .single-sidebar .order-cart .cart-items .items {
  position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items h6 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items h5 {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: var(--theme-color );
  font-weight: 500;
  margin-bottom: 0;
}

.single-section .single-sidebar .order-cart .cart-items .items+.items {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box {
  width: 120px;
  margin-top: 10px;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group {
  -webkit-box-shadow: 0 2px 4px 0 #dedede;
  box-shadow: 0 2px 4px 0 #dedede;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .btn {
  padding: 5px 10px;
  font-size: 10px;
  line-height: 1;
  background-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .qty-box .input-group .form-control {
  padding: 2px;
  width: 50px;
  text-align: center;
  border-color: #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-items .items .price {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6 {
  padding-left: 25px;
  position: relative;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:after {
  content: "";
  left: 0;
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid green;
  top: 2px;
}

.single-section .single-sidebar .order-cart .cart-items .items.veg h6:before {
  content: "";
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: green;
  position: absolute;
  border-radius: 100%;
  top: 5px;
}


.single-section .single-sidebar .order-cart .cart-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f9f9f9;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total {
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.single-section .single-sidebar .order-cart .cart-bottom .sub-total span {
  float: right;
}

.single-section .single-sidebar .order-cart .cart-bottom p {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 0;
  max-width: 70%;
}

.single-section .single-sidebar .order-cart .cart-bottom .checkout {
  margin-top: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart {
  text-align: center;
  margin-top: 50px;
}

.single-section .single-sidebar .order-cart .empty-cart h5 {
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  margin-bottom: 20px;
}

.single-section .single-sidebar .order-cart .empty-cart img {
  margin-bottom: 20px;
  opacity: 0.5;
}

.single-section .single-sidebar .order-cart .empty-cart p {
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  color: rgba(0, 0, 0, 0.64);
}

.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div {
  background-color: var(--theme-color );
}


.phone_res-float-btn img {
  width: 25px;
  height: 25px;
}

.terms-content h3 {
  font-weight: 600;
  font-size: 30px;
}

.terms-list li {
  list-style: auto !important;
  display: block !important;
}

.sidebar-item {
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: 0px 6px 35px rgba(0, 0, 0, 0.08);
}

.sidebar-item>h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  color: #000;
  border-bottom: 2px solid var(--theme-color );
}

.title-1 h4,
.title-1 h3 {
  font-weight: 600;
  font-size: 30px;
  position: relative;
  margin-bottom: 45px;
}

.title-1 h4:before,
.title-1 h3:before {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  content: "";
  background-color: var(--theme-color );
}

.sidebar-category {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

.sidebar-category li {
  list-style: none;
  margin-bottom: 1px;
  width: 100%;
  margin-bottom: 5px;
}

.sidebar-category li .active {
  background: var(--theme-color );
  color: #FFF;
}

.sidebar-category li a {
  background: #ffffff none repeat scroll 0 0;
  color: #000;
  display: block;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 20px;
  text-transform: capitalize;
  box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
  border-radius: 6px;
}

.sidebar-category li a:hover {
  background: var(--theme-color );
  color: #fff;
}

.sidebar-category li a:after {
  content: "\f061";
  font-family: 'Font Awesome 6 Pro';
  float: right;
  font-weight: 900;
}

.bg-banner {
  background-size: cover;
  background-position: center;
  width: 100%;
  background-repeat: no-repeat;
  position: relative;
}

.same-section-spacing {
  padding: 100px 0 100px;
}

.bg-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
}

.banner-box {
  .breadcrumb {
    background-color: transparent;
  }
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: .25rem;
}

.breadcrumb {
  display: inherit !important;
  text-align: center;
}

.breadcrumb {
  background: transparent;
  padding: 10px 0;
}

.breadcrumb {
  background: transparent;
  padding: 10px 0;
}

.breadcrumb li {
  display: inline-block;
}

.breadcrumb-item a {
  font-weight: 600;
}

.banner-box {
  .breadcrumb-item.active {
    color: #fff;
  }
}

.banner-box {
  .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
  }
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: .5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item+.breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item+.breadcrumb-item::before {
}

.banner-box h2 {
  margin-bottom: 0 !important;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 45px;
}

@media(max-width:768px) {
  .banner-box h2 {
    font-size: 30px;
  }
}

.forum-main-image {
  padding: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 15px 0px rgb(0 0 0 / 6%);
  box-shadow: 0px 2px 15px 0px rgb(0 0 0 / 6%);
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #fff;
  border: 1px solid var(--theme-color );
}

.forum-main-image img {
  width: 100%;
}

.forum-main-image img {
  border-radius: 5px;
  margin-bottom: 0;
}

.forum-details h3 {
  font-size: 35px;
  margin-bottom: 30px;
}
.spad {
  padding-top: 100px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media(max-width:768px){
  .spad{
    padding: 140px 0 60px;
  }
}
.breadcrumb__text {
  text-align: center;
}

.breadcrumb__links {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 25px;
  border-bottom: none;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  text-align: center;
}

.breadcrumb__links a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-right: 26px;
  display: inline-block;
  position: relative;
}

.breadcrumb__links span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-right: 26px;
  display: inline-block;
  position: relative;
}

.breadcrumb__links a::after {
  position: absolute;
  right: -18px;
  top: 0px;
  font-family: 'Font Awesome 6 Pro';
  content: "\f105";
  font-size: 20px;

  font-weight: 900;
}

.breadcrumb__links span:last-child {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-right: 0;
  display: inline-block;
  position: relative;
}

.breadcrumb__links span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-right: 26px;
  position: relative;
}

.breadcrumb__text h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
}


.single-section .h2,
.single-section .h3 {
  color: #000;
  font-weight: 600;
}

/*service pages*/

.single-section .detail {
  align-items: center;
  --bs-gutter-y: 1.5rem;
}

.single-section .detail img {
  border-radius: 10px;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.single-section .detail .h3,
.single-section .detail h3 {
  color: #000;
  font-weight: 600;
}

/*sidelist*/

.single-section .sidebar-item {
  margin-bottom: 30px;
  position: relative;
  background-color: transparent;
  box-shadow: none;
  border-radius: 10px;
}

/*book now*/

.mb-30 {
  margin-bottom: 30px;
}


.bg-light-dark {
  background-image: linear-gradient(180deg, rgba(var(--white-rgb), 0.07) 42.67%, #f8ffe8 89.38%);
}

.single-service-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.single-service-wrap .destination {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  line-height: 157.143%;
  letter-spacing: 0.42px;
  margin-top: -7px;
  i {
    font-size: 18px;
    color: var(--theme-color );
  }
}

.single-service-wrap:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}

.single-service-wrap:hover .details .btn-wrap .read-more-text span {
  background: #fff;
  color: #fa4318;
  color: var(--theme-color );
}

.single-service-wrap .thumb {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 350px;
  border-radius: 15px;
  transition: 0.3s;
  margin-inline: auto;
}

.single-service-wrap:hover .thumb {
  border-color: var(--theme-color );
}

.single-service-wrap:hover .thumb img {
  transition: 0.3s;
}

.single-service-wrap .thumb:after {
  left: -30px;
}

.single-service-wrap .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-service-wrap .details .icon {
  background: #fff;
  height: 39px;
  line-height: 50px;
  margin-left: auto;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
  width: 40px;
  top: 0px;
  right: 15px;
  font-size: 20px;
  color: var(--theme-color );
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0px;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid var(--theme-color );
}

.single-service-wrap .details {    
  position: relative;
  margin-left: 136px;
  padding: 35px 25px;
  margin-top: -120px;
  z-index: 1;
}
@media(max-width:768px){
  .single-service-wrap .details{
    margin-left: 20px;
  }
}
.single-service-wrap .details:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 0px;
  background-color: #ffffff;
  -ms-transform: skewY(2deg);
  transform: skewY(2deg);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
  z-index: -1;
}
.single-service-wrap .detailes_top {
  margin-bottom: 12px;
}

.single-service-wrap .border-layer{
  position:absolute;
  left:-12px;
  top:-30px;
  z-index:-2;
  width:32px;
  bottom:-10px;
  border:4px solid var(--theme-color );
  -ms-transform: skewY(20deg);
  transform: skewY(20deg);
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.single-service-wrap:hover .border-layer{
  -ms-transform: skewY(-20deg);
  transform: skewY(-20deg);
}
.single-service-wrap h5 {
  transition: all 0.3s ease-in;
  font-family: var(--title-font);
  position: relative;
  color: #222;
  font-size: 24px;
  margin-top: -10px;
  line-height: 0.9;
  text-align: left;
  margin-top: -10px;
  margin-bottom: 00;
  font-weight: 600;
}

.single-service-wrap .details p {
  line-height: 22px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-align: left;
}

.single-service-wrap .details .btn-wrap .read-more-text {
  color: #080c24;
  color: #222;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-in;
}

.single-service-wrap .details .btn-wrap .read-more-text:after {
  display: none;
}

.single-service-wrap .details .btn-wrap .read-more-text span {
  color: #fff;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  transition: all 0.3s ease-in;
  width: 26px;
}

.service-details-wrap .thumb .icon,
.single-service-wrap .details .btn-wrap .read-more-text span {
  background: #fa4318;
  background: var(--theme-color );
  border-radius: 50%;
  margin-left: auto;
  text-align: center;
}

.service-details-wrap .thumb .icon {
  height: 70px;
  line-height: 68px;
  margin-bottom: -70px;
  position: relative;
  right: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
}

.service-details-wrap .thumb .icon img {
  width: auto;
}

.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 23px 0 -0.5em 0;
  list-style-type: none;
  position: relative;
}
.breadcumb-wrapper:before
{
  mix-blend-mode: multiply;
}

[data-overlay="theme"]:before {
  background-color: var(--theme-color);
}
[data-overlay]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 3px;
  list-style: none;
  position: relative;
}

.breadcumb-menu li:after {
  content: "\f061";
  position: relative;
  margin-left: 6px;
  font-weight: 900;
  font-size: 15px;
  font-family: "Font Awesome 6 Pro";
}

.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.breadcumb-menu li:last-child:after {
  display: none;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  word-break: break-word;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.breadcumb-title {
  margin: -0.15em 0 -0.18em 0;
  line-height: 1.1;
  font-weight: 800;
}

@media (min-width: 1300px) {
  .breadcumb-title {
    font-size: 49px;
  }
}

.breadcumb-wrapper {
  background-color: #110F0F;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.breadcumb-wrapper .breadcumb-content {
  padding: 130px 0 ;
  position: relative;
  z-index: 1;
  text-align: center;
}

.breadcumb-wrapper:before {
  mix-blend-mode: multiply;
}

.breadcumb-wrapper .breadcumb-thumb {
  position: relative;
  z-index: 1;
  text-align: end;
  margin: -124px -50px 0px 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .breadcumb-wrapper .breadcumb-content {
    --space: 90px;
  }
  .breadcumb-menu {
    margin: 25px 0 -0.5em 0;
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 16px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-wrapper {
    text-align: center;
  }
  .breadcumb-wrapper .breadcumb-content {
    --space: 80px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .breadcumb-wrapper .breadcumb-content {
    padding: 70px 0;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .breadcumb-wrapper .breadcumb-content {
    padding: 70px 0;
  }
  .breadcumb-title {
    font-size: 27px;
  }
}
.single-section{
  position: relative;
  padding: 35px 0;
}
.single-service-details{
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.single-service-details img{
  width: 100%;
  height: 100%;
  max-height: 450px;
  min-height: 450px;
  object-fit: cover;
}
.single-service-details .title{
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.333;
  font-weight: 700;
}
.single-service-details strong, .single-service-details b{
  font-size: 17px;
  font-weight: 700;
}
.single-service-details a{
  color: var(--theme-color);
  transition: 0.2s;
}
.single-service-details a:hover{
  color: var(--theme-color);
}
.single-service-details .content-box{
  margin: 0 0 0 0;
  padding: 15px 30px;
  position: relative;
}
.single-service-details .content-box ul{
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.single-service-details .content-box ul li{
  display: block;
  position: relative;
}
.single-service-details .content-box ul li:before{
  position: relative;
  content: '\f0a4';
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: var(--theme-color);
  margin-right: 5px;
}


.single-section .sidebar-weight .inner-box{
  position: relative;
  display: block;
  background: #e4eef3;
  padding: 100px 30px 40px 30px;
}

.single-section .sidebar-weight .inner-box .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.single-section .sidebar-weight .inner-box .bg-layer:before{
  position: absolute;
  content: '';
  background-color: #222;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: inherit;
}

.single-section .sidebar-weight .inner-box .logo{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 26px;
}

.single-section .sidebar-weight .inner-box .mini-title{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  color: var(--theme-color);
}

.single-section .sidebar-weight .inner-box h2{
  display: block;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 8px;
  color: #fff;
}

.single-section .sidebar-weight .inner-box p{
  margin-bottom: 22px;
  color: #fff;
}

.single-section .sidebar-weight .inner-box .theme-btn{
  padding: 13px 30px;
}

.single-section .ripped-shape{
  position: absolute;
  transform: scaleY(-1);
  width: 100%;
  height: 488px;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.8;
  border-radius: 0;
}
.single-section .content-box{
  z-index: 2;
}
.sidebar-weight{
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}

.single-section .text-box {
  margin-bottom: 32px;
}
.single-section .content{
  padding-bottom: 20px;
}

.single-section .image_row img{
  border-radius: 12px;
}
.single-section .content .single-item .icon-box {
  position: relative;
  display: block;
  margin-bottom: 23px;
}


@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
    /* Moves up */
  }

  100% {
    transform: translateY(0);
  }
}

.fixed__btns {
  position: fixed;
  right: 0;
  left: 50%;
  bottom: 6px;
  background-color: transparent;
  width: 94%;
  height: 50px;
  z-index: 99;
  padding: 0;
  gap: 11px;
  overflow: hidden;
  display: flex;
  transform: translateX(-50%);
}
header.active .main-header--two .mobile-nav__btn span{
  background-color: #fff;
}
.main-header--two.active .main-menu .main-menu__list > li.current a{
  color: var(--theme-color);
}
.main-header__logo img{
  padding: 0;
  width: 95px;
  border-radius: 10px;
}
.main-header--two.active .main-header__logo img{
  border-color: #fff;
}
@media(max-width:768px){
  .tripex-about-sec .tripex-image-box .tripex-image.image-one img{
    height: auto;
  }
  .tripex-about-sec .tripex-image-box .tripex-image.image-one{
    left: -20px;
  }

  .tripex-about-sec .tripex-image-box .tripex-image.image-two{
    display: none;
  }
  .tripex-about-sec .tripex-image-box .tripex-award-card{
    margin-left: 0;
    margin-inline: auto;
  }
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.single-section{
  .accordion-item {
    margin: 0 0 20px 0;
    background-color: var(--body-color);
    border-radius: 30px;
  }
  .accordion-item .accordion-header {
    margin-bottom: 0;
    border-radius: 30px;
    overflow: hidden;
  }
  .accordion-item:last-child {
    margin-bottom: 0;
  }
  .accordion-button {
    border: none;
    padding: 0 5px 0 30px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--title-font);
    color: var(--theme-color);
    text-align: left;
    gap: 10px;
    height: 60px;
  }
  .accordion-button:not(.collapsed) {
    color: #000;
    background-color: var(--secondaryColor) !important;
  }
  .accordion-button:not(.collapsed):after {
    transform: rotate(0);
    content: "\f068";
    background-color: var(--secondaryColor);
    color: #110F0F;
  }
  .accordion-button.collapsed {
    color: #110F0F;
  }
  .accordion-button:after {
    content: "\f067";
    font-family: var(--icon-font);
    font-weight: 900;
    border: none;
    width: 50px;
    height: 50px;
    background-image: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
  }
  .accordion-button:focus {
    box-shadow: none;
  }
  .accordion-body {
    padding: 20px 60px 23px 30px;
    font-size: 14px;
  }
  .accordion-body p {
    color: #525252;
  }
  .accordion-body p:last-child {
    margin-bottom: 0;
  }
}
.single-section h2{
  font-size: 30px;

}
.single-section h3{
  font-size: 25px;
}
.single-section.small-section img{
  margin-bottom: 10px;
}
.table-responsive {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: 8px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.table thead {
  background-color: #212529;
  color: #fff;
  font-weight: 600;
}

.table th,
.table td {
  padding: 14px 18px;
  text-align: left;
  border: 1px solid #dee2e6;
  vertical-align: middle;
}

.table tbody tr {
  transition: background-color 0.2s ease;
}

.table tbody tr:hover {
  background-color: #f8f9fa;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #fdfdfd;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

@media (max-width: 576px) {
  .table th,
  .table td {
    padding: 10px 12px;
    font-size: 14px;
  }
}

.header-logo{
  padding: 3px 0;
}
.header-logo img{

  width: 71px;
  background: #Fff;
  border-radius: 50%;
}
.contact-logo img{
  background-color: #ffffff;
  border-radius: 50%;
}
.contact-box2 .logo-area{
  padding: 17px 0;
  a img{
    width: 123px;
    background-color: #ffffff;
    border-radius: 50%;
  }
}
@media(max-width: 768px){
  .header-logo{
    padding: 4px 0;
  }
  .header-logo img{
    width: 77px;
  }
}
.mobile-logo img{
  width: 120px;
  background-color: #ffffff;
  border-radius: 50%;
}
.self_box{
  position: relative;
  border: 1px solid #c3c3c3;
  background-color: var(--body-color);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border-radius: 12px;
}
.self_box .content{
  padding: 15px ;
}
.self_box img{
  width: 100%;
  height: 220px;
  min-height: 220px;
  object-fit: contain;
}
.self_box  .self_title{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.self_box ul{
  font-size: 14px;
  letter-spacing: -0.02em;
}
.self_box .multi_btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.self_box .multi_btn a {
  padding: 10px 15px;

}
.single-section .self_box .multi_btn a {
  color: #fff;
}
.single-section .self_box{
  background-color: #fff;
}
@media(min-width: 768px){
  .header-layout3 .menu-top{
    padding: 0 30px;
  }
  .main-menu > ul > li, .menu-style2 > ul > li{
    margin-inline: 15px;
  }
}

/* button */
.vs-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--zoomvilla-base, #ff8a00);
  z-index: 1;
  color: var(--zoomvilla-white, #FFFFFF);
  font-size: 17px;
  padding: 13.5px 29px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 4px;
  overflow: hidden;
  transition: 500ms;
}
.vs-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--zoomvilla-black, #222222);
  z-index: -1;
  transition: all 500ms ease;
  transform: translateX(-100%);
  z-index: -1;
}
.vs-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 5px;
  background-color: var(--zoomvilla-black, #222222);
  z-index: -1;
  transition: all 500ms ease;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.vs-btn i {
  margin-left: 8px;
}
.vs-btn:hover::after {
  background-color: var(--zoomvilla-white, #FFFFFF);
}
.vs-btn:hover::before {
  transform: translateX(0%);
}
.vs-btn:hover .vs-btn__text span {
  animation: slideRight 500ms;
}


@media(max-width:768px){
  .single-service-details .content-box{
    padding: 10px;
  }
  .single-service-details .title {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 800;
  }
  .single-service-details .content-box ul li{
    margin-bottom: 5px;
  }
  .single-service-details img{
    max-height: 300px;
    min-height: 300px;
  }
}
@media(max-width: 768px){
  .main-slider-two__title {
    font-size: 23px;
    span{
      font-size: 25px;
    }
  }
  .main-header__logo img{
    width: 76px;
  }
  .main-header--two .main-header__inner{
    padding: 4px 0;
  }
  .main-slider-two__content{
    margin-top: 60px;
    margin-bottom: 150px;
    background-color: rgba(255,255,255,0.7);
  }
  .main-slider-two__subtitle{
    background-color: #00000078;
  }
  .main-slider-two__video{
    display: none;
  }
  .main-slider-two__carousel.owl-carousel .owl-nav{
    border-radius: 50px 0 0 50px;
    bottom: 86px;
    padding: 20px;
  }
  .about-four__thumb img{
    height: auto;
    width: 100%;
  }
  .about-four__thumb__item-small img{
    height: auto;
    width: 100%;
  }
  .tripex-service-card .thumbnail img{
    height: 150px;
  }
  .tripex-service-card .content{
    padding: 6px 20px;
  }
  .faq-page__feature__thumb img{
    height: 380px;
  }
  .main-footer__bottom__inner{

    padding-bottom: 60px;
    text-align: center;
  }
  .breadcrumb__text h2{
    font-size: 25px;
  }
  .breadcrumb__links{
    padding-inline: 0;
  }
  .breadcrumb__links a{
    font-size: 15px;
  }
  .breadcrumb__links span:last-child{
    font-size: 15px;
  }
  .single-section h2{

    font-size: 24px;
    margin-bottom: 16px;
  }
}

@media(max-width: 992px){
  header .collapse:not(.show){
    display: block;
  }
  .main-menu .nav-menu-wrapper{
    display: none;
  }
  .navbar-collapse{
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
    text-align: center;
  }
  .header-btn .btn-default{
    padding: 11px 40px 11px 11px;
  }
  .header-btn  .btn-default::before{
    width: 28px;
    height: 28px;
  }
}

/*==============================================
  Services Details
===============================================*/
.services-details {
  position: relative;
  display: block;
  padding: 35px 0px 35px;
  z-index: 1;
}

.services-details__content {
  position: relative;
  display: block;
}
.services-details__content-text1 p{
  margin-bottom: 18px;
}
.services-details__content-img1 {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.services-details__content-img1 img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

.services-details__content-text1 {
  position: relative;
  display: block;
  margin-top: 37px;
}

.services-details__content-text1 h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.services-details__content-text1 .text1 {
  margin: 0;
  margin-bottom: 25px;
}

.services-details__content-text1 .text2 {
  margin: 0;
}

.services-details__content-img2 {
  position: relative;
  display: block;
  margin-top: 37px;
  margin-bottom: 10px;
}

.services-details__content-img2-single {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.services-details__content-img2-single img {
  width: 100%;
}




.services-details__content-text2 {
  position: relative;
  display: block;
  margin-top: 37px;
}

.services-details__content-text2 h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.services-details__content-text2 p {
  margin: 0;
}

.services-details__content-text2-bottom {
  position: relative;
  display: block;
  margin-top: 37px;
}

.services-details__content-text2-bottom .row {
  align-items: center;
}

.services-details__content-text2-bottom-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.services-details__content-text2-bottom-img img {
  width: 100%;
}

.services-details__content-text2-bottom-content {
  position: relative;
  display: block;
  margin-left: 10px;
}

.services-details__content-text2-bottom-content ul {
  position: relative;
  display: block;
  padding: 0;
}

.services-details__content-text2-bottom-content ul li {
  position: relative;
  display: block;
}

.services-details__content-text2-bottom-content ul li+li {
  margin-top: 16px;
}

.services-details__content-text2-bottom-content ul li p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
}

.services-details__content-text2-bottom-content ul li p span::before {
  position: relative;
  display: inline-block;
  color: var(--theme-color);
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  top: 1px;
  right: 5px;
}

.services-details__content-text3 {
  position: relative;
  display: block;
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.services-details__content-text3-single {
  position: relative;
  display: block;
  color: #fff;
  margin-bottom: 0;
}

.services-details__content-text3-single .icon-box {
  position: relative;
  display: block;
  margin-bottom: 26px;
}
.services-details__content-text3-single .icon-box::before{
  display: none;
}

.services-details__content-text3-single .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 60px;
  line-height: 60px;
}

.services-details__content-text3-single h2 {
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.services-details__content-text3-single p {
  margin: 0;
}

.single-section{
  .faq-one--services {
    position: relative;
    display: block;
    margin-top: 45px;
  }

  .faq-one--services .faq-one-accrodion .accrodion-title h4 {
    color: #000;
  }

  .faq-one--services .faq-one-accrodion .accrodion {
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 10px;
  }

  .faq-one--services .faq-one-accrodion .accrodion-title h4::before {
    color: #000;
  }

  .faq-one--services .faq-one-accrodion .accrodion-content {
    background: #fff;
    border-radius: 10px;
  }

  .faq-one--services .faq-one-accrodion .accrodion-content p {
    color: #000;
  }
  .faq-one {
    position: relative;
    display: block;
    background: #000;
    padding: 120px 0 120px;
    z-index: 1;
  }

  .faq-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc((100% - 60px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }

  .faq-one .shape1 {
    position: absolute;
    bottom: 0px;
    right: -10px;
    opacity: 0.15;
    z-index: -1;
  }

  .faq-one .big-title {
    position: absolute;
    top: 160px;
    right: -60px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255, 0.09);
    font-size: 170px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(90deg);
  }

  .faq-one__inner {
    position: relative;
    display: block;
    max-width: 645px;
    width: 100%;
    float: right;
  }

  .faq-one__inner .sec-title__tagline .text h4 {
    color: #fff;
  }

  .faq-one__inner .sec-title__tagline .icon-box span::before {
    color: #fff;
  }

  .faq-one__inner .sec-title__title {
    color: #fff;
  }

  .faq-one__content {
    position: relative;
    display: block;
    margin-left: 20px;
  }

  .faq-one__content-faq {
    position: relative;
    display: block;
    z-index: 1;
  }

  .faq-one-accrodion {
    position: relative;
    display: block;
  }

  .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    background: rgba(255,255,255, 0.05);
    border: 1px solid rgba(255,255,255, 0.06);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 0px 35px 0px;
  }

  .faq-one-accrodion .accrodion.active {
    padding-bottom: 25px;
  }

  .faq-one__content-faq .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 10px;
  }

  .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 12px 0px 12px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }

  .faq-one-accrodion .accrodion-title h4 {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: capitalize;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }

  .faq-one-accrodion .accrodion-title h4::before {
    position: absolute;
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    content: "\f067";
    font-family: 'Font Awesome 5 Pro' !important;
  }

  .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
  }

  .faq-one-accrodion .accrodion-content {
    position: relative;
    display: block;
    padding: 21px 25px 20px;
    background: rgba(255,255,255, 0.07);
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .faq-one-accrodion .accrodion-content p {
    color: #fff;
    font-size: 15px;
    margin: 0;
  }
}
.page-header {
  position: relative;
  display: block;
  padding: 100px 0px 100px;
  overflow: hidden;
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.page-header__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  z-index: -1;
}

.page-header .shape1 {
  position: absolute;
  top: -130px;
  left: -120px;
  opacity: 0.5;
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  overflow: hidden;
}

.page-header__inner h2 {
  color: #fff;
  font-size: 50px;
  line-height: 1.1em;
  font-weight: 700;
  text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 18px;
}

.page-header__inner .thm-breadcrumb li {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1;
  list-style: none;
  margin-left: 5px;
  margin-right: 5px;
}

.page-header__inner .thm-breadcrumb li:first-child {
  margin-left: 0px;
}

.page-header__inner .thm-breadcrumb li:last-child {
  margin-right: 0px;
}

.page-header__inner .thm-breadcrumb li a {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb li span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  top: 2px;
}

.sidebar {
  position: relative;
  display: block;
}

.sidebar__single {
  position: relative;
  display: block;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  padding: 50px 30px 50px;
  border-radius: 10px;
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__single .title-box {
  position: relative;
  display: block;
  padding-bottom: 3px;
  margin-bottom: 35px;
  margin-top: -8px;
}

.sidebar__single .title-box::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--secondaryColor);
  content: "";
}

.sidebar__single .title-box::after {
  position: absolute;
  left: 36px;
  bottom: 0;
  width: 3px;
  height: 2px;
  background: var(--theme-color);
  content: "";
}

.sidebar__single .title-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  outline: none;
  background-color: #fff;
  color: #606060;
  font-size: 15px;
  font-weight: 600;
  padding-left: 20px;
  height: 60px;
  width: 100%;
  padding-right: 60px;
  border-radius: 3px;
  border: 1px solid var(--theme-color);
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: #606060;
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: #606060;
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: #606060;
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: #606060;
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: #606060;
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: #606060;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: #606060;
}

.sidebar__search-form button[type="submit"] {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 50px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  background-color: #000;
  color: #fff;
}

.sidebar__categories {
  position: relative;
  display: block;
}

.sidebar__categories-list {
  position: relative;
  display: block;
  padding: 0;
  margin-bottom: 0;
}

.sidebar__categories-list li {
  position: relative;
  display: block;
}

.sidebar__categories-list li+li {
  margin-top: 10px;
}

.sidebar__categories-list li a {
    position: relative;
    display: flex
;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 5px;
    padding: 0px 25px 0px;
    color: #000;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid var(--secondaryColor);
    padding: 11px 6px;
    font-weight: 700;
}

.sidebar__categories-list li a:hover,
.sidebar__categories-list li a.active {
  color: #fff;
  background: var(--theme-color);
}

.sidebar__categories-list li a span {
  position: relative;
  display: block;
}

.sidebar__categories-list li a span::before {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

.sidebar__download {
  position: relative;
  display: block;
}

.sidebar__download-list {
  position: relative;
  display: block;
}

.sidebar__download-list li {
  position: relative;
  display: block;
}

.sidebar__download-list li+li {
  margin-top: 10px;
}

.sidebar__download-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 5px;
  padding: 0px 25px 0px;
  color: #000;
  font-size: 18px;
  line-height: 55px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid var(--theme-color);
}

.sidebar__download-list li a:hover,
.sidebar__download-list li a.active {
  color: #fff;
  background: var(--theme-color);
}

.sidebar__download-list li a span {
  position: relative;
  display: block;
}

.sidebar__download-list li a span::before {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

.sidebar__contact {
  position: relative;
  display: block;
  border: none;
  background: none;
  z-index: 1;
}

.sidebar__contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  z-index: -1;
}

.sidebar__contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--theme-color);
  border-radius: 10px;
  content: "";
}

.sidebar__contact-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255, 0.26);
  border-radius: 50%;
  margin-bottom: 24px;
}

.sidebar__contact-icon span::before {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 25px;
  line-height: 25px;
}

.sidebar__contact-text {
  position: relative;
  display: block;
}

.sidebar__contact-text p {
  color: #fff;
}

.sidebar__contact-text h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-top: 5px;
}

.sidebar__contact-text h2 a {
  color: #fff;
}

.sidebar__contact-btn {
  position: relative;
  display: block;
  line-height: 0px;
  margin-top: 41px;
}




.sidebar__project-info {
  position: relative;
  display: block;
}

.sidebar__project-info-text {
  position: relative;
  display: block;
}

.sidebar__project-info-text p {
  margin: 0;
}


.sidebar__project-info-list {
  position: relative;
  display: block;
  margin-top: 27px;
}

.sidebar__project-info-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.sidebar__project-info-list li+li {
  margin-top: 22px;
}

.sidebar__project-info-list li span {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  min-width: 100px;
  margin-right: 18px;
}

.sidebar__project-info-list li a {
  color: #606060;
}

.sidebar__project-info-list li a:hover {
  color: var(--theme-color);
}

.sidebar__project-info-list li span::before {
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 18px;
  color: var(--thm-black);
  font-weight: 500;
  content: ":";
}

.sidebar__project-info-list li .rating-box a {
  color: var(--theme-color);
}

.sidebar__recent-post {
  position: relative;
  display: block;
}

.sidebar__recent-post-single {
  position: relative;
  display: block;
}

.sidebar__recent-post-single+.sidebar__recent-post-single {
  margin-top: 26px;
}

.sidebar__recent-post-img {
  position: relative;
  display: block;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar__recent-post-img img {
  width: 100%;
  transition: all 500ms ease;
}

.sidebar__recent-post-single:hover .sidebar__recent-post-img img {
  opacity: 0.6;
  transform: scaleX(1.05);
}

.sidebar__recent-post-content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.sidebar__recent-post-content p {
  margin: 0;
}

.sidebar__recent-post-content p span {
  position: relative;
  display: inline-block;
  color: var(--theme-color);
  font-size: 15px;
  line-height: 15px;
  padding-right: 2px;
  top: 1px;
}

.sidebar__recent-post-content h3 {
  font-size: 21px;
  line-height: 31px;
  font-weight: 600;
  margin-top: 6px;
}

.sidebar__recent-post-content h3 a {
  color: #000;
}

.sidebar__recent-post-content h3 a:hover {
  color: var(--theme-color);
}

.sidebar__tags {
  position: relative;
  display: block;
}

.sidebar__tags-list {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
  overflow: hidden;
}

.sidebar__tags-list li {
  position: relative;
  display: block;
  padding: 0px 5px 0px;
  float: left;
  margin-bottom: 10px;
}

.sidebar__tags-list li a {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  background: #fff;
  padding: 7px 15px 7px;
}

.sidebar__tags-list li a:hover {
  color: #fff;
  background: var(--theme-color);
}

@media(max-width: 768px){

  .page-header__inner h2{
    font-size: 25px;
  }
  .page-header__inner .thm-breadcrumb li{
    font-size: 14px;
  }
  .page-header__inner .thm-breadcrumb li span{
    font-size: 14px;
  }
  .page-header__inner .thm-breadcrumb li a{
    font-size: 14px;
  }
  .page-header{
    padding:50px 0 50px;
  }
  .sidebar__single{
    padding: 30px 10px;
    display: none;
  }
  .services-details__content-text2 h2{

    font-size: 26px;
    line-height: 33px;
  }
  .services-details__content-text1 h2{

    font-size: 30px;
    line-height: 38px;
  }
  .faq-one-accrodion .accrodion{
    padding-inline: 15px;
  }
  .blog-three__single-content .btn-box a{
    padding-inline: 20px;
  }
}


.float_btn{
  position: fixed;
  right: 20px;
  bottom: 10px;
  width: max-content;
  height: auto;
  padding: 7px 17px;
  border-radius: 40px;
  color: #fff;
  z-index: 99;
  font-size: 13px;
  display: flex;
  align-items: center;
  font-weight: 600;
  justify-content: center;
  gap: 2px;
}
.float_btn img{
  width: 15px;
  height: 15px;
}
.float_btn i{
  color: #000;
}

.float_whatsapp {
  background-color: #25D366;

}

.float_btn.float_call {
  color: #000;
  right: 170px;
  background-color: #ffffff;
  border: 1px solid #000;
}



#popup-form form {
  padding: 15px 25px 15px;
  margin-top: 00px;
  background: #fff;
  border: 1px solid #e7e5e5;
  border-radius: 5px;
  margin-bottom: 20px;
}

.contact-page-form {
  margin-top: 40px;
}

.form-sec h5 {
  color: #494f5d;
  font-size: 35px;
  font-weight: 700;
  position: relative;
  padding-bottom: 6px;
}

.form-sec h5::after {
  content: "";
  position: absolute;
  background: #ff6612;
  width: 40px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-40%);
}

.form-sec h5 span {
  color: #61c27c;
}

.form-content {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
}

.form-content .form-detail {
  width: 49%;
}

.form-content .form-detail input,
.form-content .form-detail .query-select,
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 8px 5px;
  border: 1px solid #cbcaca;
  border-radius: 5px;
}

.form-content label,
.form-field label {
  display: block;
  text-align: left;
  font-size: 15px;
  line-height: 25px;
  color: #333333;
  padding-bottom: 6px;
}

.form-content .form-detail input:focus,
.form-content .form-detail .query-select:focus,
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
}

.form-field {
  padding-top: 15px;
}

.form-content .form-detail input::placeholder,
.form-content .form-detail input,
.form-content .form-detail .query-select,
.form-field input::placeholder,
.form-field textarea::placeholder {
  font-size: 14px;
  color: #989595;
}

/* .form-field.submit-btn{
    margin-top: 10px;
  } */
  .form-field.submit-btn input {
    padding: 18px 0;
    background: #fc3f31;
    color: #fff;
    font-weight: 600;
  }

  .form-detail label span,
  .form-field label span {
    color: #fc3f31;
  }

  .modal-header{
    border-bottom: 0;
    justify-content: center;
  }
  .modal-header h5{
    color: #000;
    font-size: 30px;
  }
  .modal-header .btn-close{
    position: absolute;
    top: 5px;
    right: 5px;
  }
  .modal-body{
    padding: 0 25px;
  }
  .modal-body .form-control{
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 8px 22px 8px 11px;
    outline: none;
    width: 100%;
    font-size: 14px;
    font-family: "Poppins";
    color: #192024;
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    height: 45px;
    line-height: 1;
  }
  .modal-body label{
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-left: 8px;
    color: #000;
  }

  input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
  }
  input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
  }


/*home slider*/
#demo{
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../images/slider/slider.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 50px;
}
#demo .container{
  max-width: 1140px;
}
#demo .owl-carousel .owl-nav button.owl-next, #demo .owl-carousel .owl-nav button.owl-prev{
  width: 40px;
  height: 40px;
  color: #fff;
  fill: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.38) ;
  margin: 0;
  transition: all 0.3s 
  ease-in-out;
  border-radius: 50%;
}
#demo .owl-nav button.owl-prev{
  left: -38px;
}
#demo .owl-nav button.owl-next{
  right: -38px;
}
#demo .carousel-item img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.6);
}

.carousel-inner{
  overflow: visible;
}
.small__caption{
  line-height: 1.5;
}
.slider-caption div{
  font-family: var(--second-font);
}
.slider-caption{
  position: relative;
  color: #fff;
  text-align: center;
}
.slider-caption .caption-title{
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
}
.slider-caption .caption-title span{
  color: var(--theme-color);
}
.slider-caption .small__caption{
 font-family: var(--second-font);
 font-size: 20px;
 font-weight: 600;
 line-height: 1.3;
}
.slider-caption .description{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--second-font);
  margin-bottom: 25px;
}
/*form section*/
.form-section{
  background-color: var(--theme-color);
}
.form-section form{
  text-align: center;
}
.form-section form .title{
  color: #fff;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
/*.form-section form .title:before{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  width: 100px;
  height: 3px;
  background-color: #fff;
}*/
.form-section form .input-group-text{
  border-radius: 10px 0 0 10px;
  background-color: var(--theme-color);
  border: none;
  color: #fff;
}
.form-section form .form-control{
  padding: 9px;
  border-radius: 4px;
  box-shadow: none!important;
}
.form-section form .btn-bs{
  padding: 15px;
}
.btn-hover:hover{
  background-color: var(--theme-color);
}


.form_section{
  padding: 15px;
  background-color: #fff;
  position: relative;
  border-radius: 20px;
  padding-top: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.common-booking-form .form_section{
  border :1px solid #878787;
}
.form_section form{
  border-radius: 10px;
  padding: 0px;
}
.form-title{
  font-weight: 600;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  padding: 10px 40px;
  display: inline;
  background-color: var(--theme-color);
  color: #fff;
  width: max-content;
  font-size: 18px;
  border-radius: 0 0 100px 100px;
  margin: 0;
}

.form_section input:-internal-autofill-selected,
.form_section input:-webkit-autofill {
  background-color: transparent !important;
  box-shadow: 0 0 0px 1000px white inset !important;
}

.form_section form .form-control:focus{
  box-shadow: none;
}
.form_section form textarea.form-control{
  border: 1px solid #bababa;
  border-radius: 5px;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
}
.form_section form .form-group.text_area i{
  height: 100%;
    align-items: flex-start;
    padding-top: 10px;
}
.form_section form label{
  font-weight: 600;
  font-size: 13px;
}
.form_section .form-group {
  position: relative;
  margin-bottom: 9px;
}

.form_section .form-control{
  padding: 6px;
  box-shadow: none;
  border: 1px solid #bababa;
  border-left: none;
  border-radius: 0;
  padding-left: 47px;
  border-radius: 25px 5px 5px 25px;
  height: 46px;
}
.form_section form .btn-bs{
  width: 75%;
}
.form_section .form-group i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  text-align: center;
  line-height: 1;
  color: #000;
  font-size: 19px;
  opacity: 1;
  height: 46px;
  background: #f5f5f5;
  border: 1px solid #bababa;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1025px) {
  .home-form .form_section{
    position: relative;
    width: 88%;
    margin-left: auto;
  }
}
@media(max-width: 768px){

/*home slider*/
#demo .carousel-item img{
  height: 250px;
}
#demo .owl-nav button.owl-prev{
  left: 0px;
}
#demo .owl-nav button.owl-next{
  right: 0px;
}
.owl-nav button{
  top: auto;
  bottom: 0;
  transform: none;
}
.slider-caption .caption-title{
  font-size: 25px;
}
.slider-caption .small__caption{
  font-size: 15px;
}
.slider-caption .description{
  font-size: 13px;
  line-height: 1.3;
  margin-top: 10px;
}

#demo .owl-carousel .owl-nav button.owl-next, #demo .owl-carousel .owl-nav button.owl-prev{
  top: auto;
}
.thm-btn{

  line-height: 40px;
  padding: 0 20px 0;
}
.home-form .form_section{
  margin-top: 12px;
}
.col-xl-6:first-child .services-details__content-text3-single{
  margin-bottom: 20px;
}
}
.booking-page {
  background: #f9fbff; /* soft background for contrast */
  position: relative;
  overflow: hidden;
}

/* Card styling */
.booking-page .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(7, 36, 95, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.booking-page .card:hover {
  box-shadow: 0px 15px 40px rgba(7, 36, 95, 0.15);
}

/* Card header */
.booking-page .card-header {
  background: linear-gradient(135deg, var(--theme-color), #004aad);
  text-align: center;
  border: 0;
  border-radius: 12px 12px 0 0;
}

.booking-page .card-header .card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
  padding: 18px 0;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Form elements */
.booking-page .form-control,
.booking-page .form-select {
  height: 44px;
  border-radius: 8px;
  border: 1px solid #e0e6f1;
  font-size: 14px;
  padding: 10px 14px;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-page .form-control:focus,
.booking-page .form-select:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.15);
}

/* Textarea */
.booking-page textarea.form-control {
  min-height: 80px;
  resize: none;
}

/* Labels */
.booking-page label {
  color: #222;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

.booking-page label span {
  color: #e63946;
  padding-left: 4px;
}

/* Row spacing */
.booking-page .row>* {
  margin-top: 5px;
}

/* Submit button */
.booking-page .btn-theme {
  background: var(--theme-color);
  color: #fff;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 6px 18px rgba(0, 74, 173, 0.25);
}

.booking-page .btn-theme:hover {
  background: #00327d;
  transform: translateY(-2px);
  box-shadow: 0px 10px 24px rgba(0, 74, 173, 0.3);
}

/* Image styling */
.booking-page img {
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}
.section-title{
  position: relative;
  padding-bottom: 8px;
}
.section-title:before{
  content: '';
  width: 250px;
  height: 3px;
  background-color: var(--primaryColor);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.section-title.text-white:before{
  background-color: var(--secondaryColor);
}
.text-center .section-title:before,
.text-center.section-title:before{
  left: 50%;
  transform: translateX(-50%);
}
.section-title:after{
  content: '';
  width: 30px;
  height: 7px;
  background-color: var(--secondaryColor);
  position: absolute;
  bottom: -2px;
  left: 180px;
  z-index: 2;
  border-radius: 30px;
}
.text-center .section-title:after,
.text-center.section-title:after{
  left: calc(50% + 50px);
}
.section-title.text-white:after{
  background-color: var(--whiteColor);
}



.listing-item {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  margin: 0 0 24px 0;
  padding: 15px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #ddd;
}
@media (max-width: 991.98px) {
  .listing-item {
    padding: 15px;
  }
}


.listing-item .listing-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0 10px;
  max-height: 285px;
  object-fit: cover;

}
.listing-item .listing-img img {
  border-radius: 10px;
  width: 100%;
  transform: translateZ(0);
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  aspect-ratio: 1.7;
  object-fit: cover;
}
.listing-item .listing-img .fav-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 15px;
  z-index: 1;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .listing-item .listing-img .fav-item {
    font-size: 13px;
  }
  
}
.listing-item .listing-img .fav-item .featured-text {
  background: #ffffff;
  border-radius: 5px;
  min-width: 75px;
  padding: 5px 15px;
  font-size: 14px;
  color: #737373;
}
@media (max-width: 991.98px) {
  .listing-item .listing-img .fav-item .featured-text {
    font-size: 12px;
  }
}
.listing-item .listing-img .fav-item .fav-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.listing-item .listing-img .fav-icon.selected {
  background-color: var(--primaryColor);
  border: 1px solid var(--primaryColor) !important;
  color: #fff;
}
.listing-item:hover .listing-img img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  transform: scale(1.15);
}
.listing-item:hover .listing-title a {
  color: #127384 !important;
}
.listing-item .listing-content {
  margin-top: 15px;
}
.listing-item .listing-content .listing-features {
  position: relative;
  border-bottom: 1px solid #F4F4F4;
  margin: 0 0 15px;
  padding: 0 0 15px;
}
.listing-item .listing-content .listing-features .author-img {
  position: absolute;
  top: -35px;
  z-index: 2;
  right: 15px;
  border-radius: 50px;
}
.listing-item .listing-content .listing-features .author-img img {
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 2px solid #ffffff;
}
.listing-item .listing-content .listing-features .listing-title {
  margin-bottom: 5px;
  font-size: 20px;
}
.listing-item .listing-content .listing-features .listing-title a {
  font-weight: 600;
  color: #201F1D;
}
@media (max-width: 991.98px) {
  .listing-item .listing-content .listing-features .listing-title a {
    font-size: 18px;
  }
}
.listing-item .listing-content .listing-features h6 {
  font-size: 15px;
  color: #787878;
  font-weight: 400;
}
.listing-item .listing-content .listing-features .list-rating i.filled {
  color: var(--primaryColor);
  font-size: 14px;
}
.listing-item .listing-content .listing-features .list-rating i{
  color:#737373
}
@media (max-width: 991.98px) {
  .listing-item .listing-content .listing-features .list-rating i {
    font-size: 12px;
  }
}
.listing-item .listing-content .listing-features .list-rating {
  display: flex;
  align-items: center;
}

.woocommerce .star-rating span::before {
 color: var(--primaryColor) !important;
}
.woocommerce .star-rating::before {
 color: #737373;
}

.listing-item .listing-content .listing-features .list-rating span.rating_count {
  font-weight: 500;
  color: #737373;
  margin: 0 0 0 8px;
}

.list-rating span.rating_count {
  font-weight: 500;
  color: #737373;
  margin: 0 0 0 8px;
}
.listing-item .listing-content .listing-details-group {
  margin: 0 0 15px;
}
.listing-item .listing-content .listing-details-group ul {
  margin: 0 0 10px;
}
.listing-item .listing-content .listing-details-group ul:last-child {
  margin: 0;
}
.listing-item .listing-content .listing-details-group ul li {
  -ms-flex: 33.33%;
  flex: 33.33%;
  max-width: 33.33%;
  justify-content: center;
}
.listing-item .listing-content .listing-details-group ul li span img {
  line-height: 0;
  width: 16px;
  display: flex;
  justify-content: center;
}
.listing-item .listing-content .listing-details-group ul li p {
  color: #787878;
  margin: 0 0 0 8px;
}
@media (max-width: 991.98px) {
  .listing-item .listing-content .listing-details-group ul li p {
    font-size: 13px;
  }
}
.listing-item .listing-content .listing-location-details {
  background: #F2F7F6;
  padding: 8px;
  margin: 0 0 15px;
}
.listing-item .listing-content .listing-location-details .listing-price {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.listing-item .listing-content .listing-location-details .listing-price div{
  display: inline-block;
}

.listing-item .listing-content .listing-location-details .listing-price h6 {
  font-weight: 700;
  font-size: 24px;
  color: #FF0000;
  margin-bottom: 0;
  display: inline-block;
}
.listing-price-location {
  display: flex;
  align-items:center;

}
.listing-item .listing-content .listing-location-details .listing-price span {
  margin-right: 0;
  line-height: 0;
}
.listing-item .listing-content .listing-location-details .listing-price h6 bdi {
  font-weight: 700;
  font-size: 24px;
  color: #FF0000;
}

.listing-item .listing-content .listing-location-details .listing-price h6 span {
  color: rgb(130, 130, 130);
  font-size: 14px;
  font-weight: 400;
  margin-left: 5px;
}
.listing-item .listing-content .listing-details-group ul{

  display: flex
  ;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-justify-content: center;
  list-style-type: none;
}
.listing-item .listing-content .listing-details-group ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
  ;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.listing-item .btn{
  width: 100%;
  text-align: center;
  background: var(--primaryColor);
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  font-size: 20px;
}
.btn__rounded{
  background: #1390dc;
  color: #fff;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  padding: 11px !important;
}
.btn__rounded:after{
  background-color: var(--secondaryColor);
}
.btn__rounded.whatsapp{
  background-color: #25D366;
}
.btn__rounded:hover{
  color: #fff;
}
.content___Section{
  background: #f2f6ff;
  box-shadow: 0 -5px 6px #4573dc1c;
}
.call_responsive{
  display: none;
  background-color: #1390dc;
  color: #fff;
}
@media(max-width: 768px){
  .navbar-area .navbar-brand img{
    max-width: 70px;
  }
  .feature-area .feature-img-wrapper img{
    height: auto;
  }
  .tour-card.style-one .btn, .tour-card.style-two .btn {
    padding: 8.5px 10px;
}
.btn__rounded{
  width: 32px;
  height: 32px;
  min-width: 32px;
}
.img-hover-zoom .img-zoom img{
  height: auto;
    aspect-ratio: 1.3;
}
.destination_images {
    height: auto;
    aspect-ratio: 0.9;
}
.call_responsive{
  display: inline-block;
}
.tour-card.style-five .tour-info .btn{

    padding: 8px 12px 8px 12px;
    font-weight: 600;
    font-size: 15px;
}
.footer-area .footer-bottom{
  padding-bottom: 65px;
}
.feature-card.style-one, .feature-card.style-three{

    padding: 20px;
    margin-inline: auto;
    max-width: 85%;
}
}
.thm-btn{
    background: var(--secondaryColor);
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: 900;
    border: 0;
    transition: 0.6s ease-in-out;
    outline: none;
  }
.thm-btn:hover{
  background-color: var(--primaryColor);
}
input, select, textarea{
  font-family: var(--rubikFont) !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  box-shadow: 0 0 0px 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important; /* Adjust text color as needed */
}


.package-card {
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card {
    padding: 5px;
  }
}
@media (max-width: 576px) {
  .package-card {
    padding: 5px;
  }
}
.package-card .package-img-wrap {
  position: relative;
}
.package-card .package-img-wrap .package-img {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 10px;
}
.package-card .package-img-wrap .package-img img {
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.5s 
ease-out;
    width: 100%;
    aspect-ratio: 1.7;
}
.package-card .package-img-wrap .package-img::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.package-card .package-img-wrap .batch {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 7px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}
@media (max-width: 576px) {
  .package-card .package-img-wrap .batch {
    top: 10px;
    right: 10px;
  }
}
.package-card .package-img-wrap .batch span {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  display: block;
  padding: 6px 14px;
  background-color: #FF3927;
  border-radius: 100px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-img-wrap .batch span {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .package-card .package-img-wrap .batch span {
    font-size: 13px;
  }
}
.package-card .package-img-wrap .batch span.discount {
  background-color: #FF8B00;
}
.package-card .package-img-wrap .batch span.yellow-bg {
  background-color: #FFE100;
  color: #110F0F;
}
.package-card .package-img-wrap .slider-pagi-wrap {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  line-height: 1;
}
@media (max-width: 576px) {
  .package-card .package-img-wrap .slider-pagi-wrap {
    bottom: 15px;
  }
}
.package-card .package-img-wrap .slider-pagi-wrap .paginations {
  gap: 5px;
}
.package-card .package-img-wrap .slider-pagi-wrap .paginations .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #F0F0F0;
}
.package-card .package-img-wrap .slider-pagi-wrap .paginations .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  background-color: var(--primaryColor);
}
.package-card .package-img-wrap .slider-btn-grp .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  z-index: 1;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border: unset;
  background-color: rgba(255,255,255, 0.3);
  -webkit-backdrop-filter: blur(80px);
          backdrop-filter: blur(80px);
  opacity: 0;
}
.package-card .package-img-wrap .slider-btn-grp .slider-btn i {
  fill: #fff;
  stroke: none;
}
.package-card .package-img-wrap .slider-btn-grp .slider-btn:hover {
  background-color: #fff;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
}
.package-card .package-img-wrap .slider-btn-grp .slider-btn:hover i {
  fill: var(--primaryColor);
}
.package-card .package-img-wrap .slider-btn-grp .slider-btn.package-img-slider-next {
  left: unset;
  right: 15px;
}
.package-card .package-content {
  padding: 20px 15px 15px;
}
@media (max-width: 1399px) {
  .package-card .package-content {
    padding: 20px 10px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content {
    padding: 20px 5px 15px;
  }
}
.package-card .package-content h5 {
  margin-bottom: 10px;
}
.package-card .package-content h5 a {
    color: #110F0F;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.4;
    transition: 0.5s;
    font-family: 'Laila';
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.package-card .package-content h5 a:hover {
  color: var(--primaryColor);
}
@media (max-width: 1199px) {
  .package-card .package-content h5 a {
    font-size: 18px;
  }
}
.package-card .package-content .location-and-time {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .location-and-time {
    gap: 5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .package-card .package-content .location-and-time {
    gap: 5px;
  }
}
.package-card .package-content .location-and-time .location {
  display: flex;
  align-items: center;
  gap: 5px;
}
.package-card .package-content .location-and-time .location i {
  color: #525252;
  transition: 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .location-and-time .location i {
    width: 12px;
  }
}
.package-card .package-content .location-and-time .location a {
  color: #525252;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: 0.5s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .location-and-time .location a {
    font-size: 13px;
  }
}
.package-card .package-content .location-and-time .location a:hover {
  color: var(--primaryColor);
}
.package-card .package-content .location-and-time .arrow {
  color: #525252;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .location-and-time .arrow {
    width: 22px;
  }
}
.package-card .package-content .location-and-time span {
  color: #525252;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .location-and-time span {
    font-size: 13px;
  }
}
.package-card .package-content .btn-and-price-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.package-card .package-content .btn-and-price-area .primary-btn1 {
  padding: 13px 14px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .btn-and-price-area .primary-btn1 {
    font-size: 14px;
    padding: 12px 13px;
  }
}
@media (max-width: 576px) {
  .package-card .package-content .btn-and-price-area .primary-btn1 {
    font-size: 14px;
    padding: 12px 13px;
  }
}
.package-card .package-content .btn-and-price-area .price-area h6 {
    color: #525252;
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    margin-bottom: 0;
    text-align: end;
    display: inline-block;
}
.package-card .package-content .btn-and-price-area .price-area span {
  color: #ff0000;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: end;
  gap: 5px;
  display: inline-block;
  flex-wrap: wrap;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .package-card .package-content .btn-and-price-area .price-area span {
    font-size: 21px;
  }
}
@media (max-width: 576px) {
  .package-card .package-content .btn-and-price-area .price-area span {
    font-size: 21px;
  }
}
.package-card .package-content .btn-and-price-area .price-area span del {
  font-size: 18px;
}
.package-card .package-content .divider {
  fill: #ddd;
  width: 100%;
}
.package-card .package-content .bottom-area {
  padding-top: 5px;
}
.package-card .package-content .bottom-area ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 45px;
  position: relative;
}
.package-card .package-content .bottom-area ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #110F0F;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}
.package-card .package-content .bottom-area ul li i {
  color: #525252;
}
.package-card .package-content .bottom-area ul li .info {
  z-index: 1;
  cursor: pointer;
}
.package-card .package-content .bottom-area ul li .info i {
  fill: #AAAAAA;
}
.package-card .package-content .bottom-area ul li .info .tooltip-text {
  position: absolute;
  bottom: 23px;
  left: 0;
  max-width: 307px;
  width: 100%;
  padding: 20px;
  background-color: #000;
  border-radius: 10px;
  color: #AAAAAA;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .package-card .package-content .bottom-area ul li .info .tooltip-text {
    min-width: 290px;
  }
}
@media (max-width: 1399px) {
  .package-card .package-content .bottom-area ul li .info .tooltip-text {
    min-width: 260px;
    font-size: 13px;
    padding: 20px 15px;
  }
}
.package-card .package-content .bottom-area ul li .info .tooltip-text span {
  color: #fff;
}
.package-card .package-content .bottom-area ul li .info:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}
.home4-travel-package-section{
      background-image: url(../images/bg/bg.png), linear-gradient(180deg, #F2F2FF 0%, #F2F2FF 100%);
    background-size: cover;
    background-repeat: repeat;
}
.btn-and-price-area .btn{
    padding: 9px 12px 9px 12px;
    font-size: 13px;
    font-family: 'Laila';
    color: #fff;
}
.btn-and-price-area .btn.whatsapp{
  background-color: #25D366;
}
@media(max-width: 768px){

.package-card .package-content .btn-and-price-area .price-area h6{
  display: block;
}
.package-card .package-content .btn-and-price-area .price-area{
  line-height: 1;
}
}

.faq-one--services {
    position: relative;
    display: block;
    margin-top: 45px;
}

.faq-one--services .faq-one-accrodion .accrodion-title h4 {
    color: #fff;
}

.faq-one--services .faq-one-accrodion .accrodion {
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 10px;
}

.faq-one--services .faq-one-accrodion .accrodion-title h4::before {
    color: #fff;
}

.faq-one--services .faq-one-accrodion .accrodion-content {
    background: #fff;
    border-radius: 10px;
}

.faq-one--services .faq-one-accrodion .accrodion-content p {
    color: #000;
}

.faq-one {
    position: relative;
    display: block;
    background: #000;
    padding: 120px 0 120px;
    z-index: 1;
}

.faq-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc((100% - 60px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.faq-one .shape1 {
    position: absolute;
    bottom: 0px;
    right: -10px;
    opacity: 0.15;
    z-index: -1;
}

.faq-one .big-title {
    position: absolute;
    top: 160px;
    right: -60px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
    font-size: 170px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(90deg);
}

.faq-one__inner {
    position: relative;
    display: block;
    max-width: 645px;
    width: 100%;
    float: right;
}

.faq-one__inner .sec-title__tagline .text h4 {
    color: #fff;
}

.faq-one__inner .sec-title__tagline .icon-box span::before {
    color: #fff;
}

.faq-one__inner .sec-title__title {
    color: #fff;
}

.faq-one__content {
    position: relative;
    display: block;
    margin-left: 20px;
}

.faq-one__content-faq {
    position: relative;
    display: block;
    z-index: 1;
}

.faq-one-accrodion {
    position: relative;
    display: block;
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 0px 35px 0px;
}

.faq-one-accrodion .accrodion.active {
    padding-bottom: 25px;
}

.faq-one__content-faq .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 10px;
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 12px 0px 12px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-one-accrodion .accrodion-title h4 {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: capitalize;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion-title h4::before {
    position: absolute;
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    content: "\f067";
    font-family: 'Font Awesome 5 Pro' !important;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    display: block;
    padding: 21px 25px 20px;
    background: rgba(255, 255, 255, 0.07);
    margin-top: 0px;
    margin-bottom: 0px;
}

.faq-one-accrodion .accrodion-content p {
    color: #fff;
    font-size: 15px;
    margin: 0;
}


/*------------------- 4.2. Header  -------------------*/
.th-header {
  position: relative;
  z-index: 41;
}

.th-header .th-btn {
  padding: 15px 24px;
}

.header-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--whiteColor);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  -webkit-animation: stickyAni 0.4s ease-in-out;
  animation: stickyAni 0.4s ease-in-out;
}

@-webkit-keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

.main-menu a {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  font-family: 'Laila';
  color: var(--titleColor);
  text-transform: capitalize;
}

.main-menu a:hover {
  color: var(--secondaryColor);
}

.main-menu > ul > li {
  margin: 0 10px;
}

.main-menu > ul > li > a {
  padding: 15px 0;
  color: #fff;
}
.sticky .main-menu > ul > li > a{
  color: var(--theme-color);
}

.main-menu > ul > li > a:before {
  content: '';
  height: 2px;
  width: 0;
  background-color: var(--secondaryColor);
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.main-menu > ul > li > a:hover {
  color: var(--secondaryColor);
}

.main-menu > ul > li > a:hover:before {
  width: 100%;
  right: unset;
  left: 0;
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li:has(.sub-menu) > a:after, .main-menu ul li:has(.mega-menu) > a:after, .main-menu ul li.menu-item-has-children > a:after {
  content: "\f078";
  display: inline-block;
  position: relative;
  font-family: var(--icon-font);
  margin-left: 5px;
  font-weight: 600;
  top: 0;
  font-size: 0.9em;
  color: inherit;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.main-menu ul li:has(.sub-menu) > a:hover:after, .main-menu ul li:has(.mega-menu) > a:hover:after, .main-menu ul li.menu-item-has-children > a:hover:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 9;
}

.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  -webkit-transform: scaleY(1) translateX(0%);
  -ms-transform: scaleY(1) translateX(0%);
  transform: scaleY(1) translateX(0%);
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .main-menu ul li:hover ul.mega-menu {
    -webkit-transform: scaleY(1) translateX(12%);
    -ms-transform: scaleY(1) translateX(12%);
    transform: scaleY(1) translateX(12%);
  }
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--whiteColor);
  visibility: hidden;
  min-width: 230px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  opacity: 0;
  z-index: -1;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-bottom: 3px solid var(--theme-color);
  border-radius: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
    max-height: 420px;
    overflow: auto;
    max-width: 300px;
}

.main-menu ul.sub-menu {
  padding: 18px 20px 18px 18px;
  left: -27px;
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
}

.main-menu ul.sub-menu li:not(:last-child) {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ddd;
    line-height: 1;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f078";
  float: right;
  top: 1px;
  display: inline-block;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:hover:after {
  content: "\f068";
}

.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 0;
  text-transform: capitalize;
}

.main-menu ul.sub-menu li a:before {
  content: "\f5e4";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  font-family: var(--icon-font);
  width: 13px;
  height: 16px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: var(--theme-color);
  font-weight: 500;
  opacity: 0;
  visibility: visible;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.main-menu ul.sub-menu li a:hover {
  padding-left: 23px;
}

.main-menu ul.sub-menu li a:hover:before {
  visibility: visible;
  opacity: 1;
  left: 0;
  color: var(--secondaryColor);
}

.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

.main-menu .mega-menu-wrap {
  position: static;
}

.main-menu ul.mega-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 50%;
  -webkit-transform: scaleY(0) translateX(-50%);
  -ms-transform: scaleY(0) translateX(-50%);
  transform: scaleY(0) translateX(-50%);
}

.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}

.main-menu ul.mega-menu li li {
  padding: 2px 0;
}

.main-menu ul.mega-menu li a {
  display: inline-block;
  text-transform: capitalize;
}

.main-menu ul.mega-menu > li > a {
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--titleColor);
  border-color: var(--theme-color);
}

.main-menu ul.mega-menu > li > a::after, .main-menu ul.mega-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}

.main-menu ul.mega-menu > li > a::after {
  width: calc(100% - 20px);
  left: 20px;
}

.main-menu ul.mega-menu > li > a:hover {
  padding-left: 0;
}

.header-button {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.header-button .icon-btn {
  position: relative;
}
.header-button .icon-btn img{
  filter: brightness(0) invert(1);
}
.sticky .header-button .icon-btn img{
  filter: none;
}

.header-button .search-form {
  position: relative;
}

@media (max-width: 1399px) {
  .header-button .search-form {
    display: none;
  }
}

.header-button .search-form input {
  width: 225px;
  height: 48px;
  border: 1px solid rgba(153, 153, 153, 0.5);
  border-radius: 8px;
}

.header-button .search-form button {
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: transparent;
  border: 0;
  color: var(--titleColor);
}

.header-button li {
  list-style: none;
}

.header-button li .currency-menu {
  background-color: transparent;
  border: 1px solid #767676;
  border-radius: 8px;
  height: 48px;
  padding: 10px 25px;
}

.header-button li .dropdown-menu {
  padding: 30px 40px 18px;
  border-bottom: none;
}

.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-links li {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--title-font);
}

.header-links li input {
  background-color: transparent;
  border: none;
  padding: 0;
  height: auto;
}

.header-links li:not(:last-child) {
  margin: 0 18px 0 0;
}

.header-links li.input:after {
  content: '\f0d7';
  font-family: var(--icon-font);
  font-weight: 600;
  position: absolute;
  top: -2px;
  right: 8px;
}

.header-links li > i {
  color: var(--secondaryColor);
  margin-right: 6px;
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
  font-family: 'Laila';
  font-size: 14px;
  font-weight: 600;
  color: var(--whiteColor);
}

@media (max-width: 320px) {
  .header-links li,
  .header-links span,
  .header-links p,
  .header-links a {
    font-size: 12px;
  }
}

.header-links li img,
.header-links span img,
.header-links p img,
.header-links a img {
  margin-right: 8px;
}

.header-links a:hover {
  color: var(--theme-color);
}

.header-links i {
  color: var(--secondaryColor);
}

.header-links b,
.header-links strong {
  font-weight: 600;
}

.social-links .social-title {
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  margin: 0 10px 0 0;
  font-family: 'Laila';
  color: var(--body-color);
}

@media (max-width: 1599px) {
  .social-links .social-title {
    display: none;
  }
}

.social-links a {
  font-size: 14px;
  display: inline-block;
  color: var(--body-color);
  margin: 0 15px 0 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.social-links a:last-child {
  margin-right: 0 !important;
}

.social-links a:hover {
  color: var(--theme-color);
}

.social-links a:hover i {
  -webkit-animation: slideTop 0.5s;
  animation: slideTop 0.5s;
}

.header-social .social-title {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin: 0 15px 0 0;
  color: var(--body-color);
}

.header-social a {
  font-size: 16px;
  display: inline-block;
  color: var(--body-color);
  margin: 0 15px 0 0;
}

.header-social a:last-child {
  margin-right: 0;
}

.header-social a:hover {
  color: #57B33E;
}

.header-logo {
  padding-top: 3px;
  padding-bottom: 3px;
  /* Extra small devices */
}
.header-logo img{
  border-radius: 8px;
}

/* Large devices */
@media (max-width: 1199px) {
  .main-menu > ul > li > a {
    padding: 37px 0;
  }
}

.header-button .th-btn {
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .header-button .th-btn {
    display: none;
  }
}

.header-top {
  background-color: var(--smoke-color);
  padding: 14.5px 0;
  --body-color: #4E4E4E;
}

.default-header .header-top {
  margin-bottom: 24px;
  padding: 9.5px 20px;
  position: relative;
  z-index: 2;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  max-width: 1800px;
  display: block;
  margin: auto;
  background-color: transparent;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .default-header .header-top {
    padding: 9.5px 0px;
  }
}

.default-header .header-top:before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("../images/bg/header-top-shape.png");
  mask-image: url("../images/bg/header-top-shape.png");
  background-color: var(--theme-color);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: -1;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .default-header .header-top:before {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.default-header .header-button .search-form input {
  background-color: var(--whiteColor);
}

.default-header .main-menu {
  margin-left: 20px;
}

.default-header .header-links li input {
  color: var(--whiteColor);
}

.default-header .header-links li,
.default-header .header-links span,
.default-header .header-links p,
.default-header .header-links a {
  color: var(--whiteColor);
}

.default-header .menu-area {
  background-color: var(--whiteColor);
  position: relative;
  z-index: 2;
}

.default-header .header-logo {
  /* Medium devices */
}

@media (max-width: 991px) {
  .default-header .header-logo {
    padding: 20px 0;
  }
}

/* header layout1 start  ---------------------------------- */
.header-layout1 .sticky-wrapper.sticky .menu-area {
  padding: 0;
}

.header-layout1 .sticky-wrapper.sticky .menu-area:before {
  display: none;
}

.header-layout1 .header-top {
  background-color: transparent;
}

.header-layout1 .header-top .header-links li,
.header-layout1 .header-top .header-links span,
.header-layout1 .header-top .header-links a {
  color: var(--whiteColor);
}

.header-layout1 .currency-menu .nice-select {
  background-color: transparent;
  border: 1px solid #767676;
  color: var(--whiteColor);
  border-radius: 8px;
  height: 48px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .header-layout1 .currency-menu .nice-select {
    display: none;
  }
}

.header-layout1 .currency-menu .nice-select:after {
  top: 0px;
}

.header-layout1 .menu-area {
  background-color: var(--whiteColor);
  padding: 0px 40px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  /* Small devices */
}

@media (max-width: 767px) {
  .header-layout1 .menu-area {
    padding: 0 20px;
  }
}

.header-layout1 .menu-area:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--secondaryColor);
  z-index: -1;
  width: 15%;
  height: 100px;
  border-radius: 8px 0 0 8px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 1699px) {
  .header-layout1 .menu-area:before {
    width: 18%;
  }
}

@media (max-width: 1299px) {
  .header-layout1 .menu-area:before {
    width: 22%;
  }
}

@media (max-width: 1199px) {
  .header-layout1 .menu-area:before {
    width: 28%;
  }
}

@media (max-width: 991px) {
  .header-layout1 .menu-area:before {
    width: 37%;
    height: 90px;
  }
}

@media (max-width: 767px) {
  .header-layout1 .menu-area:before {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .header-layout1 .menu-area:before {
    height: 77px;
  }
}

@media (max-width: 375px) {
  .header-layout1 .menu-area:before {
    width: 60%;
  }
}

.header-layout1 .main-menu > ul > li {
  margin: 0 15px;
}

.header-layout1 .th-btn {
  /* Medium Large devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .header-layout1 .th-btn {
    padding: 15px 20px;
  }
}

@media (max-width: 575px) {
  .header-layout1 .th-btn {
    display: none;
  }
}

.header-layout1 .header-wrapp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-layout1 .header-logo {
  text-align: center;
}

.header-layout1 .main-menu > ul > li > a {
  padding: 36.5px 0;
}

.header-layout1 .main-menu > ul > li {
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .header-layout1 .main-menu > ul > li {
    margin: 0 10px;
  }
}

.header-layout1.unittest-header .logo-bg {
  display: none;
}

.header-layout1.unittest-header .menu-area:before {
  display: none;
}

.header-layout1.unittest-header .header-logo {
  margin: 0;
}

.header-layout1.unittest-header .main-menu > ul > li {
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .header-layout1.unittest-header .main-menu > ul > li {
    margin: 0 12px;
  }
}

@media (min-width: 1200px) {
  .header-layout1 {
    --main-container: 1800px;
  }
}

@media (min-width: 2580px) and (max-width: 4180px) {
  .header-layout1 .logo-bg {
    width: 10%;
  }
}

/* header layout1 end  ---------------------------------- */
/* header layout2 start  ---------------------------------- */
.header-layout2 {
  background-color: var(--theme-color);
}

.header-layout2 .header-top {
  background-color: var(--theme-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 9.5px 0;
}

.header-layout2 .sticky-wrapper.sticky {
  background-color: var(--theme-color);
}

.header-layout2 .main-menu {
  margin-left: 20px;
}

.header-layout2 .main-menu > ul > li > a {
  color: var(--whiteColor);
}

.header-layout2 .main-menu > ul > li > a:hover {
  color: var(--secondaryColor);
}

.header-layout2 .header-button .search-form input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--whiteColor);
}

.header-layout2 .header-button .search-form input::-moz-placeholder {
  color: var(--whiteColor);
}

.header-layout2 .header-button .search-form input::-webkit-input-placeholder {
  color: var(--whiteColor);
}

.header-layout2 .header-button .search-form input:-ms-input-placeholder {
  color: var(--whiteColor);
}

.header-layout2 .header-button .search-form input::-ms-input-placeholder {
  color: var(--whiteColor);
}

.header-layout2 .header-button .search-form input::placeholder {
  color: var(--whiteColor);
}

.header-layout2 .header-button .search-form button {
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: transparent;
  border: 0;
  color: var(--whiteColor);
}

.header-layout2 .header-button .icon-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.header-layout2 .header-button .icon-btn img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.header-layout2 .header-button .icon-btn:hover img {
  -webkit-filter: none;
  filter: none;
}

/* header layout2 end  ---------------------------------- */
/* header layout3 start  ---------------------------------- */
.header-layout3 {
  background-color: var(--whiteColor);
}

.header-layout3 .header-top {
  margin-bottom: 24px;
  padding: 9.5px 20px;
  position: relative;
  z-index: 2;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  max-width: 1800px;
  display: block;
  margin: auto;
  background-color: transparent;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .header-layout3 .header-top {
    padding: 9px 0px;
  }
}

.header-layout3 .header-top:before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("../images/bg/header-top-shape.png");
  mask-image: url("../images/bg/header-top-shape.png");
  background-color: var(--theme-color);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  z-index: -1;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .header-layout3 .header-top:before {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.header-layout3 .main-menu {
  margin-left: 20px;
}

.header-layout3 .header-links li input {
  color: var(--whiteColor);
}

.header-layout3 .header-links li,
.header-layout3 .header-links span,
.header-layout3 .header-links p,
.header-layout3 .header-links a {
  color: var(--whiteColor);
}

.header-layout3 .header-button .search-form input {
  background-color: var(--whiteColor);
}

.header-layout3 .menu-area {
  background-color: var(--whiteColor);
  position: relative;
  z-index: 2;
}

.header-layout4 .main-menu ul.mega-menu {
  -webkit-transform: scaleY(0) translateX(-40%);
  -ms-transform: scaleY(0) translateX(-40%);
  transform: scaleY(0) translateX(-40%);
  /* Medium Large devices */
}

@media (max-width: 1699px) {
  .header-layout4 .main-menu ul.mega-menu {
    -webkit-transform: scaleY(0) translateX(-20%);
    -ms-transform: scaleY(0) translateX(-20%);
    transform: scaleY(0) translateX(-20%);
  }
}

@media (max-width: 1299px) {
  .header-layout4 .main-menu ul.mega-menu {
    -webkit-transform: scaleY(0) translateX(-5%);
    -ms-transform: scaleY(0) translateX(-5%);
    transform: scaleY(0) translateX(-5%);
  }
}

.header-layout4 .main-menu ul li:hover ul.mega-menu {
  -webkit-transform: scaleY(1) translateX(-40%);
  -ms-transform: scaleY(1) translateX(-40%);
  transform: scaleY(1) translateX(-40%);
  /* Medium Large devices */
}

@media (max-width: 1699px) {
  .header-layout4 .main-menu ul li:hover ul.mega-menu {
    -webkit-transform: scaleY(1) translateX(-20%);
    -ms-transform: scaleY(1) translateX(-20%);
    transform: scaleY(1) translateX(-20%);
  }
}

@media (max-width: 1299px) {
  .header-layout4 .main-menu ul li:hover ul.mega-menu {
    -webkit-transform: scaleY(1) translateX(-5%);
    -ms-transform: scaleY(1) translateX(-5%);
    transform: scaleY(1) translateX(-5%);
  }
}

.header-layout4 .top-area {
  background-color: var(--titleColor);
}

.header-layout4 .header-top {
  background-color: var(--titleColor);
  padding: 12px 0;
  --body-color: #fff;
}

.header-layout4 .header-top a,
.header-layout4 .header-top li,
.header-layout4 .header-top p,
.header-layout4 .header-top span,
.header-layout4 .header-top i {
  color: var(--whiteColor);
}

.header-layout4 .header-top a:hover {
  color: var(--theme-color);
}

.header-layout4 .header-top i:hover {
  color: var(--theme-color);
}

.header-layout4 .sticky-wrapper {
  box-shadow: none;
}

.header-layout4 .menu-top {
  padding: 16px 0;
}

.header-layout4 .menu-top .icon-btn {
  --btn-size: 40px;
  line-height: 40px;
  background-color: var(--secondaryColor);
  color: var(--titleColor);
  border-radius: 50%;
  font-size: 16px;
  margin-right: 10px;
}

.header-layout4 .header-link {
  color: var(--whiteColor);
  padding-right: 30px;
  margin-right: 30px;
  height: 40px;
  display: inline-block;
  border-right: 1px solid #343434;
}

.header-layout4 .header-link:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.header-layout4 .header-link:hover {
  color: var(--secondaryColor);
}

.header-layout4 .th-social a {
  --icon-size: 40px;
  background-color: var(--titleColor);
  border: 1px solid #343434;
  color: var(--whiteColor);
}

.header-layout4 .th-social a:hover {
  background-color: var(--secondaryColor);
  color: var(--titleColor);
  border-color: var(--secondaryColor);
}

.header-layout4 .simple-icon {
  font-size: 36px;
  color: var(--titleColor);
}

.header-layout4 .dropdown-menu {
  --body-color: #74787C;
}

.header-layout4 .logo-shape {
  display: inline-block;
  height: 100%;
  width: 40%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--whiteColor);
  background-size: auto;
  background-repeat: repeat;
  -webkit-clip-path: polygon(0 0, calc(100% - 100px) 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 100px) 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.header-layout4 .icon-style2 {
  background-color: transparent;
  border: 1px solid;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  line-height: 46px;
  color: var(--titleColor);
  font-size: 16px;
}

.header-layout4 .icon-style2:hover {
  background-color: var(--whiteColor);
  color: var(--titleColor);
  border-color: var(--whiteColor);
}

.header-layout4 .header-button .icon-btn {
  border: 1px solid var(--titleColor);
}

.header-layout4 .header-button .icon-btn:hover {
  background-color: var(--whiteColor);
  color: var(--titleColor);
  border-color: var(--whiteColor);
}

.header-layout4 .menu-area {
  position: relative;
  background-color: var(--secondaryColor);
  z-index: 2;
}

.header-layout4 .menu-area .container {
  /* Hight Resoulation devices */
  /* Medium Large devices */
}

@media (min-width: 1922px) {
  .header-layout4 .menu-area .container {
    margin-right: auto;
  }
}

@media (max-width: 1399px) {
  .header-layout4 .menu-area .container {
    margin-right: auto;
  }
}

.header-layout4 .main-menu > ul > li > a {
  color: var(--titleColor);
  padding: 39px 0;
}

.header-layout4 .main-menu > ul > li > a:hover {
  color: var(--theme-color);
}

.header-layout4 .main-menu ul li.menu-item-has-children > a:after {
  color: var(--titleColor);
}

.header-layout4 .main-menu ul li.menu-item-has-children > a:hover:after {
  color: var(--theme-color);
}

.header-layout4 .th-menu-toggle {
  margin: 20px 0;
}

.header-layout4 .header-button {
  margin-left: 10px;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .header-layout4 .logo-shape {
    width: 33%;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .header-layout4 .header-link:nth-child(2) {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .header-layout4 .logo-shape {
    width: 60%;
  }
  .header-layout4 .header-link {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .header-notice {
    text-align: center;
    font-size: 14px;
  }
  .header-layout4 .menu-top {
    padding: 12px 0;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .header-layout4 .logo-shape {
    width: 280px;
  }
}

/* Header 1 ---------------------------------- */
.header-layout5 .main-menu ul.mega-menu {
  -webkit-transform: scaleY(0) translateX(-40%);
  -ms-transform: scaleY(0) translateX(-40%);
  transform: scaleY(0) translateX(-40%);
  /* Medium Large devices */
}

@media (max-width: 1699px) {
  .header-layout5 .main-menu ul.mega-menu {
    -webkit-transform: scaleY(0) translateX(-20%);
    -ms-transform: scaleY(0) translateX(-20%);
    transform: scaleY(0) translateX(-20%);
  }
}

@media (max-width: 1299px) {
  .header-layout5 .main-menu ul.mega-menu {
    -webkit-transform: scaleY(0) translateX(-5%);
    -ms-transform: scaleY(0) translateX(-5%);
    transform: scaleY(0) translateX(-5%);
  }
}

.header-layout5 .main-menu ul li:hover ul.mega-menu {
  -webkit-transform: scaleY(1) translateX(-40%);
  -ms-transform: scaleY(1) translateX(-40%);
  transform: scaleY(1) translateX(-40%);
  /* Medium Large devices */
}

@media (max-width: 1699px) {
  .header-layout5 .main-menu ul li:hover ul.mega-menu {
    -webkit-transform: scaleY(1) translateX(-20%);
    -ms-transform: scaleY(1) translateX(-20%);
    transform: scaleY(1) translateX(-20%);
  }
}

@media (max-width: 1299px) {
  .header-layout5 .main-menu ul li:hover ul.mega-menu {
    -webkit-transform: scaleY(1) translateX(-5%);
    -ms-transform: scaleY(1) translateX(-5%);
    transform: scaleY(1) translateX(-5%);
  }
}

.header-layout5 .th-menu-toggle {
  background-color: var(--secondaryColor);
  color: var(--titleColor);
}

.header-layout5 .header-top {
  background-color: var(--secondaryColor);
  padding: 14px 0;
  --body-color: #1b1b1b;
}

.header-layout5 .header-top a,
.header-layout5 .header-top li,
.header-layout5 .header-top p,
.header-layout5 .header-top span,
.header-layout5 .header-top i {
  color: var(--titleColor);
}

.header-layout5 .header-top a:hover {
  color: var(--theme-color);
}

.header-layout5 .header-top li:before {
  background-color: var(--titleColor);
}

.header-layout5 .simple-icon {
  color: var(--whiteColor);
}

.header-layout5 .dropdown-menu {
  background-color: var(--whiteColor);
  padding: 5px 10px;
  --body-color: #74787C;
  position: relative;
  z-index: 3;
}

.header-layout5 .dropdown-menu:before, .header-layout5 .dropdown-menu:after {
  display: none;
}

.header-layout5 .dropdown-menu .gtranslate_wrapper a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: var(--titleColor);
  font-family: var(--title-font);
  padding: 5px 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-layout5 .dropdown-menu .gtranslate_wrapper a:hover {
  color: var(--secondaryColor);
}

.header-layout5 .logo-shape {
  display: inline-block;
  height: 100%;
  width: 40%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--whiteColor);
  -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
  z-index: -1;
}

.header-layout5 .header-links li:not(:last-child) {
  padding: 0 20px 0 0;
  margin: 0 15px 0 0;
}

.header-layout5 .header-links li:not(:last-child):before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: var(--titleColor);
  width: 1px;
  height: 20px;
  margin: -10px 0 0 0;
}

.header-layout5 .menu-area {
  position: relative;
  background-color: var(--theme-color);
  background-size: auto;
  background-repeat: repeat;
  z-index: 2;
}

.header-layout5 .main-menu > ul > li {
  margin: 0 18px;
}

.header-layout5 .main-menu > ul > li > a {
  color: var(--whiteColor);
  padding: 41.5px 0;
}

.header-layout5 .main-menu > ul > li > a:hover {
  color: var(--secondaryColor);
}

.header-layout5 .langauge .nice-select .option.selected.focus {
  color: #fff !important;
  background: var(--theme-color) !important;
}

.header-layout5 .main-menu ul li.menu-item-has-children > a:hover:after {
  color: var(--secondaryColor);
}

.header-layout5 .th-menu-toggle {
  margin: 20px 0;
}

.header-layout5 .header-button {
  margin-left: 10px;
}

.header-layout5 .header-button .icon-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.header-layout5 .header-button .icon-btn img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.header-layout5 .header-button .icon-btn:hover img {
  -webkit-filter: none;
  filter: none;
}

.header-layout5 .icon-style2 {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  line-height: 46px;
  color: var(--whiteColor);
  font-size: 16px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-layout5 .icon-style2:hover {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
  color: var(--titleColor);
}

.header-layout5 .langauge .nice-select {
  font-family: 'Laila';
  background: none;
  border: none;
  width: 100%;
  color: var(--titleColor);
  font-weight: 400;
  font-size: 14px;
  height: 26px;
  line-height: 26px;
  padding: 0;
  border-radius: 0;
  padding-right: 20px;
}

.header-layout5 .langauge .nice-select:after {
  content: "\f107";
  right: 0px;
  top: -10px;
  border-bottom: none;
  border-right: none;
  font-size: 14px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.header-layout5 .langauge .nice-select.open:after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.header-layout5 .langauge .nice-select.open .list {
  margin-top: 0;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.header-layout5 .langauge .nice-select.open .list li {
  display: block;
  margin: 0;
  padding: 0 10px;
}

.header-layout5 .langauge .nice-select.open .list li:before {
  display: none;
}

.header-layout5 .langauge .nice-select .option {
  color: var(--titleColor);
  min-height: 30px;
}

.header-layout5 .langauge .nice-select .option.selected {
  color: var(--theme-color) !important;
  background: var(--theme-color) !important;
}

.header-layout5 .langauge .nice-select .option.selected.focus {
  color: #fff !important;
  background: var(--theme-color) !important;
}

.header-layout5 .langauge .nice-select .option:hover, .header-layout5 .langauge .nice-select .option.focus, .header-layout5 .langauge .nice-select .option.selected.focus {
  background: var(--theme-color) !important;
  color: #fff !important;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .header-layout5 .logo-shape {
    width: 25%;
  }
}

@media (max-width: 1599px) {
  .header-layout5 .logo-shape {
    width: 35%;
  }
}

@media (max-width: 1499px) {
  .header-layout5 .logo-shape {
    width: 30%;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .header-layout5 .logo-shape {
    width: 300px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .header-layout5 .logo-shape {
    width: 60%;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .header-layout5 .header-top {
    padding: 8px 0;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .header-layout5 .logo-shape {
    width: 70%;
  }
}

/* Header 6 ---------------------------------- */
.header-layout6 .main-menu ul.mega-menu {
  -webkit-transform: scaleY(0) translateX(-40%);
  -ms-transform: scaleY(0) translateX(-40%);
  transform: scaleY(0) translateX(-40%);
  /* Medium Large devices */
}

@media (max-width: 1699px) {
  .header-layout6 .main-menu ul.mega-menu {
    -webkit-transform: scaleY(0) translateX(-20%);
    -ms-transform: scaleY(0) translateX(-20%);
    transform: scaleY(0) translateX(-20%);
  }
}

@media (max-width: 1299px) {
  .header-layout6 .main-menu ul.mega-menu {
    -webkit-transform: scaleY(0) translateX(-5%);
    -ms-transform: scaleY(0) translateX(-5%);
    transform: scaleY(0) translateX(-5%);
  }
}

.header-layout6 .main-menu ul li:hover ul.mega-menu {
  -webkit-transform: scaleY(1) translateX(-40%);
  -ms-transform: scaleY(1) translateX(-40%);
  transform: scaleY(1) translateX(-40%);
  /* Medium Large devices */
}

@media (max-width: 1699px) {
  .header-layout6 .main-menu ul li:hover ul.mega-menu {
    -webkit-transform: scaleY(1) translateX(-20%);
    -ms-transform: scaleY(1) translateX(-20%);
    transform: scaleY(1) translateX(-20%);
  }
}

@media (max-width: 1299px) {
  .header-layout6 .main-menu ul li:hover ul.mega-menu {
    -webkit-transform: scaleY(1) translateX(-5%);
    -ms-transform: scaleY(1) translateX(-5%);
    transform: scaleY(1) translateX(-5%);
  }
}

.header-layout6 .header-top {
  background-color: var(--titleColor);
  padding: 15px 0;
  --body-color: #fff;
}

.header-layout6 .header-top a,
.header-layout6 .header-top li,
.header-layout6 .header-top p {
  color: var(--body-color);
}

.header-layout6 .header-top a:hover {
  color: var(--theme-color);
}

.header-layout6 .header-top li:before {
  background-color: #464C5B;
}

.header-layout6 .header-links li:not(:last-child) {
  padding: 0 20px 0 0;
  margin: 0 15px 0 0;
}

.header-layout6 .header-links li:not(:last-child):before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: var(--titleColor);
  width: 1px;
  height: 20px;
  margin: -10px 0 0 0;
}

.header-layout6 .header-links li a:hover {
  color: var(--secondaryColor);
}

.header-layout6 .header-button {
  margin-left: 10px;
}

.header-layout6 .header-button .icon-btn {
  border: 1px solid var(--titleColor);
  border-radius: 8px;
}

.header-layout6 .header-button .icon-btn img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-layout6 .header-button .icon-btn:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.header-layout6 .icon-style2 {
  background-color: transparent;
  border: 1px solid var(--titleColor);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  line-height: 46px;
  color: var(--titleColor);
  font-size: 16px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-layout6 .icon-style2:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--whiteColor);
}

.header-layout6 .menu-area {
  background-color: var(--whiteColor);
}

.header-layout6 .langauge .nice-select {
  font-family: 'Laila';
  background: #2A2F3C;
  border-radius: 5px;
  border: none;
  width: 100%;
  color: var(--whiteColor);
  font-weight: 400;
  font-size: 14px;
  height: 35px;
  line-height: 35px;
  padding: 0px 35px 0 20px;
}

.header-layout6 .langauge .nice-select:after {
  content: "\f107";
  right: 15px;
  top: -6px;
  border-bottom: none;
  border-right: none;
  font-size: 14px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.header-layout6 .langauge .nice-select.open:after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.header-layout6 .langauge .nice-select.open .list {
  margin-top: 0;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.header-layout6 .langauge .nice-select.open .list li {
  display: block;
  margin: 0;
  padding: 0 10px;
}

.header-layout6 .langauge .nice-select.open .list li:before {
  display: none;
}

.header-layout6 .langauge .nice-select .option {
  color: var(--titleColor);
  min-height: 30px;
}

.header-layout6 .langauge .nice-select .option.selected {
  color: var(--theme-color) !important;
  background: var(--theme-color) !important;
}

.header-layout6 .langauge .nice-select .option.selected.focus {
  color: #fff !important;
  background: var(--theme-color) !important;
}

.header-layout6 .langauge .nice-select .option:hover, .header-layout6 .langauge .nice-select .option.focus, .header-layout6 .langauge .nice-select .option.selected.focus {
  background: var(--theme-color) !important;
  color: #fff !important;
}

.header-layout6 .header-links li {
  border: none;
}

.header-layout6 .header-links li:not(:last-child):before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #464C5B;
  width: 1px;
  height: 20px;
  margin: -10px 0 0 0;
}

.header-layout6 .header-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1799px) {
  .header-layout6 .header-right {
    margin-right: 0;
  }
}

.header-layout6 .header-right .langauge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header-layout6 .header-right .langauge.lang-dropdown {
  position: relative;
  z-index: 9;
}

.header-layout6 .header-right .langauge.lang-dropdown .dropdown-toggle {
  font-family: 'Laila';
  background: none;
  border: none;
  width: 100%;
  color: var(--body-color);
  font-weight: 400;
  font-size: 14px;
  padding-left: 15px;
  height: 16px;
  line-height: 16px;
  padding: 0;
  border-radius: 0;
  border-right: 1px solid #464C5B;
  padding-right: 30px;
  margin-right: 14px;
}

.header-layout6 .header-right .langauge.lang-dropdown .dropdown-menu {
  position: absolute;
  right: 0;
  border-bottom: 2px solid var(--theme-color);
  border-radius: 0;
}

.header-layout6 .header-right .langauge.lang-dropdown .gtranslate_wrapper a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: var(--titleColor);
  font-family: var(--title-font);
  padding: 5px 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-layout6 .header-right .langauge.lang-dropdown .gtranslate_wrapper a:hover {
  background-color: var(--theme-color);
  color: var(--whiteColor);
}

.header-layout6 .header-right .langauge img {
  min-width: 16px;
  min-height: 16px;
  position: relative;
}

.header-layout6 .header-right .langauge .nice-select {
  font-family: 'Laila';
  background: none;
  border: none;
  width: 100%;
  color: var(--body-color);
  font-weight: 400;
  font-size: 14px;
  padding-left: 15px;
  line-height: 16px;
  padding: 0;
  border-radius: 0;
  padding-right: 50px;
  margin-right: 20px;
  border-right: 1px solid #464C5B;
  height: 16px;
}

.header-layout6 .header-right .langauge .nice-select .list {
  left: -20px;
}

.header-layout6 .header-right .langauge .nice-select:after {
  content: "\f107";
  right: 35px;
  top: -19px;
  font-size: 14px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  border-bottom: none;
  border-right: none;
}

.header-layout6 .header-right .langauge .nice-select.open:after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.header-layout6 .header-right .langauge .nice-select.open .list {
  left: -20px;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.header-layout6 .header-right .langauge .nice-select .option {
  color: var(--titleColor);
  min-height: 30px;
}

.header-layout6 .header-right .langauge .nice-select .option.selected {
  color: var(--theme-color) !important;
  background: var(--theme-color) !important;
}

.header-layout6 .header-right .langauge .nice-select .option.selected.focus {
  color: #fff !important;
  background: var(--theme-color) !important;
}

.header-layout6 .header-right .langauge .nice-select .option:hover, .header-layout6 .header-right .langauge .nice-select .option.focus {
  background: var(--theme-color) !important;
  color: #fff !important;
}

.header-layout6 .dropdown-menu {
  background-color: var(--whiteColor);
  padding: 5px 10px;
  --body-color: #74787C;
  position: relative;
  z-index: 3;
}

.header-layout6 .dropdown-menu:before, .header-layout6 .dropdown-menu:after {
  display: none;
}

.header-layout6 .dropdown-menu .gtranslate_wrapper a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: var(--titleColor);
  font-family: var(--title-font);
  padding: 5px 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-layout6 .dropdown-menu .gtranslate_wrapper a:hover {
  color: var(--secondaryColor);
}

.header-layout6 .header-social {
  position: relative;
  z-index: 9;
}

.header-layout6 .header-social .social-title {
  color: var(--whiteColor);
}

.header-layout6 .header-social a {
  font-size: 14px;
  display: inline-block;
  color: var(--whiteColor);
  margin: 0 0 0 15px;
}

.header-layout6 .header-social a i {
  color: var(--whiteColor);
}

.header-layout6 .header-social a:hover i {
  color: var(--theme-color);
}

.header-layout6 .dropdown-menu {
  --body-color: #74787C;
}

.header-layout6 .header-button {
  gap: 15px;
}

.header-layout6 .icon-btn {
  --icon-bg: #F5F5F5;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  border-radius: 50%;
}

.header-layout6 .icon-btn:hover {
  background-color: var(--theme-color);
  color: var(--whiteColor);
}

.header-layout6 .main-menu > ul > li {
  margin: 0 12px;
}

.header-layout6 .main-menu > ul > li > a {
  padding: 50px 0;
}

.header-layout6 .header-link-btn {
  margin-left: 15px;
  color: var(--theme-color);
}

.header-layout6 .header-link-btn:hover {
  color: var(--titleColor);
}

.header-layout6 .th-menu-toggle {
  margin: 20px 0;
}

.logo-shape1 {
  padding: 20px 0;
  background-color: var(--theme-color);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo-shape1:before, .logo-shape1:after,
.logo-shape1 .shape {
  content: "";
  height: 100%;
  width: 2222px;
  background-color: var(--theme-color);
  position: absolute;
  top: 0;
  right: -67px;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
}

.logo-shape1:after {
  background-color: #283752;
  -webkit-clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
  z-index: -2;
}

.logo-shape1 .shape {
  right: -95px;
  background-color: rgba(55, 72, 104, 0.2);
  -webkit-clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0% 100%);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .header-layout6 .header-link-btn {
    display: none;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .header-layout6 .main-menu > ul > li > a {
    padding: 35px 0;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .header-layout6 .th-menu-toggle {
    margin: 15px 0;
  }
  .logo-shape1 {
    max-width: 150px;
  }
  .logo-shape1:before, .logo-shape1:after {
    right: -40px;
  }
  .logo-shape1 .shape {
    right: -55px;
  }
}

/* header-layout8 --------------------------*/
.header-layout8 .header-top {
  background-color: #F0F0F0;
}

.header-layout8 .header-top .header-links ul li,
.header-layout8 .header-top .header-links ul span {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #4E4E4E;
}

@media (max-width: 320px) {
  .header-layout8 .header-top .header-links ul li,
  .header-layout8 .header-top .header-links ul span {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .header-layout8 .header-top .header-links ul li:not(:last-child),
  .header-layout8 .header-top .header-links ul span:not(:last-child) {
    margin: 0 9px 0 0;
  }
}

.header-layout8 .header-top .header-links ul li i,
.header-layout8 .header-top .header-links ul span i {
  color: #004D40;
}

@media (max-width: 320px) {
  .header-layout8 .th-menu-toggle {
    width: 50px;
    height: 50px;
  }
}

/*header-layout7 ------------------ */
.header-layout7 {
  position: relative;
  margin-bottom: 0;
}

.header-layout7:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  width: 87%;
  height: 71px;
  background: #004D40;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
  z-index: -1;
}

.header-layout7:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 17%;
  height: 77px;
  background: var(--secondaryColor);
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
}

.header-layout7 .header-top {  
    font-weight: 900;
    position: relative;
    background-color: transparent;
    z-index: 2;
    padding: 3px 0;
    border-bottom: 1px solid #F0F0F0;
    font-family: 'Laila';
    line-height: 1.4;
}

@media (max-width: 991px) {
  .header-layout7 .header-top {
    padding: 3px 0;
  }
}

.header-layout7 .header-top:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #004D40;
    width: 47%;
    height: 29px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
}


.header-layout7 .header-top .header-links.style2 li,
.header-layout7 .header-top .header-links.style2 span,
.header-layout7 .header-top .header-links.style2 p,
.header-layout7 .header-top .header-links.style2 a {
  color: var(--whiteColor);
}

.header-layout7 .header-top .header-links li,
.header-layout7 .header-top .header-links span,
.header-layout7 .header-top .header-links p,
.header-layout7 .header-top .header-links a {
  color: var(--titleColor);
}


/*------------------- 4.00. Popup Side Menu  -------------------*/
.sidemenu-wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 1px solid;
  width: 50px;
  height: 50px;
  line-height: 48px;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.sidemenu-wrapper .closeButton:hover {
  color: var(--secondaryColor);
  border-color: var(--secondaryColor);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sidemenu-wrapper .sidemenu-content {
  background-color: var(--whiteColor);
  width: 450px;
  margin-left: auto;
  padding: 80px 30px;
  height: 100%;
  overflow: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-transition: right ease 1s;
  transition: right ease 1s;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .sidemenu-wrapper .sidemenu-content {
    width: 320px;
  }
}

.sidemenu-wrapper .sidemenu-content .footer-widget .widget_title:after {
  border: 2px solid var(--whiteColor);
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}

.sidemenu-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
}

.sidemenu-wrapper .widget .about-text {
  color: var(--titleColor);
}

.sidemenu-wrapper .widget .widget_title {
  color: var(--titleColor);
  padding: 0;
}

.sidemenu-wrapper .widget .recent-post-wrap .recent-post .post-title:hover a {
  color: var(--secondaryColor);
}

.sidemenu-wrapper .widget.footer-widget .recent-post {
  max-width: 100%;
}

.sidemenu-wrapper .widget.footer-widget .recent-post .post-title {
  color: var(--titleColor);
}

.sidemenu-wrapper .widget.footer-widget .recent-post .post-title:hover a {
  color: var(--secondaryColor);
}

.sidemenu-wrapper .widget.footer-widget .th-widget-about .footer-info-title {
  color: var(--titleColor);
}

.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.sidemenu-wrapper .th-widget-about .footer-info {
  color: var(--theme-color);
}
.sidemenu-wrapper .th-widget-about .footer-info a{
  color: inherit;
}
/*------------------- 2.5. Mobile Menu -------------------*/
.th-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: var(--smoke-color);
}

.th-menu-wrapper .mobile-logo img{
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  width: 140px;
}
.th-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}

.th-menu-wrapper .th-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--titleColor);
  background-color: var(--secondaryColor);
  border-radius: 50%;
}

.th-menu-wrapper .th-menu-toggle:hover {
  background-color: var(--titleColor);
  color: var(--whiteColor);
}

.th-menu-wrapper .th-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--secondaryColor);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.th-menu-wrapper.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.th-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
  /***scroll-bar***/
}

.th-mobile-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 0px;
}

.th-mobile-menu::-webkit-scrollbar-track {
  background: white;
  box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.3);
  border-radius: 0px;
}

.th-mobile-menu::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.3) 25%, transparent 20%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
  border-radius: 0px;
}

.th-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.th-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}

.th-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}

.th-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--titleColor);
  font-family: 'Laila';
  font-weight: 600;
  padding-left: 18px;
}

.th-mobile-menu ul li a:before {
  content: '\f105';
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  top: 12px;
  margin-right: 10px;
  display: inline-block;
}

.th-mobile-menu ul li.th-active > a {
  color: var(--theme-color);
}

.th-mobile-menu ul li.th-active > a:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.th-mobile-menu ul li ul li {
  padding-left: 20px;
}

.th-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.th-mobile-menu ul .th-item-has-children > a .th-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--titleColor);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}

.th-mobile-menu ul .th-item-has-children > a .th-mean-expand:before {
  content: '\f067';
  font-family: var(--icon-font);
}

.th-mobile-menu ul .th-item-has-children > a:after {
  content: "\f067";
  font-family: var(--icon-font);
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--smoke-color);
  float: right;
  margin-top: 1px;
}

.th-mobile-menu ul .th-item-has-children.th-active > a .th-mean-expand:before {
  content: '\f068';
}

.th-mobile-menu ul .th-item-has-children.th-active > a:after {
  content: "\f068";
}

.th-mobile-menu > ul {
  padding: 0 40px;
}

.th-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

.th-menu-toggle {
  width: 56px;
  height: 56px;
  padding: 0;
  font-size: 20px;
  border: none;
  background-color: #fff;
  color: var(--theme-color);
  display: inline-block;
  border-radius: 8px;
}
.sticky .th-menu-toggle{
  background-color: var(--theme-color);
  color: #fff;
}

.th-menu-toggle:hover {
  background-color: var(--theme-color);
  color: var(--whiteColor);
}

.th-menu-toggle.style-text, .th-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--titleColor);
  font-size: 20px;
}

.th-menu-toggle.style-text i, .th-menu-toggle.style-text-white i {
  margin-right: 10px;
}

.th-menu-toggle.style-text-white {
  color: var(--whiteColor);
}

@media (max-width: 400px) {
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .th-mobile-menu > ul {
    padding: 0 20px;
  }
}

.icon-btn {   
 display: inline-block;
 width: 48px;
 min-width: 48px;
 height: 48px;
 line-height: 48px;
 font-size: 18px;
 background-color: transparent;
 border: 1px solid rgba(153, 153, 153, 0.5);
 border-radius: 8px;
 color: var(--titleColor);
 text-align: center;
 -webkit-transition: 0.4s 
 ease-in-out;
 transition: 0.4s 
 ease-in-out;
 display: flex
 ;
 align-items: center;
 justify-content: center;
}

@media(max-width: 768px){
  .header-layout7 .header-top:before{
    width: 100%;
    height: 100%;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .header-links li:not(:last-child){
    margin: 0;
  }
  .header-links li:last-child{
    display: none;
  }
  .header-layout7:before{

    width: 53%;
    height: 83px;
  }
  .header-layout7:after{
    width: 61%;
    height: 72px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 16% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 16% 100%);
  }
  .header-logo img{
    width: 71px;
  }
}
header .btn.style-three{
  padding: 12px 27px 12px 27px;
  color: #fff;
}
header .btn.style-three:after{
  background-color: #000;
}
.footer-area .footer-menu.main_menu li a{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 26px;
}
.quicl_links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 12px;
}
.quicl_links li a{
  color: #000;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 12px;
  font-family: 'Laila';
  position: relative;
}
.quicl_links li a:after{
  position: absolute;
  content: '';
  right: -8px;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.3);
}
@media(max-width: 768px){
  .float_btn{
    right: 10px;
  }
  .float_btn.float_call{
    right: 160px;
  }
}