/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --jetly-font: "DM Sans", sans-serif;
  --jetly-reey-font: "reeyregular";
  --jetly-gray: #79817c;
  --jetly-gray-rgb: 121, 129, 124;
  --jetly-white: #ffffff;
  --jetly-white-rgb: 255, 255, 255;
  --jetly-base: #a79132;
  --jetly-base-rgb: 167, 145, 50;
  --jetly-black: #033271;
  --jetly-black-rgb: 18, 56, 33;
  --jetly-primary: #f8f7f1;
  --jetly-primary-rgb: 248, 247, 241;
  --jetly-letter-spacing: -0.04em;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  /* font-family: var(--jetly-font); */
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  color: var(--jetly-gray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}
.opensanssemibold {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight:600;
  font-style: normal;
}
.opensansregular {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
}
body.locked {
  overflow: hidden;
}

a {
  color: var(--jetly-gray);
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--jetly-black);
  margin: 0;
  letter-spacing: var(--jetly-letter-spacing);
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--jetly-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--jetly-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--jetly-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--jetly-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--jetly-black);
  color: var(--jetly-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 60px 15px;
  border-radius: 30px;
  transition: all 0.5s linear;
  z-index: 1;
}

.thm-btn::before {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: var(--jetly-base);
  content: "";
  border-radius: 30px;
  transform: scaleY(0) rotateX(0deg);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: -1;
}

.thm-btn:hover {
  color: var(--jetly-white);
}

.thm-btn:hover:before {
  transform: scaleY(1) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -9px;
  margin-bottom:30px;
  z-index: 3;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 16px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
}
.moreDetailBtn{position: relative;
    display: inline-block;
    vertical-align: middle;
    outline: none !important;
    background-color: var(--jetly-black);
    color: var(--jetly-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 30px 15px;
    border-radius: 30px;
    transition: all 0.5s linear;
    z-index: 1;
}
.moreDetailBtn:hover{transform:scale(1.04);color:#fff;}
.section-title__title {
  margin: 0;
  color: var(--jetly-black);
  font-size: 34px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-top: 5px;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--jetly-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--jetly-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
  background: var(--jetly-black);
  color: var(--jetly-white);
  cursor: pointer;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--jetly-base);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
}

.scroll-to-top i {
  color: var(--jetly-white);
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
  transform: rotate(-90deg);
}

.scroll-to-top:hover {
  background-color: var(--jetly-black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  /* background: transparent; */
  /* position: absolute; */
  /* left: 0px;
  top: 0px; */
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: rgba(var(--jetly-white-rgb), 0.1);
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  padding: 0 55px;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu__left {
  display: block;
}

.main-menu__logo {
  display: block;
  padding: 26px 0;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: block;
}

.main-menu__search-cart-call-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.main-menu__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.main-menu__search-cart-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  width: 1px;
  background-color: rgba(var(--jetly-white-rgb), 0.1);
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--jetly-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--jetly-base);
}

.main-menu__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--jetly-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart:hover {
  color: var(--jetly-base);
}

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.main-menu__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--jetly-base);
  border-radius: 50%;
  color: var(--jetly-white);
  font-size: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-icon:hover {
  background-color: var(--jetly-white);
  color: var(--jetly-base);
}

.main-menu__call-content {
  margin-left: 10px;
}

.main-menu__call-sub-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(#033271, 0.4);
  line-height: 13px;
}

.main-menu__call-number {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  margin-top: 6px;
  letter-spacing: 0;
}

.main-menu__call-number a {
  color: #033271;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.stricky-fixed .main-menu__call-number a {
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.stricky-fixed .main-menu__call-number a:hover {
  color: var(--jetly-base);
}

.stricky-header.main-menu {
  background-color: var(--jetly-black);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list > li > ul,
  .stricky-header .main-menu__list > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 90px;
}

.main-menu .main-menu__list > li > a {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #033271;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.stricky-header .main-menu__list > li > a {
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--jetly-base);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease,
    -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 31px 20px 31px;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--jetly-gray);
  letter-spacing: 0;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 20px 5px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--jetly-white);
  letter-spacing: var(--jetly-letter-spacing);
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
  background-color: var(--jetly-primary);
  color: var(--jetly-black);
}

.main-menu .main-menu__list > li > ul > li > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li > a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--jetly-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu,
.main-menu-two__main-menu-box .main-menu__list > .megamenu,
.main-menu__wrapper .main-menu__list > .megamenu {
  position: static;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu__wrapper .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu__wrapper .main-menu__list > .megamenu > ul > li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--jetly-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--jetly-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--jetly-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--jetly-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--jetly-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--jetly-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--jetly-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content
  .main-menu__list
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a.expanded {
  color: var(--jetly-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--jetly-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a
  > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--jetly-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--jetly-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--jetly-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--jetly-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--jetly-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--jetly-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--jetly-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -31px;
  margin-bottom: -31px;
}

.home-showcase__inner {
  padding: 40px 40px 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__image {
  position: relative;
  background-color: var(--jetly-base);
  overflow: hidden;
}

.home-showcase__image > img {
  width: 100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.home-showcase__image:hover > img {
  opacity: 0.75;
}

.home-showcase__image:hover .home-showcase__buttons {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

.home-showcase__buttons__item {
  padding: 10px 20px;
  width: 150px;
  text-align: center;
}

.home-showcase__buttons__item + .home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--jetly-black);
  margin-top: 17px;
}

.mobile-nav__wrapper .home-showcase .row [class*="col-"] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--jetly-white, #ffffff);
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-two__top {
  position: relative;
  display: block;
  background-color: var(--jetly-black);
  padding: 2px 0;
}

.main-header-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-two__top-left {
  position: relative;
  display: block;
}

.main-header-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.main-header-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__contact-list li + li {
  margin-left: 30px;
}

.main-header-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__contact-list li .icon i {
  font-size: 12px;
  color: var(--jetly-base);
}

.main-header-two__contact-list li .text {
  margin-left: 10px;
}

.main-header-two__contact-list li .text p {
  font-size: 13px;
  font-weight: 500;
  color: #889f91;
}

.main-header-two__contact-list li .text p a {
  color: #889f91;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__contact-list li .text p a:hover {
  color: var(--jetly-base);
}

.main-header-two__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
  padding: 12.5px 0;
}

.main-header-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--jetly-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__social a:hover {
  color: var(--jetly-base);
}

.main-header-two__social a + a {
  margin-left: 25px;
}

.stricky-header.main-menu-two {
  background-color: var(--jetly-black);
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-two__wrapper-inner-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: rgba(var(--jetly-white-rgb), 0.1);
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.main-menu-two__left {
  display: block;
  margin-right: 135px;
}

.main-menu-two__logo {
  display: block;
  padding: 26px 0;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  display: flex;
  align-items: center;
}

.main-menu-two__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 178px;
  padding: 38px 0;
}

.main-menu-two__search-cart-box:before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: -30px;
  width: 1px;
  background-color: rgba(var(--jetly-white-rgb), 0.1);
}

.main-menu-two__search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--jetly-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--jetly-base);
}

.main-menu-two__cart-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.main-menu-two__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--jetly-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart:hover {
  color: var(--jetly-base);
}

.main-menu-two .main-menu__list > li + li,
.stricky-header.main-menu-two .main-menu__list > li + li {
  margin-left: 60px;
}

.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
  color: var(--jetly-white);
}

.main-menu-two .main-menu__list > li.current > a,
.main-menu-two .main-menu__list > li:hover > a,
.stricky-header.main-menu-two .main-menu__list > li.current > a,
.stricky-header.main-menu-two .main-menu__list > li:hover > a {
  color: var(--jetly-base);
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
  background-image: linear-gradient(
    180deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.stricky-header.main-menu-three {
  background-color: var(--jetly-white);
}

.main-header-three__top {
  position: relative;
  display: block;
  border-bottom: 1px solid #eeede5;
  padding: 2px 0;
  z-index: 1;
}

.main-header-three__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 60px 0;
}

.main-header-three__top-left {
  position: relative;
  display: block;
}

.main-header-three__contact-list {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.main-header-three__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__contact-list li + li {
  margin-left: 30px;
}

.main-header-three__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  top: 1px;
}

.main-header-three__contact-list li .icon i {
  font-size: 12px;
  color: var(--jetly-base);
}

.main-header-three__contact-list .text {
  margin-left: 10px;
}

.main-header-three__contact-list .text p {
  font-size: 13px;
  font-weight: 500;
  color: var(--jetly-gray);
}

.main-header-three__contact-list .text p a {
  color: var(--jetly-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-three__contact-list li .text p a:hover {
  color: var(--jetly-base);
}

.main-header-three__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--jetly-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-three__social a:hover {
  color: var(--jetly-base);
}

.main-header-three__social a + a {
  margin-left: 25px;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 60px 0;
}

.main-menu-three__left {
  position: relative;
  display: block;
}

.main-menu-three__logo {
  position: relative;
  display: block;
  padding: 26px 0;
}

.main-menu-three__right {
  position: relative;
  display: block;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 38px 0;
}

.main-menu-three__search-cart-box:before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: -30px;
  width: 1px;
  background-color: #eeede5;
}

.main-menu-three__search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--jetly-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--jetly-base);
}

