a.meanmenu-reveal {
  display: none;
}
.mean-container .mean-bar {
  float: left;
  width: 100%;
  position: relative;
  background: #0c1923;
  padding: 4px 0;
  min-height: 42px;
  z-index: 999999;
}
.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.mean-container a.meanmenu-reveal span {
  display: block;
  background: #fff;
  height: 3px;
  margin-top: 3px;
}
.mean-container .mean-nav {
  float: left;
  width: 100%;
  background: #0c1923;
  margin-top: 44px;
}
.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}
.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}
.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 90%;
  padding: 1em 5%;
  margin: 0;
  text-align: left;
  color: #fff;
  border-top: 1px solid #383838;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  text-transform: uppercase;
}
.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 1em 10%;
  border-top: 1px solid #f1f1f1;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0.75;
  filter: alpha(opacity=75);
  text-shadow: none !important;
  visibility: visible;
}
.mean-container .mean-nav ul li.mean-last a {
  border-bottom: 0;
  margin-bottom: 0;
}
.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 1em 15%;
}
.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 1em 20%;
}
.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 1em 25%;
}
.mean-container .mean-nav ul li a:hover {
  background: #252525;
  background: rgba(255, 255, 255, 0.1);
}
.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 1px;
  width: 26px;
  height: 32px;
  padding: 12px !important;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 0 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: rgba(0, 0, 0, 0.9);
}
.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}
.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}
.mean-container .mean-bar,
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.mean-remove {
  display: none !important;
}

