/*----- FONTS -----*/
/* poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* lato */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* Exo */
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* rowdies */
@import url("https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap");

/* files */
@import url("../css/header_footer.css");
@import url("../css/custome.css");

/*----- BASIC -----*/

html,
body {
  height: auto;
}
body {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #4c4c4c;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}
a,
a:hover {
  text-decoration: none;
  color: #000;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

h1,
h2,
h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.favicon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
main {
  padding: 0;
  /* padding: 70px 0 0; */
}

.cs-mrgin {
  margin-bottom: 30px;
}

.cmmn_title h3 {
  color: #4c4c4c;

  font-size: 30px;

  font-weight: 600;
}

/*----Home Slider--------*/

body.headitemshow {
  overflow: hidden;
}
.location .home {
  height: 40vh;
  position: relative;
}
.home {
  height: 100vh;
  position: relative;
}
.wd-banner-dtls {
  height: 95vh;
  position: relative;
}
.home::before,
.wd-banner-dtls::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
video {
  object-fit: cover;
  -webkit-filter: grayscale(1);
  filter: grayscale(80%);
  width: 100%;
  height: 100%;
}
.home-content {
  position: relative;
  padding: 150px 100px;
  color: #fff;
}
.home-content h1 {
  font-family: "Rowdies", sans-serif;
  font-size: 80px;
  font-weight: 700px;
  text-transform: capitalize;
  text-align: end;
}
.home-content h2 {
  font-family: "Rowdies", sans-serif;
  font-size: 60px;
  font-weight: 700px;
  text-transform: capitalize;
  text-align: Start;
}
/*----Home ABout ----*/

.about_blog {
  padding: 80px 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(76, 76, 76, 0.16010154061624648) 16%,
    rgba(76, 76, 76, 0.04805672268907568) 75%
  );
}

.abt_img img {
  width: 100%;

  height: 440px;

  border-radius: 10px;

  object-fit: contain;
}

.cmmn_title h4,
.service h4 {
  font-family: "Rowdies", sans-serif;

  font-size: 25px;

  font-weight: 400;

  text-transform: capitalize;

  margin: 0 0 10px;

  color: #4c4c4c;
}

.abt_txt p {
  font-size: 15px;

  line-height: 28px;
}

.more_btn {
  border: none;

  display: inline-block;

  text-align: center;

  cursor: pointer;

  text-transform: uppercase;

  outline: none;

  overflow: hidden;

  position: relative;

  color: #4c4c4c;

  font-size: 15px;

  font-weight: 500;

  line-height: 135.023%;

  letter-spacing: 0.32px;

  text-transform: uppercase;

  background-color: #fff;

  padding: 17px 43px;

  margin: 0 auto;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  z-index: 1;
}

.more_btn:after {
  content: "";

  position: absolute;

  right: 0;

  top: 0;

  height: 490%;

  width: 140%;

  background: #4c4c4c;

  -webkit-transition: all 0.5s ease-in-out;

  transition: all 0.5s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;

  -moz-transform: translateX(80%) translateY(0%) rotate(27deg);

  transform: translateX(80%) translateY(0%) rotate(27deg);

  z-index: -1;

  border-radius: 50%;
}

.more_btn:hover {
  z-index: 111;

  color: #fff;
}

.more_btn:hover:after {
  -webkit-transform: translateX(6%) translateY(-50%) rotate(0deg);

  transform: translateX(6%) translateY(-50%) rotate(0deg);
}

#features {
  width: 100%;

  background: #f3f3f3 url(../images/features-bg.png);

  background-repeat: no-repeat;

  background-position: center center;

  background-size: cover;

  height: auto;

  padding: 60px 0;
}