.main-menu-three__cart-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.main-menu-three__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--jetly-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__cart:hover {
  color: var(--jetly-base);
}

.stricky-header.main-menu-three {
  background-color: var(--jetly-white);
}

.main-menu-three .main-menu__list > li > a,
.stricky-header.main-menu-three .main-menu__list > li > a {
  color: var(--jetly-gray);
  font-weight: 500;
}

.main-menu-three .main-menu__list > li.current > a,
.main-menu-three .main-menu__list > li:hover > a,
.stricky-header.main-menu-three .main-menu__list > li.current > a,
.stricky-header.main-menu-three .main-menu__list > li:hover > a {
  color: var(--jetly-black);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--jetly-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--jetly-base);
  border: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--jetly-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover:before {
  width: 150%;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  z-index: 2;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--jetly-black);
}

.main-slider .container {
  position: relative;
  padding-top: 224px;
  padding-bottom: 230px;
  z-index: 30;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  mix-blend-mode: luminosity;
  opacity: 0.15;
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in,
    -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider__content {
  position: relative;
  display: block;
  text-align: center;
}

.main-slider__sub-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--jetly-white);
  font-weight: 500;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider__title {
  position: relative;
  font-size: 100px;
  color: var(--jetly-white);
  font-weight: 700;
  line-height: 90px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 26px;
  margin-bottom: 39px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider__btn {
  background-color: var(--jetly-base);
}

.main-slider__btn:hover {
  color: var(--jetly-base);
}

.main-slider__btn:before {
  background-color: var(--jetly-white);
}

.main-slider__btn-two {
  background-color: var(--jetly-white);
  color: var(--jetly-black);
  margin-left: 10px;
}

.main-slider__btn-two:hover {
  color: var(--jetly-white);
}

.main-slider__btn-two:before {
  background-color: var(--jetly-base);
}

.main-slider .swiper-slide-active .main-slider__title,
.main-slider .swiper-slide-active .main-slider__sub-title,
.main-slider .swiper-slide-active .main-slider__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider-two .swiper-slide {
  position: relative;
  background-color: var(--jetly-black);
}

.main-slider-two .container {
  position: relative;
  padding-top: 388px;
  padding-bottom: 175px;
  z-index: 30;
}

.image-layer-two {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in,
    -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-two .swiper-slide-active .image-layer-two {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer-two:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--jetly-black-rgb), 0.5);
}

.main-slider-two__content {
  position: relative;
  display: block;
}

.main-slider-two__title {
  position: relative;
  display: block;
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
  color: var(--jetly-white);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider-two__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__title,
.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-two__shape-1 {
  position: absolute;
  top: -65px;
  left: 0;
  transform: translateX(-200px);
  opacity: 0;
}

.swiper-slide-active .main-slider-two__shape-1 {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1000ms ease;
  transition-delay: 1200ms;
}

.main-slider-two__shape-1 img {
  width: auto;
}

.main-slider__nav {
  position: absolute;
  top: 52%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--jetly-black-rgb), 1);
  background-color: rgba(var(--jetly-white-rgb), 0.2);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 23px 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: rgba(var(--jetly-black-rgb), 1);
  background-color: rgba(var(--jetly-white-rgb), 1);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider-three .swiper-slide {
  position: relative;
  /* background-image: linear-gradient(0deg, rgb(246, 245, 238) 0%, rgba(255, 255, 255, 0) 100%); */
  background-color: rgb(246, 245, 238);
}

.main-slider-three .container {
  position: relative;
  padding-top: 338px;
  padding-bottom: 260px;
  z-index: 30;
}

.image-layer-three {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 100%;
  background-repeat: repeat-x;
  background-position: -1920px 100%;
  z-index: 1;
  animation: cloudMove 30s linear 0s infinite;
  mix-blend-mode: luminosity;
  opacity: 0.7;
}

@keyframes cloudMove {
  0% {
    background-position: -1920px 100%;
  }

  100% {
    background-position: 0 100%;
  }
}

.main-slider-three__img {
  position: absolute;
  bottom: 270px;
  right: -172px;
  -webkit-transform: translateX(150%);
  transform: translateX(150%);
  z-index: 1;
}

.main-slider-three__img img {
  width: auto;
}

.main-slider-three .swiper-slide-active .main-slider-three__img {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 3000ms;
  transition-delay: 3000ms;
  -webkit-transition: opacity 2000ms ease, color 500ms ease,
    background 500ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, color 500ms ease, background 500ms ease,
    -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__content {
  position: relative;
  display: block;
}

.main-slider-three__sub-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--jetly-base);
  font-weight: 700;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider-three__title {
  position: relative;
  font-size: 80px;
  color: var(--jetly-black);
  font-weight: 700;
  line-height: 90px;
  letter-spacing: -0.06em;
  margin-top: 5px;
  margin-bottom: 32px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider-three__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease,
    -webkit-transform 2000ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__sub-title,
.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  background-color: var(--jetly-base);
  padding: 40px 0 20px;
  z-index: 4;
  margin-top: -10px;
}

.feature-one__shape-1 {
  position: absolute;
  top: -139px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.feature-one__shape-1 > img {
  width: auto;
}

.feature-one__shadow {
  position: absolute;
  bottom: -56px;
  background-blend-mode: multiply;
  background-color: var(--jetly-base);
  z-index: -1;
}

.feature-one__shadow > img {
  width: auto;
  mix-blend-mode: multiply;
}

.feature-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border: 1px solid #b4a151;
  padding: 36px 39px 32px;
  z-index: 1;
}

.feature-one__single:before {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  content: "";
  background-color: var(--jetly-white);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.feature-one__single:hover:before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.feature-one__icon {
  position: relative;
  display: block;
  margin-bottom: 13px;
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 55px;
  color: #ffff;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__icon span {
  color: var(--jetly-base);
  transform: scale(0.9);
}

.feature-one__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 28px;
  min-height:90px;
}

.feature-one__title a {
  color: var(--jetly-white);
  transition: all 0.4s linear;
}

.feature-one__single:hover .feature-one__title a {
  color: var(--jetly-black);
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 50px 0 20px;
}

