/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: "Jost-Regular";
  src: url('../fonts/Jost-Regular.ttf');
  font-display: swap;
}
@font-face {
  font-family: "Jost-Bold";
  src: url('../fonts/Jost-Bold.ttf');
  font-display: swap;
}
@font-face {
  font-family: "Jost-ExtraBold";
  src: url('../fonts/Jost-ExtraBold.ttf');
  font-display: swap;
}
/* @font-face {
  font-family: "Kelson-Bold";
  src: url('../fonts/Armasen - Kelson-Bold.otf');
  font-display: swap;
} */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Jost-Regular";
  color: #fff;
  background-color: #000;

}
section{
  padding: 60px 0px;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #d8b372;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kelson-Bold";
  line-height: 30px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #d8b372;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #000;
  width: 40px;
  height: 40px;
  border: 1px solid #d8b372;
  border-radius: 4px;
  transition: all 0.4s;
}

a.back-to-top img {
  width: 30px;
  height: 30px;
  padding: 5px;
  transition: all 0.5s;
}
a.back-to-top:hover img {
  width: 30px;
  height: 30px;
  padding: 7px;
  transform: skew(45deg, -45deg);
  transition: all 0.5s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #000;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
section#top-header {
  padding: 0;
}

#header {
  background: #000;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
}

#header.fixed-top {
  height: 100px;
  padding: 0;
}

#header .logo img {
  max-height: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active a,
.navbar .active:focus,
.navbar li:hover>a {
  color: #d8b372
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #d8b372;
  font-size: 4ch;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

/* .mobile-nav-toggle.bi-x {
  color: #fff;
} */
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
    display: inline-block;
    /* font-family: bootstrap-icons !important; */
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# banner Section
--------------------------------------------------------------*/

.general-banner {
  position: relative;
  padding: 0;
}

section#general-banner:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.banner-text {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
}