.features_bz {
  background: linear-gradient(135deg, #fff 30%, #ffefe0 56%, #fff 83%, #fff);

  background-size: 400% 400%;

  animation: gradient 10s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 80% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#features .wd_cmmn_title {
  margin-bottom: 50px;

  display: block;
}

.category-single {
  background: #fff;

  box-shadow: 4px 3px 40px rgba(16, 33, 34, 0.06);

  text-align: center;

  padding: 30px 25px;

  border-radius: 5px;

  height: 100%;
}

.category-single .icon {
  width: 90px;

  height: 90px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  border-radius: 50%;

  margin: 0 auto;

  background: #f3f2f2;

  margin-bottom: 20px;

  transition: all 0.45s ease;

  position: relative;

  z-index: 1;

  border: 1px solid #d9d5d5;

  overflow: hidden;
}

.category-single .icon img {
  width: 50px;

  height: 50px;

  object-fit: contain;
}

.category-single .icon:before {
  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  background: #b8b8b8;

  border-radius: 50%;

  left: 0;

  top: 0;

  z-index: -1;

  opacity: 0;

  transform: scale(0.6);

  transition: all 0.55s ease;
}

.category-single:hover .icon:before {
  opacity: 1;

  transform: scale(0.9);
}

.category-single:hover .content h4 {
  color: #fff;
}

.category-single:hover {
  background: #4c4c4c;
}

.category-single:hover .content p {
  color: #fff;
}

.category-single .content h4 {
  font-size: 18px;
}

.content p {
  font-size: 14px;

  line-height: 25px;

  margin-bottom: 0;
}
.service p {
  margin: 20px 0;
}
.wd_review_item {
  background: #fff;
  padding: 20px;
  margin: 0 15px;
}
#testimonial {
  background: #4c4c4c;

  position: relative;

  padding: 80px 0;
}

.sven-testi {
  text-align: center;

  padding: 50px 0 0;
}

.wd_testi_map {
  width: 100%;

  height: 100%;

  object-fit: contain;

  animation: rotation 50s infinite linear;

  position: absolute;

  top: 0;

  bottom: 0;

  margin: 0 auto;

  text-align: center;
}

.wd_testi_map img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.wd_testi_img img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.white_txt {
  color: #fff !important;
}

.wd_review_item h5 {
  font-size: 24px;

  margin: 0 0 10px;

  color: #4c4c4c;

  position: relative;
}

.wd_quote_img {
  width: 30px !important;

  height: 30px;

  object-fit: contain;
}

.wd_traveller {
  font-size: 16px;

  color: #4c4c4c;

  margin: 0 0 10px;

  display: block;
}

.wd_review_item p {
  font-size: 14px;

  line-height: 28px;

  color: #4c4c4c;

  margin: 0;

  display: block;
}
.wd_review_item img {
  height: 100%;
  border: 1px solid #b8b8b8;
  border-radius: 50%;
  margin: 0 auto 15px;
  width: fit-content !important;
}
#testimonial .owl-carousel .owl-nav {
  display: block;
  margin: 30px 0 0 0;
}

/*rotation*/

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/*end rotation*/

#testimonial .owl-carousel .owl-nav.disabled {
  display: block;
}

#testimonial .owl-carousel .owl-nav button.owl-next,
#testimonial .owl-carousel .owl-nav button.owl-prev {
  background: #b8b8b8;

  color: inherit;

  border: none;

  width: 40px;

  height: 40px;

  margin: 0 4px;

  border-radius: 50%;
}

#testimonial .owl-dots {
  display: none;
}

#testimonial .cmmn_title h3 {
  color: #fff;

  position: relative;

  margin: 0 auto;

  width: fit-content;
}

#testimonial .cmmn_title h3::after {
  content: "";

  position: absolute;

  height: 3px;

  background: #fff;

  width: 50%;

  bottom: -10px;

  left: 25%;
}

/* final call  */

.sh_call_action {
  padding: 80px 0;

  background: url("../images/flight.png");

  background-position: right bottom;

  -webkit-animation: slide 20s linear infinite;

  background-repeat: no-repeat;

  background-size: 200px;
}