.about-one__left {
  position: relative;
  display: block;
}
.about-one__left .about-one__text{padding-right:15px !important;line-height:1.6;text-align:justify !important;color:#000;}
.innerAboutOneLeft .about-one__text{color:#000;line-height:1.6;}

.about-one__left .section-title {
  margin-bottom: 28px;
}
.innerAboutOneLeft .newStyle{font-style: italic;color:var(--jetly-black);font-weight:600;text-align:justify !important;}
.about-one__points {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 40px;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__points li + li {
  margin-top: 6px;
}

.about-one__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--jetly-base);
}

.about-one__points li .text {
  margin-left: 15px;
}

.about-one__points li .text p {
  font-size: 18px;
  font-weight: 700;
  color: var(--jetly-black);
}

.about-one__btn-call {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__btn-box {
  position: relative;
  display: block;
}

.about-one__call {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.about-one__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(238, 237, 229);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  width: 57px;
  height: 57px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__call-icon:hover {
  background-color: var(--jetly-base);
  border-color: var(--jetly-base);
}

.about-one__call-icon span {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--jetly-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__call-icon:hover span {
  color: var(--jetly-white);
}

.about-one__call-content {
  margin-left: 10px;
}

.about-one__call-sub-title {
  position: relative;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 20px;
  font-weight: 600;
}

.about-one__call-number {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.about-one__call-number a {
  color: var(--jetly-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__call-number a:hover {
  color: var(--jetly-base);
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: 5px;
  margin-right: 5px;
  z-index: 1;
}

.about-one__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.about-one__img-box:before {
  content: "";
  position: absolute;
  top: 90px;
  left: -40px;
  right: 40px;
  bottom: -40px;
  background-color: #033271;
  z-index: -1;
}

.about-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

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

.about-one__img-box:hover .about-one__img:after {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}

.about-one__img > img {
  width: 100%;
}

.about-one__satisfied {
  position: absolute;
  top: 0;
  right: -40px;
  background-color: var(--jetly-base);
  display: flex;
  align-items: center;
  padding: 10px 40px 10px;
  z-index: 2;
}

.about-one__satisfied:before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 0;
  border-bottom: 40px solid transparent;
  border-left: 40px solid #9a8528;
}

.about-one__satisfied-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__satisfied-icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--jetly-black);
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.about-one__satisfied:hover .about-one__satisfied-icon span {
  transform: scale(0.9);
}

.about-one__satisfied-content {
  margin-left: 20px;
}

.about-one__satisfied-content h3 {
  font-size: 40px;
  color: var(--jetly-white);
  font-weight: 700;
  line-height: 40px !important;
  font-family: var(--jetly-font) !important;
  letter-spacing: 0;
}

.about-one__satisfied-content p {
  font-size: 14px;
  color: #ede2b1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 20px;
}

.about-one__satisfied .odometer-formatting-mark {
  display: none;
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  padding: 0 0 90px;
}

/*--------------------------------------------------------------
# Get Flight
--------------------------------------------------------------*/
.get-flight {
  position: relative;
  display: block;
  background-color: var(--jetly-black);
  padding: 40px 0 40px;
  z-index: 1;
  overflow:hidden;
}

.get-flight:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 363px;
  background-color: var(--jetly-white);
  z-index: -1;
}

.get-flight-img {
  position: absolute;
  top: 0;
  right: 0;
}

.get-flight-img img {
  width: auto;
}

.get-flight__shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  mix-blend-mode: soft-light;
  opacity: 0.1;
  z-index: -1;
}

.get-flight__shape-1 img {
  width: auto;
}

.get-flight__shape-2 {
  position: absolute;
  bottom: 0;
  right: 560px;
  opacity: 0.1;
  z-index: -1;
}

.get-flight__shape-2 img {
  width: auto;
}

.get-flight__content-box {
  position: relative;
  display: block;
}

.get-flight__content-box .section-title__title {
  color: var(--jetly-white);
}

.get-flight__form {
  position: relative;
  display: block;
}

.get-flight__form .row {
  --bs-gutter-x: 20px;
}

.get-flight__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.get-flight__form-input-box input[type="text"] {
  height: 60px;
  width: 100%;
  background-color: #0d2b19;
  border: none;
  outline: none;
  padding: 0 30px;
  color: #889f91;
  line-height: 60px;
  font-weight: 400;
  font-size: 14px;
}

.newjbkj .get-flight__form-input-box input[type="text"], 
.newjbkj .get-flight__form-input-box input[type="password"] {
  height: 50px;
  width: 100%;
  background-color: #e7e7e7;
  border: none;
  outline: none;
  padding: 0 15px;
  color: #000000;
  line-height: 50px;
  font-weight: 400;
  font-size: 14px;
}

.get-flight__icon-box {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.get-flight__icon-box i {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--jetly-white);
}

.get-flight__form .select-box .nice-select {
  background-color: #0d2b19;
  border-radius: 0;
  color: #889f91;
  font-size: 14px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.newjbkj .get-flight__form .select-box .nice-select {
  background-color: #e7e7e7;
  border-radius: 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-bottom: 20px;
}

.get-flight__form .select-box .nice-select:after {
  position: absolute;
  right: 30px;
}

.get-flight__btn {
  border: none;
  background-color: var(--jetly-base);
}

.get-flight__btn:hover {
  color: var(--jetly-black);
}

.get-flight__btn:before {
  background-color: var(--jetly-white);
}

.get-flight__content-text {
  font-size: 16px;
  color: #889f91;
  line-height: 30px;
}

.get-flight__content-text span {
  position: relative;
  display: inline-block;
  color: var(--jetly-base);
}

/* ui css */

#ui-datepicker-div.ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: 1px solid var(--jetly-black);
  color: #252525;
  font-size: 14px;
  border-radius: 0px;
  width: 270px;
  padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
  background: var(--jetly-base) none repeat scroll 0 0;
  border: 2px solid var(--jetly-base);
  border-radius: 0;
  color: var(--jetly-white);
  font-weight: 700;
  padding: 5px 0;
  position: relative;
}

.ui-datepicker td a {
  color: #000000 !important;
  text-align: center;
  background-image: none !important;
  background: #f5f5f5 !important;
  border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #333333 !important;
  background: #333333 !important;
  color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
  left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-radius: 30%;
  height: 20px;
  position: absolute;
  top: 7px;
  width: 20px;
  transition: all 500ms ease;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  top: 7px;
  background: #fff;
  border: none;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: 13px;
  margin: 0 0 0.4em;
  width: 100%;
}

.ui-datepicker th {
  border: medium none;
  font-weight: 600;
  padding: 2px 3px;
  text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
  background: #43c3ea;
  color: #fff;
  border-color: #43c3ea;
}

#ui-datepicker-div.ui-widget {
  font-family: var(--thm-font);
}

#ptTimeSelectCntr .ui-widget {
  font-family: var(--jetly-font);
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  padding: 30px 0 30px;
}

.services-one .container {
  max-width: 1600px;
}

.services-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.services-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.services-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--jetly-black-rgb), 0.4);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: 1;
}

.services-one__single:hover .services-one__img:before {
  transform: translateY(0);
  width: 100%;
}

.services-one__img img {
  width: 100%;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.1);
}

.services-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  margin-top: -40px;
  margin-right: 40px;
  padding: 28px 40px 35px;
  z-index: 2;
}

.services-one__title-box {
  position: relative;
  display: block;
}

.services-one__sub-title {
  font-size: 12px;
  color: var(--jetly-base);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  line-height: 12px;
}

.services-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-top: 7px;
  margin-bottom: 14px;
}

.services-one__title a {
  color: var(--jetly-black);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}

.services-one__title a:hover {
  color: var(--jetly-base);
}

.services-one__arrow {
  position: absolute;
  top: -20px;
  right: 20px;
}

.services-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--jetly-base);
  font-size: 15px;
  color: var(--jetly-white);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}

.services-one__arrow a:hover {
  background-color: var(--jetly-black);
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  z-index: 1;
}

.counter-one__box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--jetly-black);
  padding-top: 49px;
  padding-bottom: 8px;
  z-index: 1;
}

.counter-one__single {
  position: relative;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  text-align: center;
  margin-bottom: 33px;
  z-index: 1;
}

.counter-one__single:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  content: "";
  width: 1px;
  background-color: rgba(var(--jetly-white-rgb), 0.1);
}

.counter-one__single:first-child:before {
  display: none;
}

.counter-one__icon {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  z-index: 1;
}

.counter-one__icon i {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--jetly-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.counter-one__single:hover .counter-one__icon i {
  transform: scale(0.9);
}

.counter-one__shape {
  position: absolute;
  top: 1px;
  left: -20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(var(--jetly-base-rgb), 0.1);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
  z-index: -1;
}

.counter-one__single:hover .counter-one__shape {
  transform: scale(1.2);
}

.counter-one__content {
  position: relative;
  display: block;
}

.counter-one__single h3 {
  font-size: 40px;
  line-height: 40px !important;
  color: var(--jetly-white);
  font-weight: 700;
  font-family: var(--jetly-font) !important;
}

.counter-one__text {
  font-size: 18px;
  color: #889f91;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: var(--jetly-primary);
  padding: 30px 0 30px;
  z-index: 1;
}

.testimonial-one__shape-1 {
  position: absolute;
  top: 130px;
  left: 113px;
}

.testimonial-one__shape-1 img {
  width: auto;
}

.testimonial-one__shape-2 {
  position: absolute;
  top: 200px;
  right: 230px;
}

.testimonial-one__shape-2 img {
  width: auto;
}

.testimonial-one__shape-3 {
  position: absolute;
  bottom: 155px;
  right: 0;
}

.testimonial-one__shape-3 img {
  width: auto;
}

.testimonial-one__bottom {
  width:100%;
  position: relative;
  display: block;
  z-index: 1;
}

.testimonial-one__shape-4 {
  position: absolute;
  top: 0;
  left: 0;
  height: 560px;
  width: 1157px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}

.testimonial-one__single {
  position: relative;
  display: block;
  padding: 40px 50px 41px 121px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  margin-left: 64px;
  border-left: 5px solid transparent;
  -webkit-transition: all 500ms ease;
  min-height: 450px;
  transition: all 500ms ease;
}

.testimonial-one__single:hover {
  border-left: 5px solid var(--jetly-base);
}

.testimonial-one__client-img-box {
  position: absolute;
  left: -70px;
  top: 50px;
}

.testimonial-one__img {
  position: relative;
  display: inline-block;
  width: 140px;
  border-radius: 50%;
  height: 140px;
}

.testimonial-one__img img {
  width: 100% !important;
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
}

.testimonial-one__icon-box {
  position: absolute;
  top: 50%;
  right: -27px;
  transform: translateY(-50%);
}

.testimonial-one__icon-box span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 67px;
  height: 67px;
  background-color: var(--jetly-base);
  border-radius: 50%;
  color: var(--jetly-white);
}

.testimonial-one__content-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
}

