/* font style use localy */
/* @import url(fonts.css); */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/* search form css */
@import url(header.css);
@import url(banner-form.css);
@import url(loader.css);
@import url(toast.css);

.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;
}

/* banner css */
.home_banner {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../img/banner.jpg);
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(5px);
  background-repeat: no-repeat;
  z-index: 99;
}

.home_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1;
}

.home_banner h1 {
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  text-transform: capitalize;
}

.home_banner h4 {
  font-family: "Playfair Display", serif;
}

.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: "Font Awesome 6 Pro"; 
  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;
}

.about-us .img-box3 {
  position: relative;
  margin-right: 40px;
}
.about-us .img-box3::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 80%;
  border-radius: 200px;
  border: 10px double var(--falcon-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.about-us .img-box3 img {
  border-radius: 200px;
}
@media (max-width: 1199px) {
  .about-us .img-box3 {
    margin-right: 0px;
  }
}
.about-expo {
  background: var(--falcon-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  line-height: 1.2;
  border-radius: 100px;
  text-align: center;
  border: 10px solid #fff;
}
.about-expo h5 {
  color: #fff;
  font-size: 35px;
  margin-top: 22px;
}
.about-expo p {
  color: #fff;
  font-weight: 600;
  text-align: center !important;
  margin: 0;
  font-size: 14px;
}
.about-us .title span, .why-us .title span, .dest .title span, .flight-offers .title span, .blog .title span, .faq .title span {
  font-family: cursive;
}
.about-us .title h2, .why-us .title h2, .dest .title h2, .flight-offers .title h2, .blog .title h2, .faq .title h2 {
  font-family: sans-serif;
  color: var(--falcon-secondary);
  font-weight: 600;
  margin: 0;
}
.about-us .title span, .why-us .title span, .dest .title span, .flight-offers .title span, .blog .title span, .faq .title span {
  color: var(--falcon-primary);
  font-weight: 600;
  text-transform: uppercase;
}
.about-us p {
  text-align: justify;
}
.why-us .why-item {
  display: flex;
  gap: 15px;
  background: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  position: relative;
  padding: 20px;
  border-radius: 100px 100px 100px 0;
  transition: all .5s ease-in-out;
}
.why-item .count {
  position: absolute;
  top: -8px;
  left: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--falcon-secondary);
  line-height: 1;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.why-item .icon {
  width: 80px;
  height: 80px;
  line-height: 75px;
  text-align: center;
  background: var(--falcon-primary);
  border-radius: 50px;
}
.why-item .icon img {
  width: 50px;
  filter: brightness(0) invert(1);
}
.why-item .text {
  flex: 1;
}
.why-item .text h4 {
  font-size: 20px;
  margin-bottom: 5px; 
}
.why-item .text p {
  margin: 0;
}
@media (max-width: 575px) {
  .why-item .text h4 {
    font-size: 18px;
  }  
  .why-item .text p {
    font-size: 14px;
  }
}
.transition-3d-hover {
  transition: all 0.2s ease-in-out;
}
.transition-3d-hover:hover, .transition-3d-hover:focus {
  transform: translateY(-3px);
}
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #e1e4e5;
  font-weight: 500;
  background-color: transparent;
  color: var(--falcon-secondary);
  font-size: 16px;
}
.th-btn:before {
  content: '';
  width: 0;
  height: 100%;
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: -5%;
  background-color: var(--falcon-primary);
  transition: .5s ease;
  display: block;
  z-index: -1;
}
.th-btn:hover:before, .th-btn.active:before {
  width: 110%;
}
.th-btn:after {
  content: '';
  position: relative;
  mask-image: url(../img/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: auto;
  background-color: var(--falcon-secondary);
  width: 24px;
  height: 24px;
  display: block;
  transition: 0.4s;
}
.th-btn:hover:after, .th-btn.active:after {
  background-color: #fff;
}
.blog .blog-box {
  background-color: white;
  box-shadow: 0px 0.66px 6px 0px #00000021;
  border-radius: 16px;
  padding: 15px;
}
.blog .blog-box .img-part {
  position: relative;
}
.blog .blog-box .img-part img {
  width: 100%;
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
}
.blog .blog-box .blog-content {
  padding-top: 20px;
}
.blog .blog-box .blog-content h5 {
  font-size: 14px;
  color: var(--falcon-primary);
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 15px;
}
.blog .blog-box .blog-content p {
  font-size: 20px;
  color: var(--falcon-secondary);
  font-weight: 800;
  line-height: 1.2;
}
.blog .blog-box .blog-content h6 {
  font-size: 14px;
  color: #999999;
  font-weight: 600;
  margin-bottom: 20px;
}

.accordion-item, .accordion-item:first-of-type, .accordion-item:last-of-type {
  border-radius: 12px;
  overflow: hidden;
}
.accordion-item:not(:last-child) {
  margin-bottom: 24px;
}
.accordion-button {
  font-size: 18px;
  color: var(--falcon-secondary) !important;
  box-shadow: none !important;
}
.accordion-button::after {
  display: none !important;
}
.accordion-button i {
  transition: transform 0.3s ease;
}
.accordion-button[aria-expanded="true"] i {
  transform: rotate(90deg);
}
@media (max-width: 575px) {
  .accordion-button {
    font-size: 16px;
  }
}
.accordion-body {
  padding-top: 0;
  color: #6e7070;
}

.filter-invert {
  filter: brightness(0) invert(1);
}

.contact-us-main {
  border-radius: 10px;
  padding: 12px 16px;
  background-color: #f7f7f7;
  text-align: center;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.contact-us-main.style-2 {
  background-color: var(--falcon-primary);
}
.contact-us-main.style-2 .contact-box-items {
  border: 1px solid #fff;
}
.contact-us-main.style-2 .contact-box-items .icon,
.contact-us-main.style-2 .contact-box-items .contents h3 a,
.contact-us-main.style-2 .contact-box-items .contents p {
  color: #fff;
}
.contact-us-main .contact-box-items {
  border-radius: 10px;
  border: 1px solid #e1e4e5;
  padding: 28px 30px;
}
.contact-us-main .contact-box-items .icon {
  margin-bottom: 20px;
}
.contact-us-main .contact-box-items .contents h3 {
  font-weight: 600;
  margin-bottom: 5px;
}
.contact-us-main .contact-box-items .contents h3 a {
  color: var(--falcon-secondary);
  text-decoration: none;
}
.contact-us-main .contact-box-items .contents p {
  font-size: 18px;
  font-weight: 400;
  color: #687179;
  margin-bottom: 0;
}
.contact-us-main:hover {
  background-color: var(--falcon-primary);
}
.contact-us-main:hover .contact-box-items .icon img {
  filter: grayscale(100%) brightness(300%);
}
.contact-us-main:hover .contact-box-items .contents {
  position: relative;
  z-index: 1;
}
.contact-us-main:hover .contact-box-items .contents h3,
.contact-us-main:hover .contact-box-items .contents h3 a,
.contact-us-main:hover .contact-box-items .contents p {
  color: #fff;
}
