/* font style use localy */
/* @import url(fonts.css); */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* search form css */
@import url(header.css);
@import url(banner-form.css);
@import url(loader.css);

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
.font-primary {
  font-family: "Manrope", serif;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #ffffff !important;
}

/* innner page css for form */
.inner-banner .bg-white.p-3.rounded-4 {
  margin-top: 1rem;
}

/* header page css for form */
.bg-none {
  background: none !important;
}

.navbar {padding: 0px;}

/* banner css */
.home_banner {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../img/banner.jpg);
  background-size: cover;
  background-position: bottom;
  backdrop-filter: blur(5px);
  background-repeat: no-repeat;
  z-index: 99;
  overflow: hidden;
}
/* .home_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: 1;
} */
.home_banner h1 {
  font-family: "Manrope", serif;
  font-size: 70px;
  color: #fff;
  margin-bottom: 15px;
}
.home_banner h3 {
  font-family: "Manrope", serif;
  margin-bottom: 30px;
  color: #fff;
}
@media (max-width: 991px) {
  .home_banner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .home_banner h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .home_banner h3 {
    font-size: 20px;
  }
}


.inner-banner {
  background: none;
  padding: 30px 0px !important;
  background: var(--falcon-primary) !important;

}

.inner-banner .bn_heading {
  padding-bottom: 0px !important;
  font-size: 30px;
}

.inner-banner .text-center {
  text-align: left !important;
}

.breadcrumb {
  justify-content: start !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  font-family: ""Open Sans", sans-serif;"; 
  font-weight: 900; 
  content: "\f105"; 
  color: #fff; 
  padding-right: 8px;
}

.bn_heading {
  font-size: 80px;
}

/* Trending destinations Css */
.trend-desti:before {
  position: absolute;
  content: "";
  background-image: url(../img/feature-bg.png );
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .2;
  width: 100%;
  height: 735px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}


/* offer-card css */
.custom-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-hover:hover {
  transform: translateY(-8px);
}

/* footer css  */
/* payment_icons fooetr css */
.payment_icons {
  background-color: var(--falcon-primary);
}

.payment_icons img {
  height: 28px;
}