.testimonial-one__rating {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.testimonial-one__rating-icon {
  position: relative;
  display: flex;
  align-items: center;
  top: -3px;
}

.testimonial-one__rating-icon i {
  font-size: 15px;
  color: var(--jetly-base);
}

.testimonial-one__user {
  position: relative;
  display: block;
}

.testimonial-one__user-name {
  position: relative;
  display: block;
  text-align: right;
}

.testimonial-one__user-name h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: var(--jetly-black);
}

.testimonial-one__user-name p {
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
  color: #878680;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Special Offer One
--------------------------------------------------------------*/
.special-offer-one {
  position: relative;
  display: block;
  z-index: 1;
}

.special-offer-one__wrap {
  position: relative;
  display: flex;
  overflow: hidden;
  z-index: 1;
}

.special-offer-one__left {
  position: relative;
  display: block;
  width: 50%;
  float: left;
  padding-right: 100px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--jetly-base);
  z-index: 1;
}

.special-offer-one__shape-1 {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 364px;
  opacity: 0.08;
  z-index: -1;
}

.special-offer-one__shape-2 {
  position: absolute;
  left: 75px;
  top: 140px;
  opacity: 0.1;
  z-index: -1;
}

.special-offer-one__shape-2 img {
  width: auto;
}

.special-offer-one__left .section-title__tagline {
  color: #ffffff;
}

.special-offer-one__left .section-title {
  margin-bottom: 27px;
}

.special-offer-one__left .section-title__title {
  color: var(--jetly-white);
}

.special-offer-one__content {
  position: relative;
  display: block;
  max-width: 483px;
  width: 100%;
  float: right;
}
.special-offer-one__content ul li{color:#fff;line-height:1.6;}
.special-offer-one__content a{display: inline-block;}


.special-offer-one__left-text {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 30px;
}

.special-offer__btn:hover {
  color: var(--jetly-black);
}

.special-offer__btn:before {
  background-color: var(--jetly-white);
}

.special-offer-one__right {
  position: relative;
  display: block;
  float: right;
  width: 50%;
  min-height: 663px;
}

.special-offer-one__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.special-offer-one__toggle {
  position: absolute;
  bottom: 134px;
  left: 80px;
  height: 130px;
  width: 130px;
  background-color: var(--jetly-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 20px 20px 0px rgba(21, 29, 42, 0.1);
  animation: fa-spin 5s ease infinite;
}

.special-offer-one__toggle:before {
  position: absolute;
  bottom: 0px;
  right: 21px;
  content: "";
  height: 10px;
  width: 20px;
  background-repeat: no-repeat;
  background-image: url(../images/shapes/special-offer-one-toggle-shape.png);
  transform: rotate(-28deg);
}

.special-offer-one__toggle p {
  font-size: 16px;
  font-weight: 700;
  color: var(--jetly-white);
  position: relative;
  text-align: center;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Destination One
--------------------------------------------------------------*/
.destination-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  background-color: var(--jetly-black);
  z-index: 1;
}

.destination-one__shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.02;
  z-index: -1;
}

.destination-one .section-title__title {
  color: var(--jetly-white);
}

.destination-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.destination-one__img-box {
  position: relative;
  display: block;
}

.destination-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.destination-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(18, 56, 33, 0.3);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  background-position: center center;
  z-index: 1;
}

.destination-one__single:hover .destination-one__img:before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.destination-one__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.destination-one__single:hover .destination-one__img img {
  transform: scale(1.05);
}

.destination-one__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 50px;
  background-color: rgba(var(--jetly-black-rgb), 0.9);
  padding: 26px 40px 28px;
  z-index: 2;
}

.destination-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.destination-one__title a {
  color: var(--jetly-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.destination-one__title a:hover {
  color: var(--jetly-base);
}

.destination-one__time {
  position: relative;
  display: flex;
  align-items: center;
}

.destination-one__paris-time p {
  font-size: 15px;
  color: var(--jetly-white);
}

.destination-one__paris-time span {
  font-weight: 500;
  color: var(--jetly-base);
}

.destination-one__barcelona-time {
  position: relative;
  display: block;
  margin-left: 16px;
}

.destination-one__barcelona-time p {
  font-size: 15px;
  font-weight: 400;
  color: var(--jetly-white);
  line-height: 30px;
}

.destination-one__barcelona-time span {
  font-size: 15px;
  font-weight: 500;
  color: var(--jetly-base);
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  padding: 40px 0 50px;
}

.brand-one__title {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 1170px;
  text-align: center;
  margin: 0 auto;
}

.brand-one__title:before {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  background-color: #e1eaea;
  max-width: 530px;
  width: 100%;
  transform: translateY(-50%);
}

.brand-one__title:after {
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: #e1eaea;
  max-width: 530px;
  width: 100%;
  transform: translateY(-50%);
}

.brand-one .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border:1px solid #ccc;
}

.brand-one .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 1;
  height:100px;
}

.brand-one .swiper-slide img:hover {
  opacity: 0.6;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.blog-one:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 497px;
  content: "";
  background-color: var(--jetly-primary);
  z-index: -1;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.blog-one__img > img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__img img {
  transform: scale(1.05);
}

.blog-one__img > a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--jetly-black-rgb), 0.3);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-30%);
}

.blog-one__img > a > span {
  position: relative;
}