@-webkit-keyframes slide {
  from {
    background-position: right bottom;
  }

  to {
    background-position: 0 -135px;
  }
}

.sh_final_action {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.sh_final_action p {
  font-size: 14px;

  line-height: 25px;

  margin-bottom: 0;
}

/*========================== about us====================== */

/* .inner-banner {
  background: url("../images/bg.jpg");

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center center;

  height: 350px;

  position: relative;

  padding: 100px 0 0;
}

.inner-banner::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  width: 100%;

  height: 100%;

  display: block;

  background: linear-gradient(
    90deg,
    rgb(65 55 55 / 75%) 4%,
    rgb(0 0 0 / 40%) 52.49%,
    rgb(0 0 0 / 66%) 100%
  );
} */

.inner-banner .cmmn_title {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);
}
.home-content {
  position: relative;
  padding: 150px 100px;
  color: #fff;
}
/* Title Hero Home */
.bnr-title.cmmn_title h3 {
  color: #ffffff;
  text-shadow: #1e1e1e 5px 0 4px;
  font-family: "Exo", sans-serif;
  font-weight: 400;
  font-size: 64px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.sh-vision-txt {
  margin-bottom: 25px;
}

.sh-vision {
  padding: 80px 0;

  background: #fff;

  background: linear-gradient(
    180deg,
    rgba(76, 76, 76, 0.036852240896358524) 16%,
    rgba(255, 255, 255, 1) 75%
  );
}

.sh-vision-img img {
  position: absolute;

  height: 400px;

  width: 100%;

  border-radius: 12px;
}

.image1 {
  background-image: url(../images/2.jpg);
}

.image2 {
  background-image: url(../images/1.jpg);
}

/* animation styles */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.fadeInClass {
  animation-name: fadeIn;

  animation-duration: 7s;

  animation-iteration-count: infinite;

  animation-direction: alternate;

  animation-timing-function: linear;
}

.sh-vision-txt i {
  font-size: 25px;

  margin-right: 10px;

  color: #4c4c4c;
}

.cmmn_title p {
  font-size: 14px;

  line-height: 25px;

  margin-bottom: 0;
}

/* content */

.sh-link {
  color: cornflowerblue;

  font-size: 14px;

  font-weight: 500;
}

/*=================  Modals Starts ============== */

/* Aviation Modal */

.sevenjet-form .form-control {
  font-size: 14px;

  color: #4c4c4c;

  font-weight: 500;

  height: auto;

  padding: 15px 20px;

  border: 1px solid #dbdade;

  border-radius: 5px;

  background: linear-gradient(
    180deg,
    rgba(76, 76, 76, 0.16010154061624648) 16%,
    rgba(76, 76, 76, 0.04805672268907568) 75%
  );
}

.sevenjet-form label {
  font-size: 14px;

  color: #4c4c4c;

  font-weight: 600;
}

.sevenjet-form textarea {
  height: 200px !important;

  resize: none;
}

.sevenjet-form select {
  moz-appearance: window;

  -webkit-appearance: none;

  -ms-appearance: none;

  -o-appearance: none;

  appearance: none;

  background: #fff url("../images/downarrow.png") no-repeat 95% center !important;
}

.sevenjet-form .form-group {
  margin-bottom: 15px;
}

.sevenjet-form .form-control:focus {
  border-color: transparent;

  outline: 0;

  box-shadow: 0 0 0 0.2rem rgba(118, 119, 119, 0.25);
}

.sevenjet-modal .modal-header {
  background: url("../images/features-bg.png");

  background-repeat: no-repeat;

  background-size: cover;

  background-position: top center;
}

.sevenjet-modal .modal-footer {
  border: none;
}

/* ========= Contact Us ================== */

.sh-contact {
  padding: 80px 0;
}

.sh-contct-detail h5 {
  font-size: 20px;

  color: #4c4c4c;

  font-weight: 700;

  margin-bottom: 5px;
}

.sh-contct-detail a {
  font-size: 16px;

  color: #4c4c4c;

  font-weight: 500;

  margin-bottom: 0;
}

.sh-contct-detail a:hover {
  text-decoration: underline;
}

.contct-bx {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;

  height: 100%;

  border-radius: 8px;

  display: flex;

  align-items: center;
}

.contct-bx i {
  font-size: 30px;

  color: #fff;
}

.sh-icon {
  height: 100%;

  min-width: 150px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(76, 76, 76, 0.308);

  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.detail {
  padding: 10px 15px;
}

.sh-map {
  padding-top: 50px;
}

.sh-map iframe {
  height: 100%;

  width: 100%;

  border: none;

  border-radius: 8px;
}

.sevenjet-form .cmmn_title p {
  font-size: 16px;

  line-height: 25px;

  font-weight: 400;

  margin-bottom: 20px;
}

.sh-address {
  padding: 30px 20px;

  border-radius: 8px;

  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;

  background: #ffff;

  /* background: linear-gradient(
    180deg,
    rgba(76, 76, 76, 0.16010154061624648) 16%,
    rgba(76, 76, 76, 0.04805672268907568) 75%
  );*/
}

.sh-map .cs-mrgin {
  margin: 0;
}

/* services */
.services-img img {
  object-fit: cover;
  height: 350px;
  width: 100%;
  border-radius: 10px;
}
.icon {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: #d9d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 5px solid #fff;
}
.icon img {
  height: 30px;
  object-fit: contain;
}
.srvic-mrgin {
  margin-bottom: 100px;
}
/* ======================Location Page ====================== */
.location-txt {
  padding: 80px 0;
}

.location-txt h4 {
  font-size: 32px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.5;
}
.location-map iframe {
  width: 100%;
  height: 500px;
}
/* blog */

.blog-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.blog {
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex: 1 0 calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.blog-image img:hover {
  transform: scale(1.05);
}

.blog-image .date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: #fff;
  flex-grow: 1;
}

.blog-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #4c4c4c;
}

.blog-content p {
  flex-grow: 1;
  color: #4c4c4c;
  margin-bottom: 5px;
  font-size: 14px;
}
.sh-blog {
  padding: 60px 0;
  position: relative;
}
.slide-right,
.slide-left {
  width: 100%;
}

/***** Slide Right *****/
.slide-right {
  animation: 4s slide-right;
}
@keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}
/***** Slide Left *****/
.slide-left {
  animation: 5s slide-left;
}
@keyframes slide-left {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 0%;
  }
}
.map-txt {
  display: flex;
  align-items: center;
  gap: 70px;
  margin: 0 0 20px;
  justify-content: center;
}
.map-txt p {
  font-size: 20px;
  font-weight: 500;
  color: #4c4c4c;
  margin: 0;
  position: relative;
}
.map-txt p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #b8b8b8;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  margin: 2px 0 0 -35px;
}
.map-txt p::before.red {
  background-color: #ff090b !important;
}
.blue {
  background-color: #241c95;
}
.sky {
  background-color: #00e1df;
}
.pink {
  background-color: #ff72d7;
}

/* ===============Blog ================ */
.sh-images {
  padding: 40px 0 0;
}
.seven-owl img {
  height: 300px;
  border-radius: 10px;
}
.map-txt p:nth-child(1)::before {
  background-color: #ff0000;
}
.map-txt p:nth-child(2)::before {
  background-color: #241c95;
}
.map-txt p:nth-child(3)::before {
  background-color: #00e1df;
}
.map-txt p:nth-child(4)::before {
  background-color: #ff72d7;
}
.bnr-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-page .blog-image img {
  height: 400px;
}
.home-owl .item {
  padding-bottom: 15px;
}
/* --------- wd-mr ---------- */
/* about us */
.wd-mission-img img {
  height: 420px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