.general-banner h1 {
  color: #d8b372;
  font-family: "Jost-ExtraBold";
  text-align: center;
  font-size: 70px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
section#single_slide_full_width {
  height: 100vh;
}
.slick-dots {
  bottom: -30%;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 10px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  content: '•';
  text-align: center;
  opacity: 1;
  color: #d8b372;
}
/* .full-width-sigle-slide{
  height: 100vh;
  position: relative;
} */
.full-width-sigle-slide img{
  height: 100%;
  width: 100%;
  /* position: relative; */
}
.full-width-sigle-slide h1{
  text-align: center;
}
.full-width-sigle-slide .banner-text {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.full-width-sigle-slide .banner-text h1 {
    font-size: 70px;
    line-height: 1.2;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
p {
  color: #fff;
  font-family: "Jost-Regular";
  font-size: 18px;
  line-height: 25px;
  text-align: justify;
}
.section-title h2{
  text-align: center;
  font-size: 50px;
  color: #d8b372;
  line-height: 1.2;
  
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #106eea;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

.Flight-plans {
  padding-bottom: 0;
}

/* .Flight-plans-two {
  padding-top: 0;
} */


.plane-animation{
  background-color: #fefefe;
}
.tagline .section-title{
padding: 0px 60px !important;
}

.tagline .linear-wipe {
  text-align: center;
  
  background: linear-gradient(to right, #d8b372 10%, #fff 40%, #FFf 60%, #d8b372 80%);
  background-size: 200% auto;
  
  color: #000;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  animation: shine 5s linear infinite;
  @keyframes shine {
    to {
      background-position: 200% center;
    }
  }
}
/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/

.sector-page .secctor-heading p {
  text-align: center;
  padding-bottom: 30px;
}

.sector-page .sector-card {
  position: relative;
  margin: 15px 0px;
}
.sector-card:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-color: #00000094;
}

.sector-page .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 70%;
  transition: .5s ease;
  margin: 20px 0;
}

.sector-page .sector-card:hover .text {
  bottom: 0;
  top: 20px;
}

.sector-page .sector-card:hover .overlay {
  height: 100%;
  background-color: transparent;
  margin: 0;
}

.sector-page .text {
  color: white;
  position: absolute;
  bottom: 0%;
  right: 0%;
  padding: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sector-page .text h3 {
  font-family: 'Montserrat-SemiBold';
  font-size: 25px;
  position: relative;

}

.sector-page .text p {
  font-size: 16px;
  line-height: 1.3;
}
.sector-page .service-detail-btn a{
  font-size: 18px;
  border:1px solid #d8b372;
  padding: 8px 20px;
}

.elementor-widget-raven-button .raven-button:not(:hover).raven-button-widget-normal-effect-shine:before {
  /* display: block; */
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  -webkit-transform: skewX(30deg);
  transform: skewX(30deg);
  content: "";
  z-index: 2;
  -webkit-animation: shine 1.5s linear infinite;
  animation: shine 1.5s linear infinite;
}


.elementor-408 .elementor-element.elementor-element-4bf73375 .raven-button:not(:hover).raven-button-widget-normal-effect-shine::before {
  background: linear-gradient(to right, #ffffff00 0%, #ffffff30 50%, #ffffff00 100%);
}



.sector-page .service-detail-btn a:hover{
  font-size: 18px;
  border:1px solid #d8b372;
  padding: 8px 20px;

}
/* .sector-page .text h3:before {
  content: "";
  background-color: #fff;
  height: 3px;
  width: 57px;
  position: absolute;
  top: -10px;
} */



.icon-box {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(#000 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s !important ; 
}
.icon-box:hover {
  background-position: 0 100%;

}
.icon-box:hover .icon-wrapper {
  background-color: #ffffff89;
  color: #2c7bfe;
}
.icon-box:hover h4 {
  color: #000;transition: 0.5s ease-in-out; 
}
.icon-box:hover p {
  color: #000;transition: 0.5s ease-in-out; 
}
.icon-box p {
  color: #fff;transition: 0.5s ease-in-out; 
}
/* 
.featured-services .icon-box {
  padding: 10px;
  position: relative;
  overflow: hidden;
  background: #000;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  box-shadow: 0px 0px 10px 1px #d8b372;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #000;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #000;
  color: #fff;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;color: #fff;
  font-size: 30px;
}

.featured-services .description {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
} */
.requirements{
  background-image: url(../img/enquiry-banner.jpg);
  background-size: 100% 100%;
}
.requirements a{
  font-size: 20px;
  padding: 8px 20px;
  /* border-radius: 10px; */
  color: #fff;
  /* background-color: #d8b372; */
border: 1px solid #d8b372;
overflow: hidden;
}
.enqure-now{
  position: relative;
}
.enqure-now:before {
  /* display: block; */
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  -webkit-transform: skewX(30deg);
  transform: skewX(0deg);
  content: "";
  z-index: 2;
  -webkit-animation: shine 1.5s linear infinite;
  animation: shine 1.5s linear infinite;
}

.enqure-now::before {
  background: linear-gradient(to right, #ffffff00 0%, #ffffff30 50%, #ffffff00 100%);
}

.requirements .requirements-btn{
  text-align: center;
  margin-top: 35px;
}
.mainContent {
  background-image: url(../img/slider-bg.jpg);
  background-size: 100% 100%;
}
.icon img {
  max-width: 100px;
}
.btn-shine a{
text-align: center;
}
/* .see-more.text-center {
  margin-top: 60px;
} */
.btn-shine {
  border: 2px solid;
  padding: 10px;
  color: #d8b372;
  background: linear-gradient(to right, #4d4d4d 0, #fff 10%, #4d4d4d 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 30px;
  text-decoration: none;
  white-space: nowrap;
}

@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
/*--------------------------------------------------------------
# blog Section
--------------------------------------------------------------*/
.blog .blog-box{
  background-color: #fff;
  height: 100%;
}

.blog .blog-box h4{
  color: #d8b372;
} 

.blog .blog-box p{
  color: #000;
} 
.blog .blog-box  .blog-contain{
  padding: 20px;
}
.blog .blog-box  .blog-contain span{
  font-size: 14px;
  font-family: "Jost-Regular";
  color: #000;
  padding: 20px 0px;
}
.blog .blog-contain .blog-btn p{
  font-size: 20px;
  padding: 8px 20px;
  border-radius: 10px;
  color: #fff;
  border:1px solid  #d8b372;
  width: fit-content;
  background-color: #000;
}
.blog .blog-contain .blog-btn p{
  margin-top: 30px;
}
/*--------------------------------------------------------------
# counter Section
--------------------------------------------------------------*/
.counter h3,.counter span{
  font-size: 30px;
}
.counter p{
  font-size: 20px;
  color: #ddd;
  margin: 0;
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/* .employee {
  width:100%;
  background-color:black;
  margin:10px auto;
  display:block;
  overflow:hidden;
  height:400px;
  border-radius:10px;
  -webkit-box-shadow: 0px 0px 31px -19px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 31px -19px rgba(0,0,0,0.75);
box-shadow: 0px 0px 31px -19px rgba(0,0,0,0.75);
}
.employee:hover > .employee-image {
  margin-top:-100px;
}
.employee-image {
  width:100%;
  transition:0.5s;
}
.employee-image img {
  height:100%;
}
.employee-name {
  color:#d8b372;
  font-weight:bold;
  padding:5px;
}
.employee-name h1 {
  font-size:30px;
}
.employee-name span {
  font-size:20px;
  color: #fff;
  padding:0px;
}
.employee-social-link ul li {
  position:relative;
  bottom:-120px;
}
.employee-social-link ul{
  text-align:center;
  list-style:none;
}
.employee-social-link ul li {
  display:inline-block;
  margin:7px;
  background-color:#000;
  padding:10px;
  border-radius:50%;
  line-height:0.1;
  margin-left:-5px;
}
.employee-social-link i {
  font-size:15px;
  color:#fff;
  animation-name:rotate-icon;
}

.employee-social-link ul li:nth-child(1) {
  transition:1.0s;
}
.employee-social-link ul li:nth-child(2) {
  transition:1.3s;
}
.employee-social-link ul li:nth-child(3) {
  transition:1.6s;
}
.employee-social-link ul li:nth-child(4) {
  transition:1.9s;
}
.employee-social-link ul li:nth-child(5) {
  transition:2.2s;
}
.employee:hover > .employee-details .employee-social-link ul li{
  bottom:250px;
} */

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/* 
.about-video {
  height: calc(100vh - 100px);
} */

.about-content {
  color: #d8b372
}
/* .about-content img ,
.Flight-plans img,
.Flight-plans-two img{
  color: #EEE;
  padding-top: 30px;
  font-family: 'Coiny', cursive;
  text-align: center;
  font-size: 70px;
-webkit-animation: bounce 2s ease infinite alternate;
}

@-webkit-keyframes bounce {
  0% {
      text-shadow:
                  0 5px 0 #ccc,
                  0 2px 3px rgba(0, 0, 0, 1);  
  }
  100% {
    transform:translateY(-20px);
    text-shadow:  0 50px 0 #000,
                  0 0px 20px rgba(0, 0, 0, .8);
  }
} */
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# .single-slide
--------------------------------------------------------------*/





/* .cascade-slider_container {
  position: relative;
  max-width: 1000px;
  height: 40vh;
  margin: 0 auto;
}
.cascade-slider_item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0.3);
  transition: all 1s ease;
  opacity: 0;
  z-index: -1;
}
.cascade-slider_item h3{
  font-size: 30px;
  color: #d8b372;
  margin: 20px 0px 10px;
}
.cascade-slider_item a {
  color: #d8b372;
  font-size: 20px;
}
.cascade-slider_item a:hover {
  color: #fff;
}
.cascade-slider_item i.fa {
  margin-left: 6px;
}
.cascade-slider_item.next {
  left: 50%;
  transform: translateY(-50%) translateX(-120%) scale(0.6);
  opacity: 1;
  z-index: 4 !important;
}
.cascade-slider_item.prev {
  left: 50%;
  transform: translateY(-50%) translateX(20%) scale(0.6);
  opacity: 1;
  z-index: 2 !important;
}
.cascade-slider_item.now {
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(1);
  opacity: 1;
  z-index: 5;
}
.cascade-slider_arrow {
  display: inline-block;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 5;
  transform: translate(0, -50%);
  color: #fff;
  font-size: 30px;
}
.cascade-slider_arrow-left {
  left: -10%;
}
.cascade-slider_arrow-right {
  right: -10%;
}
.cascade-slider_nav {
  position: absolute;
  bottom: -120px;
  width: 100%;
  text-align: center;
  z-index: 5;
}
.cascade-slider_dot {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 1em;
  background: #ddd;
  list-style: none;
  cursor: pointer;
}
.cascade-slider_dot:hover {
  background: #555;
}
.cascade-slider_dot.cur {
  background: #555;
}
.cascade-slider_slides img {
  max-width: 150px;
  border-radius: 35px;
}
.cascade-slider_item:not(.now) img {
  filter: grayscale(0.95);
}
.cascade-slider_arrow img {
  width: 25px;
}
@media screen and (min-width: 414px) {
  .cascade-slider_container {
    height: 50vh;
  }
  .cascade-slider_slides img {
    max-width: 200px;
  }
}
@media screen and (min-width: 576px) {
  .cascade-slider_container {
    height: 60vh;
  }
  .cascade-slider_slides img {
    max-width: 270px;
  }
}
@media screen and (min-width: 768px) {
  .cascade-slider_item.next {
    left: 50%;
    transform: translateY(-50%) translateX(-125%) scale(0.6);
    opacity: 1;
    z-index: 1;
  }
  .cascade-slider_item.prev {
    left: 50%;
    transform: translateY(-50%) translateX(25%) scale(0.6);
    opacity: 1;
    z-index: 1;
  }
  .cascade-slider_slides img {
    max-width: 250px;
  }
}
@media screen and (min-width: 991px) {
  .cascade-slider_item.next {
    left: 50%;
    transform: translateY(-50%) translateX(-115%) scale(0.55);
    opacity: 1;
    z-index: 4 !important;
  }
  .cascade-slider_item.prev {
    left: 50%;
    transform: translateY(-50%) translateX(15%) scale(0.55);
    opacity: 1;
    z-index: 4 !important;
  }
  .cascade-slider_item.next2 {
    left: 50%;
    transform: translateY(-50%) translateX(-150%) scale(0.37);
    opacity: 1;
    z-index: 1 !important;
  }
  .cascade-slider_item.prev2 {
    left: 50%;
    transform: translateY(-50%) translateX(50%) scale(0.37);
    opacity: 1;
    z-index: 2 !important;
  }
  .cascade-slider_slides img {
    max-width: 300px;
  }
  .cascade-slider_container {
    height: 67vh;
  }
}
@media screen and (min-width: 1100px) {
  .cascade-slider_item.next {
    left: 50%;
    transform: translateY(-50%) translateX(-130%) scale(0.55);
    opacity: 1;
    z-index: 4 !important;
  }
  .cascade-slider_item.prev {
    left: 50%;
    transform: translateY(-50%) translateX(30%) scale(0.55);
    opacity: 1;
    z-index: 4 !important;
  }
  .cascade-slider_item.next2 {
    left: 50%;
    transform: translateY(-50%) translateX(-180%) scale(0.37);
    opacity: 1;
    z-index: 1 !important;
  }
  .cascade-slider_item.prev2 {
    left: 50%;
    transform: translateY(-50%) translateX(80%) scale(0.37);
    opacity: 1;
    z-index: 2 !important;
  }
  .cascade-slider_slides img {
    max-width: 350px;
  }
}

 */




/* .single-slide {
  margin: 15px;
}
.slider-demo-multislide h2{
  text-align: center;
}
.slide-content-box h3{
  font-size: 30px;
  margin: 20px 0px;
}
.slide-content-box a {
  color: #d8b372;
  font-size: 20px;
}
.slide-content-box a:hover {
  color: #fff;
}
.single-slide i.fa {
  margin-left: 6px;
}

.slide-list .slick-arrow {
  position: absolute;
  bottom: 0;
}
.slider-demo-multislide img.right.slick-arrow {
  position: absolute;
  bottom: 0;
  right: 45%;
  background-color: #d8b372;
  border-radius: 50%;
}
.slider-demo-multislide img.left.slick-arrow {
  position: absolute;
  bottom: 0;
  left: 45%;
  z-index: 1;
  background-color: #d8b372;
  border-radius: 50%;
}

.slick-prev:before, .slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #cfab6e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 */






.wwww {
  overflow-x: hidden;
  font-family: sans-serif;
  padding: 70px;
}
.wwww a{
  color: #cfab6e;
  font-size: 18px;
}
.wwww h3{
  color: #cfab6e;
  font-size: 30px;
  margin-top: 20px;
}
.wwww i.fa {
  margin-left: 6px;
  font-size: 18px;
}
.card-container {
  display: flex;
  padding: 2rem 1rem;
}
.card-container .cardww {
  flex: 1;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.2);
}
.cardww h2 {
  font-size: 22px;
}
.card-container .cardww:not(:first-child) {
  margin-left: -10rem;
}
.cardww img {
  padding: 0px;
  width: 70%;
  display: block;
  margin: 0 auto;
}
.card-container .cardww:hover,
.card-container .cardww:focus {
  transform: translateY(-1rem);
  outline: none;
}
.card-container .cardww:hover ~ .cardww,
.card-container .cardww:focus ~ .cardww {
  transform: translateX(11rem);
}

@media (max-width: 767px) {
  #demo {
    margin-top: 0px;
  }

  .card-container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0rem 1rem 2rem;
  }
  .card-container .cardww {
    flex: 1 1 100%;
    max-width: 260px;
  }
  .card-container .cardww:not(:first-child) {
    margin-left: 0rem;
    margin-top: 2rem;
  }
  .card-container .cardww:hover,
  .card-container .cardww:focus {
    transform: translateX(0rem);
  }
  .card-container .cardww:hover ~ .cardww,
  .card-container .cardww:focus ~ .cardww {
    transform: translateY(0rem);
  }
  .cardww img {
    padding: 5px;
  }
}





/* 

.slider-demo-multislide {
  background-image: url(../images/26.png);
  background-repeat: no-repeat;
  background-position: right;
}

.single-slide {
  margin: 15px;
  justify-content: center;
  padding: 0px 20px;
  align-items: center;
  display: flex !important;
  background-color: #fff;
  min-height: 203px;
  box-shadow: 0 3px 20px rgb(0 0 0 / 8%), 0 3px 20px rgb(0 0 0 / 8%);
  border-radius: 20px;
}

.slider-demo-multislide p {
  font-family: 'SourceSansPro-Regular';
  font-size: 20px;
}

.slider-demo-multislide h2 {
  font-size: 50px;
  color: #2a5743;
  padding-bottom: 20px;
  text-align: center;
}

.slide-list .slick-list {
  padding-bottom: 70px;
}

img.left.slick-arrow {
  position: absolute;
  bottom: 0%;
  left: 45%;
  z-index: 1;
}

img.right.slick-arrow {
  position: absolute;
  bottom: 0%;
  right: 45%;
}

.slide-list .slick-next:before {
  content: "";
  position: absolute;
}

.slide-list .slick-next {
  right: 40%;
  transform: translate(-45%, -50%);
}

.slide-list .slick-prev {
  left: 40%;
  z-index: 9;
  transform: translate(-45%, -50%);
}

.slick-prev:before {
  content: '';
}

.slick-prev:before,
.slick-next:before {
  color: #000;
} */

/*--------------------------------------------------------------
# contact-call
--------------------------------------------------------------*/ 
.contact-call{
  padding: 100px 0px;
  text-align: center;
}
.contact-call h3{
  font-size: 60px;
  color: #fff;
}
.contact-call h4{
  font-size: 50px;
  color: #d8b372;
}
.contact-call h4:hover{
  color: #fff;
}
.address-detail p {
  text-align: left;
}
.form-control::placeholder {
  color: #fff;
  opacity: 1;
}
.form-control:focus {
  color: #fff;
  background-color: transparent;
  border-color: unset;
  outline: 0;
}
.form-control:focus {
  box-shadow: 0px 0px 10px 1px #d8b372;
}

.detail-form {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #d8b372 !important;
  font-size: 1em;
  font-weight: normal;
  display: block;
  position: absolute;
  right: 17px;
  z-index: 9;
  top: 10%;
}

/*--------------------------------------------------------------
# contact-way
--------------------------------------------------------------*/ 
.contact-way{
  padding:100px 0px
  }
  .contact-way .address-icon img{
    max-width: 43%;
    }
  .contact-way h3,.contact-way h3 a {
    font-size: 35px;
    color:#d8b372;
  }
  .contact-way p,.contact-way p a {
    font-size: 20px;
    color:#fff;
    margin: 0;
  }
  .contact-way .map{
    padding: 0px 30px;
  }
/*--------------------------------------------------------------
# contact-form
--------------------------------------------------------------*/ 
.contact-form h2{
  line-height: 1.2;
  text-align: justify;
}
.contact-form .talk-us p{
font-size: 20px;
letter-spacing: 3px;
}

.contact-form input#name {
  width: 47%;
  font-size: 20px;
}
.contact-form input#name:focus-visible,
.contact-form textarea:focus-visible{
  outline: none;
}
.contact-form textarea:focus{
  box-shadow: 0px 0px 10px 1px #d8b372;
}
.contact-form input , .contact-form textarea{
  padding: 7px 20px;
  border-radius: 20px;
  margin: 20px 0px;
  border: transparent;
  background-color: #000;
  box-shadow: 0px 0px 10px 1px #d8b372;
  width: 100%;
  color: #fff;
}
.contact-form .textarea{
  width: 90%;
margin: 0 auto;
font-size: 20px;
}
.contact-form button{
  background-color: #000;
  color: #fff;
  transition: ease-in-out 0.5s;
  padding: 10px 40px;
  border-radius: 20px;
  border:2px solid  #d8b372;
}
.contact-form button:hover{
  color: #d8b372;
  background-color: #fff;
  transition: ease-in-out 0.5s;
}
.contact-form .send-btn{
  display: flex;
  justify-content: center;
  margin: 50px 0px;
}

/*--------------------------------------------------------------
# Gallary
--------------------------------------------------------------*/
.gallary-image {
  margin: 15px 0;
  box-shadow: 0px 0px 10px 1px #d8b372;
  border-radius: 5px;
  transition: all .5s ease-in-out;
}
.gallary-image:hover {
  transform: scale(1.1) !important;
  transition: all .5s ease-in-out;
}
.gallary-image img {
  border-radius: 5px;
}

/*--------------------------------------------------------------
# fleet
--------------------------------------------------------------*/
.fleet .fleet-bg{
  box-shadow: 0px 0px 10px 1px #d8b372;
  padding: 30px;
  margin: 40px 0px;
  border-radius: 10px;
}
.fleet .fleet-contain h4{
  color: #d8b372;
}

.plane-animation img {
  max-width: 600px;
  display: flex;
  margin: 0 auto;
}

.plane-animation {
  border-bottom: 1px solid #d8b372;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

.footer-logo {
  width: 20%;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
  text-align: center;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .social-icon {
  display: flex;
  margin: 20px 0px;
}

#footer .social-icon .fa {
  color: #d8b372;
  font-size: 18px;
  padding: 0 10px;
}

#footer .social-icon .fa:hover {
  color: #fff;
  /* font-size: 20px; */
}

#footer .footer-info {
  margin: 20px 0px;
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 30px;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 15px;
  white-space: nowrap;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #d8b372;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}
.single-logo img {
  vertical-align: top;
  aspect-ratio: 3/2;
  border: 5px solid #cab372;
}
.single-logo {
  padding: 20px;
}
.wrapper {
  position: realtive;
}

.fas.fa-envelope {
  color: #fff;
  font-size: 2rem;
  background: #333;
  padding: 1rem;
  border-radius: 100%;
  margin: 0 0 1rem 0;
}

.card-content {
  max-width: 55rem;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 1rem;
  padding: 2rem 0.5rem;
  box-shadow: 1px 1px 2rem rgba(0,0,0,.3);
  text-align: center;
}

.card-content h1 {
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

.card-content p {
  font-size: .8rem;
  margin: 0 0 2rem 0;
}

input {
  padding: .8rem 1rem;
  width: 40%;
  border-radius: 5rem;
  outline: none;
  /* border: .1rem solid #d1d1d1; */
  font-size: .7rem;
  background-color: #000;
  color: #fff;
   box-shadow: 0px 0px 10px 1px #d8b372;
}

::placeholder {
  color: #d1d1d1;
}

.subscribe-btn {
  padding: 0.8rem 2rem;
  border-radius: 0;
  border: 2px solid #d8b372;
  color: #fff;
  font-size: .7rem;
  /* border: none; */
  outline: none;
  cursor: pointer;
  background-color: #000;
  margin-left: 10px;
}

#footer .copyright {
  text-align: center;
}

@media (max-width: 768px) {
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}