.blog-one__img > a > span::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--jetly-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.blog-one__img > a > span::after {
  content: "";
  transition: all 500ms ease;
  width: 2px;
  height: 20px;
  background-color: var(--jetly-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-one__img > a:hover > span::before,
.blog-one__img > a:hover > span::after {
  background-color: var(--jetly-base);
}

.blog-one__single:hover .blog-one__img > a {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.blog-one__content {
  position: relative;
  display: block;
  background-color: var(--jetly-white);
  box-shadow: 0px 10px 90px 0px rgba(0, 0, 0, 0.07);
  padding: 30px 50px 30px;
}

.blog-one__date {
  position: relative;
  display: inline-block;
  background-color: var(--jetly-base);
  padding: 0 22px 0;
  border-radius: 15px;
  margin-bottom: 13px;
}

.blog-one__date p {
  font-size: 11px;
  font-weight: 700;
  color: var(--jetly-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-one__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-one__meta li + li {
  margin-left: 10px;
}

.blog-one__meta li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--jetly-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__meta li a:hover {
  color: var(--jetly-base);
}

.blog-one__meta li a i {
  color: var(--jetly-base);
  padding-right: 3px;
  font-size: 15px;
}

.blog-one__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
  margin-top: 6px;
  margin-bottom: 13px;
}

.blog-one__title a {
  color: var(--jetly-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__title a:hover {
  color: var(--jetly-base);
}

.blog-one__btn {
  position: relative;
  display: block;
}

.blog-one__btn a {
  font-size: 14px;
  font-weight: 400;
  color: var(--jetly-gray);
  line-height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__btn a:hover {
  color: var(--jetly-base);
}

.blog-one__btn a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 16px;
  background-color: var(--jetly-primary);
  border-radius: 50%;
  margin-left: 20px;
  color: var(--jetly-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__btn a span:hover {
  background-color: var(--jetly-base);
  color: var(--jetly-white);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--jetly-black);
  z-index: 1;
}

.site-footer__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.site-footer__shape-1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.05;
  z-index: -1;
}

.site-footer__shape-1 img {
  width: auto;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 40px 0 40px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-top: 8px;
}

.footer-widget__logo {
  position: relative;
  display: block;
}

.footer-widget__about-text-box {
  position: relative;
  display: block;
  padding-top: 22px;
}

.footer-widget__about-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--jetly-white);
  line-height: 30px;
}

.footer-widget__Explore {
  position: relative;
  display: block;
  margin-left: 100px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 13px;
}
.footer-widget__title-box a{
  color:#f2f2f2;
}

.footer-widget__title {
  font-size: 18px;
  color: var(--jetly-white);
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-widget__Explore-list {
  position: relative;
  display: block;
}

.footer-widget__Explore-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: #889f91;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.footer-widget__Explore-list li a:hover {
  color: var(--jetly-white);
}

.footer-widget__links {
  position: relative;
  display: block;
}

.footer-widget__Contact {
  position: relative;
  display: block;
}

.footer-widget__Contact-list {
  position: relative;
  display: block;
  padding-top: 2px;
}

.footer-widget__Contact-list li {
  position: relative;
  display: flex;
  align-items: baseline;
}

.footer-widget__Contact-list li + li {
  margin-top: 7px;
}

.footer-widget__Contact-list li .icon {
  position: relative;
  display: flex;
  top: 2px;
}

.footer-widget__Contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--jetly-base);
}

.footer-widget__Contact-list li .text {
  margin-left: 7px;
}

.footer-widget__Contact-list li .text p {
  font-size: 15px;
  font-weight: 400;
  color: #F2F2F2;
}

.footer-widget__Contact-list li .text p a {
  color: #F2F2F2;
  transition: all 500ms ease;
}

.footer-widget__Contact-list li .text p a:hover, .footer-widget__title-box a:hover {
  color: var(--jetly-base);
}

.site-footer__bottom {
  position: relative;
  display: block;
  padding: 30px 0 30px;
  border-top: 1px solid rgba(var(--jetly-white-rgb), 0.1);
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__bottom-left {
  position: relative;
  display: block;
}

.site-footer__bottom-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #889f91;
}

.site-footer__bottom-text a {
  color: #8b9e9e;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--jetly-base);
}

.site-footer__bottom-right {
  position: relative;
  display: block;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-footer__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--jetly-white);
  background-color: #1a452b;
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--jetly-base);
  background-color: var(--jetly-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--jetly-white);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a + a {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.about-two__shape-1 {
  position: absolute;
  top: 45px;
  right: -140px;
}

.about-two__shape-1 img {
  width: auto;
}

.about-two__shape-2 {
  position: absolute;
  bottom: 0;
  right: 85px;
}

.about-two__shape-2 img {
  width: auto;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 135px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img-one {
  position: relative;
  display: block;
}

.about-two__img-one img {
  width: 100%;
}

.about-two__img-two {
  position: absolute;
  right: -135px;
  bottom: -119px;
  box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.07);
}

.about-two__img-two img {
  width: auto;
}

.about-two__icon {
  position: absolute;
  top: 145px;
  left: 250px;
  height: 107px;
  width: 107px;
  background-color: var(--jetly-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-two__icon:before {
  content: "";
  position: absolute;
  top: -13px;
  bottom: -13px;
  left: -13px;
  right: -13px;
  border: 1px solid rgba(var(--jetly-white-rgb), 0.3);
  border-radius: 50%;
}

.about-two__icon img {
  width: auto;
}

.about-two__right {
  position: relative;
  display: block;
  margin-left: 69px;
}

.about-two__right .section-title {
  margin-bottom: 29px;
}

.about-two__right__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: var(--jetly-base);
  margin-bottom: 23px;
  letter-spacing: 0;
}

.about-two__right-points {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 40px;
}

.about-two__right-points li {
  position: relative;
  display: flex;
}

.about-two__right-points li + li {
  margin-left: 26px;
}

.about-two__right-points li .icon {
  position: relative;
  display: block;
  margin-right: 10px;
  top: 5px;
}

.about-two__right-points li .icon span {
  font-size: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  background-color: var(--jetly-base);
  border-radius: 50%;
  color: var(--jetly-white);
}

.about-two__right-points li .text h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
}

.about-two__btn {
  background-color: var(--jetly-base);
}

.about-two__btn:before {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: var(--jetly-black);
  content: "";
  border-radius: 30px;
  transform: scaleY(0) rotateX(0deg);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: -1;
}

.about-two__btn:hover {
  color: var(--jetly-white);
}

.about-two__btn:hover:before {
  transform: scaleY(1) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

/*--------------------------------------------------------------
# Feature Three
--------------------------------------------------------------*/
.feature-three {
  position: relative;
  display: block;
  padding: 120px 0 104px;
  z-index: 1;
}

.feature-three:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 435px;
  background-color: var(--jetly-primary);
  content: "";
  z-index: -1;
}

.feature-three__shape-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1170px;
  height: 435px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}

.feature-three__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.feature-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding: 33px 39px 32px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.feature-three__single:before {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  content: "";
  background-color: var(--jetly-black);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.feature-three__single:hover:before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.feature-three__icon {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.feature-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--jetly-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.feature-three__single:hover .feature-three__icon span {
  color: var(--jetly-base);
  transform: scale(0.9);
}

.feature-three__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 24px;
  margin-bottom: 16px;
}

.feature-three__title a {
  color: var(--jetly-black);
  transition: all 0.4s linear;
}

.feature-three__single:hover .feature-three__title a {
  color: var(--jetly-white);
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
  position: relative;
  display: block;
  padding: 112px 0 100px;
}

.brand-two__title {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 1170px;
  text-align: center;
  margin: 0 auto;
}

.brand-two__title:before {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  background-color: #eeede5;
  max-width: 530px;
  width: 100%;
  transform: translateY(-50%);
}

.brand-two__title:after {
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: #eeede5;
  max-width: 530px;
  width: 100%;
  transform: translateY(-50%);
}

.brand-two .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-two .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.2;
  max-width: 100%;
}

.brand-two .swiper-slide img:hover {
  opacity: 0.6;
}

.brand-two__nav {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 100;
  transform: translateY(0) translateX(-50%);
  display: flex;
  align-items: flex-end;
  height: 0;
  line-height: 0;
}

.brand-two__nav .swiper-button-next,
.brand-two__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: var(--jetly-black);
  border: 0;
  background-color: var(--jetly-primary);
  border-radius: 0;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 12px 0;
}

.brand-two__nav .swiper-button-next:hover,
.brand-two__nav .swiper-button-prev:hover {
  color: var(--jetly-white);
  background-color: var(--jetly-base);
}

.brand-two__nav .swiper-button-next::after,
.brand-two__nav .swiper-button-prev::after {
  display: none;
}

.brand-two__nav .swiper-button-prev {
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
  position: relative;
  display: block;
  padding: 160px 0 120px;
  z-index: 1;
  background-color: var(--jetly-black);
  background-image: url(../images/backgrounds/video-one-bg-1.jpg);
  background-size: cover;
}

.video-one__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.video-one__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.video-one__shape-one {
  position: absolute;
  bottom: 23px;
  right: 243px;
  z-index: -1;
}

.video-one__shape-one img {
  width: auto;
}

.video-one__video-link {
  position: relative;
  display: inline-block;
  z-index: 3;
}

.video-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  line-height: 90px;
  text-align: center;
  font-size: 20px;
  color: var(--jetly-black);
  background-color: var(--jetly-white);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.video-one__video-icon:hover {
  background-color: var(--jetly-black);
  color: var(--jetly-white);
}

.video-one__video-icon:before {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  content: "";
  border: 1px solid rgba(var(--jetly-white-rgb), 0.2);
  z-index: 1;
}

.video-one__video-icon::after {
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  content: "";
  border: 1px solid rgba(var(--jetly-white-rgb), 0.2);
  z-index: 1;
}

.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 158px;
  height: 158px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--jetly-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--jetly-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--jetly-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--jetly-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-one__title-box {
  position: relative;
  display: block;
  margin-top: 80px;
  margin-bottom: 38px;
}

.video-one__title-box h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: var(--jetly-white);
}

.video-one__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-one__btn-one {
  margin-right: 10px;
}

.video-one__btn-one .thm-btn {
  color: var(--jetly-white);
  background-color: var(--jetly-base);
}

.video-one__btn-one .thm-btn::before {
  background-color: var(--jetly-white);
}

.video-one__btn-one .thm-btn:hover {
  color: var(--jetly-black);
}

.video-one__btn-two .thm-btn {
  color: var(--jetly-black);
  background-color: var(--jetly-white);
}

.video-one__btn-two .thm-btn:hover {
  color: var(--jetly-white);
}

/*--------------------------------------------------------------
# Price Two
--------------------------------------------------------------*/
.price-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.price-two-shape-1 {
  position: absolute;
  left: 0;
  bottom: 107px;
}

.price-two-shape-1 img {
  width: auto;
}

.price-two__left {
  position: relative;
  display: block;
  margin-right: 22px;
  z-index: 5;
}

.price-two__left .section-title {
  margin-bottom: 28px;
}

.price-two__right {
  position: relative;
  display: block;
  margin-right: -375px;
}

.price-two__single {
  position: relative;
  display: block;
}

.price-two__img {
  position: relative;
  display: block;
  background-color: var(--jetly-black);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.price-two__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.price-two__single:hover .price-two__img img {
  transform: scale(1.05);
  opacity: 0.5;
}

.price-two__content {
  position: absolute;
  bottom: 30px;
  background-color: var(--jetly-white);
  left: 30px;
}

.price-two__title {
  position: relative;
  display: block;
  background-color: var(--jetly-black);
  padding: 15px 0 15px;
  padding-left: 30px;
}

.price-two__title h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--jetly-white);
}

.price-two__title:before {
  position: absolute;
  bottom: -4px;
  left: 30px;
  content: "";
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 4px solid var(--jetly-black);
}

.price-two__inner-content {
  position: relative;
  display: block;
  padding: 20px 30px 30px;
}

.price-two__inner-content p {
  font-size: 14px;
}

.price-two__inner-content span {
  font-size: 14px;
  font-weight: 700;
  color: var(--jetly-black);
}

.price-two__btn {
  background-color: var(--jetly-base);
  color: var(--jetly-white);
  font-size: 12px;
  padding: 5px 30px 5px;
  margin-top: 20px;
}