.assist-img {
  height: 6.125rem;
  width: 6.125rem;
  min-width: 6.125rem;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.assistance-btn {
  background: linear-gradient(to right,
      var(--falcon-primary),
      color-mix(in srgb, var(--falcon-primary) 70%, var(--falcon-secondary) 30%),
      var(--falcon-secondary));
  background-size: 200% auto;
  transition: all 0.5s ease;
  z-index: 1;
  position: relative;
}

.assistance-btn:hover {
  background-position: right center;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.glass-effect {
  background: #fff;
  backdrop-filter: blur(14px);
  border-radius: 1rem;
  animation: zoomIn 0.5s ease-in-out;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.animate-loading {
  animation: progressAnim 2s infinite linear;
}

@keyframes progressAnim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.bg-search {
  background-color: #f2f2f2;
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.cta-gradient {
  background: linear-gradient(135deg, rgb(var(--falcon-primary-rgb), 0.5) 0%, rgb(var(--falcon-primary-rgb), 1) 100%);
}

.bg-pattern-dots {
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 15px 15px;
  color: rgba(255, 255, 255, 0.3);
}

.circle-blur {
  filter: blur(60px);
  opacity: 0.5;
  border-radius: 50%;
}

.deal-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5),
      /* top color with opacity */
      rgba(0, 0, 0, 0.5)
      /* bottom color with opacity */
    ),
    url(../img/deal-bg.jpg);
  background-position: bottom;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #fff;
  /* optional, for white text on dark overlay */
}

.shape-element {
  bottom: -1px;
  position: absolute;
  fill: #ffffff;

  z-index: 4;
  width: 100%;
}

.shape-element svg {
  height: 70px;
  line-height: 0px;
  width: 100%;
}

.bottom-to-up {
  transform: rotate(180deg);
}
.top-element {
 top: -1px !important;
 bottom: auto !important;
}
.form-control::placeholder{
  color: #000 !important;
}

.fill-white {
  fill: white;
}

@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

.section-title span {
  color: var(--falcon-primary);
  font-family: cursive;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.section-title h2 {
  font-family: "Manrope", serif;
  margin: 5px 0 0;
  font-weight: 600;
}


.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.services__card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 35px 50px 35px 35px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
}
.services__card .icon i {
  color: var(--falcon-primary);
  font-size: 48px;
}
.services__content {
  border-left: 1px solid rgba(76, 76, 76, 0.5);
  padding-left: 18px;
}
.services__content h2 {
  font-family: "Manrope", serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.services__content p {
  font-family: "Manrope", serif;
  text-transform: capitalize;
  margin: 6px 0 0;
  letter-spacing: 0.2px;
  text-align: justify;
}
.services__arrow {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  position: absolute;
  right: -47px;
  z-index: 1;
}
.services__arrow i {
  color: var(--falcon-secondary);
  font-size: 18px;
  position: absolute;
  top: 13px;
  left: 11px;
  width: 43px;
  height: 43px;
  line-height: 43px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
  .services__card {
    display: block;
    padding: 20px;
  }
  .services__content {
    border: none;
    padding: 0;
  }
  .services__arrow {
    top: 70px;
  }
}
@media (max-width: 767px) {
  .services {
    display: block;
  }
  .services__card {
    padding: 30px;
    margin-bottom: 30px;
  }
  .services__arrow {
    display: none;
  }
}


.tn-support {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  background-color: #2D2737;
  padding: 60px 0;
  z-index: 3;
  overflow: hidden;
}
.tn-support:after {
  content: "";
  position: absolute;
  left: -240px;
  top: -15px;
  bottom: 0;
  width: 480px;
  background-color: var(--falcon-primary);
  mask-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%22505%22%20height%3D%22326%22%20viewBox%3D%220%200%20505%20326%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M302.332%20-6H0V333H302.332L505%20165.687L302.332%20-6Z%22%20fill%3D%22%23FC1C07%22%20fill-opacity%3D%220.95%22%2F%3E%0A%3C%2Fsvg%3E);
  mask-size: cover;
  mask-repeat: no-repeat;
  z-index: -1;
}
.tn-support__ele {
  position: absolute;
  right: 0;
  top: 0;
}
.tn-support__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 50px;
  color: var(--falcon-primary);
  margin-left: auto;
  margin-right: -30px;
}
.tn-support__txt {
  border-left: 3px solid var(--falcon-primary);
  padding-left: 25px;
  margin-left: 40px;
}
.tn-support__txt h2 {
  font-family: "Manrope", serif;
  color: #fff;
  font-weight: 600;
}
.tn-support__txt p {
  font-family: "Manrope", serif;
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
  text-align: justify;
}
@media (max-width: 1199px) {
  .tn-support:after {
    width: 565px;
  }
}
@media (max-width: 575px) {
  .tn-support:after {
    display: none;
  }
  .tn-support__txt {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}



.about-main {
  position: relative;
  z-index: 1;
}
.about-main-one {
  position: absolute;
  top: 50px;
  left: 5%;
}
.about-main-one::after {
  content: "";
  width: 88px;
  height: 113px;
  position: absolute;
  top: -2px;
  left: -8px;
  background-color: var(--falcon-primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 89 117'%3E%3Cg transform='translate(0,117) scale(0.1,-0.1)'%3E%3Cpath d='M758 1126 c-333 -145 -578 -409 -688 -740 -54 -165 -77 -360 -44 -373 34 -13 49 11 56 90 25 273 148 529 349 723 117 112 218 179 363 239 63 26 82 38 84 56 4 21 -12 39 -33 39 -5 0 -45 -15 -87 -34z m-714 -1048 c4 -17 2 -28 -4 -28 -5 0 -10 14 -10 32 0 36 4 35 14 -4z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}
.about-main-two {
  position: absolute;
  right: 5%;
  bottom: 50px;
}
.about-main-two::after {
  content: "";
  width: 93px;
  height: 113px;
  position: absolute;
  bottom: -2px;
  right: -8px;
  background-color: var(--falcon-primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93 113'%3E%3Cg transform='translate(0,113) scale(0.1,-0.1)'%3E%3Cpath d='M856 1108 c-3 -7 -10 -51 -16 -98 -32 -231 -152 -472 -320 -641 -123 -124 -238 -199 -415 -270 -78 -31 -90 -39 -90 -60 0 -21 4 -24 40 -23 86 1 306 118 443 235 231 196 406 530 415 793 2 71 2 71 -26 74 -16 2 -29 -2 -31 -10z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
}
.about-main-one img, .about-main-two img {
  border-radius: 50%;
  border: 10px solid #e4e6e8;
}
.about-main-three {
  text-align: center;
}
.about-main-three img {
  border-radius: 185px;
  border: 13px solid #e4e6e8;
}
@media (max-width: 575px) {
  .about-main-one, .about-main-two {
    display: none;
  }
}


.contact-area {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-area .single-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-area .single-contact .icon {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-area .single-contact .contents span {
  color: var(--falcon-secondary);
  font-family: "Manrope", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: block;
  margin-bottom: 7px;
}
.contact-area .single-contact .contents a {
  color: #737373;
  font-family: "Manrope", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  transition: 0.5s;
}
.th-social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.th-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #000;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease;
  overflow: hidden;
}
.th-social a:hover {
  background-color: var(--falcon-primary);
}
.th-social a:hover i {
  animation: slideTop 0.5s;
}
@keyframes slideTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }
  51% {
    opacity: 1
  }
}

.filter-invert {
  filter: brightness(0) invert(0);
}

.page-breadcrumb {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-image: url(../img/breadcrumb.jpg);
  background-size: cover;        
  background-position: center;   
  background-repeat: no-repeat; 
}
/* .page-breadcrumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: 0;
} */
.breadcrumb-content {
  font-family: "Manrope", serif;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.breadcrumb-content h1 {
  font-family: "Manrope", serif;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  line-height: 1;
}
.breadcrumb-content .breadcrumb {
  display: flex;
  align-items: center;
  font-size: 20px;
  gap: 12px;
  margin-top: 20px;
  padding: 10px 22px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  backdrop-filter: blur(30px);
}
.breadcrumb-content .breadcrumb a {
  color: var(--falcon-primary);
}
.breadcrumb-content .breadcrumb i {
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  .page-breadcrumb {
    padding: 60px 0; 
  }
}
@media screen and (max-width: 575px) {
  .page-breadcrumb {
    padding: 40px 0; 
  }
  .breadcrumb-content h1 {
    font-size: 40px;
  }
  .breadcrumb-content .breadcrumb {
    font-size: 16px;
  }
}


.contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  text-align: center;
  padding: 30px 20px;
  position: relative;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 1;
}
.contact-info .icon {
  font-size: 35px;
  color: #fff;
  text-align: center;
}
.contact-info .icon img {
  width: 50px;
}
.contact-info .contents h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--falcon-primary);
}
.contact-info .contents p, .contact-info .contents a {
  color: #737373;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}