[data-cue="fadeIn"],
[data-cues="fadeIn"] > * {
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/**  ---------------
     slideInLeft
*/
[data-cue="slideInLeft"],
[data-cues="slideInLeft"] > * {
  opacity: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/**  ---------------
     slideInRight
*/
[data-cue="slideInRight"],
[data-cues="slideInRight"] > * {
  opacity: 0;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/**  ---------------
     slideInDown
*/
[data-cue="slideInDown"],
[data-cues="slideInDown"] > * {
  opacity: 0;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/**  ---------------
     slideInUp
*/
[data-cue="slideInUp"],
[data-cues="slideInUp"] > * {
  opacity: 0;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/**  ---------------
     zoomIn
*/
[data-cue="zoomIn"],
[data-cues="zoomIn"] > * {
  opacity: 0;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/**  ---------------
     zoomOut
*/
[data-cue="zoomOut"],
[data-cues="zoomOut"] > * {
  opacity: 0;
}

@keyframes zoomOut {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/**  ---------------
     rotateIn
*/
[data-cue="rotateIn"],
[data-cues="rotateIn"] > * {
  opacity: 0;
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotateZ(-15deg);
  }
  to {
    opacity: 1;
    transform: rotateZ(0deg);
  }
}

/**  ---------------
     bounceIn
*/
[data-cue="bounceIn"],
[data-cues="bounceIn"] > * {
  opacity: 0;
}

@keyframes bounceIn {
  0% {
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

/**  ---------------
     bounceInLeft
*/
[data-cue="bounceInLeft"],
[data-cues="bounceInLeft"] > * {
  opacity: 0;
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/**  ---------------
     bounceInRight
*/
[data-cue="bounceInRight"],
[data-cues="bounceInRight"] > * {
  opacity: 0;
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/**  ---------------
     bounceInDown
*/
[data-cue="bounceInDown"],
[data-cues="bounceInDown"] > * {
  opacity: 0;
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/**  ---------------
     bounceInUp
*/
[data-cue="bounceInUp"],
[data-cues="bounceInUp"] > * {
  opacity: 0;
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/**  ---------------
     flipInX
*/
[data-cue="flipInX"],
[data-cues="flipInX"] > * {
  opacity: 0;
  backface-visibility: visible;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}

/**  ---------------
     flipInY
*/
[data-cue="flipInY"],
[data-cues="flipInY"] > * {
  opacity: 0;
  backface-visibility: visible;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    opacity: 1;
    transform: perspective(400px);
  }
}

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav {
  margin-top: 10px;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/*

*******************************************
*******************************************

** - Default CSS
** - Default Btn CSS
** - Section Title CSS
** - Preloader Area CSS
** - Header Area CSS
** - Banner Area CSS
** - About Area CSS
** - Request Quote Area CSS
** - Performance Specifications Area CSS
** - Destinations Area CSS
** - Flight Booking Area CSS
** - CTA Area CSS
** - FAQ Area CSS
** - Funfacts Area CSS
** - Private Flight Area CSS
** - Feedback Area CSS
** - Blog Area CSS
** - Special Offer Area CSS
** - Subscribe Area CSS
** - Features Area CSS
** - Active Airplanes Area CSS
** - Pricing Area CSS
** - Partner Area CSS
** - Newsletter Area CSS
** - Checkout Area CSS
** - Services Area CSS
** - Page Title Area CSS
** - Team Area CSS
** - 
** - 
** - 
** - 
** - 
** - 
** - 
** - 
** - 
** - 
** - Footer Area CSS
** - Copyright Area CSS
** - Go Top CSS
*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap");
:root {
  --fontFamily: "Lexend", sans-serif;
  --headingFontFamily: "Lexend", sans-serif;
  --mainColor: #10b981;
  --optionalColor: #ff621f;
  --bodyColor: #555555;
  --whiteColor: #ffffff;
  --blackColor: #111827;
  --transition: 0.5s;
  --fontSize: 16px;
}

body {
  margin: 0;
  padding: 0;
  color: var(--bodyColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--blackColor);
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}
a:hover {
  color: var(--mainColor);
  text-decoration: none;
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

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

p {
  color: var(--secondaryColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.9;
}
p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

.bg-f3f4f6 {
  background-color: #f3f4f6;
}

.default-btn {
  border: 0;
  position: relative;
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--mainColor);
  padding: 16.5px 60.55px 16.5px 30.55px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.default-btn i {
  top: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px;
  position: absolute;
  border-radius: 50%;
  color: var(--mainColor);
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.default-btn.two {
  background-color: var(--optionalColor);
}
.default-btn.two i {
  color: var(--optionalColor);
}
.default-btn.two:hover {
  background-color: var(--mainColor);
}
.default-btn.two:hover i {
  color: var(--mainColor);
}
.default-btn.style-2 i {
  right: 50px;
  width: 0;
  height: 0;
  line-height: 0;
  border-radius: unset;
  background-color: unset;
  color: var(--whiteColor);
}
.default-btn.style-2:hover i {
  color: var(--whiteColor);
}
.default-btn:hover {
  color: var(--whiteColor);
  background-color: var(--optionalColor);
}
.default-btn:hover i {
  color: var(--optionalColor);
}

.section-title {
  max-width: 660px;
  margin-bottom: 45px;
}
.section-title .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.section-title h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 0;
}
.section-title.style-2 .sub-title {
  text-transform: uppercase;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader-area {
  z-index: 9999;
  background-color: var(--whiteColor);
}
.preloader-area .preloader {
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}
.preloader-area .preloader .waviy {
  margin-top: 20px;
  font-size: 60px;
  font-family: var(--headingFontFamily);
}
.preloader-area .preloader .waviy span {
  animation-delay: 0.1s;
  color: var(--blackColor);
  animation: waviy 1s infinite;
}
.preloader-area .preloader .waviy span:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader-area .preloader .waviy span:nth-child(3) {
  animation-delay: 0.3s;
}
.preloader-area .preloader .waviy span:nth-child(4) {
  animation-delay: 0.4s;
}
.preloader-area .preloader .waviy span:nth-child(5) {
  animation-delay: 0.5s;
}
.preloader-area.deactivate {
  display: none;
}

@keyframes waviy {
  0%,
  40%,
  100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-15px);
  }
}
/* Max width 767px */
@media only screen and (max-width: 767px) {
  .preloader-area .preloader .waviy {
    font-size: 30px;
  }
}
/* Min width 576px to Max width 767px */
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .preloader-area .preloader .waviy {
    font-size: 45px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .preloader-area .preloader .waviy {
    font-size: 55px;
  }
}
/* Min width 1200px to Max width 1399px */
/* Min width 1600px */
/*================================================
Header Area CSS
=================================================*/
.navbar-area {
  background-color: var(--whiteColor);
}
.navbar-area.is-sticky {
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  position: sticky;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar-area.is-sticky .nofa-nav .navbar {
  border-bottom: 0;
}
.navbar-area.style-2 {
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  position: absolute;
  background-color: transparent;
}
.navbar-area.style-2.is-sticky {
  position: fixed;
  background-color: var(--blackColor);
}
.navbar-area.page-title {
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/page-title-bg2.jpg);
}
.navbar-area.page-title.is-sticky {
  background-image: none;
  background-color: var(--whiteColor) !important;
  z-index: 9999;
}

.nofa-responsive-nav {
  display: none;
}

.nofa-nav .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.nofa-nav .navbar {
  padding: 0;
  border-bottom: 1px solid #d9d9d9;
}
.nofa-nav .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
}
.nofa-nav .navbar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.nofa-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}
.nofa-nav .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
.nofa-nav .navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
  padding-left: 0;
  padding-right: 0;
  padding-top: 36px;
  padding-bottom: 36px;
}
.nofa-nav .navbar .navbar-nav .nav-item .nav-link:hover,
.nofa-nav .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 17px;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  position: absolute;
  content: "\e9fe";
  line-height: 1;
  right: -2px;
  top: 42px;
  font-family: "Phosphor-Bold";
  font-size: 15px;
}
.nofa-nav .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.nofa-nav .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
.nofa-nav .navbar .navbar-nav .nav-item:hover .nav-link,
.nofa-nav .navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 99px;
  opacity: 0;
  z-index: 99;
  border: none;
  width: 250px;
  margin-top: 0;
  display: block;
  padding: 12px 0;
  border-radius: 0;
  position: absolute;
  visibility: hidden;
  background: var(--whiteColor);
  transition: all 0.2s ease-in-out;
  box-shadow: rgba(4, 4, 5, 0.2) 0px 7px 36px -8px;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin: 0;
}
.nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  display: block;
  font-size: 17px;
  padding: 8px 25px;
  color: var(--blackColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.active,
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.dropdown-toggle::before {
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  visibility: hidden;
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link {
  color: var(--blackColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.active,
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -100%;
  visibility: hidden;
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link {
  color: var(--blackColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.active,
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  visibility: hidden;
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link {
  color: var(--blackColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.active,
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item.active
  .nav-link {
  color: var(--mainColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item.active
  .nav-link {
  color: var(--mainColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item.active
  .nav-link {
  color: var(--mainColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item.active
  .nav-link {
  color: var(--mainColor);
}
.nofa-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav .navbar .others-option {
  top: 2px;
}
.nofa-nav .navbar .others-option .option-item {
  margin-left: 20px;
}
.nofa-nav .navbar .others-option .option-item .user-btn {
  font-size: 22px;
}
.nofa-nav .navbar .others-option .option-item .cart-btn {
  top: 1px;
  font-size: 22px;
  padding-right: 8px;
}
.nofa-nav .navbar .others-option .option-item .cart-btn span {
  color: var(--whiteColor);
  background-color: red;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  line-height: 12px;
  font-size: 10px;
  height: 12px;
  width: 12px;
  top: -2px;
  right: 0;
}
.nofa-nav .navbar .others-option .option-item .search-btn {
  cursor: pointer;
  font-size: 22px;
  transition: var(--transition);
}
.nofa-nav .navbar .others-option .option-item .search-btn:hover {
  color: var(--mainColor);
}
.nofa-nav .navbar .others-option .option-item:first-child {
  margin-left: 0;
}
.nofa-nav.style-2 .navbar {
  border-color: rgba(255, 255, 255, 0.1);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .nav-link {
  color: var(--whiteColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .nav-link:hover,
.nofa-nav.style-2 .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item:hover .nav-link,
.nofa-nav.style-2 .navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--mainColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link {
  color: var(--blackColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.active,
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu {
  visibility: hidden;
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link {
  color: var(--blackColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.active,
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu {
  visibility: hidden;
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link {
  color: var(--blackColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.active,
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu {
  visibility: hidden;
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link {
  color: var(--blackColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.active,
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item.active
  .nav-link {
  color: var(--mainColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item.active
  .nav-link {
  color: var(--mainColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item.active
  .nav-link {
  color: var(--mainColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu
  .nav-item:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item.active
  .nav-link {
  color: var(--mainColor);
}
.nofa-nav.style-2
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav.style-2 .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nofa-nav.style-2 .navbar .others-option .option-item .user-btn {
  color: var(--whiteColor);
}
.nofa-nav.style-2 .navbar .others-option .option-item .user-btn:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .others-option .option-item .cart-btn {
  color: var(--whiteColor);
}
.nofa-nav.style-2 .navbar .others-option .option-item .cart-btn:hover {
  color: var(--mainColor);
}
.nofa-nav.style-2 .navbar .others-option .option-item .search-btn {
  color: var(--whiteColor);
}
.nofa-nav.style-2 .navbar .others-option .option-item .search-btn:hover {
  color: var(--mainColor);
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.search-overlay {
  opacity: 0;
  z-index: 991;
  transition: 0.3s;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.9);
}
.search-overlay .search-overlay-close {
  top: 40px;
  right: 40px;
  line-height: 1;
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  color: var(--whiteColor);
  transition: var(--transition);
}
.search-overlay .search-overlay-close:hover {
  color: red;
}
.search-overlay .search-overlay-form {
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  max-width: 600px;
  width: 600px;
  left: 50%;
  top: 50%;
}
.search-overlay .search-overlay-form form {
  position: relative;
}
.search-overlay .search-overlay-form form .input-search {
  border: 0;
  height: 70px;
  color: var(--whiteColor);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.search-overlay .search-overlay-form form .input-search::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-overlay-form form .input-search::placeholder {
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.5);
}
.search-overlay .search-overlay-form form .input-search:focus {
  border-color: var(--whiteColor);
}
.search-overlay
  .search-overlay-form
  form
  .input-search:focus::-moz-placeholder {
  color: transparent;
}
.search-overlay .search-overlay-form form .input-search:focus::placeholder {
  color: transparent;
}
.search-overlay .search-overlay-form form button {
  right: 0;
  top: 20px;
  font-size: 20px;
  position: absolute;
  color: var(--whiteColor);
  transition: var(--transition);
}
.search-overlay .search-overlay-form form button:hover {
  color: var(--mainColor);
}
.search-overlay.search-overlay-active {
  opacity: 1;
  visibility: visible;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .navbar-area {
    border-bottom: 1px solid #eeeeee;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-area.is-sticky {
    border-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .nofa-responsive-nav {
    display: block;
  }
  .nofa-responsive-nav .nofa-responsive-menu {
    position: relative;
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav {
    margin-top: 65px;
    background-color: var(--whiteColor);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul {
    border: none !important;
    font-size: 16px;
    font-family: var(--headingFontFamily);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li a {
    border-top-color: #eeeeee;
    color: var(--blackColor);
    text-transform: unset;
    font-weight: 600;
  }
  .nofa-responsive-nav
    .nofa-responsive-menu.mean-container
    .mean-nav
    ul
    li
    a
    i {
    display: none;
  }
  .nofa-responsive-nav
    .nofa-responsive-menu.mean-container
    .mean-nav
    ul
    li
    a.mean-expand {
    width: 50%;
    height: 28px;
    text-align: end;
    background: transparent;
    padding: 10px !important;
    font-size: 22px !important;
    font-weight: normal;
    border-left: none !important;
    border-bottom: none !important;
  }
  .nofa-responsive-nav
    .nofa-responsive-menu.mean-container
    .mean-nav
    ul
    li
    a.active {
    color: var(--mainColor);
  }
  .nofa-responsive-nav
    .nofa-responsive-menu.mean-container
    .mean-nav
    ul
    li
    li
    a {
    font-size: 15px;
    color: var(--blackColor);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .navbar-nav {
    max-height: 60vh;
    background-color: var(--whiteColor);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .nofa-responsive-nav .mean-container a.meanmenu-reveal {
    top: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    padding-top: 0;
    margin-top: 9px;
    color: var(--blackColor);
  }
  .nofa-responsive-nav .mean-container a.meanmenu-reveal span {
    top: 8px;
    height: 3px;
    margin-top: -9px;
    border-radius: 3px;
    position: relative;
    background: var(--blackColor);
  }
  .nofa-responsive-nav .mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 99;
    padding: 0;
  }
  .nofa-responsive-nav .dropdown-toggle::after {
    display: none !important;
  }
  .nofa-responsive-nav .others-option {
    position: absolute !important;
    right: 43px;
    top: 17px;
  }
  .nofa-responsive-nav .others-option .option-item {
    margin-left: 13px;
  }
  .nofa-responsive-nav .others-option .option-item .user-btn {
    font-size: 18px;
  }
  .nofa-responsive-nav .others-option .option-item .cart-btn {
    top: 1px;
    font-size: 18px;
    padding-right: 8px;
  }
  .nofa-responsive-nav .others-option .option-item .cart-btn span {
    color: var(--whiteColor);
    background-color: red;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    text-align: center;
    line-height: 12px;
    font-size: 10px;
    height: 12px;
    width: 12px;
    top: -2px;
    right: 0;
  }
  .nofa-responsive-nav .others-option .option-item .search-btn {
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
  }
  .nofa-responsive-nav .others-option .option-item .search-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav .others-option .option-item:first-child {
    margin-left: 0;
  }
  .nofa-responsive-nav .logo {
    width: 200px;
    z-index: 99;
    position: relative;
  }
  .nofa-responsive-nav.style-2 .mean-container a.meanmenu-reveal {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .mean-container a.meanmenu-reveal span {
    background: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .user-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .user-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .cart-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .cart-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .search-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .search-btn:hover {
    color: var(--mainColor);
  }
  .nofa-nav {
    display: none;
  }
  .search-overlay .search-overlay-close {
    top: 20px;
    right: 20px;
    font-size: 25px;
  }
  .search-overlay .search-overlay-form {
    max-width: 100%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .search-overlay .search-overlay-form form .input-search {
    height: 50px;
  }
  .search-overlay .search-overlay-form form button {
    top: 11px;
    font-size: 18px;
  }
}
/* Min width 576px to Max width 767px */
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area {
    border-bottom: 1px solid #eeeeee;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-area.is-sticky {
    border-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .nofa-responsive-nav {
    display: block;
  }
  .nofa-responsive-nav .nofa-responsive-menu {
    position: relative;
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav {
    margin-top: 65px;
    background-color: var(--whiteColor);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul {
    border: none !important;
    font-size: 16px;
    font-family: var(--headingFontFamily);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .mean-nav ul li a {
    border-top-color: #eeeeee;
    color: var(--blackColor);
    text-transform: unset;
    font-weight: 600;
  }
  .nofa-responsive-nav
    .nofa-responsive-menu.mean-container
    .mean-nav
    ul
    li
    a
    i {
    display: none;
  }
  .nofa-responsive-nav
    .nofa-responsive-menu.mean-container
    .mean-nav
    ul
    li
    a.mean-expand {
    width: 50%;
    height: 28px;
    text-align: end;
    background: transparent;
    padding: 10px !important;
    font-size: 22px !important;
    font-weight: normal;
    border-left: none !important;
    border-bottom: none !important;
  }
  .nofa-responsive-nav
    .nofa-responsive-menu.mean-container
    .mean-nav
    ul
    li
    a.active {
    color: var(--mainColor);
  }
  .nofa-responsive-nav
    .nofa-responsive-menu.mean-container
    .mean-nav
    ul
    li
    li
    a {
    font-size: 15px;
    color: var(--blackColor);
  }
  .nofa-responsive-nav .nofa-responsive-menu.mean-container .navbar-nav {
    max-height: 60vh;
    background-color: var(--whiteColor);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .nofa-responsive-nav .mean-container a.meanmenu-reveal {
    top: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    padding-top: 0;
    margin-top: 9px;
    color: var(--blackColor);
  }
  .nofa-responsive-nav .mean-container a.meanmenu-reveal span {
    top: 8px;
    height: 3px;
    margin-top: -9px;
    border-radius: 3px;
    position: relative;
    background: var(--blackColor);
  }
  .nofa-responsive-nav .mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 99;
    padding: 0;
  }
  .nofa-responsive-nav .dropdown-toggle::after {
    display: none !important;
  }
  .nofa-responsive-nav .others-option {
    position: absolute !important;
    right: 47px;
    top: 15px;
  }
  .nofa-responsive-nav .others-option .option-item {
    margin-left: 15px;
  }
  .nofa-responsive-nav .others-option .option-item .user-btn {
    font-size: 20px;
  }
  .nofa-responsive-nav .others-option .option-item .cart-btn {
    top: 1px;
    font-size: 20px;
    padding-right: 8px;
  }
  .nofa-responsive-nav .others-option .option-item .cart-btn span {
    color: var(--whiteColor);
    background-color: red;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    text-align: center;
    line-height: 12px;
    font-size: 10px;
    height: 12px;
    width: 12px;
    top: -2px;
    right: 0;
  }
  .nofa-responsive-nav .others-option .option-item .search-btn {
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
  }
  .nofa-responsive-nav .others-option .option-item .search-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav .others-option .option-item:first-child {
    margin-left: 0;
  }
  .nofa-responsive-nav .logo {
    width: 30%;
    z-index: 99;
    position: relative;
  }
  .nofa-responsive-nav.style-2 .mean-container a.meanmenu-reveal {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .mean-container a.meanmenu-reveal span {
    background: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .user-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .user-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .cart-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .cart-btn:hover {
    color: var(--mainColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .search-btn {
    color: var(--whiteColor);
  }
  .nofa-responsive-nav.style-2 .others-option .option-item .search-btn:hover {
    color: var(--mainColor);
  }
  .nofa-nav {
    display: none;
  }
  .search-overlay .search-overlay-form form .input-search {
    height: 60px;
  }
  .search-overlay .search-overlay-form form button {
    top: 15px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nofa-nav .container-fluid {
    max-width: 960px;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .nofa-nav .navbar .navbar-nav .nav-item {
    margin-left: 11px;
    margin-right: 11px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .nav-link {
    font-size: 17px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
    top: 36.2px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
    font-size: 16px;
  }
  .nofa-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu {
    left: -100%;
  }
  .nofa-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu {
    left: 100%;
  }
  .nofa-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu {
    left: -100%;
  }
  .nofa-nav .navbar .others-option .option-item {
    margin-left: 18px;
  }
  .nofa-nav .navbar .others-option .option-item .user-btn {
    font-size: 20px;
  }
  .nofa-nav .navbar .others-option .option-item .cart-btn {
    font-size: 20px;
  }
  .nofa-nav .navbar .others-option .option-item .search-btn {
    font-size: 20px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .nofa-nav .navbar .navbar-nav .nav-item {
    margin-left: 15px;
    margin-right: 15px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .nav-link {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .nofa-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
    top: 38px;
  }
  .nofa-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu {
    left: -100%;
  }
  .nofa-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu {
    left: 100%;
  }
  .nofa-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu
    .nav-item
    .dropdown-menu {
    left: -100%;
  }
}
/* Min width 1600px */
@media only screen and (min-width: 1600px) {
  .nofa-nav .container-fluid {
    max-width: 1920px;
    padding-left: 100px;
    padding-right: 100px;
  }
  .nofa-nav.style-2 .container-fluid {
    max-width: 1760px;
    padding-left: 100px;
    padding-right: 100px;
  }
}
/*================================================
Banner Area CSS
=================================================*/
.banner-area {
  padding-top: 80px;
}
.banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.banner-content {
  margin-bottom: -100px;
  max-width: 750px;
  z-index: 1;
}
.banner-content h1 {
  font-size: 75px;
  line-height: 1.2;
}
.banner-content h1 span {
  position: relative;
  color: var(--mainColor);
}
.banner-content h1 span::before {
  top: 12px;
  content: "";
  width: 36px;
  right: -46px;
  height: 32px;
  position: absolute;
  background-image: url(../images/banners/leaf.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.banner-image {
  z-index: 2;
  margin-bottom: -200px;
}

.banner-description {
  border-radius: 50px 50px 20px 50px;
  background-color: #eefaf6;
  padding: 300px 0 0 30px;
}
.banner-description .description {
  max-width: 492px;
}
.banner-description .description .default-btn {
  margin-top: 5px;
}
.banner-description .boxes-list {
  padding: 20px;
  margin-left: -122px;
  border-radius: 20px 0 20px 0;
  background-color: var(--whiteColor);
}
.banner-description .boxes-list .box {
  padding: 30px;
  border-radius: 20px;
  background-color: #fff7ed;
}
.banner-description .boxes-list .box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.banner-description .boxes-list .col-lg-4:nth-child(2) .box {
  background-color: #eefaf6;
}

.shape7 {
  right: 0;
  top: 50px;
  z-index: -1;
  position: absolute;
}

.shape8 {
  left: 0;
  top: 115px;
  z-index: -1;
  position: absolute;
}

.shape9 {
  top: 5%;
  right: 2%;
  z-index: -1;
  position: absolute;
}

.shape10 {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}

.banner-wrapper-area {
  padding-top: 316px;
  padding-bottom: 90px;
  background-image: url(../images/banners/banner-bg-2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-wrapper-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.banner-wrapper-area .banner-icon-shape {
  right: 168px;
  bottom: 197px;
  z-index: -1;
}
.banner-wrapper-area::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0.8;
  position: absolute;
  background-color: #111827;
}

.banner-wrapper-content {
  max-width: 500px;
  margin-left: 115px;
  margin-right: auto;
}
.banner-wrapper-content h1 {
  line-height: 80px;
  margin-bottom: 30px;
  color: var(--whiteColor);
  font-size: 75px;
  font-weight: 400;
}
.banner-wrapper-content h1 span {
  font-weight: 700;
  text-transform: uppercase;
}
.banner-wrapper-content .button {
  border-radius: 30px;
  color: var(--whiteColor);
  background-color: transparent;
  transition: var(--transition);
  display: inline-block;
  font-family: var(--headingFontFamily);
  padding: 15.5px 60.55px 15.5px 32.55px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  font-weight: 600;
}
.banner-wrapper-content .button i {
  top: 50%;
  right: 30px;
  font-size: 20px;
  position: absolute;
  color: var(--whiteColor);
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: transparent;
}
.banner-wrapper-content .button:hover {
  border-color: var(--whiteColor);
}

.banner-wrapper-video {
  right: 300px;
  bottom: 330px;
  position: absolute;
}
.banner-wrapper-video .icon h3 {
  font-size: 22px;
  margin-bottom: 0;
  margin-right: 7px;
  letter-spacing: 13.86px;
  color: var(--whiteColor);
  text-transform: uppercase;
}
.banner-wrapper-video .icon a {
  z-index: 1;
  width: 73px;
  height: 73px;
  line-height: 73px;
  border-radius: 100%;
  text-align: center;
  color: var(--mainColor);
  border: 2px solid var(--whiteColor);
}
.banner-wrapper-video .icon a::before {
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  z-index: -1;
  width: 42px;
  height: 42px;
  margin: auto;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%);
  background-color: var(--whiteColor);
}
.banner-wrapper-video .icon a::after {
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  z-index: -1;
  width: 58px;
  height: 58px;
  margin: auto;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  transition: var(--transition);
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
}
.banner-wrapper-video .icon a:hover::after {
  width: 72px;
  height: 72px;
}

.banner-wrapper-awards {
  max-width: 733px;
  margin-top: 211px;
  margin-left: auto;
  margin-right: 0;
}
.banner-wrapper-awards h3 {
  font-size: 18px;
  padding-right: 93px;
  margin-right: 43px;
  color: var(--whiteColor);
  text-transform: uppercase;
}
.banner-wrapper-awards h3::before {
  top: 50%;
  right: 0;
  width: 49px;
  height: 2px;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background-color: var(--whiteColor);
}
.banner-wrapper-awards ul li {
  max-width: 54px;
  margin-right: 37px;
  line-height: 1.3;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--headingFontFamily);
  font-size: 16px;
  font-weight: 600;
}
.banner-wrapper-awards ul li:last-child {
  margin-right: 0;
}

.banner-widget-area {
  padding-top: 90px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("..//images/banners/banner-bg-4.webp");
}
.banner-widget-area::before {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: var(--blackColor);
}

.banner-widget-content .content {
  right: 0;
  left: 15px;
  margin: auto;
  bottom: 75px;
  position: absolute;
  text-align: center;
}
.banner-widget-content .content h2,
.banner-widget-content .content h1 {
  font-size: 70px;
  line-height: 1.3;
  color: var(--whiteColor);
}
.banner-widget-content .content h1 span {
  margin-right: 170px;
}
.banner-widget-content .content .background-text {
  z-index: -1;
  position: relative;
}
.banner-widget-content .content .show-text {
  margin-bottom: 50px;
}
.banner-widget-content .content .default-btn {
  background-color: var(--optionalColor);
}
.banner-widget-content .content .default-btn:hover {
  background-color: var(--mainColor);
}
.shape13 {
  left: 0;
  bottom: 0;
  position: absolute;
}

.shape15 {
  right: 500px;
  bottom: 140px;
  position: absolute;
}

/*================================================
About Area CSS
=================================================*/
.about-image .image {
  border-radius: 20px;
}
.about-image .image img {
  border-radius: 20px;
}
.about-image .image .experience {
  top: 50px;
  left: -16px;
  position: absolute;
}
.about-image .image .experience img {
  border-radius: 0;
}
.about-image .image .experience span {
  left: 0;
  right: 0;
  top: 18px;
  line-height: 1.3;
  padding-left: 25px;
  position: absolute;
  color: var(--whiteColor);
  font-size: 20px;
  font-family: var(--headingFontFamily);
}
.about-image .col-lg-6:nth-child(1) .image {
  margin-top: 50px;
}
.about-image.style-3 .image {
  border-radius: 0;
}
.about-image.style-3 .image img {
  border-radius: 0;
}
.about-image.style-3 .image .user-image {
  padding: 10px;
  max-width: 448px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.07);
}
.about-image.style-3 .image .user-image-2 {
  padding: 10px;
  max-width: 335px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.07);
  margin-left: auto;
  margin-top: -260px;
}
.about-image.style-3 .image .experience {
  top: 37px;
  right: 40px;
  left: auto;
}
.about-image.style-3 .image .experience span {
  top: 15px;
  padding-left: 30px;
  font-size: 16px;
  font-family: var(--fontFamily);
}
.about-image.style-3 .image .experience span strong {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}

.about-content {
  padding-left: 45px;
}
.about-content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.about-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.about-content .features-list {
  margin-top: 20px;
  margin-bottom: 35px;
}
.about-content .features-list li {
  color: var(--blackColor);
  margin-bottom: 12px;
  padding-left: 32px;
  font-size: 20px;
  font-family: var(--headingFontFamily);
}
.about-content .features-list li i {
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  color: var(--optionalColor);
}
.about-content .features-list li:last-child {
  margin-bottom: 0;
}
.about-content .call-info {
  margin-left: 40px;
}
.about-content .call-info .icon {
  width: 60px;
  height: 60px;
  font-size: 25px;
  line-height: 62px;
  border-radius: 50%;
  margin-right: 15px;
  text-align: center;
  border: 1px solid #eeeeee;
  color: var(--optionalColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  filter: drop-shadow(0px 0px 30px rgba(17, 24, 39, 0.1));
}
.about-content .call-info .info span {
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--bodyColor);
}
.about-content .call-info .info a {
  font-size: 20px;
  font-family: var(--headingFontFamily);
}
.about-content .call-info:hover .icon {
  background-color: var(--optionalColor);
  border-color: var(--optionalColor);
  color: var(--whiteColor);
}
.about-content.style-2 {
  width: 100%;
  padding-left: 0;
  margin-right: 0;
  margin-left: auto;
}
.about-content.style-2 .sub-title {
  text-transform: uppercase;
}

.shape1 {
  left: 0;
  top: 50%;
  z-index: -1;
  position: absolute;
  transform: translateY(-50%);
}

.shape11 {
  left: 0;
  top: -793px;
  z-index: -1;
}

/*================================================
Request Quote Area CSS
=================================================*/
.request-quote-area.bg-image {
  background-color: var(--blackColor);
  background-image: url(../images/request-quote-bg.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.request-quote-content {
  max-width: 925px;
}
.request-quote-content h2 {
  font-size: 48px;
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--whiteColor);
}
.request-quote-content p {
  color: rgba(255, 255, 255, 0.6);
}
.request-quote-content .default-btn {
  margin-top: 15px;
}

/*================================================
Performance Specifications Area CSS
=================================================*/
.performance-specifications-area .section-title {
  margin-bottom: 133px;
}
.performance-specifications-area::before {
  left: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 72.7%;
  height: 74.9%;
  position: absolute;
  background: #fff7ed;
}
.performance-specifications-area.style-2 {
  background-color: #fff7ed;
}
.performance-specifications-area.style-2 .section-title {
  margin-bottom: 45px;
}
.performance-specifications-area.style-2::before {
  display: none;
}
.performance-specifications-area.style-3 {
  background-color: var(--whiteColor);
}
.performance-specifications-area.style-3::before {
  display: none;
}

.performance-specifications-content {
  margin-right: -25px;
}
.performance-specifications-content .btn-box {
  margin-top: 25px;
}

.performance-specifications-box {
  padding: 40px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 20px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  margin-top: 40px;
  margin-bottom: 25px;
}
.performance-specifications-box .icon {
  top: -40px;
  right: 40px;
  width: 80px;
  height: 80px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  background-color: var(--whiteColor);
}
.performance-specifications-box .icon::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  margin: 10px;
  border-radius: 50%;
  position: absolute;
  border: 2px solid var(--mainColor);
}
.performance-specifications-box .icon img {
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
  margin-top: -2px;
  position: absolute;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}
.performance-specifications-box .icon::after {
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 40px;
  position: absolute;
  background-color: var(--whiteColor);
}
.performance-specifications-box h3 {
  font-size: 24px;
  position: relative;
  margin-bottom: 15px;
}
.performance-specifications-box:hover {
  transform: translateY(-10px);
}

.performance-specifications-image {
  padding-left: 50px;
}
.performance-specifications-image
  .performance-specifications-image-slides
  .item
  img {
  border-radius: 20px;
}
.performance-specifications-image .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}
.performance-specifications-image .owl-theme .owl-dots {
  left: 0;
  right: 0;
  bottom: 40px;
  position: absolute;
}
.performance-specifications-image .owl-theme .owl-dots .owl-dot span {
  margin: 0 5px;
  border-radius: 50%;
  background: var(--whiteColor);
  transition: var(--transition);
}
.performance-specifications-image .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--mainColor);
}
.performance-specifications-image .owl-theme .owl-dots .owl-dot.active span {
  transform: scale(1.5);
  background: var(--mainColor);
}

.single-performance-specifications-info {
  padding: 40px;
  border-radius: 5px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.single-performance-specifications-info .icon {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  text-align: center;
  margin-right: 20px;
  line-height: 100px;
  border-radius: 100%;
  display: inline-block;
  background-color: rgba(16, 185, 129, 0.1);
}
.single-performance-specifications-info .content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.single-performance-specifications-info .content .link-btn {
  color: var(--mainColor);
  padding-right: 22px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.single-performance-specifications-info .content .link-btn i {
  top: 50%;
  right: -3px;
  line-height: 1;
  margin-top: 1px;
  position: absolute;
  transform: translateY(-50%);
}
.single-performance-specifications-info .content .link-btn:hover {
  color: var(--optionalColor);
}
.single-performance-specifications-info .image {
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -2;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-performance-specifications-info::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  border-radius: 5px;
  transition: var(--transition);
  border: 1px solid var(--mainColor);
}
.single-performance-specifications-info:hover .image {
  opacity: 1;
  visibility: visible;
}
.single-performance-specifications-info:hover::before {
  opacity: 1;
  visibility: visible;
}
.single-performance-specifications-info.style-3 {
  padding: 40px 55px;
  border: 2px dashed rgba(17, 24, 39, 0.06);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.06);
}
.single-performance-specifications-info.style-3 .icon {
  width: 75px;
  height: 75px;
  margin-right: 30px;
  line-height: 75px;
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-performance-specifications-info.style-3 .icon span {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.single-performance-specifications-info.style-3 .image {
  opacity: 1;
  visibility: visible;
}
.single-performance-specifications-info.style-3::before {
  display: none;
}
.single-performance-specifications-info.style-3:hover {
  border-color: var(--mainColor);
}

.shape2 {
  top: -10px;
  z-index: -1;
  right: -45px;
  position: absolute;
}

.shape14 {
  right: 0;
  top: 125px;
  z-index: -1;
  position: absolute;
}

/*================================================
Destinations Area CSS
=================================================*/
.destinations-content {
  padding-right: 121px;
  margin-bottom: 25px;
}
.destinations-content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.destinations-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.destinations-content .default-btn {
  margin-top: 12px;
}

.destinations-items {
  margin-left: -78px;
}

.destinations-item {
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 20px;
}
.destinations-item .image {
  border-radius: 20px;
}
.destinations-item .image img {
  border-radius: 20px;
  transition: var(--transition);
}
.destinations-item .content {
  left: 0;
  right: 0;
  bottom: 30px;
  padding: 30px;
  position: absolute;
  border-radius: 20px;
  background-color: var(--whiteColor);
  margin-left: 30px;
  margin-right: 30px;
}
.destinations-item .content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.destinations-item:hover .image img {
  transform: scale(1.08);
}
.destinations-item.style-2 {
  border-radius: 5px;
}
.destinations-item.style-2 .image {
  border-radius: 5px;
}
.destinations-item.style-2 .image img {
  border-radius: 5px;
}
.destinations-item.style-2 .content {
  z-index: 1;
  border-radius: 5px;
}
.destinations-item.style-2 .content .shape-image {
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  position: absolute;
  visibility: hidden;
  transition: var(--transition);
}
.destinations-item.style-2:hover .content .shape-image {
  opacity: 1;
  visibility: visible;
}

.shape3 {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}
.shape3.style-2 {
  top: -215px;
}

/*================================================
Flight Booking Area CSS
=================================================*/
.flight-booking-area::before {
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  height: 70px;
  width: 56.7%;
  position: absolute;
  background: var(--whiteColor);
}
.flight-booking-area.style-2::before {
  display: none;
}

.flight-booking-form {
  padding: 50px;
  border-radius: 20px;
  margin-right: -43px;
  background-color: var(--blackColor);
  background-image: url(../images/flight-booking/flight-booking-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.flight-booking-form .step {
  top: 50px;
  right: 50px;
  position: absolute;
  color: var(--whiteColor);
  font-family: var(--headingFontFamily);
}
.flight-booking-form .step span {
  font-weight: 700;
}
.flight-booking-form .nav-tabs {
  margin-bottom: 27px;
  display: block;
  border: 0;
}
.flight-booking-form .nav-tabs .nav-item {
  display: inline-block;
  margin-right: 25px;
}
.flight-booking-form .nav-tabs .nav-item .nav-link {
  border: 0;
  line-height: 1;
  position: relative;
  padding: 0 0 0 25px;
  color: var(--whiteColor);
  background-color: transparent;
  transition: var(--transition);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.flight-booking-form .nav-tabs .nav-item .nav-link::before {
  top: 50%;
  left: 4px;
  width: 8px;
  content: "";
  height: 8px;
  position: absolute;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--mainColor);
  transition: var(--transition);
}
.flight-booking-form .nav-tabs .nav-item .nav-link::after {
  left: 0;
  top: 50%;
  opacity: 0;
  content: "";
  width: 16px;
  height: 16px;
  visibility: hidden;
  position: absolute;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  border: 1px solid var(--mainColor);
}
.flight-booking-form .nav-tabs .nav-item .nav-link:hover::after {
  opacity: 1;
  visibility: visible;
}
.flight-booking-form .nav-tabs .nav-item .nav-link.active::before {
  background: var(--optionalColor);
}
.flight-booking-form .nav-tabs .nav-item .nav-link.active::after {
  opacity: 1;
  visibility: visible;
  border-color: var(--optionalColor);
}
.flight-booking-form .nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.flight-booking-form .tab-content {
  margin-bottom: 30px;
}
.flight-booking-form .tab-content .tab-pane form .form-group {
  margin-bottom: 25px;
}
.flight-booking-form .tab-content .tab-pane form .form-group label {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--whiteColor);
}
.flight-booking-form .tab-content .tab-pane form .form-group .form-control {
  border: 0;
  height: 60px;
  font-size: 14px;
  box-shadow: unset;
  border-radius: 10px;
  color: var(--blackColor);
  padding-left: 20px;
  padding-right: 20px;
}
.flight-booking-form
  .tab-content
  .tab-pane
  form
  .form-group
  .form-control::-moz-placeholder {
  color: var(--bodyColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.flight-booking-form
  .tab-content
  .tab-pane
  form
  .form-group
  .form-control::placeholder {
  color: var(--bodyColor);
  transition: var(--transition);
}
.flight-booking-form
  .tab-content
  .tab-pane
  form
  .form-group
  .form-control:focus::-moz-placeholder {
  color: transparent;
}
.flight-booking-form
  .tab-content
  .tab-pane
  form
  .form-group
  .form-control:focus::placeholder {
  color: transparent;
}
.flight-booking-form .tab-content .tab-pane form .form-group .form-select {
  border: 0;
  height: 60px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: unset;
  border-radius: 10px;
  background-color: var(--whiteColor);
  padding-left: 20px;
  padding-right: 20px;
}
.flight-booking-form p {
  font-size: 14px;
  color: var(--whiteColor);
}
.flight-booking-form.style-2 {
  padding: 0;
  margin-left: 88px;
  background-image: unset;
  background-color: transparent;
}
.flight-booking-form.style-2 .step {
  top: auto;
  color: var(--bodyColor);
}
.flight-booking-form.style-2 .step span {
  color: var(--blackColor);
}
.flight-booking-form.style-2 .nav-tabs {
  border-radius: 60px;
  display: inline-block;
  background-color: var(--whiteColor);
}
.flight-booking-form.style-2 .nav-tabs .nav-item {
  margin-right: 10px;
}
.flight-booking-form.style-2 .nav-tabs .nav-item .nav-link {
  padding: 17px 22px;
  border-radius: 60px;
  color: var(--blackColor);
  background-color: transparent;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--bodyColor);
}
.flight-booking-form.style-2 .nav-tabs .nav-item .nav-link::before {
  display: none;
}
.flight-booking-form.style-2 .nav-tabs .nav-item .nav-link::after {
  display: none;
}
.flight-booking-form.style-2 .nav-tabs .nav-item .nav-link:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.flight-booking-form.style-2 .nav-tabs .nav-item .nav-link.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.flight-booking-form.style-2 .nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.flight-booking-form.style-2 .tab-content .tab-pane form .form-group label {
  color: var(--bodyColor);
}
.flight-booking-form.style-2
  .tab-content
  .tab-pane
  form
  .form-group
  .form-control {
  color: var(--bodyColor);
  background-color: transparent;
  border: 1px solid rgba(17, 24, 39, 0.1);
}
.flight-booking-form.style-2
  .tab-content
  .tab-pane
  form
  .form-group
  .form-select {
  background-color: transparent;
  border: 1px solid rgba(17, 24, 39, 0.1);
}
.flight-booking-form.style-2 p {
  color: var(--bodyColor);
}

.flight-booking-content {
  padding-left: 85px;
  margin-top: 100px;
}
.flight-booking-content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.flight-booking-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.flight-booking-content .features-list {
  margin-top: 45px;
}
.flight-booking-content .features-list li {
  margin-bottom: 35px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 35px;
  padding-left: 80px;
}
.flight-booking-content .features-list li i {
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  font-size: 30px;
  line-height: 58px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--optionalColor);
}
.flight-booking-content .features-list li h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.flight-booking-content .features-list li:hover i {
  background-color: var(--mainColor);
}
.flight-booking-content .features-list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.flight-booking-image {
  margin-left: -100px;
  margin-right: -30px;
}

/*================================================
CTA Area CSS
=================================================*/
.cta-area::after {
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 50%;
  content: "";
  position: absolute;
  background: #f3f4f6;
}
.cta-area.style-2::after {
  top: auto;
  bottom: 0;
}
.cta-area.style-3::after {
  top: 0;
  background-color: var(--blackColor);
}

.cta-inner-area {
  padding: 60px 85px;
  border-radius: 20px;
  background-color: var(--whiteColor);
  box-shadow: 0px 35px 50px 0px rgba(17, 24, 39, 0.05);
}
.cta-inner-area .icon {
  z-index: 1;
  width: 80px;
  height: 80px;
  font-size: 25px;
  position: relative;
  text-align: center;
  border-radius: 50%;
  margin-right: -25px;
  color: var(--whiteColor);
  background: rgba(16, 185, 129, 0.2);
}
.cta-inner-area .icon i {
  left: 0;
  right: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.cta-inner-area .icon::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  margin: 10px;
  border-radius: 50%;
  position: absolute;
  background: var(--mainColor);
}
.cta-inner-area .user {
  z-index: 1;
  position: relative;
}
.cta-inner-area .user img {
  width: 60px;
  border-radius: 50%;
}
.cta-inner-area .number {
  line-height: 1;
  font-family: var(--headingFontFamily);
  font-weight: 600;
  font-size: 48px;
}
.cta-inner-area p {
  max-width: 240px;
  margin-left: 115px;
  margin-bottom: 0;
}
.cta-inner-area.style-2 {
  padding: 65px 85px;
  border-radius: 5px;
  box-shadow: 0px -10px 50px 0px rgba(17, 24, 39, 0.05);
}
.cta-inner-area.style-2 .background-color-shape {
  top: 0;
  right: 0;
  z-index: -1;
  position: absolute;
}

.cta-content h1 {
  font-size: 48px;
  margin-bottom: 12px;
}
.cta-content p {
  max-width: 100%;
}

.cta-contact-info {
  margin-left: 185px;
}
.cta-contact-info .icon {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  display: block;
  font-size: 35px;
  margin-right: 20px;
  line-height: 100px;
  text-align: center;
  color: var(--mainColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.cta-contact-info .icon::before {
  display: none;
}
.cta-contact-info .icon:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.cta-contact-info .content span {
  color: #eeeeee;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.cta-contact-info .content a {
  line-height: 1;
  color: var(--whiteColor);
  font-size: 35px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.cta-contact-info .content a:hover {
  color: var(--mainColor);
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-area.style-3 {
  background-color: rgb(255, 247, 237);
}

.faq-accordion.accordion .accordion-item {
  border: 0;
  border-radius: 15px;
  margin-bottom: 25px;
  color: var(--blackColor);
  background-color: #fff7ed;
}
.faq-accordion.accordion .accordion-item .accordion-button {
  border: 0;
  display: block;
  border-radius: 0;
  box-shadow: unset;
  color: var(--blackColor);
  background-color: transparent;
  padding: 23.5px 60px 23.5px 30px;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.faq-accordion.accordion .accordion-item .accordion-button::before {
  top: 50%;
  right: 30px;
  content: "—";
  position: absolute;
  color: var(--mainColor);
  transform: translateY(-50%);
  font-family: "Phosphor";
  font-size: 18px;
  filter: drop-shadow(0px 1px 0px var(--mainColor));
}
.faq-accordion.accordion .accordion-item .accordion-button::after {
  display: none;
}
.faq-accordion.accordion .accordion-item .accordion-button.collapsed::before {
  content: "+";
  font-size: 30px;
  filter: none;
}
.faq-accordion.accordion .accordion-item .accordion-body {
  padding: 0 30px 30px;
}
.faq-accordion.style-3 .accordion-item {
  border-radius: 0;
  border: 2px dashed #eeeeee;
  background-color: var(--whiteColor);
}

.faq-user-item {
  margin-bottom: 40px;
}
.faq-user-item span {
  margin-bottom: 14px;
}
.faq-user-item .user li {
  margin-right: -20px;
}
.faq-user-item .user li img {
  z-index: 1;
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 100%;
  border: 5px solid var(--whiteColor);
}
.faq-user-item .user li i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--mainColor);
  background-color: var(--whiteColor);
}

/*================================================
Funfacts Area CSS
=================================================*/
.funfacts-inner-area {
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
}
.funfacts-inner-area.style-3 {
  border-top: 2px dashed #bbb;
  border-bottom: 2px dashed #bbb;
}

.funfact-item {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
}
.funfact-item h2 {
  font-size: 30px;
  color: var(--mainColor);
  margin-bottom: 9px;
  margin-top: -11px;
}
.funfact-item span {
  color: var(--blackColor);
  margin-bottom: -5px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.funfact-item::before {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  content: "";
  position: absolute;
  background: #bbb;
  margin-top: 55px;
  margin-bottom: 55px;
}
.funfact-item::after {
  left: 0;
  right: 0;
  opacity: 0;
  height: 1px;
  content: "";
  bottom: -1px;
  visibility: hidden;
  position: absolute;
  background: var(--mainColor);
  transition: var(--transition);
  margin-left: 55px;
  margin-right: 55px;
}
.funfact-item:hover::after {
  opacity: 1;
  visibility: visible;
}
.funfact-item.style-3 h2 {
  color: var(--optionalColor);
}
.funfact-item.style-3:before {
  height: 100%;
  width: 0;
  background: transparent;
  border-right: 2px dashed #eeeeee;
  margin-top: 0;
  margin-bottom: 0;
}
.funfact-item.style-3::after {
  width: 100%;
  height: 2px;
  background-color: var(--optionalColor);
  margin-left: 0;
  margin-right: 0;
}

.col-lg-3:nth-child(1) .funfact-item.style-3 {
  border-left: 2px dashed #eeeeee;
}

/*================================================
Private Flight Area CSS
=================================================*/
.private-flight-area::before {
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: -1;
  height: 340px;
  position: absolute;
  background-color: var(--blackColor);
}
.private-flight-area.style-3::before {
  display: none;
}

.private-flight-content {
  height: 100%;
  display: flex;
  margin-bottom: 25px;
  flex-direction: column;
  justify-content: space-between;
}
.private-flight-content .content {
  padding-top: 35px;
}
.private-flight-content .content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.private-flight-content .content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.private-flight-content .content .default-btn {
  margin-top: 12px;
}
.private-flight-content .partners {
  margin-right: -65px;
  padding-bottom: 35px;
}
.private-flight-content .partners span {
  margin-bottom: 30px;
}
.private-flight-content .partners img {
  opacity: 0.5;
  cursor: pointer;
  transition: var(--transition);
}
.private-flight-content .partners img:hover {
  opacity: 1;
}

.private-flight-list {
  padding-left: 48px;
}

.single-flight-box {
  z-index: 1;
  padding: 45px 30px;
  position: relative;
  border-radius: 20px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.1);
}
.single-flight-box img {
  width: 250px;
}
.single-flight-box .from-to {
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
.single-flight-box .from-to h3 {
  line-height: 1;
  font-size: 40px;
  margin-bottom: 5px;
}
.single-flight-box .from-to span {
  line-height: 1;
  color: var(--mainColor);
  font-size: 20px;
  font-family: var(--headingFontFamily);
}
.single-flight-box .from-to i {
  top: 5px;
  line-height: 1;
  font-size: 35px;
  position: relative;
  color: var(--mainColor);
}
.single-flight-box ul {
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
.single-flight-box ul li {
  border-bottom: 1px solid #eeeeee;
  padding-top: 14px;
  padding-bottom: 14px;
}
.single-flight-box .default-btn {
  margin-top: 25px;
}
.single-flight-box::before {
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  content: "";
  height: 770px;
  position: absolute;
  border-radius: 20px 20px 0 0;
  background-image: url(../images/private-flight/bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*================================================
Feedback Area CSS
=================================================*/
.feedback-area {
  background-color: #f3f4f6;
}
.feedback-area.style-2 {
  background-color: var(--whiteColor);
}
.feedback-area.style-2::before {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  content: "";
  position: absolute;
  background-color: #f3f4f6;
}
.feedback-area .line-shape {
  left: 0;
  right: 0;
  bottom: 118px;
  margin: auto;
  z-index: -1;
  text-align: center;
  position: absolute;
}

.feedback-content {
  margin-bottom: 60px;
}
.feedback-content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.feedback-content h2 {
  font-size: 48px;
  line-height: 1.3;
  max-width: 947px;
  margin-bottom: 15px;
}
.feedback-content .number {
  letter-spacing: 25px;
  color: var(--mainColor);
  font-size: 150px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
  margin-top: -30px;
  margin-bottom: 20px;
}

.single-feedback-box {
  padding: 78px;
  margin-top: 30px;
  border-radius: 20px;
  background-color: var(--whiteColor);
}
.single-feedback-box .image {
  margin-left: 3px;
  margin-top: -108px;
  margin-bottom: 44px;
}
.single-feedback-box .image img {
  width: 110.5px !important;
  display: inline-block !important;
}
.single-feedback-box h3 {
  font-size: 24px;
  margin-bottom: 7px;
}
.single-feedback-box p {
  margin-top: 25px;
}
.single-feedback-box .info {
  margin-top: 35px;
}
.single-feedback-box .info h6 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}
.single-feedback-box .info .ratings i {
  line-height: 1;
  font-size: 20px;
  color: #fdd836;
  margin-right: 5px;
}
.single-feedback-box .info .ratings i:last-child {
  margin-right: 0;
}
.single-feedback-box .info span {
  font-size: 14px;
}
.single-feedback-box .quote {
  top: -20px;
  left: 75px;
  width: 38px;
  height: 38px;
  font-size: 18px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  color: var(--whiteColor);
  border: 2px solid var(--whiteColor);
  background-color: var(--optionalColor);
}
.single-feedback-box::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  margin: 28px;
  position: absolute;
  border: 1px solid #eeeeee;
}
.single-feedback-box.style-2 {
  border-radius: 5px;
  box-shadow: 0px 10px 50px 0px rgba(17, 24, 39, 0.05);
}

.feedback-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 45px;
}
.feedback-slides.owl-theme .owl-dots .owl-dot span {
  margin: 0 5px;
  border-radius: 50%;
  transition: var(--transition);
  background: rgba(17, 24, 39, 0.2);
}
.feedback-slides.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--blackColor);
}
.feedback-slides.owl-theme .owl-dots .owl-dot.active span {
  transform: scale(1.5);
  background: var(--blackColor);
}
.feedback-slides.owl-theme .owl-nav {
  margin-top: 50px;
}
.feedback-slides.owl-theme .owl-nav .owl-prev,
.feedback-slides.owl-theme .owl-nav .owl-next {
  margin: 0;
  width: 60px;
  height: 60px;
  font-size: 20px;
  line-height: 65px;
  margin-right: 20px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  border: 1px solid #eee;
  color: var(--mainColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px 3px rgba(17, 24, 39, 0.1);
}
.feedback-slides.owl-theme .owl-nav .owl-prev:hover,
.feedback-slides.owl-theme .owl-nav .owl-next:hover {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}
.feedback-slides.owl-theme .owl-nav .owl-next {
  margin-right: 0;
}

.shape4 {
  top: 6%;
  right: 12%;
  z-index: -1;
  position: absolute;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area.style-2 {
  background-color: #fff7ed;
}

.single-blog-post {
  margin-bottom: 25px;
  border-radius: 20px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 30px 0px rgba(17, 24, 39, 0.08);
}
.single-blog-post .image {
  border-radius: 20px 20px 0 0;
}
.single-blog-post .image a {
  border-radius: 20px 20px 0 0;
}
.single-blog-post .image a img {
  border-radius: 20px 20px 0 0;
  transition: var(--transition);
}
.single-blog-post .image .date {
  bottom: 0;
  left: 40px;
  width: 78px;
  height: 78px;
  padding-top: 3px;
  position: absolute;
  text-align: center;
  color: var(--whiteColor);
  background-color: var(--optionalColor);
  border-top: 8px solid var(--whiteColor);
  border-left: 8px solid var(--whiteColor);
  border-right: 8px solid var(--whiteColor);
}
.single-blog-post .image .date span strong {
  display: block;
  font-size: 24px;
}
.single-blog-post .content {
  padding: 30px 40px;
}
.single-blog-post .content .meta {
  margin-bottom: 20px;
}
.single-blog-post .content .meta li {
  margin-right: 20px;
  padding-left: 25px;
}
.single-blog-post .content .meta li a {
  color: var(--bodyColor);
}
.single-blog-post .content .meta li a:hover {
  color: var(--mainColor);
}
.single-blog-post .content .meta li i {
  left: 0;
  top: 50%;
  font-size: 18px;
  position: absolute;
  color: var(--mainColor);
  transform: translateY(-50%);
}
.single-blog-post .content .meta li:last-child {
  margin-right: 0;
}
.single-blog-post .content h3 {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
}
.single-blog-post .content .link-btn {
  color: var(--mainColor);
  padding-right: 22px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.single-blog-post .content .link-btn i {
  top: 50%;
  right: -3px;
  line-height: 1;
  margin-top: 1px;
  position: absolute;
  transform: translateY(-50%);
}
.single-blog-post .content .link-btn:hover {
  color: var(--optionalColor);
}
.single-blog-post:hover .image a img {
  transform: scale(1.08);
}
.single-blog-post.style-2 {
  border-radius: 5px;
}
.single-blog-post.style-2 .image {
  border-radius: 5px 5px 0 0;
}
.single-blog-post.style-2 .image a {
  border-radius: 5px 5px 0 0;
}
.single-blog-post.style-2 .image a img {
  border-radius: 5px 5px 0 0;
}
.single-blog-post.style-2 .content .meta li {
  padding-left: 20px;
  margin-right: 25px;
  text-transform: uppercase;
}
.single-blog-post.style-2 .content .meta li::before {
  left: 0;
  top: 50%;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  transform: translateY(-50%);
  background-color: var(--mainColor);
}
.single-blog-post.style-2 .content .meta li:first-child {
  padding-left: 0;
}
.single-blog-post.style-2 .content .meta li:first-child::before {
  display: none;
}
.single-blog-post.style-2 .content .meta li:last-child {
  margin-right: 0;
}
.single-blog-post.style-2 .content h3 {
  border: unset;
  padding-bottom: 0;
}
.single-blog-post.style-2 .content .link-btn {
  padding: 16px 34px;
  border-radius: 60px;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}
.single-blog-post.style-2 .content .link-btn i {
  top: 2px;
  right: 0;
  margin-top: 0;
  margin-left: 5px;
  position: relative;
  transform: unset;
}
.single-blog-post.style-2 .content .link-btn:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-blog-post.style-2 .shape-image {
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-blog-post.style-2:hover .content .link-btn {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-blog-post.style-2:hover .shape-image {
  opacity: 1;
  visibility: visible;
}
.single-blog-post.blog-style {
  box-shadow: unset;
  margin-bottom: 40px;
}
.single-blog-post.blog-style .image {
  margin-bottom: 25px;
  border-radius: 20px;
}
.single-blog-post.blog-style .image a {
  border-radius: 20px;
}
.single-blog-post.blog-style .image a img {
  border-radius: 20px;
}
.single-blog-post.blog-style .content {
  padding: 0;
}
.single-blog-post.blog-style .content h3 {
  padding-bottom: 0;
  margin-bottom: 10px;
  border-bottom: unset;
}
.single-blog-post.blog-style .content p {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
}
.single-blog-post.details-style {
  margin-bottom: 25px;
}
.single-blog-post.details-style .content p {
  padding-bottom: 0;
  margin-bottom: 12px;
  border-bottom: unset;
}

.single-blog-image {
  margin-bottom: 25px;
}
.single-blog-image .image {
  margin-bottom: 25px;
}
.single-blog-image ul {
  margin-bottom: 15px;
}
.single-blog-image ul li {
  font-size: 14px;
  padding-left: 20px;
  margin-right: 20px;
}
.single-blog-image ul li i {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.single-blog-image ul li:last-child {
  margin-right: 0;
}
.single-blog-image ul li:nth-child(1) i {
  color: var(--optionalColor);
}
.single-blog-image ul li:nth-child(2) {
  padding-left: 25px;
}
.single-blog-image ul li:nth-child(2) i {
  color: var(--mainColor);
}
.single-blog-image h1 {
  font-size: 48px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.single-blog-image h1 a {
  text-decoration-line: underline;
}

.single-blog-content {
  padding-left: 70px;
  border-left: 2px dashed #eeeeee;
  margin-left: 50px;
  margin-bottom: 25px;
}
.single-blog-content .item {
  margin-bottom: 73px;
}
.single-blog-content .item ul {
  margin-bottom: 15px;
}
.single-blog-content .item ul li {
  font-size: 14px;
  padding-left: 20px;
  margin-right: 20px;
}
.single-blog-content .item ul li i {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.single-blog-content .item ul li:last-child {
  margin-right: 0;
}
.single-blog-content .item ul li:nth-child(1) i {
  color: var(--optionalColor);
}
.single-blog-content .item ul li:nth-child(2) {
  padding-left: 25px;
}
.single-blog-content .item ul li:nth-child(2) i {
  color: var(--mainColor);
}
.single-blog-content .item h3 {
  font-size: 24px;
  max-width: 320px;
  margin-bottom: 15px;
}
.single-blog-content .item:last-child {
  margin-bottom: 0;
}

/*================================================
Special Offer Area CSS
=================================================*/
.special-offer-area {
  background-color: #fff7ed;
}

.special-offer-content {
  margin-left: auto;
  max-width: 806px;
}
.special-offer-content .sub-title {
  color: var(--optionalColor);
  margin-bottom: 5px;
}
.special-offer-content h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.special-offer-content .default-btn {
  margin-top: 12px;
}

.special-offer-image {
  margin-left: 60px;
}

.shape5 {
  left: 40%;
  z-index: -1;
  bottom: 80px;
  position: absolute;
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
  background-color: var(--blackColor);
}
.subscribe-area .border-bottom {
  padding-top: 100px;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.subscribe-content h2 {
  font-size: 30px;
  max-width: 384px;
  line-height: 1.5;
}

.subscribe-form .form-control {
  border: 0;
  height: 60px;
  box-shadow: unset;
  border-radius: 60px;
  color: var(--whiteColor);
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 28px;
  padding-right: 28px;
}
.subscribe-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}
.subscribe-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-form .form-control:focus::placeholder {
  color: transparent;
}
.subscribe-form .default-btn {
  top: 0;
  right: 0;
  position: absolute;
}
.subscribe-form .form-check {
  padding-left: 30px;
  position: relative;
  min-height: auto;
  margin-bottom: 0;
  margin-top: 20px;
}
.subscribe-form .form-check .form-check-input {
  left: 0;
  top: 50%;
  float: unset;
  width: 20px;
  height: 20px;
  cursor: pointer;
  box-shadow: unset;
  border-radius: 5px;
  position: absolute;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid var(--whiteColor);
  margin-top: -1px;
  margin-left: 0;
}
.subscribe-form .form-check .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.subscribe-form .form-check .form-check-label {
  cursor: pointer;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.4);
}

.shape12 {
  left: 0;
  top: 0;
  z-index: -1;
  position: absolute;
}

/*================================================
Features Area CSS
=================================================*/
.features-area.style-3 {
  background-color: rgb(255, 247, 237);
}

.single-features-card {
  padding: 80px;
  border-radius: 5px;
  margin-bottom: 25px;
  border: 1px solid #e7e8e9;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.single-features-card .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 100%;
  display: inline-block;
  transition: var(--transition);
  background-color: var(--whiteColor);
  border: 1px solid rgb(238, 238, 238);
}
.single-features-card span {
  font-size: 12px;
  margin-bottom: 10px;
}
.single-features-card h3 {
  font-size: 24px;
}
.single-features-card h3 a {
  color: var(--blackColor);
}
.single-features-card h3 a:hover {
  color: var(--optionalColor);
}
.single-features-card .link-btn {
  color: var(--mainColor);
  padding-right: 22px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.single-features-card .link-btn i {
  top: 50%;
  right: -3px;
  line-height: 1;
  margin-top: 1px;
  position: absolute;
  transform: translateY(-50%);
}
.single-features-card .link-btn:hover {
  color: var(--optionalColor);
}
.single-features-card .number {
  left: 40px;
  bottom: 30px;
  color: #eee;
  margin-bottom: 0;
  position: absolute;
  transition: var(--transition);
  font-size: 35px;
  font-weight: 600;
}
.single-features-card .hover-image {
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.single-features-card:hover .hover-image {
  opacity: 1;
  visibility: visible;
}
.single-features-card:hover .number {
  color: var(--mainColor);
}
.single-features-card.style-3 {
  border: 2px dashed #e7e8e9;
}
.single-features-card.style-3:hover .icon {
  background-color: var(--mainColor);
}
.single-features-card.style-3:hover .icon img {
  filter: brightness(11111);
}

.col-lg-4:nth-child(1) .single-features-card.style-3 {
  border-right: unset;
}
.col-lg-4:nth-child(2) .single-features-card.style-3 {
  border-right: unset;
}

/*================================================
Active Airplanes Area CSS
=================================================*/
.single-airplanes-card {
  padding: 40px;
  border-radius: 5px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.06);
}
.single-airplanes-card .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin-bottom: 15px;
  border-radius: 100%;
  display: inline-block;
  background-color: rgba(16, 185, 129, 0.1);
}
.single-airplanes-card h1 {
  line-height: 1;
  font-size: 64px;
  margin-bottom: 12px;
  color: var(--mainColor);
}
.single-airplanes-card h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.single-airplanes-card .shape-image {
  top: 0;
  right: 0;
  z-index: -1;
}

.single-airplanes-video {
  padding-top: 110px;
  padding-bottom: 110px;
  background-image: url(../images/airplanes/airplanes-card-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.single-airplanes-video a {
  border: 0;
  position: relative;
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--mainColor);
  padding: 16.5px 30.55px 16.5px 60.55px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.single-airplanes-video a i {
  top: 50%;
  left: 30px;
  font-size: 20px;
  position: absolute;
  transform: translateY(-50%);
}
.single-airplanes-video a:hover {
  color: var(--whiteColor);
  background-color: var(--optionalColor);
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-area .section-title h2 {
  color: var(--whiteColor);
}
.pricing-area .background-color {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}
.pricing-area::before {
  top: 0;
  right: 0;
  content: "";
  z-index: -1;
  width: 170px;
  height: 285px;
  position: absolute;
  background-color: #f3f4f6;
}
.pricing-area.style-3 .section-title h2 {
  color: var(--blackColor);
}
.pricing-area.style-3::before {
  display: none;
}

.single-pricing-card {
  border-radius: 5px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.1);
}
.single-pricing-card .content {
  padding: 30px 40px;
  padding-top: 80px;
  border-radius: 5px 5px 0 0;
  background-color: rgba(16, 185, 129, 0.15);
}
.single-pricing-card .content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.single-pricing-card .content p {
  margin-bottom: 0;
}
.single-pricing-card .content .icon {
  top: 0;
  right: 0;
  width: 85px;
  height: 85px;
  font-size: 30px;
  line-height: 85px;
  text-align: center;
  position: absolute;
  color: var(--whiteColor);
  transition: var(--transition);
  border-radius: 0px 5px 60px 60px;
  background-color: var(--optionalColor);
  border-left: 2px solid var(--whiteColor);
  border-bottom: 2px solid var(--whiteColor);
}
.single-pricing-card .list {
  padding: 30px 40px;
  border-radius: 0 0 5px 5px;
  background-color: var(--whiteColor);
}
.single-pricing-card .list ul li {
  position: relative;
  margin-bottom: 15px;
  color: var(--bodyColor);
  padding-left: 35px;
  padding-bottom: 15px;
}
.single-pricing-card .list ul li strong {
  font-weight: 700;
}
.single-pricing-card .list ul li i {
  top: 0;
  left: 0;
  font-size: 20px;
  position: absolute;
  color: var(--optionalColor);
}
.single-pricing-card .list ul li::before {
  left: 0;
  bottom: 0;
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(238, 238, 238);
}
.single-pricing-card .list ul li:last-child {
  padding-bottom: 0;
}
.single-pricing-card .list ul li:last-child::before {
  display: none;
}
.single-pricing-card .list a {
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  border-radius: 60px;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.single-pricing-card .list a i {
  top: 2px;
  right: -5px;
  position: relative;
}
.single-pricing-card .list a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-pricing-card:hover .content .icon {
  background-color: var(--mainColor);
}
.single-pricing-card:hover .list a {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-pricing-card.style-3 {
  border-radius: 0;
  box-shadow: unset;
  border: 2px dashed #eeeeee;
}
.single-pricing-card.style-3 .content {
  padding: 30px 40px;
}

.col-lg-4:nth-child(1) .single-pricing-card {
  border-right: unset;
}
.col-lg-4:nth-child(2) .single-pricing-card {
  border-right: unset;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-section-title p {
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--blackColor);
}

.single-partner-info {
  padding: 35px 60px;
  border-radius: 5px;
  position: relative;
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid #eee;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.05);
}
.single-partner-info .image {
  transition: var(--transition);
}
.single-partner-info .image img {
  width: 69.53px;
  height: 79.93px;
}
.single-partner-info .image .image-one {
  transition: var(--transition);
}
.single-partner-info .image .image-two {
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  margin: auto;
  text-align: center;
  display: inline-block;
  position: absolute;
  transition: var(--transition);
}
.single-partner-info .shape-image {
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-partner-info:hover .image .image-one {
  opacity: 0;
  visibility: hidden;
}
.single-partner-info:hover .image .image-two {
  opacity: 1;
  visibility: visible;
}
.single-partner-info:hover .shape-image {
  opacity: 1;
  visibility: visible;
}
.single-partner-info.style-3 {
  border: 2px dashed #eee;
}

/*================================================
Newsletter Area CSS
=================================================*/
.newsletter-area::before {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: var(--blackColor);
}

.newsletter-info {
  padding: 55px 70px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 50px 0px rgba(17, 24, 39, 0.06);
}
.newsletter-info .newsletter-bg-shape {
  top: 0;
  right: 0;
  z-index: -1;
  position: absolute;
}

.newsletter-content .section-title {
  margin-bottom: 30px;
}
.newsletter-content form .form-group {
  position: relative;
  max-width: 589px;
}
.newsletter-content form .form-group .form-control {
  height: 60px;
  border: unset;
  border-radius: 0;
  max-width: 480px;
  box-shadow: unset;
  padding-left: 25px;
  background-color: rgb(243, 244, 246);
}
.newsletter-content form .form-group .form-control::-moz-placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.newsletter-content form .form-group .form-control::placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.newsletter-content form .form-group button {
  top: 0;
  right: 0;
  position: absolute;
}

/*================================================
Checkout Area CSS
=================================================*/
.checkout-area {
  background-color: rgb(243, 244, 246);
}

.single-checkout-info {
  margin-bottom: 25px;
}
.single-checkout-info .image img {
  border: 7px solid var(--whiteColor);
}
.single-checkout-info .content {
  z-index: 1;
  left: 40px;
  bottom: 30px;
  position: absolute;
}
.single-checkout-info .content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.single-checkout-info .content h3 a {
  color: var(--whiteColor);
}
.single-checkout-info .content h3 a:hover {
  color: var(--mainColor);
}
.single-checkout-info .content p {
  color: var(--whiteColor);
}
.single-checkout-info .bg-shape {
  left: 7px;
  right: 7px;
  bottom: 7px;
  position: absolute;
}
.single-checkout-info .bg-shape.style-2 img {
  height: 183px;
  width: 100%;
}
.single-checkout-info.play {
  border-radius: 100%;
}
.single-checkout-info.play .image img {
  border-radius: 100%;
}
.single-checkout-info.play .bg-shape {
  display: none;
}
.single-checkout-info.play .play-button {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}
.single-checkout-info.play .play-button a {
  font-size: 55px;
  line-height: 1;
  color: var(--whiteColor);
}
.single-checkout-info.play .play-button a:hover {
  color: var(--optionalColor);
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  background-color: var(--blackColor);
}
.services-area .section-title h2 {
  color: var(--whiteColor);
}

.single-services-info {
  padding: 50px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/services/services2.jpg);
}
.single-services-info .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  margin-bottom: 20px;
  display: inline-block;
  background-color: var(--optionalColor);
}
.single-services-info span {
  font-weight: 700;
  color: var(--whiteColor);
}
.single-services-info p {
  margin-top: 100px;
  margin-bottom: 100px;
  color: var(--whiteColor);
}
.single-services-info h4 {
  font-size: 24px;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.single-services-info::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: rgba(17, 24, 39, 0.85);
}
.single-services-info .bg-shape {
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-services-info:hover .bg-shape {
  opacity: 1;
  visibility: visible;
}

.col-lg-4:nth-child(2) .single-services-info {
  background-image: url(../images/services/services3.jpg);
}
.col-lg-4:nth-child(3) .single-services-info {
  background-image: url(../images/services/services4.jpg);
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  padding-top: 112px;
  padding-bottom: 112px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/page-title-bg.webp");
  position: relative;
}

.page-title-area:before {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #ffffff85;
}

.page-title-area .container {
  position: relative;
}
.page-title-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}
.page-title-content h6 {
  max-width: 571px;
  color: var(--bodyColor);
  font-size: 30px;
  font-weight: 400;
}

.pagination {
  margin-top: 20px;
  margin-bottom: 25px;
}
.pagination .page-item {
  margin-right: 10px;
}
.pagination .page-item .page-link {
  height: 50px;
  width: 50px;
  line-height: 35px;
  text-align: center;
  border-radius: 100%;
  color: var(--blackColor);
  border: 1px solid #eee;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(17, 24, 39, 0.06);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.pagination .page-item .page-link i {
  left: 0;
  top: 0;
  line-height: 39px;
  position: relative;
  color: var(--mainColor);
  transition: var(--transition);
}
.pagination .page-item .page-link:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.pagination .page-item .page-link:hover i {
  color: var(--whiteColor);
}
.pagination .page-item .page-link.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.single-testimonial-info {
  padding: 30px;
  padding-bottom: 0;
  margin-bottom: 25px;
  border-radius: 0px 0px 0px 0px;
}
.single-testimonial-info .icon {
  margin-bottom: 20px;
}
.single-testimonial-info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.single-testimonial-info p {
  margin-bottom: 25px;
}
.single-testimonial-info .star {
  margin-top: 25px;
  margin-bottom: 25px;
}
.single-testimonial-info .star li i {
  color: rgb(253, 216, 54);
}
.single-testimonial-info .star li:last-child i {
  color: rgb(216, 216, 216);
}
.single-testimonial-info .user img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 5px solid var(--whiteColor);
}
.single-testimonial-info .bg-shape {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}

.destination-details-left-sidebar {
  margin-right: 40px;
  margin-bottom: 25px;
}
.destination-details-left-sidebar .image {
  margin-bottom: 25px;
}
.destination-details-left-sidebar .image img {
  border-radius: 20px;
}
.destination-details-left-sidebar .content h3 {
  font-size: 40px;
  margin-bottom: 12px;
}
.destination-details-left-sidebar .content .list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.destination-details-left-sidebar .content .list li {
  color: var(--blackColor);
  margin-bottom: 12px;
  padding-left: 32px;
  font-size: 20px;
  font-family: var(--headingFontFamily);
}
.destination-details-left-sidebar .content .list li i {
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  color: var(--optionalColor);
}
.destination-details-left-sidebar .content .list li:last-child {
  margin-bottom: 0;
}
.destination-details-left-sidebar .previous-next {
  margin-bottom: 25px;
  border-top: 1px solid rgb(238, 238, 238);
  border-bottom: 1px solid rgb(238, 238, 238);
  padding-top: 40px;
  padding-bottom: 40px;
}
.destination-details-left-sidebar .previous-next .previous .icon {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 65px;
  margin-right: 20px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--mainColor);
  transition: var(--transition);
  background-color: rgb(238, 238, 238);
}
.destination-details-left-sidebar .previous-next .previous .icon:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.destination-details-left-sidebar .previous-next .previous h3 {
  font-size: 16px;
  margin-bottom: 0;
}
.destination-details-left-sidebar .previous-next .previous.next .icon {
  margin-left: 20px;
  margin-right: 0;
}

.destination-details-right-sidebar {
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 25px;
  background-color: rgb(243, 244, 246);
}
.destination-details-right-sidebar .date-info {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
}
.destination-details-right-sidebar .date-info h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.destination-details-right-sidebar .date-info:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}

.single-gallery-info {
  border-radius: 20px;
  margin-bottom: 25px;
  transition: var(--transition);
}
.single-gallery-info img {
  border-radius: 20px;
}
.single-gallery-info .icon {
  top: 50%;
  left: 0;
  right: 0;
  width: 80px;
  height: 80px;
  margin: auto;
  opacity: 0;
  font-size: 20px;
  position: absolute;
  line-height: 84px;
  visibility: hidden;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--whiteColor);
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: var(--mainColor);
}
.single-gallery-info .icon:hover {
  color: var(--mainColor);
  background-color: var(--whiteColor);
}
.single-gallery-info .icon.style-2 {
  width: 60px;
  height: 60px;
  line-height: 65px;
}
.single-gallery-info::before {
  left: 0;
  top: 0;
  opacity: 0;
  content: "";
  width: 100%;
  height: 100%;
  visibility: hidden;
  position: absolute;
  border-radius: 20px;
  transition: var(--transition);
  background-color: rgba(17, 24, 39, 0.7);
}
.single-gallery-info:hover .icon {
  opacity: 1;
  visibility: visible;
}
.single-gallery-info:hover::before {
  opacity: 1;
  visibility: visible;
}

.contact-content {
  margin-bottom: 25px;
  margin-right: 45px;
}
.contact-content .image {
  margin-bottom: 30px;
}
.contact-content .image img {
  border-radius: 20px;
}
.contact-content .content {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgb(238, 238, 238);
}
.contact-content .content span {
  margin-bottom: 10px;
}
.contact-content .content h3 {
  max-width: 228px;
  font-size: 24px;
  margin-bottom: 0;
}
.contact-content .content ul {
  margin-bottom: 0;
}
.contact-content .content ul li {
  margin-bottom: 4px;
}
.contact-content .content ul li a {
  font-size: 16px;
  font-weight: 700;
}
.contact-content .content ul li:last-child {
  margin-bottom: 0;
}

.contact-form {
  padding: 60px;
  margin-bottom: 25px;
  border-radius: 20px;
  background-color: rgb(243, 244, 246);
}
.contact-form .title {
  margin-bottom: 20px;
}
.contact-form .title h2 {
  font-size: 48px;
  margin-bottom: 12px;
}
.contact-form form .form-group {
  margin-bottom: 20px;
}
.contact-form form .form-group label {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--blackColor);
}
.contact-form form .form-group .form-control {
  height: 60px;
  border: unset;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: 20px;
}
.contact-form form .form-group .form-control::-moz-placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.contact-form form .form-group .form-control::placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.contact-form form .form-group .form-control.textarea {
  height: 170px;
  padding-top: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 626px;
  margin-bottom: -5px;
}

.login-image {
  margin-bottom: 25px;
}

.login-content {
  padding: 40px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
}
.login-content .title {
  margin-bottom: 30px;
}
.login-content .title h2 {
  font-size: 48px;
  margin-bottom: 12px;
}
.login-content .list li {
  margin-right: 15px;
}
.login-content .list li a {
  font-weight: 700;
  position: relative;
  border-radius: 20px;
  display: inline-block;
  padding: 15px 25px 15px 65px;
  border: 1px solid rgba(17, 24, 39, 0.1);
}
.login-content .list li a img {
  top: 50%;
  left: 30px;
  position: absolute;
  transform: translateY(-50%);
}
.login-content .list li:last-child {
  margin-right: 0;
}
.login-content .or {
  z-index: 1;
  display: block;
  position: relative;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.login-content .or span {
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--whiteColor);
}
.login-content .or::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  z-index: -1;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background-color: rgba(17, 24, 39, 0.1);
}
.login-content form .form-group {
  margin-bottom: 20px;
}
.login-content form .form-group label {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blackColor);
}
.login-content form .form-group .form-control {
  border: 0;
  height: 60px;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: 30px;
  background-color: rgb(243, 244, 246);
}
.login-content form .form-group .form-control::-moz-placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.login-content form .form-group .form-control::placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.login-content form .form-check {
  padding-left: 30px;
  position: relative;
  min-height: auto;
  margin-bottom: 0;
  margin-top: 20px;
}
.login-content form .form-check .form-check-input {
  left: 0;
  top: 50%;
  float: unset;
  width: 20px;
  height: 20px;
  cursor: pointer;
  box-shadow: unset;
  border-radius: 5px;
  position: absolute;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid var(--blackColor);
  margin-top: -1px;
  margin-left: 0;
}
.login-content form .form-check .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.login-content form .form-check .form-check-label {
  cursor: pointer;
  font-weight: normal;
}
.login-content form .form-check .form-check-label a {
  font-weight: 700;
}
.login-content form .default-btn {
  width: 100%;
  padding: 16.5px 0;
  margin-top: 40px;
}

.single-pages-widget {
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
  background-color: rgb(243, 244, 246);
}
.single-pages-widget h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.single-pages-widget.form .form-group {
  position: relative;
}
.single-pages-widget.form .form-group .form-control {
  height: 60px;
  border: unset;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: 10px;
}
.single-pages-widget.form .form-group .form-control::-moz-placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.single-pages-widget.form .form-group .form-control::placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.single-pages-widget.form .form-group button {
  top: 50%;
  right: 5px;
  border: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  color: var(--whiteColor);
  transform: translateY(-50%);
  transition: var(--transition);
  background-color: var(--mainColor);
}
.single-pages-widget.form .form-group button:hover {
  background-color: var(--blackColor);
}
.single-pages-widget.recent-post .post-card {
  margin-bottom: 20px;
}
.single-pages-widget.recent-post .post-card .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 20px;
}
.single-pages-widget.recent-post .post-card .image img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.single-pages-widget.recent-post .post-card .content span {
  margin-bottom: 5px;
}
.single-pages-widget.recent-post .post-card .content h6 {
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--fontFamily);
}
.single-pages-widget.recent-post .post-card:last-child {
  margin-bottom: 0;
}
.single-pages-widget.categories ul li {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
}
.single-pages-widget.categories ul li a {
  color: var(--bodyColor);
}
.single-pages-widget.categories ul li a:hover {
  color: var(--mainColor);
}
.single-pages-widget.categories ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: unset;
}
.single-pages-widget.tag ul li {
  margin-right: 10px;
  margin-bottom: 15px;
}
.single-pages-widget.tag ul li a {
  padding: 8px 13px;
  border-radius: 5px;
  display: inline-block;
  color: rgba(85, 85, 85, 0.7);
  background-color: var(--whiteColor);
}
.single-pages-widget.tag ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-pages-widget.tag ul li:last-child {
  margin-bottom: 0;
}

.blog-left-sidebar {
  margin-right: 40px;
  margin-bottom: 25px;
}

.blog-right-sidebar {
  margin-bottom: 25px;
}

.categories-tags-info {
  margin-top: 20px;
  margin-bottom: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgb(238, 238, 238);
  border-bottom: 1px solid rgb(238, 238, 238);
}
.categories-tags-info .categories ul li {
  margin-left: 15px;
}
.categories-tags-info .categories ul li span {
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.categories-tags-info .categories ul li a {
  color: var(--bodyColor);
}
.categories-tags-info .categories ul li a:hover {
  color: var(--mainColor);
}
.categories-tags-info .categories ul li:first-child {
  margin-left: 0;
}
.categories-tags-info .tag {
  text-align: end;
}
.categories-tags-info .tag ul li {
  margin-left: 15px;
}
.categories-tags-info .tag ul li span {
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.categories-tags-info .tag ul li a {
  padding: 8px 13px;
  border-radius: 5px;
  display: inline-block;
  color: rgba(85, 85, 85, 0.7);
  background-color: rgb(243, 244, 246);
}
.categories-tags-info .tag ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.categories-tags-info .tag ul li:first-child {
  margin-left: 0;
}

.blog-comments-info h2 {
  font-size: 36px;
  margin-bottom: 25px;
}
.blog-comments-info .comments-card {
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgb(238, 238, 238);
}
.blog-comments-info .comments-card .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 25px;
}
.blog-comments-info .comments-card .image img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.blog-comments-info .comments-card .content h3 {
  font-size: 24px;
}
.blog-comments-info .comments-card .content span {
  margin-bottom: 10px;
  color: rgba(85, 85, 85, 0.7);
}
.blog-comments-info .comments-card .reply {
  top: 5px;
  right: 0;
  position: absolute;
}
.blog-comments-info .comments-card .reply a {
  padding-left: 30px;
  position: relative;
  display: inline-block;
}
.blog-comments-info .comments-card .reply a i {
  left: 0;
  top: 50%;
  font-size: 20px;
  position: absolute;
  transform: translateY(-50%);
}
.blog-comments-info .comments-card.style-2 {
  margin-left: 130px;
}

.blog-form-info .title {
  margin-bottom: 25px;
}
.blog-form-info .title h2 {
  font-size: 36px;
  margin-bottom: 12px;
}
.blog-form-info form .form-group {
  margin-bottom: 20px;
}
.blog-form-info form .form-group .form-control {
  border: 0;
  height: 60px;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: 20px;
  background-color: rgb(243, 244, 246);
}
.blog-form-info form .form-group .form-control::-moz-placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.blog-form-info form .form-group .form-control::placeholder {
  color: rgba(85, 85, 85, 0.5);
}
.blog-form-info form .form-group .form-control.textarea {
  height: 200px;
  padding-top: 20px;
}
.blog-form-info form .form-group .form-check {
  padding-left: 30px;
  position: relative;
  min-height: auto;
  margin-bottom: 0;
  margin-top: 20px;
}
.blog-form-info form .form-group .form-check .form-check-input {
  left: 0;
  top: 50%;
  float: unset;
  width: 20px;
  height: 20px;
  cursor: pointer;
  box-shadow: unset;
  border-radius: 5px;
  position: absolute;
  transform: translateY(-50%);
  background-color: transparent;
  border: 1px solid var(--blackColor);
  margin-top: -1px;
  margin-left: 0;
}
.blog-form-info form .form-group .form-check .form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.blog-form-info form .form-group .form-check .form-check-label {
  cursor: pointer;
  font-weight: normal;
}
.blog-form-info form .form-group .form-check .form-check-label a {
  font-weight: 700;
}
.blog-form-info form .default-btn {
  margin-top: 10px;
}

.terms-conditions-content {
  margin-bottom: 25px;
}
.terms-conditions-content .title {
  margin-bottom: 25px;
}
.terms-conditions-content .title h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.terms-conditions-content .title p a {
  color: #92210f;
  text-decoration: none;
}
.terms-conditions-content .title p a:hover {
  color: var(--blackColor);
}
.terms-conditions-content .title ul li {
  margin-bottom: 10px;
}
.terms-conditions-content .title ul li:last-child {
  margin-bottom: 0;
}
.terms-conditions-content .title ul.general li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
.terms-conditions-content .title ul.general li:last-child {
  margin-bottom: 0;
}
.terms-conditions-content .title ul.general li strong {
  left: 0;
  position: absolute;
}
.terms-conditions-content .title ul.confidential li {
  padding-left: 20px;
  position: relative;
}
.terms-conditions-content .title ul.confidential li a {
  color: #92210f;
  text-decoration: none;
}
.terms-conditions-content .title ul.confidential li a:hover {
  color: var(--blackColor);
}
.terms-conditions-content .title ul.confidential li::before {
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  position: absolute;
  border-radius: 100%;
  background-color: var(--blackColor);
}
.terms-conditions-content .title strong {
  color: var(--blackColor);
}
.terms-conditions-content .title:last-child {
  margin-bottom: 0;
}

.error-area {
  background-color: #e9fcff;
}

.error-content {
  margin-bottom: 25px;
}
.error-content h1 {
  margin-top: 15px;
  margin-bottom: 0;
  line-height: 1;
  font-size: 200px;
  font-weight: 700;
  color: #92210f;
}
.error-content h1 span {
  color: var(--blackColor);
}
.error-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.error-content a {
  margin-top: 10px;
}

/*================================================
Team Area CSS
=================================================*/
.single-team-card {
  padding: 20px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: rgba(217, 217, 217, 0.6392156863);
}
.single-team-card .image {
  margin-bottom: 30px;
}
.single-team-card .image img {
  border-radius: 20px;
}
.single-team-card .content {
  padding-left: 30px;
  padding-bottom: 20px;
}
.single-team-card .content .icon {
  width: 60px;
  height: 60px;
  display: block;
  flex: 0 0 auto;
  line-height: 60px;
  border-radius: 100%;
  text-align: center;
  margin-right: 25px;
  color: var(--mainColor);
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(17, 24, 39, 0.05);
}
.single-team-card .content .text h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.single-team-card .bg-shape-1 {
  left: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
  transition: var(--transition);
}
.single-team-card .bg-shape-2 {
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-team-card:hover .bg-shape-2 {
  opacity: 1;
  visibility: visible;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: var(--blackColor);
  padding-top: 100px;
}

.single-footer-widget {
  margin-bottom: 25px;
}
.single-footer-widget .logo {
  margin-bottom: 22px;
}
.single-footer-widget p {
  color: var(--whiteColor);
  color: rgba(255, 255, 255, 0.6);
}
.single-footer-widget .socials-link {
  margin-top: 22px;
}
.single-footer-widget .socials-link a {
  line-height: 1;
  font-size: 20px;
  margin-right: 12px;
  color: var(--whiteColor);
}
.single-footer-widget .socials-link a:hover {
  color: var(--optionalColor);
}
.single-footer-widget h3 {
  color: var(--whiteColor);
  margin-bottom: 25px;
  font-size: 24px;
}
.single-footer-widget .custom-links li {
  margin-bottom: 18px;
}
.single-footer-widget .custom-links li a {
  color: rgba(255, 255, 255, 0.6);
}
.single-footer-widget .custom-links li a:hover {
  color: var(--optionalColor);
}
.single-footer-widget .custom-links li:last-child {
  margin-bottom: 0;
}
.single-footer-widget .footer-contact-info li {
  color: var(--whiteColor);
  margin-bottom: 18px;
  padding-left: 30px;
}
.single-footer-widget .footer-contact-info li i {
  left: 0;
  top: 50%;
  font-size: 20px;
  position: absolute;
  color: var(--optionalColor);
  transform: translateY(-50%);
}
.single-footer-widget .footer-contact-info li a {
  color: rgba(255, 255, 255, 0.6);
}
.single-footer-widget .footer-contact-info li a:hover {
  color: var(--optionalColor);
}
.single-footer-widget .footer-contact-info li span {
  color: rgba(255, 255, 255, 0.6);
}
.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.col-lg-3:nth-child(1) .single-footer-widget {
  margin-right: -100px;
}
.col-lg-3:nth-child(2) .single-footer-widget {
  padding-left: 185px;
  margin-right: -100px;
}
.col-lg-3:nth-child(3) .single-footer-widget {
  padding-left: 115px;
}

/*================================================
Copyright Area CSS
=================================================*/
.copyright-area {
  margin-top: 75px;
  background-color: #161f32;
  padding-top: 30px;
  padding-bottom: 30px;
}
.copyright-area p a {
  color: var(--mainColor);
  font-weight: 700;
}
.copyright-area p a:hover {
  color: var(--optionalColor);
}
.copyright-area ul {
  text-align: end;
}
.copyright-area ul li {
  margin-left: 20px;
  margin-right: 20px;
}
.copyright-area ul li a {
  color: var(--whiteColor);
}
.copyright-area ul li a:hover {
  color: var(--optionalColor);
}
.copyright-area ul li:first-child {
  margin-left: 0;
}
.copyright-area ul li:last-child {
  margin-right: 0;
}

.shape6 {
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  text-align: center;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  z-index: 1021;
  opacity: 0;
  right: 20px;
  width: 43px;
  height: 45px;
  bottom: 20px;
  font-size: 28px;
  cursor: pointer;
  visibility: hidden;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--optionalColor);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.go-top i {
  left: 0;
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}
.go-top.active {
  opacity: 1;
  bottom: 20px;
  visibility: visible;
  z-index: 1021;
}
.go-top:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.top-area {
  background-color: #161f32;
}

.top-area a {
  color: var(--whiteColor);
}

.top-area i {
  color: var(--optionalColor);
}
.top-area a:hover i,
.top-area a:hover {
  color: var(--mainColor);
}

.footer-logo {
  max-width: 300px;
}

.nofa-nav .navbar .navbar-brand {
  max-width: 300px;
}

.owl-carousel .owl-item img {
  margin: auto;
  width: auto;
}

.elipsis-3 {
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.elipsis-2 {
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.destination-details-right-sidebar.sticky-top {
  top: 100px;
}
.price {
  color: var(--optionalColor);
}

textarea {
  resize: none;
}

.bb1::before {
  background-color: transparent;
}
/* Max width 767px */
@media only screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
  p {
    font-size: 13px;
  }
  .ptb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pt-100 {
    padding-top: 60px;
  }
  .pb-100 {
    padding-bottom: 60px;
  }
  .ptb-75 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .pt-75 {
    padding-top: 35px;
  }
  .pb-75 {
    padding-bottom: 35px;
  }
  .default-btn {
    font-size: 15px;
    padding: 13px 55px 13px 25px;
  }
  .default-btn i {
    right: 8px;
    width: 35px;
    height: 35px;
    font-size: 20px;
    line-height: 35px;
  }
  .section-title {
    max-width: 100%;
    margin-bottom: 25px;
  }
  .section-title .sub-title {
    margin-bottom: 7px;
  }
  .section-title h2 {
    font-size: 25px;
  }
  .banner-area {
    padding-top: 50px;
  }
  .banner-area .container-fluid {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .banner-content {
    margin-bottom: 20px;
    max-width: 100%;
  }
  .banner-content h1 {
    font-size: 30px;
    line-height: 1.2;
  }
  .banner-content h1 span::before {
    display: none;
  }
  .banner-image {
    padding-left: 0;
    margin-bottom: 0;
  }
  .banner-description {
    padding: 20px;
    margin-top: 35px;
    border-radius: 10px;
  }
  .banner-description .description {
    max-width: 100%;
  }
  .banner-description .description .default-btn {
    margin-top: 0;
  }
  .banner-description .boxes-list {
    padding: 0;
    margin-left: 0;
    border-radius: 0;
    background-color: transparent;
  }
  .banner-description .boxes-list .box {
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
  }
  .banner-description .boxes-list .box h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .banner-description .boxes-list .col-lg-4:nth-child(2) .box {
    background-color: var(--whiteColor);
  }
  .shape7,
  .shape8,
  .shape9 {
    display: none;
  }
  .banner-wrapper-area {
    padding-top: 160px;
    padding-bottom: 50px;
  }
  .banner-wrapper-area .container-fluid {
    max-width: 540px;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .banner-wrapper-area .banner-icon-shape {
    display: none;
  }
  .banner-wrapper-content {
    margin-left: 0;
    max-width: 100%;
  }
  .banner-wrapper-content h1 {
    font-size: 34px;
    margin-bottom: 25px;
  }
  .banner-wrapper-content .button {
    font-size: 15px;
    padding: 13px 55px 13px 25px;
  }
  .banner-wrapper-content .button i {
    font-size: 18px;
  }
  .banner-wrapper-video {
    position: unset;
    margin-top: 30px;
  }
  .banner-wrapper-video .icon {
    justify-content: center;
  }
  .banner-wrapper-video .icon h3 {
    font-size: 18px;
    margin-right: 5px;
    letter-spacing: 6.86px;
  }
  .banner-wrapper-video .icon a {
    width: 63px;
    height: 63px;
    line-height: 62px;
  }
  .banner-wrapper-video .icon a::before {
    width: 32px;
    height: 32px;
  }
  .banner-wrapper-video .icon a::after {
    width: 48px;
    height: 48px;
  }
  .banner-wrapper-video .icon a:hover::after {
    width: 52px;
    height: 52px;
  }
  .banner-wrapper-awards {
    max-width: 100%;
    margin-top: 50px;
  }
  .banner-wrapper-awards h3 {
    font-size: 18px;
    margin-right: 15px;
    padding-right: 30px;
  }
  .banner-wrapper-awards h3::before {
    width: 15px;
  }
  .banner-wrapper-awards ul li {
    font-size: 15px;
    max-width: 100%;
    margin-right: 8px;
    margin-bottom: 10px;
  }
  .banner-widget-area {
    padding-top: 60px;
  }
  .banner-widget-content .content {
    left: 0;
  }
  .banner-widget-content .content h2,
  .banner-widget-content .content h1 {
    font-size: 30px;
  }
  .banner-widget-content .content h1 span {
    margin-right: 80px;
  }
  .banner-widget-content .content .show-text {
    margin-bottom: 20px;
  }
  .shape15 {
    display: none;
  }
  .about-image .image {
    border-radius: 10px;
    margin-bottom: 25px;
  }
  .about-image .image img {
    border-radius: 10px;
  }
  .about-image .image .experience {
    top: 0;
    left: 0;
    border-radius: 10px 0 10px 0;
  }
  .about-image .image .experience img {
    display: none;
  }
  .about-image .image .experience span {
    top: 0;
    left: 0;
    right: 0;
    padding: 15px;
    font-size: 18px;
    position: relative;
    border-radius: 10px 0 10px 0;
    background-color: var(--optionalColor);
  }
  .about-image .col-lg-6:nth-child(1) .image {
    margin-top: 0;
  }
  .about-image.style-3 .image .user-image {
    padding: 6px;
    max-width: 100%;
    margin-top: 20px;
  }
  .about-image.style-3 .image .user-image-2 {
    padding: 6px;
    max-width: 100%;
    margin-top: 20px;
  }
  .about-image.style-3 .image .experience {
    top: 0;
    right: 15px;
  }
  .about-image.style-3 .image .experience span {
    font-size: 14px;
  }
  .about-image.style-3 .image .experience span strong {
    font-size: 35px;
  }
  .about-content {
    padding-left: 0;
  }
  .about-content .sub-title {
    margin-bottom: 6px;
  }
  .about-content h2 {
    font-size: 25px;
    margin-bottom: 13px;
  }
  .about-content .features-list {
    margin-top: 17px;
    margin-bottom: 20px;
  }
  .about-content .features-list li {
    font-size: 16px;
    padding-left: 21px;
  }
  .about-content .call-info {
    margin-left: 0;
    margin-top: 17px;
  }
  .about-content .call-info .icon {
    margin-right: 12px;
  }
  .about-content .call-info .info span {
    font-size: 13px;
  }
  .about-content .call-info .info a {
    font-size: 18px;
  }
  .about-content.style-2 {
    max-width: 100%;
  }
  .shape1 {
    display: none;
  }
  .shape11 {
    display: none;
  }
  .request-quote-content {
    max-width: 100%;
  }
  .request-quote-content h2 {
    font-size: 25px;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .request-quote-content .default-btn {
    margin-top: 5px;
  }
  .performance-specifications-area .section-title {
    margin-bottom: 25px;
  }
  .performance-specifications-area::before {
    width: 100%;
    height: 100%;
  }
  .performance-specifications-content {
    margin-right: 0;
  }
  .performance-specifications-content .btn-box {
    margin-top: 0;
  }
  .performance-specifications-box {
    padding: 20px;
    border-radius: 10px;
  }
  .performance-specifications-box .icon {
    right: 20px;
  }
  .performance-specifications-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .performance-specifications-image {
    padding-left: 0;
    margin-top: 25px;
  }
  .performance-specifications-image
    .performance-specifications-image-slides
    .item
    img {
    border-radius: 10px;
  }
  .performance-specifications-image .owl-theme .owl-dots {
    bottom: 20px;
  }
  .shape2 {
    display: none;
  }
  .single-performance-specifications-info {
    padding: 25px;
    display: block !important;
  }
  .single-performance-specifications-info .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .single-performance-specifications-info .content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .single-performance-specifications-info.style-3 {
    padding: 20px;
  }
  .single-performance-specifications-info.style-3 .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
  }
  .shape14 {
    display: none;
  }
  .destinations-content {
    padding-right: 0;
  }
  .destinations-content .sub-title {
    margin-bottom: 7px;
  }
  .destinations-content h2 {
    font-size: 25px;
    margin-bottom: 12px;
  }
  .destinations-content .default-btn {
    margin-top: 0;
  }
  .destinations-items {
    margin-left: 0;
  }
  .destinations-item {
    border-radius: 10px;
  }
  .destinations-item .image {
    border-radius: 10px;
  }
  .destinations-item .image img {
    border-radius: 10px;
  }
  .destinations-item .content {
    bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .destinations-item .content h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .shape3 {
    display: none;
  }
  .flight-booking-area::before {
    height: 60px;
    width: 100%;
  }
  .flight-booking-form {
    padding: 20px;
    margin-right: 0;
    border-radius: 10px;
  }
  .flight-booking-form .step {
    top: 0;
    right: 0;
    display: block;
    position: relative;
    margin-bottom: 15px;
  }
  .flight-booking-form .nav-tabs {
    margin-bottom: 15px;
  }
  .flight-booking-form .nav-tabs .nav-item {
    margin-right: 15px;
  }
  .flight-booking-form .nav-tabs .nav-item .nav-link {
    padding: 0 0 0 25px;
    font-size: 17px;
  }
  .flight-booking-form .tab-content {
    margin-bottom: 15px;
  }
  .flight-booking-form .tab-content .tab-pane form .form-group {
    margin-bottom: 25px;
  }
  .flight-booking-form .tab-content .tab-pane form .form-group label {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .flight-booking-form .tab-content .tab-pane form .form-group .form-control {
    height: 50px;
    font-size: 13px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .flight-booking-form .tab-content .tab-pane form .form-group .form-select {
    height: 50px;
    font-size: 13px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .flight-booking-form p {
    font-size: 13px;
  }
  .flight-booking-form.style-2 {
    margin-left: 0;
  }
  .flight-booking-form.style-2 .step {
    top: 0;
  }
  .flight-booking-form.style-2 .nav-tabs .nav-item .nav-link {
    font-size: 15px;
    padding: 15px 20px;
  }
  .flight-booking-content {
    padding-left: 0;
    margin-top: 25px;
  }
  .flight-booking-content .sub-title {
    margin-bottom: 7px;
  }
  .flight-booking-content h2 {
    font-size: 25px;
    margin-bottom: 12px;
  }
  .flight-booking-content .features-list {
    margin-top: 25px;
  }
  .flight-booking-content .features-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
  }
  .flight-booking-content .features-list li i {
    width: 35px;
    height: 35px;
    font-size: 20px;
    line-height: 33px;
  }
  .flight-booking-content .features-list li h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .flight-booking-image {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .cta-inner-area {
    padding: 50px 20px;
    border-radius: 10px;
  }
  .cta-inner-area .icon {
    z-index: 1;
    width: 80px;
    height: 80px;
    font-size: 25px;
    position: relative;
    text-align: center;
    border-radius: 50%;
    margin-right: -25px;
    color: var(--whiteColor);
    background: rgba(16, 185, 129, 0.2);
  }
  .cta-inner-area .icon i {
    left: 0;
    right: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
  }
  .cta-inner-area .icon::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    content: "";
    margin: 10px;
    border-radius: 50%;
    position: absolute;
    background: var(--mainColor);
  }
  .cta-inner-area .number {
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .cta-inner-area p {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .cta-inner-area.style-2 {
    padding: 20px;
  }
  .cta-inner-area.style-2 .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin-bottom: 15px;
    background-color: rgba(16, 185, 129, 0.94);
  }
  .cta-inner-area.style-2 .content span {
    color: var(--bodyColor);
  }
  .cta-inner-area.style-2 .content a {
    font-size: 22px;
    color: var(--blackColor);
  }
  .cta-inner-area.style-2 .background-color-shape {
    display: none;
  }
  .cta-content h1 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .cta-contact-info {
    margin-left: 0;
    display: block !important;
  }
  .faq-accordion.accordion .accordion-item {
    border-radius: 10px;
  }
  .faq-accordion.accordion .accordion-item .accordion-button {
    font-size: 18px;
    padding: 15px 38px 15px 15px;
  }
  .faq-accordion.accordion .accordion-item .accordion-button::before {
    right: 15px;
    font-size: 18px;
  }
  .faq-accordion.accordion .accordion-item .accordion-body {
    padding: 0 15px 15px;
  }
  .faq-user-item {
    text-align: left !important;
    margin-bottom: 30px;
  }
  .funfacts-inner-area {
    padding-bottom: 25px;
  }
  .funfact-item {
    padding-top: 25px;
    padding-bottom: 0;
  }
  .funfact-item h2 {
    font-size: 24px;
    margin-bottom: 8px;
    margin-top: -6px;
  }
  .funfact-item span {
    margin-bottom: -3px;
    font-size: 16px;
  }
  .funfact-item::before {
    display: none;
  }
  .funfact-item::after {
    display: none;
  }
  .col-lg-3:nth-child(1) .funfact-item.style-3 {
    border-left: unset;
  }
  .private-flight-content {
    height: auto;
    display: block;
  }
  .private-flight-content .content {
    padding-top: 0;
  }
  .private-flight-content .content .sub-title {
    margin-bottom: 7px;
  }
  .private-flight-content .content h2 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .private-flight-content .content .default-btn {
    margin-top: 0;
  }
  .private-flight-content .partners {
    padding: 20px;
    background-color: var(--blackColor);
    margin-right: 0;
    margin-top: 25px;
  }
  .private-flight-content .partners span {
    margin-bottom: 0;
  }
  .private-flight-content .partners img {
    margin-top: 20px;
  }
  .private-flight-list {
    padding-left: 0;
  }
  .single-flight-box {
    padding: 25px 20px;
    border-radius: 10px;
  }
  .single-flight-box .from-to {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .single-flight-box .from-to h3 {
    font-size: 25px;
  }
  .single-flight-box .from-to span {
    font-size: 16px;
  }
  .single-flight-box ul {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .single-flight-box ul li {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .single-flight-box .default-btn {
    margin-top: 20px;
  }
  .feedback-area .line-shape {
    bottom: 73px;
  }
  .feedback-content {
    margin-bottom: 25px;
  }
  .feedback-content .sub-title {
    margin-bottom: 7px;
  }
  .feedback-content h2 {
    font-size: 25px;
    max-width: 100%;
    margin-bottom: 12px;
  }
  .feedback-content .number {
    letter-spacing: 0;
    font-size: 90px;
    margin-top: -10px;
    margin-bottom: 10px;
  }
  .single-feedback-box {
    padding: 27px;
    border-radius: 10px;
  }
  .single-feedback-box .image {
    margin-left: 0;
    margin-top: -65px;
    margin-bottom: 20px;
  }
  .single-feedback-box h3 {
    font-size: 18px;
    margin-bottom: 7px;
  }
  .single-feedback-box p {
    margin-top: 13px;
  }
  .single-feedback-box .info {
    margin-top: 15px;
  }
  .single-feedback-box .info h6 {
    font-size: 15px;
  }
  .single-feedback-box .info .ratings i {
    font-size: 17px;
    margin-right: 1px;
  }
  .single-feedback-box .info span {
    font-size: 13px;
    margin-top: 5px;
  }
  .single-feedback-box .quote {
    top: -15px;
    left: 25px;
  }
  .single-feedback-box::before {
    margin: 10px;
  }
  .feedback-slides.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 25px;
  }
  .feedback-slides.owl-theme .owl-nav {
    margin-top: 20px;
  }
  .feedback-slides.owl-theme .owl-nav .owl-prev,
  .feedback-slides.owl-theme .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    font-size: 16px;
    line-height: 47px;
    margin-right: 10px;
  }
  .feedback-slides.owl-theme .owl-nav .owl-next {
    margin-right: 0;
  }
  .shape4 {
    display: none;
  }
  .single-blog-post {
    border-radius: 10px;
  }
  .single-blog-post .image {
    border-radius: 10px 10px 0 0;
  }
  .single-blog-post .image a {
    border-radius: 10px 10px 0 0;
  }
  .single-blog-post .image a img {
    border-radius: 10px 10px 0 0;
  }
  .single-blog-post .image .date {
    left: 20px;
    width: 65px;
    height: 65px;
    padding-top: 5px;
    border-width: 5px;
  }
  .single-blog-post .image .date span strong {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .single-blog-post .content {
    padding: 20px;
  }
  .single-blog-post .content .meta {
    margin-bottom: 10px;
  }
  .single-blog-post .content .meta li {
    margin-right: 15px;
    padding-left: 22px;
  }
  .single-blog-post .content .meta li i {
    font-size: 16px;
    margin-top: -1px;
  }
  .single-blog-post .content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 17px;
  }
  .single-blog-post .content .link-btn {
    padding-right: 20px;
    font-size: 15px;
  }
  .single-blog-post.style-2 .content .link-btn {
    padding: 10px 22px;
  }
  .single-blog-post.blog-style {
    margin-bottom: 25px;
  }
  .single-blog-post.blog-style .content p {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .single-blog-post.details-style .content p {
    padding-bottom: 0;
    margin-bottom: 12px;
  }
  .single-blog-image h1 {
    font-size: 30px;
  }
  .single-blog-content {
    padding-left: 0;
    border-left: unset;
    margin-left: 0;
  }
  .single-blog-content .item {
    margin-bottom: 30px;
  }
  .single-blog-content .item h3 {
    font-size: 22px;
  }
  .special-offer-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .special-offer-area .container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }
  .special-offer-content {
    margin-left: 0;
    max-width: 100%;
  }
  .special-offer-content .sub-title {
    margin-bottom: 7px;
  }
  .special-offer-content h2 {
    font-size: 25px;
    margin-bottom: 12px;
  }
  .special-offer-content .default-btn {
    margin-top: 0;
  }
  .special-offer-image {
    margin-left: 0;
    margin-top: 25px;
  }
  .shape5 {
    display: none;
  }
  .subscribe-area .border-bottom {
    padding-top: 60px;
  }
  .subscribe-content h2 {
    font-size: 24px;
    max-width: 100%;
  }
  .subscribe-form {
    margin-top: 25px;
  }
  .subscribe-form .form-control {
    height: 48.5px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .subscribe-form .default-btn {
    position: relative;
    margin-top: 15px;
  }
  .subscribe-form .form-check {
    padding-left: 30px;
    margin-bottom: 0;
    margin-top: 20px;
  }
  .subscribe-form .form-check .form-check-input {
    margin-top: -2px;
  }
  .single-features-card {
    padding: 30px;
  }
  .single-features-card .icon {
    width: 83px;
    height: 83px;
    line-height: 83px;
    margin-bottom: 20px;
  }
  .single-features-card span {
    margin-bottom: 8px;
  }
  .single-features-card h3 {
    font-size: 20px;
  }
  .single-features-card .link-btn {
    color: var(--mainColor);
    padding-right: 22px;
    font-size: 16px;
  }
  .single-features-card .link-btn i {
    font-size: 15px;
    margin-top: 2px;
  }
  .single-features-card .number {
    left: 20px;
    bottom: 20px;
    font-size: 30px;
  }
  .single-airplanes-card {
    padding: 25px;
  }
  .single-airplanes-card h1 {
    font-size: 45px;
  }
  .single-airplanes-video {
    margin-bottom: 25px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .single-airplanes-video a {
    font-size: 16px;
    padding: 13px 25px 13px 55px;
  }
  .single-airplanes-video a i {
    left: 25px;
  }
  .pricing-area::before {
    display: none;
  }
  .pricing-area::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    content: "";
    position: absolute;
    background-color: var(--blackColor);
  }
  .pricing-area.style-3::after {
    display: none;
  }
  .single-pricing-card .content {
    padding: 25px 25px;
    padding-top: 45px;
  }
  .single-pricing-card .content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .single-pricing-card .content .icon {
    width: 70px;
    height: 70px;
    font-size: 25px;
    line-height: 70px;
  }
  .single-pricing-card .list {
    padding: 25px;
  }
  .single-pricing-card .list a {
    padding: 12px;
    font-size: 16px;
  }
  .single-pricing-card.style-3 .content {
    padding: 25px;
  }
  .partner-section-title p {
    margin-bottom: 25px;
  }
  .newsletter-info {
    padding: 25px;
    padding-bottom: 50px;
  }
  .newsletter-content {
    margin-bottom: 25px;
  }
  .newsletter-content form .form-group .form-control {
    height: 50px;
    padding-left: 15px;
  }
  .newsletter-content form .form-group button {
    margin-top: 15px;
    position: relative;
    background-color: var(--optionalColor);
  }
  .newsletter-content form .form-group button:hover {
    background-color: var(--blackColor);
  }
  .single-checkout-info .content {
    left: 30px;
    bottom: 25px;
  }
  .single-checkout-info .content h3 {
    font-size: 20px;
  }
  .single-services-info {
    padding: 25px;
  }
  .single-services-info p {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .single-services-info h4 {
    font-size: 20px;
  }
  .page-title-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .page-title-content h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .page-title-content h6 {
    max-width: 100%;
    font-size: 20px;
  }
  .pagination {
    margin-top: 10px;
  }
  .single-testimonial-info {
    padding: 15px;
    padding-bottom: 0;
  }
  .single-testimonial-info p {
    margin-bottom: 12px;
  }
  .single-testimonial-info h3 {
    font-size: 22px;
  }
  .single-testimonial-info .star {
    margin-top: 18px;
    margin-bottom: 18px;
  }
  .destination-details-left-sidebar {
    margin-right: 0;
  }
  .destination-details-left-sidebar .image {
    margin-bottom: 20px;
  }
  .destination-details-left-sidebar .content h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .destination-details-left-sidebar .content .list li {
    font-size: 16px;
    padding-left: 21px;
  }
  .destination-details-left-sidebar .previous-next {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .destination-details-left-sidebar .previous-next .previous .icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin-right: 15px;
    line-height: 55px;
  }
  .destination-details-left-sidebar .previous-next .previous h3 {
    font-size: 15px;
  }
  .destination-details-left-sidebar .previous-next .previous.next .icon {
    margin-left: 15px;
  }
  .destination-details-right-sidebar {
    padding: 25px;
  }
  .destination-details-right-sidebar .date-info {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .destination-details-right-sidebar .date-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .single-gallery-info .icon {
    width: 55px;
    height: 54px;
    font-size: 16px;
    line-height: 58px;
  }
  .contact-content {
    margin-right: 0;
  }
  .contact-content .image {
    margin-bottom: 20px;
  }
  .contact-content .content {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .contact-content .content span {
    margin-bottom: 8px;
  }
  .contact-content .content h3 {
    max-width: 1005;
    font-size: 20px;
  }
  .contact-content .content ul {
    margin-bottom: 10px;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-form .title {
    margin-bottom: 20px;
  }
  .contact-form .title h2 {
    font-size: 27px;
    margin-bottom: 10px;
  }
  .contact-form form .form-group {
    margin-bottom: 15px;
  }
  .contact-form form .form-group .form-control {
    height: 50px;
    padding-left: 15px;
  }
  .contact-form form .form-group .form-control::-moz-placeholder {
    font-size: 14px;
  }
  .contact-form form .form-group .form-control::placeholder {
    font-size: 14px;
  }
  .contact-form form .form-group .form-control.textarea {
    height: 90px;
    padding-top: 15px;
  }
  .contact-map iframe {
    height: 500px;
  }
  .login-content {
    padding: 0;
  }
  .login-content .title {
    margin-bottom: 20px;
  }
  .login-content .title h2 {
    font-size: 30px;
  }
  .login-content .list li {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .login-content .or {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .login-content .or span {
    padding-left: 20px;
    padding-right: 20px;
  }
  .login-content form .form-group {
    margin-bottom: 15px;
  }
  .login-content form .form-group .form-control {
    height: 50px;
    padding-left: 15px;
  }
  .login-content form .form-group .form-control::-moz-placeholder {
    font-size: 14px;
  }
  .login-content form .form-group .form-control::placeholder {
    font-size: 14px;
  }
  .login-content form .default-btn {
    padding: 12.5px 0;
    margin-top: 25px;
  }
  .blog-left-sidebar {
    margin-right: 0;
  }
  .single-pages-widget {
    padding: 15px;
    margin-bottom: 25px;
  }
  .single-pages-widget h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .single-pages-widget.form .form-group .form-control {
    height: 50px;
    padding-left: 15px;
  }
  .single-pages-widget.form .form-group button {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .single-pages-widget.recent-post .post-card .content h6 {
    font-size: 15px;
  }
  .single-pages-widget.categories ul li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .single-pages-widget.tag ul li {
    margin-right: 7px;
  }
  .categories-tags-info {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .categories-tags-info .categories {
    margin-bottom: 15px;
  }
  .categories-tags-info .categories ul li span {
    font-size: 20px;
  }
  .categories-tags-info .tag {
    text-align: start !important;
  }
  .categories-tags-info .tag ul li span {
    font-size: 20px;
  }
  .blog-comments-info .comments-card {
    padding-bottom: 20px;
    margin-bottom: 25px;
    display: block !important;
  }
  .blog-comments-info .comments-card .image {
    margin-bottom: 15px;
  }
  .blog-comments-info .comments-card .content h3 {
    font-size: 20px;
  }
  .blog-comments-info .comments-card.style-2 {
    margin-left: 0;
  }
  .blog-form-info .title {
    margin-bottom: 20px;
  }
  .blog-form-info .title h2 {
    font-size: 27px;
  }
  .blog-form-info form .form-group .form-control {
    height: 50px;
    padding-left: 15px;
  }
  .blog-form-info form .form-group .form-control.textarea {
    height: 100px;
    padding-top: 15px;
  }
  .blog-form-info form .form-group .form-control::-moz-placeholder {
    font-size: 14px;
  }
  .blog-form-info form .form-group .form-control::placeholder {
    font-size: 14px;
  }
  .terms-conditions-content {
    margin-bottom: 25px;
  }
  .terms-conditions-content .title {
    margin-bottom: 25px;
  }
  .terms-conditions-content .title h3 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 26px;
  }
  .error-content h1 {
    margin-bottom: 10px;
    font-size: 100px;
  }
  .error-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .single-team-card {
    padding: 15px;
  }
  .single-team-card .image {
    margin-bottom: 20px;
  }
  .single-team-card .content {
    padding-left: 0;
    padding-bottom: 0;
  }
  .single-team-card .content .icon {
    width: 50px;
    height: 50px;
    line-height: 53px;
  }
  .single-team-card .content .text h3 {
    font-size: 20px;
  }
  .footer-area {
    padding-top: 60px;
  }
  .single-footer-widget .logo {
    margin-bottom: 20x;
  }
  .single-footer-widget .socials-link {
    margin-top: 15px;
  }
  .single-footer-widget .socials-link a {
    font-size: 17px;
  }
  .single-footer-widget h3 {
    margin-bottom: 18px;
    font-size: 18px;
  }
  .single-footer-widget .custom-links li {
    margin-bottom: 15px;
  }
  .single-footer-widget .footer-contact-info li {
    margin-bottom: 15px;
    padding-left: 25px;
  }
  .single-footer-widget .footer-contact-info li i {
    font-size: 18px;
  }
  .col-lg-3:nth-child(1) .single-footer-widget {
    margin-right: 0;
  }
  .col-lg-3:nth-child(2) .single-footer-widget {
    padding-left: 0;
    margin-right: 0;
  }
  .col-lg-3:nth-child(3) .single-footer-widget {
    padding-left: 0;
  }
  .copyright-area {
    margin-top: 35px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .copyright-area .text-white {
    text-align: center;
  }
  .copyright-area ul {
    text-align: center;
    margin-top: 12px;
  }
  .copyright-area ul li {
    margin-left: 10px;
    margin-right: 10px;
  }
  .shape6 {
    display: none;
  }
  .go-top {
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 25px;
  }
  .go-top.active {
    bottom: 45px;
  }
}
/* Min width 576px to Max width 767px */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-area .container-fluid {
    max-width: 540px;
  }
  .banner-content {
    max-width: 340px;
  }
  .banner-widget-content .content {
    left: 50px;
    bottom: 175px;
  }
  .banner-widget-content .content h2,
  .banner-widget-content .content h1 {
    font-size: 40px;
  }
  .banner-widget-content .content h1 span {
    margin-right: 150px;
  }
  .about-content .call-info {
    margin-left: 15px;
    margin-top: 0;
  }
  .cta-contact-info {
    margin-left: 0;
    display: flex !important;
  }
  .cta-contact-info .icon {
    margin-right: 15px;
    margin-bottom: 0 !important;
  }
  .newsletter-info .newsletter-bg-shape {
    display: none;
  }
  .newsletter-content form .form-group button {
    margin-top: 0;
    position: absolute;
  }
  .contact-content .content ul {
    margin-bottom: 0;
  }
  .login-content .list li {
    margin-right: 15px;
    margin-bottom: 0;
  }
  .login-content .or {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .copyright-area .text-white {
    text-align: start !important;
  }
  .copyright-area ul {
    margin-top: 0;
    text-align: end !important;
  }
}

/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  .ptb-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .pt-100 {
    padding-top: 80px;
  }
  .pb-100 {
    padding-bottom: 80px;
  }
  .ptb-75 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .pt-75 {
    padding-top: 55px;
  }
  .pb-75 {
    padding-bottom: 55px;
  }
  .default-btn {
    font-size: 17px;
    padding: 14px 60px 14px 30px;
  }
  .section-title {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .section-title h2 {
    font-size: 35px;
  }
  .banner-area {
    padding-top: 75px;
  }
  .banner-area .container-fluid {
    max-width: 720px;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .banner-content {
    margin-bottom: 0;
    max-width: 570px;
  }
  .banner-content h1 {
    font-size: 50px;
  }
  .banner-content h1 span::before {
    top: 5px;
  }
  .banner-image {
    padding-left: 0;
    margin-bottom: 50px;
  }
  .banner-description {
    border-radius: 20px;
    padding: 30px;
  }
  .banner-description .description {
    max-width: 540px;
  }
  .banner-description .description .default-btn {
    margin-top: 0;
  }
  .banner-description .boxes-list {
    padding: 20px;
    padding-top: 0;
    border-radius: 20px;
    margin-left: 0;
    margin-top: 25px;
  }
  .banner-description .boxes-list .box {
    padding: 20px;
    margin-top: 20px;
  }
  .banner-description .boxes-list .box h3 {
    font-size: 20px;
  }
  .shape9 {
    display: none;
  }
  .banner-wrapper-area {
    padding-top: 180px;
    padding-bottom: 60px;
  }
  .banner-wrapper-area .container-fluid {
    max-width: 720px;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .banner-wrapper-area .banner-icon-shape {
    display: none;
  }
  .banner-wrapper-content {
    max-width: 100%;
    margin-left: 0;
  }
  .banner-wrapper-content h1 {
    font-size: 55px;
  }
  .banner-wrapper-video {
    position: unset;
    margin-top: 25px;
  }
  .banner-wrapper-awards {
    max-width: 100%;
    margin-top: 110px;
  }
  .banner-wrapper-awards h3 {
    padding-right: 85px;
    margin-right: 35px;
  }
  .banner-wrapper-awards ul li {
    margin-right: 30px;
  }
  .banner-widget-content .content {
    bottom: 155px;
  }
  .banner-widget-content .content h2,
  .banner-widget-content .content h1 {
    font-size: 70px;
  }
  .shape15 {
    right: 75px;
  }
  .about-image .image .experience {
    top: 30px;
  }
  .about-image .image .experience span {
    top: 23px;
    font-size: 20px;
    padding-left: 25px;
  }
  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }
  .about-content h2 {
    font-size: 35px;
    margin-bottom: 12px;
  }
  .about-content .features-list {
    margin-bottom: 25px;
  }
  .about-content .features-list li {
    font-size: 18px;
  }
  .about-content .call-info {
    margin-left: 25px;
  }
  .about-content .call-info .icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
    line-height: 57px;
    margin-right: 12px;
  }
  .about-content .call-info .info span {
    margin-bottom: 0;
  }
  .about-content .call-info .info a {
    font-size: 18px;
  }
  .about-content.style-2 {
    max-width: 100%;
    margin-top: 0;
  }
  .shape11 {
    display: none;
  }
  .request-quote-content {
    max-width: 100%;
  }
  .request-quote-content h2 {
    font-size: 35px;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .request-quote-content .default-btn {
    margin-top: 10px;
  }
  .performance-specifications-area .section-title {
    margin-bottom: 30px;
  }
  .performance-specifications-area::before {
    width: 100%;
    height: 100%;
  }
  .performance-specifications-content {
    margin-right: 0;
  }
  .performance-specifications-content .btn-box {
    margin-top: 0;
  }
  .performance-specifications-box {
    padding: 30px;
  }
  .performance-specifications-box .icon {
    right: 30px;
  }
  .performance-specifications-box h3 {
    font-size: 20px;
  }
  .performance-specifications-image {
    padding-left: 0;
    margin-top: 25px;
  }
  .performance-specifications-image .owl-theme .owl-dots {
    bottom: 30px;
  }
  .shape2 {
    display: none;
  }
  .shape14 {
    display: none;
  }
  .destinations-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .destinations-content h2 {
    font-size: 35px;
    margin-bottom: 12px;
  }
  .destinations-content .default-btn {
    margin-top: 5px;
  }
  .destinations-items {
    margin-left: 0;
  }
  .destinations-item .content h3 {
    font-size: 20px;
  }
  .shape3 {
    opacity: 0.4;
  }
  .flight-booking-area::before {
    height: 80px;
    width: 100%;
  }
  .flight-booking-form {
    padding: 30px;
    margin-right: 0;
  }
  .flight-booking-form .step {
    top: 32px;
    right: 30px;
  }
  .flight-booking-form .nav-tabs {
    margin-bottom: 20px;
  }
  .flight-booking-form .nav-tabs .nav-item {
    margin-right: 20px;
  }
  .flight-booking-form .nav-tabs .nav-item .nav-link {
    font-size: 20px;
  }
  .flight-booking-form .tab-content {
    margin-bottom: 20px;
  }
  .flight-booking-form .tab-content .tab-pane form .form-group {
    margin-bottom: 25px;
  }
  .flight-booking-form .tab-content .tab-pane form .form-group label {
    font-size: 14px;
  }
  .flight-booking-form .tab-content .tab-pane form .form-group .form-control {
    height: 55px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .flight-booking-form .tab-content .tab-pane form .form-group .form-select {
    height: 55px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .flight-booking-form.style-2 {
    margin-left: 0;
  }
  .flight-booking-content {
    padding-left: 0;
    margin-top: 30px;
  }
  .flight-booking-content h2 {
    font-size: 35px;
  }
  .flight-booking-content .features-list {
    margin-top: 25px;
  }
  .flight-booking-content .features-list li {
    margin-bottom: 25px;
    padding-bottom: 25px;
    padding-left: 72px;
  }
  .flight-booking-content .features-list li i {
    width: 55px;
    height: 55px;
    font-size: 28px;
    line-height: 53px;
  }
  .flight-booking-image {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .cta-inner-area {
    padding: 50px;
  }
  .cta-inner-area .number {
    font-size: 35px;
  }
  .cta-inner-area p {
    margin-left: 0;
    margin-top: 10px;
  }
  .cta-inner-area .image {
    margin-top: 10px;
  }
  .cta-inner-area.style-2 {
    padding: 30px;
  }
  .cta-inner-area.style-2 .background-color-shape {
    display: none;
  }
  .cta-content {
    margin-bottom: 25px;
  }
  .cta-content h1 {
    font-size: 35px;
  }
  .cta-contact-info {
    margin-left: 0;
  }
  .cta-contact-info .icon {
    width: 80px;
    height: 80px;
    font-size: 30px;
    line-height: 80px;
    color: var(--whiteColor);
    background-color: var(--mainColor);
  }
  .cta-contact-info .content span {
    color: var(--bodyColor);
  }
  .cta-contact-info .content a {
    font-size: 25px;
    color: var(--blackColor);
  }
  .faq-accordion.accordion .accordion-item .accordion-button {
    padding: 20px 60px 20px 30px;
    font-size: 20px;
  }
  .faq-user-item {
    margin-bottom: 25px;
  }
  .funfact-item {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .funfact-item h2 {
    font-size: 26px;
    margin-bottom: 8px;
    margin-top: -8px;
  }
  .funfact-item span {
    font-size: 18px;
    margin-bottom: -3px;
  }
  .funfact-item::before {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .funfact-item::after {
    margin-left: 35px;
    margin-right: 35px;
  }
  .private-flight-content {
    height: auto;
    display: block;
  }
  .private-flight-content .content {
    padding-top: 0;
  }
  .private-flight-content .content h2 {
    font-size: 35px;
    margin-bottom: 12px;
  }
  .private-flight-content .content .default-btn {
    margin-top: 5px;
  }
  .private-flight-content .partners {
    padding: 30px;
    background-color: var(--blackColor);
    margin-right: 0;
    margin-top: 30px;
  }
  .private-flight-content .partners span {
    margin-bottom: 25px;
  }
  .private-flight-list {
    padding-left: 0;
  }
  .single-flight-box {
    padding: 40px 30px;
  }
  .single-flight-box img {
    width: 250px;
  }
  .single-flight-box .from-to {
    padding-left: 15px;
    padding-right: 15px;
  }
  .single-flight-box .from-to h3 {
    font-size: 35px;
  }
  .single-flight-box .from-to span {
    font-size: 18px;
  }
  .single-flight-box ul {
    padding-left: 15px;
    padding-right: 15px;
  }
  .single-flight-box ul li {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .single-flight-box .default-btn {
    margin-top: 20px;
  }
  .feedback-area .line-shape {
    bottom: 97px;
  }
  .feedback-content {
    margin-bottom: 30px;
  }
  .feedback-content h2 {
    font-size: 35px;
    max-width: 100%;
  }
  .feedback-content .number {
    letter-spacing: 10px;
    font-size: 130px;
    margin-top: -15px;
    margin-bottom: 15px;
  }
  .single-feedback-box {
    padding: 45px;
    margin-top: 30px;
  }
  .single-feedback-box .image {
    margin-left: 0;
    margin-top: -75px;
    margin-bottom: 25px;
  }
  .single-feedback-box h3 {
    font-size: 20px;
  }
  .single-feedback-box p {
    margin-top: 15px;
  }
  .single-feedback-box .info {
    margin-top: 15px;
  }
  .single-feedback-box .info .ratings i {
    font-size: 18px;
  }
  .single-feedback-box .info span {
    margin-top: 5px;
  }
  .single-feedback-box .quote {
    left: 35px;
  }
  .single-feedback-box::before {
    margin: 15px;
  }
  .feedback-slides.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
  }
  .shape4 {
    right: 0;
  }
  .single-blog-post .image .date {
    left: 30px;
    padding-top: 5px;
  }
  .single-blog-post .content {
    padding: 30px;
  }
  .single-blog-post .content .meta {
    margin-bottom: 15px;
  }
  .single-blog-post .content .meta li {
    margin-right: 15px;
  }
  .single-blog-post .content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .single-blog-post .content .link-btn {
    font-size: 17px;
  }
  .single-blog-post.style-2 .content .link-btn {
    padding: 10px 25px;
  }
  .single-blog-image h1 {
    font-size: 35px;
  }
  .single-blog-content {
    margin-left: 0;
    padding-left: 0;
    border-left: unset;
  }
  .single-blog-content .item {
    margin-bottom: 35px;
  }
  .special-offer-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .special-offer-area .container-fluid {
    max-width: 720px;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  }
  .special-offer-content {
    margin-left: 0;
    max-width: 100%;
  }
  .special-offer-content h2 {
    font-size: 35px;
    margin-bottom: 13px;
  }
  .special-offer-content .default-btn {
    margin-top: 5px;
  }
  .special-offer-image {
    margin-left: 0;
    margin-top: 25px;
  }
  .shape5 {
    left: 0;
  }
  .subscribe-area .border-bottom {
    padding-top: 80px;
  }
  .subscribe-content h2 {
    max-width: 100%;
  }
  .subscribe-form {
    margin-top: 25px;
  }
  .subscribe-form .form-control {
    height: 55px;
    font-size: 14px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .subscribe-form .form-check .form-check-input {
    margin-top: -3px;
  }
  .single-features-card {
    padding: 30px;
  }
  .single-features-card h3 {
    font-size: 20px;
  }
  .single-features-card .icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
  }
  .single-features-card .number {
    left: 25px;
    bottom: 25px;
  }
  .single-airplanes-video {
    margin-bottom: 25px;
  }
  .single-pricing-card .content {
    padding: 25px 30px;
    padding-top: 65px;
  }
  .single-pricing-card .content .icon {
    width: 75px;
    height: 75px;
    line-height: 75px;
  }
  .single-pricing-card .list {
    padding: 25px 30px;
  }
  .single-pricing-card .list a {
    padding: 10px;
  }
  .partner-section-title p {
    margin-bottom: 30px;
  }
  .newsletter-info {
    padding: 55px;
  }
  .newsletter-content {
    margin-bottom: 25px;
  }
  .newsletter-content form .form-group .form-control {
    height: 50px;
    padding-left: 15px;
  }
  .newsletter-content form .form-group button {
    background-color: var(--optionalColor);
  }
  .newsletter-content form .form-group button:hover {
    background-color: var(--blackColor);
  }
  .newsletter-image {
    text-align: center;
  }
  .single-services-info {
    padding: 30px;
  }
  .single-services-info p {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .page-title-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .page-title-content h1 {
    font-size: 40px;
  }
  .page-title-content h6 {
    font-size: 25px;
  }
  .single-testimonial-info p {
    margin-bottom: 15px;
  }
  .single-testimonial-info .star {
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .destination-details-left-sidebar {
    margin-right: 0;
  }
  .destination-details-left-sidebar .content h3 {
    font-size: 30px;
  }
  .destination-details-left-sidebar .content .list li {
    padding-left: 25px;
    font-size: 17px;
  }
  .destination-details-right-sidebar {
    padding: 40px;
  }
  .destination-details-right-sidebar .date-info h3 {
    font-size: 20px;
  }
  .single-gallery-info .icon {
    width: 60px;
    height: 60px;
    font-size: 18px;
    line-height: 65px;
  }
  .contact-content {
    margin-right: 0;
  }
  .contact-content .content {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .contact-content .content h3 {
    max-width: 100%;
    font-size: 20px;
    margin-bottom: 0;
  }
  .contact-form {
    padding: 40px;
  }
  .contact-form .title h2 {
    font-size: 35px;
  }
  .contact-form form .form-group {
    margin-bottom: 20px;
  }
  .contact-form form .form-group label {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--blackColor);
  }
  .contact-form form .form-group .form-control {
    height: 60px;
    border: unset;
    box-shadow: unset;
    padding-left: 20px;
    border-radius: 20px;
  }
  .contact-form form .form-group .form-control::-moz-placeholder {
    color: rgba(85, 85, 85, 0.5);
  }
  .contact-form form .form-group .form-control::placeholder {
    color: rgba(85, 85, 85, 0.5);
  }
  .contact-form form .form-group .form-control.textarea {
    height: 170px;
    padding-top: 20px;
  }
  .contact-map iframe {
    height: 500px;
  }
  .login-content {
    padding: 20px;
  }
  .blog-left-sidebar {
    margin-right: 0;
  }
  .terms-conditions-content {
    margin-bottom: 25px;
  }
  .terms-conditions-content .title {
    margin-bottom: 25px;
  }
  .terms-conditions-content .title h3 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 26px;
  }
  .error-content h1 {
    font-size: 150px;
  }
  .error-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .footer-area {
    padding-top: 80px;
  }
  .single-footer-widget .logo {
    margin-bottom: 20px;
  }
  .single-footer-widget .socials-link {
    margin-top: 20px;
  }
  .single-footer-widget h3 {
    font-size: 20px;
    margin-bottom: 23px;
  }
  .single-footer-widget .custom-links li {
    margin-bottom: 12px;
  }
  .col-lg-3:nth-child(1) .single-footer-widget {
    margin-right: 0;
  }
  .col-lg-3:nth-child(2) .single-footer-widget {
    padding-left: 100px;
    margin-right: 0;
  }
  .col-lg-3:nth-child(3) .single-footer-widget {
    padding-left: 0;
  }
  .copyright-area {
    margin-top: 55px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .copyright-area ul li {
    margin-left: 15px;
    margin-right: 15px;
  }
  .go-top.active {
    bottom: 55px;
  }
}

@media only screen and (min-width: 992px) {
  .single-pricing-card .list {
    min-height: 414px;
  }
}

/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nofa-nav .navbar .navbar-nav {
    margin-right: 0;
  }
  body {
    font-size: 15px;
  }
  p {
    font-size: 15px;
  }
  .section-title {
    max-width: 600px;
    margin-bottom: 40px;
  }
  .section-title h2 {
    font-size: 40px;
  }
  .banner-area .container-fluid {
    max-width: 960px;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .banner-content {
    margin-bottom: -30px;
    max-width: 680px;
  }
  .banner-content h1 {
    font-size: 65px;
  }
  .banner-content h1 span::before {
    top: 5px;
  }
  .banner-image {
    padding-left: 0;
    margin-bottom: 50px;
  }
  .banner-description {
    padding: 50px;
  }
  .banner-description .description {
    max-width: 540px;
  }
  .banner-description .description .default-btn {
    margin-top: 5px;
  }
  .banner-description .boxes-list {
    border-radius: 20px;
    margin-left: 0;
    margin-top: 25px;
  }
  .banner-description .boxes-list .box h3 {
    font-size: 22px;
  }
  .shape9 {
    display: none;
  }
  .banner-wrapper-area {
    padding-top: 220px;
    padding-bottom: 80px;
  }
  .banner-wrapper-area .container-fluid {
    max-width: 960px;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .banner-wrapper-content {
    margin-left: 0;
  }
  .banner-wrapper-content h1 {
    font-size: 60px;
  }
  .banner-widget-content .content {
    bottom: 130px;
  }
  .banner-widget-content .content h2,
  .banner-widget-content .content h1 {
    font-size: 75px;
  }
  .shape15 {
    right: 200px;
  }
  .about-image .image .experience span {
    top: 19px;
    font-size: 22px;
  }
  .about-content {
    padding-left: 0;
  }
  .about-content h2 {
    font-size: 39px;
  }
  .about-content .features-list {
    margin-bottom: 25px;
  }
  .about-content .features-list li {
    font-size: 18px;
  }
  .about-content .call-info {
    margin-left: 20px;
  }
  .about-content.style-2 {
    margin-left: auto;
    margin-right: auto;
  }
  .shape11 {
    display: none;
  }
  .request-quote-content {
    max-width: 850px;
  }
  .request-quote-content h2 {
    font-size: 40px;
    max-width: 600px;
    margin-bottom: 20px;
  }
  .request-quote-content .default-btn {
    margin-top: 12px;
  }
  .performance-specifications-area .section-title {
    margin-bottom: 120px;
  }
  .performance-specifications-content {
    margin-right: -25px;
  }
  .performance-specifications-content .btn-box {
    margin-top: 0;
  }
  .performance-specifications-box {
    padding: 30px;
  }
  .performance-specifications-box .icon {
    right: 30px;
  }
  .performance-specifications-box h3 {
    font-size: 22px;
  }
  .performance-specifications-image {
    padding-left: 25px;
  }
  .shape2 {
    display: none;
  }
  .single-performance-specifications-info {
    padding: 25px;
    display: block !important;
  }
  .single-performance-specifications-info .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .single-performance-specifications-info .content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .single-performance-specifications-info.style-3 {
    padding: 40px;
  }
  .shape14 {
    display: none;
  }
  .destinations-content {
    margin-bottom: 40px;
    padding-right: 0;
    max-width: 720px;
  }
  .destinations-content h2 {
    font-size: 40px;
  }
  .destinations-content .default-btn {
    margin-top: 5px;
  }
  .destinations-items {
    margin-left: 0;
  }
  .destinations-item .content {
    padding: 20px;
  }
  .destinations-item .content h3 {
    font-size: 18px;
  }
  .shape3 {
    opacity: 0.4;
  }
  .single-features-card {
    padding: 40px;
  }
  .single-features-card .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
  .single-features-card h3 {
    font-size: 20px;
  }
  .single-features-card .number {
    left: 25px;
    bottom: 20px;
    font-size: 30px;
  }
  .flight-booking-form {
    padding: 40px;
    margin-right: 0;
  }
  .flight-booking-form .step {
    top: 42px;
    right: 40px;
  }
  .flight-booking-form .nav-tabs {
    margin-bottom: 25px;
  }
  .flight-booking-form .nav-tabs .nav-item {
    margin-right: 20px;
  }
  .flight-booking-form .nav-tabs .nav-item .nav-link {
    font-size: 22px;
  }
  .flight-booking-form .tab-content {
    margin-bottom: 25px;
  }
  .flight-booking-form.style-2 {
    margin-left: 0;
  }
  .flight-booking-form.style-2 .step {
    top: 170px;
  }
  .flight-booking-content {
    padding-left: 0;
    margin-top: 90px;
  }
  .flight-booking-content h2 {
    font-size: 40px;
  }
  .flight-booking-content .features-list {
    margin-top: 30px;
  }
  .flight-booking-content .features-list li {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .flight-booking-image {
    margin-left: 0;
    margin-right: 0;
  }
  .cta-inner-area {
    padding: 60px;
  }
  .cta-inner-area .number {
    font-size: 40px;
  }
  .cta-inner-area p {
    max-width: 100%;
    margin-left: 15px;
  }
  .cta-inner-area.style-2 {
    padding: 40px;
  }
  .cta-inner-area.style-2 .background-color-shape {
    max-width: 500px;
  }
  .cta-content h1 {
    font-size: 37px;
  }
  .cta-contact-info {
    margin-left: 20px;
  }
  .faq-accordion.accordion .accordion-item .accordion-button {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .private-flight-content .content h2 {
    font-size: 40px;
  }
  .private-flight-content .content .default-btn {
    margin-top: 5px;
  }
  .private-flight-content .partners {
    margin-right: 0;
  }
  .private-flight-content .partners span {
    margin-bottom: 25px;
  }
  .private-flight-list {
    padding-left: 0;
  }
  .single-flight-box {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .single-flight-box .from-to {
    padding-left: 5px;
    padding-right: 5px;
  }
  .single-flight-box .from-to h3 {
    font-size: 35px;
  }
  .single-flight-box ul {
    padding-left: 5px;
    padding-right: 5px;
  }
  .feedback-content {
    margin-bottom: 50px;
  }
  .feedback-content h2 {
    font-size: 40px;
    max-width: 100%;
  }
  .feedback-content .number {
    letter-spacing: 20px;
    font-size: 200px;
    margin-top: -25px;
    margin-bottom: 15px;
  }
  .single-feedback-box {
    padding: 60px;
  }
  .single-feedback-box .image {
    margin-left: 0;
    margin-top: -90px;
    margin-bottom: 30px;
  }
  .single-feedback-box h3 {
    font-size: 22px;
  }
  .single-feedback-box p {
    margin-top: 20px;
  }
  .single-feedback-box .info {
    margin-top: 20px;
  }
  .single-feedback-box .quote {
    left: 45px;
  }
  .shape4 {
    right: 0;
  }
  .single-blog-post .image .date {
    left: 30px;
  }
  .single-blog-post .content {
    padding: 30px;
  }
  .single-blog-post .content h3 {
    font-size: 22px;
  }
  .single-blog-image h1 {
    font-size: 35px;
  }
  .single-blog-content {
    padding-left: 30px;
    margin-left: 10px;
  }
  .single-blog-content .item {
    margin-bottom: 20px;
  }
  .single-blog-content .item h3 {
    font-size: 22px;
  }
  .special-offer-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .special-offer-area .container-fluid {
    max-width: 960px;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
  }
  .special-offer-content {
    margin-left: 0;
    max-width: 100%;
  }
  .special-offer-content h2 {
    font-size: 40px;
  }
  .special-offer-content .default-btn {
    margin-top: 5px;
  }
  .special-offer-image {
    margin-left: 0;
  }
  .shape5 {
    left: 20%;
  }
  .single-airplanes-card {
    padding: 25px;
  }
  .single-airplanes-card h1 {
    font-size: 50px;
  }
  .single-airplanes-card h3 {
    font-size: 18px;
  }
  .single-airplanes-video {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .single-pricing-card .content {
    padding: 25px 25px;
    padding-top: 45px;
  }
  .single-pricing-card .content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .single-pricing-card .content .icon {
    width: 70px;
    height: 70px;
    font-size: 25px;
    line-height: 70px;
  }
  .single-pricing-card .list {
    padding: 25px;
  }
  .single-pricing-card .list a {
    padding: 10px;
    font-size: 16px;
  }
  .single-partner-info {
    padding: 30px;
  }
  .newsletter-info {
    padding: 45px;
  }
  .newsletter-info .newsletter-bg-shape {
    display: none;
  }
  .single-services-info {
    padding: 30px;
  }
  .single-services-info p {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .page-title-content h1 {
    font-size: 35px;
  }
  .page-title-content h6 {
    font-size: 25px;
  }
  .single-testimonial-info {
    padding: 15px;
    padding-bottom: 0;
  }
  .single-testimonial-info p {
    margin-bottom: 12px;
  }
  .single-testimonial-info h3 {
    font-size: 22px;
  }
  .single-testimonial-info .star {
    margin-top: 7px;
    margin-bottom: 5px;
  }
  .single-testimonial-info .icon {
    margin-bottom: 10px;
  }
  .destination-details-left-sidebar {
    margin-right: 0;
  }
  .destination-details-left-sidebar .image {
    margin-bottom: 20px;
  }
  .destination-details-left-sidebar .content h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .destination-details-left-sidebar .content .list li {
    font-size: 16px;
    padding-left: 21px;
  }
  .destination-details-left-sidebar .previous-next {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .destination-details-left-sidebar .previous-next .previous .icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin-right: 15px;
    line-height: 55px;
  }
  .destination-details-left-sidebar .previous-next .previous h3 {
    font-size: 15px;
  }
  .destination-details-left-sidebar .previous-next .previous.next .icon {
    margin-left: 15px;
  }
  .destination-details-right-sidebar {
    padding: 25px;
  }
  .destination-details-right-sidebar .date-info {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .destination-details-right-sidebar .date-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .contact-content {
    margin-right: 0;
  }
  .contact-content .content {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .contact-content .content h3 {
    max-width: 100%;
    font-size: 22px;
  }
  .contact-content .content ul li a {
    font-size: 15px;
  }
  .contact-form {
    padding: 30px;
  }
  .contact-form .title h2 {
    font-size: 30px;
  }
  .contact-map iframe {
    height: 500px;
  }
  .login-content {
    padding: 10px;
  }
  .login-content .title {
    margin-bottom: 20px;
  }
  .login-content .title h2 {
    font-size: 35px;
  }
  .login-content .or {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .blog-left-sidebar {
    margin-right: 0;
  }
  .single-pages-widget {
    padding: 15px;
    margin-bottom: 25px;
  }
  .single-pages-widget h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .single-pages-widget.form .form-group .form-control {
    height: 50px;
    padding-left: 15px;
  }
  .single-pages-widget.form .form-group button {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .single-pages-widget.recent-post .post-card .content h6 {
    font-size: 15px;
  }
  .single-pages-widget.categories ul li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .single-pages-widget.tag ul li {
    margin-right: 7px;
  }
  .categories-tags-info .categories ul li {
    margin-left: 9px;
  }
  .categories-tags-info .categories ul li span {
    font-size: 20px;
  }
  .categories-tags-info .tag ul li {
    margin-left: 9px;
  }
  .categories-tags-info .tag ul li span {
    font-size: 20px;
  }
  .blog-comments-info .comments-card.style-2 {
    margin-left: 40px;
  }
  .terms-conditions-content {
    margin-bottom: 25px;
  }
  .terms-conditions-content .title {
    margin-bottom: 25px;
  }
  .terms-conditions-content .title h3 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 26px;
  }
  .single-footer-widget .logo {
    margin-bottom: 20px;
  }
  .single-footer-widget .socials-link {
    margin-top: 20px;
  }
  .single-footer-widget h3 {
    font-size: 22px;
  }
  .col-lg-3:nth-child(1) .single-footer-widget {
    margin-right: -50px;
  }
  .col-lg-3:nth-child(2) .single-footer-widget {
    padding-left: 65px;
    margin-right: 0;
  }
  .col-lg-3:nth-child(3) .single-footer-widget {
    padding-left: 40px;
  }
  .copyright-area ul li {
    margin-left: 18px;
    margin-right: 18px;
  }
  .go-top.active {
    bottom: 60px;
  }
  .single-feedback-box.h-100 {
    min-height: 332px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .nofa-nav .navbar .navbar-nav {
    margin-right: 0;
  }
  .banner-area .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
  .banner-content {
    margin-bottom: -80px;
  }
  .banner-image {
    padding-left: 0;
    margin-bottom: -100px;
  }
  .banner-description {
    padding: 230px 0 0 30px;
  }
  .banner-description .description {
    max-width: 100%;
  }
  .banner-description .boxes-list {
    margin-left: 0;
  }
  .banner-description .boxes-list .box {
    padding: 25px;
  }
  .shape9 {
    right: 5%;
    top: 2%;
  }
  .banner-wrapper-area {
    padding-top: 245px;
    padding-bottom: 80px;
  }
  .banner-wrapper-area .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
  .banner-wrapper-content {
    max-width: 500px;
    margin-left: 0;
  }
  .banner-wrapper-content h1 {
    font-size: 65px;
  }
  .about-content {
    padding-left: 15px;
  }
  .about-content h2 {
    font-size: 46px;
  }
  .about-content.style-2 {
    margin-left: auto;
    margin-right: auto;
  }
  .shape11 {
    display: none;
  }
  .performance-specifications-content .btn-box {
    margin-top: 0;
  }
  .performance-specifications-image {
    padding-left: 25px;
  }
  .shape2 {
    display: none;
  }
  .single-performance-specifications-info {
    padding: 30px;
  }
  .destinations-content {
    padding-right: 0;
  }
  .destinations-items {
    margin-left: 0;
  }
  .destinations-item.style-2 .content {
    padding: 20px;
  }
  .shape3 {
    opacity: 0.5;
  }
  .cta-inner-area.style-2 {
    padding: 35px;
  }
  .cta-contact-info {
    margin-left: 55px;
  }
  .single-blog-post .content {
    padding: 25px;
  }
  .single-blog-post .content h3 {
    font-size: 22px;
  }
  .single-blog-image h1 {
    font-size: 35px;
  }
  .single-blog-content {
    padding-left: 37px;
    margin-left: 15px;
  }
  .single-blog-content .item {
    margin-bottom: 35px;
  }
  .single-partner-info {
    padding: 35px;
  }
  .newsletter-info {
    padding: 50px;
  }
  .newsletter-info .newsletter-bg-shape {
    display: none;
  }
  .flight-booking-content {
    padding-left: 55px;
  }
  .flight-booking-form.style-2 {
    margin-left: 0;
    margin-right: -15px;
  }
  .flight-booking-form.style-2 .step {
    top: 140px;
  }
  .flight-booking-image {
    margin-left: 0;
    margin-right: 0;
  }
  .private-flight-content .partners {
    margin-right: -25px;
  }
  .private-flight-list {
    padding-left: 25px;
  }
  .special-offer-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .special-offer-content {
    max-width: 660px;
  }
  .special-offer-image {
    margin-left: 0;
  }
  .shape5 {
    left: 20%;
  }
  .single-features-card {
    padding: 50px;
  }
  .single-pricing-card .content {
    padding: 25px 25px;
    padding-top: 50px;
  }
  .single-pricing-card .list {
    padding: 25px;
  }
  .single-pricing-card .list a {
    padding: 10px;
  }
  .single-services-info {
    padding: 30px;
  }
  .single-testimonial-info {
    padding: 25px;
    padding-bottom: 0;
  }
  .single-testimonial-info p {
    margin-bottom: 15px;
  }
  .single-testimonial-info .star {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .contact-content {
    margin-right: 0;
  }
  .contact-form {
    padding: 30px;
  }
  .contact-map iframe {
    height: 500px;
  }
  .blog-left-sidebar {
    margin-right: 0;
  }
  .single-pages-widget {
    padding: 25px;
  }
  .col-lg-3:nth-child(2) .single-footer-widget {
    padding-left: 145px;
  }
  .col-lg-3:nth-child(3) .single-footer-widget {
    padding-left: 95px;
  }
  .single-feedback-box.h-100 {
    min-height: 332px;
  }
}
/* Min width 1400px to Max width 1599px */
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .nofa-nav .navbar .navbar-nav {
    margin-right: 0;
  }
  .flight-booking-form.style-2 .step {
    top: auto;
  }
  .shape11 {
    top: -520px;
    max-width: 700px;
  }
  .shape15 {
    right: 400px;
    bottom: 80px;
  }
  .pagination .page-item .page-link {
    line-height: 39px;
  }
  .single-feedback-box.h-100 {
    min-height: 332px;
  }
}
/* Min width 1600px */
@media only screen and (min-width: 1600px) {
  .nofa-nav .navbar .navbar-nav {
    margin-right: 0;
  }
  .banner-area .container-fluid {
    padding-left: 100px;
    padding-right: 100px;
  }
  .banner-content {
    margin-bottom: -135px;
  }
  .banner-image {
    padding-left: 80px;
    margin-bottom: -253px;
  }
  .banner-description {
    padding: 330px 0 0 30px;
  }
  .shape9 {
    right: 6%;
    top: 11.5%;
  }
  .banner-wrapper-area .container-fluid {
    max-width: 1760px;
    padding-left: 100px;
    padding-right: 100px;
  }
  .shape2 {
    right: -60px;
  }
  .single-feedback-box.h-100 {
    min-height: 332px;
  }
}

@media (max-width: 768px) {
  .head-top1 {
    position: relative;
  }
  .head-top1::after {
    position: absolute;
    background-color: #0000005c;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
  }

  .banner-widget-area .owl-carousel .owl-item img {
    visibility: hidden;
  }
}