.price-two__btn:before {
  background-color: var(--jetly-black);
}

.price-two__btn i {
  margin-right: 9px;
}

.price-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.price-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.price-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.price-two__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 178px;
  left: -400px;
  margin: 0;
}

.price-two__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--jetly-black);
  background-color: var(--jetly-primary);
  font-size: 15px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.price-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--jetly-black);
  background-color: var(--jetly-primary);
  font-size: 15px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.price-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.price-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.price-two__carousel.owl-theme .owl-nav .owl-next span,
.price-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-two__carousel.owl-theme .owl-nav .owl-next:hover,
.price-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--jetly-base);
  color: var(--jetly-white);
}

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
  background-color: var(--jetly-primary);
  padding: 120px 0 120px;
  z-index: 1;
}

.faq-one__shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.faq-one__img {
  position: relative;
  display: block;
}

.faq-one__img:before {
  position: absolute;
  right: -10px;
  top: 30px;
  bottom: 30px;
  width: 40px;
  background-color: var(--jetly-base);
  content: "";
  z-index: -1;
}

.faq-one__img img {
  width: 100%;
}

.faq-one__right {
  position: relative;
  display: block;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  background-color: var(--jetly-white);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

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

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: var(--jetly-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

.faq-one-accrodion .accrodion.active .accrodion-title {
  color: var(--jetly-base);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--jetly-base);
}

.faq-one-accrodion .accrodion-title h4::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  width: 40px;
  height: 40px;
  background-color: var(--jetly-base);
  color: var(--jetly-white);
  position: absolute;
  top: 50%;
  right: -25px;
  line-height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--jetly-white);
  background-color: var(--jetly-black);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 0 40px 32px;
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Destination Two
--------------------------------------------------------------*/
.destination-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.destination-two .container {
  max-width: 1600px;
}

/*--------------------------------------------------------------
# Get Flight Two
--------------------------------------------------------------*/
.get-flight-two {
  position: relative;
  display: block;
  padding: 120px 0 0;
  z-index: 2;
}

.get-flight-two__shape-1 {
  position: absolute;
  top: 0;
  right: -10px;
}

.get-flight-two__shape-1 img {
  width: auto;
}

.get-flight-two__shape-2 {
  position: absolute;
  top: 47px;
  right: -232px;
  z-index: 2;
}

.get-flight-two__shape-2 img {
  width: auto;
}

.get-flight-two__shape-3 {
  position: absolute;
  top: 14px;
  left: 215px;
}

.get-flight-two__shape-3 img {
  width: auto;
}

.get-flight-two__shape-4 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  z-index: 2;
}

.get-flight-two__shape-4 img {
  width: auto;
}

.get-flight-two__content-box {
  position: relative;
  display: block;
  z-index: 1;
}

.get-flight-two__content-box:before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100000000px;
  left: 500px;
  bottom: 0;
  background-color: var(--jetly-base);
  z-index: -1;
}

.get-flight-two__inner {
  position: relative;
  display: block;
  background-color: var(--jetly-primary);
  padding: 100px 100px 90px;
  padding-right: 335px;
  z-index: 1;
}

.get-flight-two__inner .get-flight__form-input-box input[type="text"] {
  background-color: var(--jetly-white);
  color: var(--jetly-gray);
}
.get-flight-two__inner .get-flight__form-input-box input[type="password"] {
  background-color: var(--jetly-white);
  color: var(--jetly-gray);
}

.get-flight-two__inner .get-flight__form .select-box .nice-select {
  background-color: var(--jetly-white);
  color: var(--jetly-gray);
}

.get-flight-two__inner .get-flight__icon-box i {
  color: var(--jetly-gray);
}

.get-flight-two__inner .get-flight__content-text {
  color: var(--jetly-gray);
}

.get-flight-two__inner .get-flight__content-text span {
  color: var(--jetly-black);
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  background-color: var(--jetly-black);
  padding: 120px 0 118px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-two__shape-1 {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 383px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.03;
  z-index: -1;
}

.testimonial-two__left {
  position: relative;
  display: block;
  z-index: 5;
}

.testimonial-two__left .section-title {
  margin-bottom: 0px;
}

.testimonial-two__left .section-title__title {
  color: var(--jetly-white);
}

.testimonial-two__right {
  position: relative;
  display: block;
  margin-top: 42px;
}

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover {
  transform: translateY(-10px);
}

.testimonial-two__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 12px 43px 0px rgba(0, 0, 0, 0.07);
  padding-left: 50px;
  padding-right: 45px;
  padding-top: 70px;
  padding-bottom: 40px;
}

.testimonial-two__content:before {
  content: "";
  position: absolute;
  left: 50px;
  bottom: -30px;
  border-top: 30px solid var(--jetly-white);
  border-right: 75px solid transparent;
  border-left: 0px solid transparent;
}

.testimonial-two__img-box {
  position: absolute;
  top: -42px;
  left: 50px;
  height: 104px;
  width: 104px;
  background-color: var(--jetly-base);
  border-radius: 50%;
}

.testimonial-two__quote {
  position: absolute;
  top: 26px;
  right: 45px;
}

.testimonial-two__quote span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--jetly-base);
}

.testimonial-two__img {
  position: relative;
  display: inline-block;
  width: 88px;
}

.testimonial-two__img img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-two__text {
  font-size: 18px;
  line-height: 34px;
}

.testimonial-two__star {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 19px;
}

.testimonial-two__star i {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--jetly-base);
}

.testimonial-two__star i + i {
  margin-left: 1px;
}

.testimonial-two__client-info {
  position: relative;
  display: block;
  margin-left: 90px;
  margin-top: 23px;
}

.testimonial-two__client-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--jetly-white);
  line-height: 20px;
  margin-bottom: 7px;
}

.testimonial-two__client-sub-title {
  font-size: 12px;
  color: #889f91;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 12px;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-two__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 56px;
  left: -400px;
  margin: 0;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--jetly-white);
  background-color: #0d2b19;
  font-size: 15px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--jetly-white);
  background-color: #0d2b19;
  font-size: 15px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--jetly-base);
  color: var(--jetly-white);
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Request
--------------------------------------------------------------*/
.request {
  position: relative;
  display: block;
  background-color: var(--jetly-black);
  padding: 80px 0;
  z-index: 1;
}

.request__shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.05;
  z-index: -1;
}

.request__shape-1 img {
  width: auto;
}

.request__shape-2 {
  position: absolute;
  bottom: 0;
  right: 5px;
  opacity: 0.08;
  z-index: -1;
}

.request__shape-2 img {
  width: auto;
}

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

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

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

.request__input-list li {
  position: relative;
  display: block;
  float: left;
  max-width: 250px;
  width: 100%;
  margin-bottom: 20px;
}

.request__input-list > li + li {
  margin-left: 20px;
}

.request__input-list li:nth-child(4),
.request__input-list li:nth-child(5) {
  max-width: 170px;
}

.request__input-box {
  position: relative;
  display: block;
}

.request__input-box input[type="text"] {
  height: 60px;
  width: 100%;
  border: none;
  outline: none;
  background-color: #0d2b19;
  font-size: 14px;
  color: #889f91;
  padding: 0 30px;
}

.request__form .select-box .nice-select {
  background-color: #0d2b19;
  border-radius: 0;
  color: #889f91;
  background-color: #0d2b19;
  font-size: 14px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}

.request__form .select-box .nice-select:after {
  right: 30px;
}

.request__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}

.request__bottom-text {
  color: #889f91;
}

.request__bottom-text span {
  color: var(--jetly-base);
}

.request__btn {
  border: none;
  background-color: var(--jetly-base);
  margin-left: 20px;
}

.request__btn:hover {
  color: var(--jetly-base);
}

.request__btn:hover:before {
  background-color: var(--jetly-white);
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  padding: 120px 0 134px;
}

.about-three__left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.about-three__img-box {
  position: relative;
  display: block;
}

.about-three__img {
  position: relative;
  display: block;
}

.about-three__img > img {
  width: 100%;
  border-top-left-radius: 130px;
}

.about-three__experience {
  position: absolute;
  top: -14px;
  left: -14px;
}

.about-three__curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform-origin: top left;
  transform: rotate(-45deg);
}

.about-three__curved-circle .curved-circle {
  font-size: 16px;
  font-weight: 700;
  color: var(--jetly-black);
  text-transform: uppercase;
  font-family: var(--conalz-font-two);
}

.about-three__curved-circle .curved-circle span {
  margin-right: 0.1em;
}

.about-three__icon-box {
  position: relative;
  display: flex;
  height: 145px;
  width: 145px;
  border: 2px solid var(--jetly-black);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--jetly-white);
}

.about-three__icon {
  height: 129px;
  width: 129px;
  border: 7px solid var(--jetly-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-three__icon > img {
  width: auto;
}

.about-three__shape-1 {
  position: absolute;
  bottom: -86px;
  left: -155px;
}

.about-three__shape-1 > img {
  width: auto;
}

.about-three__right {
  position: relative;
  display: block;
}

.about-three .section-title {
  margin-bottom: 28px;
}

.about-three__text-two {
  position: relative;
  display: block;
  padding-top: 30px;
  padding-bottom: 38px;
}

.about-three__points {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 49px;
}

.about-three__points li {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--jetly-primary);
  padding: 23px 41px 17px 28px;
}

.about-three__points li + li {
  margin-left: 30px;
}

.about-three__points-icon {
  position: relative;
  display: inline-block;
  margin-right: 17px;
  top: 1px;
}

.about-three__points-icon span {
  position: relative;
  display: inline-block;
  font-size: 53px;
  color: var(--jetly-black);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.about-three__points li:hover .about-three__points-icon span {
  transform: scale(0.9);
  color: var(--jetly-base);
}

.about-three__points-text h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.about-three__btn {
  background-color: var(--jetly-base);
}

.about-three__btn:before {
  background-color: var(--jetly-black);
}

.about-three__btn:hover {
  color: var(--jetly-white);
}

/*--------------------------------------------------------------
# We Fly
--------------------------------------------------------------*/
.we-fly {
  position: relative;
  display: block;
  background-image: -moz-linear-gradient(
    180deg,
    rgb(167, 145, 50) 0%,
    rgb(18, 56, 33) 51%
  );
  background-image: -webkit-linear-gradient(
    180deg,
    rgb(167, 145, 50) 0%,
    rgb(18, 56, 33) 51%
  );
  background-image: -ms-linear-gradient(
    180deg,
    rgb(167, 145, 50) 0%,
    rgb(18, 56, 33) 51%
  );
  padding: 114px 0 120px;
  z-index: 1;
}

.we-fly-bg-box {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 73.3%;
  background-image: -moz-linear-gradient(
    180deg,
    rgb(167, 145, 50) 0%,
    rgb(18, 56, 33) 51%
  );
  background-image: -webkit-linear-gradient(
    180deg,
    rgb(167, 145, 50) 0%,
    rgb(18, 56, 33) 51%
  );
  background-image: -ms-linear-gradient(
    180deg,
    rgb(167, 145, 50) 0%,
    rgb(18, 56, 33) 51%
  );
  z-index: -1;
}

.we-fly__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  mix-blend-mode: soft-light;
  opacity: 0.4;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.we-fly-bg-box:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 377px;
  content: "";
  background-image: -moz-linear-gradient(
    180deg,
    rgba(18, 56, 33, 0) 0%,
    rgb(18, 56, 33) 100%
  );
  background-image: -webkit-linear-gradient(
    180deg,
    rgba(18, 56, 33, 0) 0%,
    rgb(18, 56, 33) 100%
  );
  background-image: -ms-linear-gradient(
    180deg,
    rgba(18, 56, 33, 0) 0%,
    rgb(18, 56, 33) 100%
  );
  z-index: 1;
}

.we-fly .container {
  position: relative;
}

.we-fly__badge {
  position: absolute;
  top: 0;
  right: 185px;
  animation: fa-spin 5s ease infinite;
  display: none;
}

@media (min-width: 1200px) {
  .we-fly__badge {
    display: block;
  }
}

.we-fly__left {
  position: relative;
  display: block;
}

.we-fly__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 52px;
  color: var(--jetly-white);
  letter-spacing: -0.04em;
}

.we-fly__count {
  position: relative;
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
  font-family: var(--jetly-font) !important;
  line-height: 52px !important;
}

.we-fly__count:before {
  position: absolute;
  bottom: 0px;
  left: -9px;
  height: 10px;
  width: 155px;
  content: "";
  background-image: url(../images/shapes/we-fly-count-shape-1.png);
  background-repeat: no-repeat;
  background-position: center;
}

.we-fly__title .odometer-formatting-mark {
  display: none;
}

.we-fly__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  color: var(--jetly-white);
  opacity: 0.6;
  padding-top: 30px;
  padding-bottom: 38px;
}

.we-fly__btn-boxes {
  position: relative;
  display: flex;
  align-items: center;
}

.we-fly__btn-one {
  background-color: var(--jetly-base);
}

.we-fly__btn-one:hover {
  color: var(--jetly-base);
}

.we-fly__btn-one:before {
  background-color: var(--jetly-white);
}

.we-fly__btn-two {
  background-color: var(--jetly-white);
  color: var(--jetly-black);
  margin-left: 10px;
}

.we-fly__btn-two:before {
  background-color: var(--jetly-base);
}

.we-fly__btn-two:hover {
  color: var(--jetly-white);
}

/*--------------------------------------------------------------
# Charters
--------------------------------------------------------------*/
.charters {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.charters__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.charters__img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--jetly-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.charters__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.charters__single:hover .charters__img img {
  transform: scale(1.05);
  opacity: 0.5;
}

.charters__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 23px 40px 40px;
}

.charters__date {
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  color: var(--jetly-base);
  letter-spacing: 0.1em;
}

.charters__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.charters__title a {
  color: var(--jetly-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.charters__title a:hover {
  color: var(--jetly-base);
}

.charters__text {
  position: relative;
  display: block;
  padding-top: 12px;
  padding-bottom: 20px;
}

.charters__btn {
  background-color: var(--jetly-base);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 29px 4px;
}

.charters__btn:before {
  background-color: var(--jetly-black);
}

/*--------------------------------------------------------------
# Benefits One
--------------------------------------------------------------*/
.benefits-one {
  position: relative;
  display: block;
  background-color: var(--jetly-primary);
  padding: 120px 0 100px;
  z-index: 1;
}

.benefits-one__shape-1 {
  position: absolute;
  bottom: 0;
  left: 95px;
  z-index: -1;
}

.benefits-one__shape-1 img {
  width: auto;
}

.benefits-one__shape-2 {
  position: absolute;
  top: 180px;
  right: 120px;
  z-index: -1;
}

.benefits-one__shape-2 img {
  width: auto;
}

.benefits-one__left {
  position: relative;
  display: block;
}

.benefits-one .section-title {
  margin-bottom: 28px;
}

.benefits-one__text {
  padding-bottom: 40px;
}

.benefits-one__btn {
  background-color: var(--jetly-base);
}

.benefits-one__btn:before {
  background-color: var(--jetly-black);
}

.benefits-one__right {
  position: relative;
  display: block;
  margin-left: 10px;
}

.benefits-one__right .row {
  --bs-gutter-x: 20px;
}

.benefits-one__single {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 40px 22px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.benefits-one__single:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--jetly-black);
  transform: scaleX(0.7) rotateX(20deg);
  opacity: 0;
  transition: all 0.4s linear;
  z-index: -1;
}

.benefits-one__single:hover:before {
  transform: scaleX(1) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.benefits-one__content {
  position: relative;
  display: flex;
  align-items: center;
}

.benefits-one__icon {
  position: relative;
  display: inline-block;
  margin-right: 18px;
  top: 5px;
}

.benefits-one__icon span {
  font-size: 50px;
  color: var(--jetly-base);
}

.benefits-one__title {
  position: relative;
  display: block;
}

.benefits-one__title h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.benefits-one__title a {
  color: var(--jetly-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.benefits-one__single:hover .benefits-one__title a {
  color: var(--jetly-white);
}

.benefits-one__arrow {
  position: relative;
  display: block;
}

.benefits-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--jetly-primary);
  border-radius: 50%;
  font-size: 14px;
  color: var(--jetly-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.benefits-one__single:hover .benefits-one__arrow a {
  color: var(--jetly-white);
  background-color: var(--jetly-base);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  background-color: var(--jetly-base);
  padding: 60px 0 60px;
  z-index: 1;
}

.cta-one__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.cta-one__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-one__title {
  position: relative;
  display: block;
}

.cta-one__title h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--jetly-white);
}

.cta-one__btn:hover {
  color: var(--jetly-black);
}

.cta-one__btn:before {
  background-color: var(--jetly-white);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
  iframe {
    height: 330px !important;
    margin-top: 50px !important;
  }
  .sidebar {
    margin-top: 50px;
  }
  .counter-one__text {
    padding: 20px;
  }
  .about-one {
    padding: 29px 0 48px;
  }
  .services-one {
    padding: 20px 0 20px;
  }
}

/*--------------------------------------------------------------
# Brand Four
--------------------------------------------------------------*/
.brand-four {
  border-bottom: 1px solid #eeede5;
}

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--jetly-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--jetly-black);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Testimonials Carousel Page
--------------------------------------------------------------*/
.testimonials-carousel-page {
  position: relative;
  display: block;
  padding: 153px 0 170px;
  background-color: var(--jetly-primary);
}

/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/

body.boxed-wrapper {
  background-color: var(--jetly-primary);
}

.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

.scrollstv {
  /*   background: gray; */
  width: 100%;
  /* max-height: 280px !important; */
  /* overflow: auto; */
}
.scrollstv2 {
  /*   background: gray; */
  width: 100%;
  max-height: 340px !important;
  overflow: auto;
}
Q
/* scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 255, 255, 0.3);
}
timeline {
  position: relative;
  max-width: 700px;
  width: 100%;
  padding-left: 30px;
  border-left: 2px solid #a79132;
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
}

.dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #a79132;
  border-radius: 50%;
  box-shadow: 0 0 8px #a79132;
}

.content h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  color: #a79132;
}

.content p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
  line-height:1.6;
}

/*  */
.main-menu__logo {
  padding: 20px 0;
  margin-right: 40px;
}
.main-menu__logo a img {
  width: 400px;
}
.main-menu__wrapper-inner {
  flex-wrap: nowrap;
}
.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 50px;
}
.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 14px;
}
.scrollstv::-webkit-scrollbar-track,
.scrollstv2::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

.scrollstv::-webkit-scrollbar,
.scrollstv2::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

.scrollstv::-webkit-scrollbar-thumb,
.scrollstv2::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #a79132;
}

@media (max-width: 1600px) {
  .main-menu__logo {
    padding: 10px 0;
  }
  .main-menu .main-menu__list > li,
  .stricky-header .main-menu__list > li {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .main-menu .main-menu__list > li + li,
  .stricky-header .main-menu__list > li + li {
    margin-left: 25px;
  }
  .main-menu .main-menu__list > li > a,
  .stricky-header .main-menu__list > li > a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .main-menu__call {
    display: none;
  }
}
@media (max-width: 1280px) {
  .main-menu .main-menu__list > li + li,
  .stricky-header .main-menu__list > li + li {
    margin-left: 35px;
  }
}
@media (max-width: 991px) {
  .main-slider__title {
    font-size: 80px !important;
  }
  .main-header {
    position: fixed;
    background: #033271;
  }
}
@media (max-width: 767px) {
  .main-menu__logo a img {
    width: 200px;
  }
  .main-slider__title {
    font-size: 36px !important;
  }
  .main-slider .container {
    padding-top: 100px;
  }
  .thm-btn {
    font-size: 12px;
    padding: 10px 40px 10px;
  }
}
.fixed_btn {
  position: fixed;
  top: 0%;
  right: -296px;
  transform: rotate(-90deg);
  z-index: 99;
}
.fixed_btn a {
  border-radius: 5px 5px 0 0;
  background: #29c779;
  padding: 10px;
  color: white;
  font-weight: 700;
}

.fixed_btn2 {
  position: fixed;
  top: 60%;
  right: -46px;
  transform: rotate(-90deg);
  z-index: 99;
}
.fixed_btn2 a {
  border-radius: 5px 5px 0 0;
  background: #a79132;
  padding: 10px;
  color: white;
  font-weight: 700;
}
.card {
  position: relative;
  overflow: hidden;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  background-color: rgb(255, 255, 255);
  border: 3px solid;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-color: #033271;
}
.card img {
  object-fit: cover;
  height: 300px;
}

/* helper */
.center-xy {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

/* the good stuff */
.cb-video-container {
  position: relative;
}

.video {
  display: block;
}

.play-pause--click-area {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
}

.play-pause--container {
  position: relative;
  width: 30px;
  height: 30px;
}

.play-pause--container .play-pause--icon {
  margin: auto;
  right: 0;
  left: 0;
  position: absolute;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.play-pause--container .play-icon {
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-width: 15px;
  border-top-width: 15px;
  border-left: 25px solid #fff;
}

.play-pause--container .pause-icon {
  background-color: #fff;
  width: 10px;
  height: 30px;
  left: -10px;
  position: absolute;
}

.play-pause--container .pause-icon:after {
  content: "";
  background: inherit;
  width: 10px;
  height: 30px;
  left: 15px;
  position: absolute;
}

/**Typeo CSS End**/
.video-custom {
  margin: 40px auto;
  max-width: 800px;
  position: relative;
}

.video-custom .poster-img {
  display: block;
}

.video-custom video {
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.video-custom .play-pause {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 3;
  cursor: pointer;
  transition: 0.5s all;
  overflow: hidden;
}

.video-custom .pause-btn {
  display: none;
}

.video-custom .play-btn i {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 18px solid #033271;
  border-right: 0;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  margin: auto;
}

.pause-btn i {
  position: absolute;
  left: -3px;
  right: 0px;
  bottom: 0px;
  top: 2px;
  margin: auto;
  width: 16px;
  height: 24px;
  flex-flow: row wrap;
}

.pause-btn i:before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #000;
  display: inline-block;
}

.pause-btn i:after {
  content: "";
  width: 4px;
  height: 100%;
  margin-left: 8px;
  background-color: #000;
  display: inline-block;
}

.playvideo .video-custom img {
  opacity: 0;
}

.playvideo .video-custom video {
  opacity: 1;
}

.video-custom .vplay {
  display: none;
}

.video-custom:hover .vplay + .pause-btn {
  display: block;
}

/***Volume Control***/
html:not(.playvideo) .sound-ctrl {
  display: none;
}

.sound-ctrl {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 5px;
  cursor: pointer;
}

.sound-ctrl .on-button {
  display: none;
}

.sound-ctrl img {
  opacity: 0;
}

.sound-ctrl .off-button,
.sound-ctrl .on-button {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 0px;
  background-color: transparent;
  border: none;
  width: 100%;
  height: 100%;
  padding: 0px;
  cursor: pointer;
}

.soundctrlshow .on-button {
  display: block;
}

.soundctrlshow .off-button {
  display: none;
}

.playvideo .video-custom .sound-ctrl img {
  opacity: 1;
}

.soundctrlshow .on-button:before {
  content: "";
  position: absolute;
  left: 12px;
  top: -5px;
  z-index: 10;
  width: 3px;
  height: 32px;
  background-color: #fff;
  transform: rotate(45deg);
}

.poster-img {
  width: 100%;
}
/***Volume Control***/
@media (max-width: 800px) {
  .video-custom {
    width: calc(100% - 20px);
  }
}

.video_main {
  position: relative;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-container::before,
.banner-container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 30%;
  z-index: 1;
  pointer-events: none;
}

/* Top shadow */
.banner-container::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

/* Bottom shadow */
.banner-container::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.banner-content a {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.banner-content a:hover {
  background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content a {
    font-size: 1rem;
  }
}


.newjbkj {
  position:absolute;top:0;right:0;
  background-color: rgba(3, 50, 113, 0.5);
  padding: 50px 76px 50px 30px;
  height:100%;
  z-index:2;
}

.newjbkj .thm-btn {
  padding: 5px 34px 5px;
}

#ptTimeSelectCntr {
  display: none;
}

.video_main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video_main iframe {
    width: 100%;
    height: 100%;
}
.video_main .poster-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    object-fit: cover;
    pointer-events: none;
}
.video_main .video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.1);
    cursor: pointer;
}
.bannerBox{width:100%;height:580px;background-repeat:no-repeat;background-size:cover;}
#bannSlider .desk-view{display:block;min-height:580px;}
#bannSlider .mob-view{display:none;}
#enquiryForm .col-sm{position:relative;}
#enquiryForm small{position:absolute;}
@media screen and (max-width:766px){
  .about-one__left{margin-bottom:0 !important;}
  .mobHide{display:none;}
  .bannerBox{height:auto;background:none;}
  #bannSlider .desk-view{display:none;}
  #bannSlider .mob-view{display:block;}
  .newjbkj{position:relative;padding:20px 30px;}
  .newjbkj .section-title__title{margin-top:0;}
  .newjbkj .get-flight__content-box{padding:0 15px;}
  .newjbkj .get-flight__content-box .section-title{margin:0 0 20px 0;}
  .newjbkj .get-flight__form-input-box input[type="text"], 
  .newjbkj .get-flight__form-input-box input[type="password"]{height:42px;}
  #enquiryForm .get-flight__form .row .col-sm{padding-bottom:15px !important;}

  .about-one{padding-bottom:20px;}
  .section-title__title{font-size:28px !important;line-height:38px !important;}
  .special-offer-one__wrap{flex-wrap:wrap;}
  .special-offer-one__content{max-width:100%;}
  .feature-one__title{min-height:auto;}
  .innerAboutOneLeft .about-one__text, .testimonial-one__content-text, .scrollstv, .timeline-step{text-align:justify;}
  .whyStarBox .col-sm{width:50% !important;padding:10px !important;}
  .whyStarBox .col-sm .feature-one__single{padding:10px; min-height:160px;}
  .whyStarBox .col-sm .feature-one__title{font-size:14px;line-height:1.2;}
}

