/* font style use localy */
/* @import url(fonts.css); */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
@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-primary {
  font-family: "Outfit", 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 {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(../img/banner.jpg);
  background-size: cover;
  background-position: center;
  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.2);
  pointer-events: none;
  z-index: 1;
}

.home_banner .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff;
  color: var(--falcon-dark);
  border-radius: 30px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  font-family: "Outfit", serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}

.home_banner .badge i {
  color: var(--falcon-primary);
  font-size: 18px;
  transform: rotate(315deg);
}

.home_banner h1 {
  font-size: 60px;
  font-family: "Outfit", serif;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--falcon-secondary);
}

.home_banner h1 span {
  background: var(--falcon-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home_banner h2 {
  font-family: "Outfit", serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0px;
  color: #fff;
}

.home_banner .feature-list {
  display: flex;
  gap: 15px 30px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.home_banner .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  color: var(--falcon-white);
  font-family: "Outfit", serif;
  font-weight: 600;
}

.home_banner .feature i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: var(--falcon-primary);
}

.home_banner form {
  background: #fff;
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

@media (max-width: 575px) {
  .home_banner .badge {
    margin-bottom: 15px;
    font-size: 14px;
    padding: 10px;
  }
  
  .home_banner h1 {
    font-size: 40px;
  }

  .home_banner h2 {
    font-size: 16px;
  }
}

.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 .badge{
  display: inline-block;
  background: var(--falcon-white);
  color: var(--falcon-primary);
  padding: 6px 14px 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--falcon-primary);
  border-left: 4px solid var(--falcon-primary);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-family: "Outfit", serif;
  color: var(--falcon-primary);
}

.info-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  transition: .35s;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 24px;
}

.blue {
  background: #2563eb;
}

.orange {
  background: #ff7a1a;
}

.green {
  background: #16c55f;
}

.purple {
  background: #6547d9;
}

.info-card h4 {
  font-family: "Outfit", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--falcon-primary);
  margin-bottom: 18px;
}

.info-card p {
  text-align: justify;
  margin-bottom: 0;
}

@media(max-width:991px) {
  .info-card {
    padding: 25px;
  }

  .info-card h4 {
    font-size: 22px;
  }
}

@media(max-width:576px) {
  .info-card {
    text-align: left;
  }
}

.blog-card {
  background: #fff;
  border: 1px solid #e9edf5;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all .35s ease;
  box-shadow: 0 6px 20px rgba(15, 23, 42, .04);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  margin-bottom: 18px;
  font-size: 14px;
  color: #7b8794;
  font-weight: 500;
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.blog-meta i {
  color: var(--falcon-primary);
  font-size: 14px;
}

.blog-content h4 {
  font-family: "Outfit", serif;
  line-height: 1.3;
  font-weight: 700;
  color: var(--falcon-secondary);
  margin-bottom: 16px;
  transition: .3s;
}

.blog-card:hover h4 {
  color: var(--falcon-primary);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--falcon-primary);
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  transition: .3s;
}

.read-more i {
  transition: .3s;
}

.blog-card:hover .read-more i {
  transform: translateX(6px);
}

.blog-card:hover .read-more {
  color: var(--falcon-secondary);
}

.hover-underline {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

.page-breadcrumb {
  position: relative;
  padding: 50px 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: linear-gradient(270deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-breadcrumb::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--falcon-primary) 0%, var(--falcon-secondary) 100%);
  z-index: 2;
}

.breadcrumb-content {
  font-family: "Outfit", serif;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  margin-left: 100px;
  animation: fadeInUpBreadcrumb 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeInUpBreadcrumb {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb-content h1 {
  font-family: "Outfit", serif;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 40%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 0;
  line-height: 1.1;
}

.breadcrumb-content .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center !important;
  gap: 10px;
  margin-top: 20px;
  padding: 8px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  list-style: none;
}

.breadcrumb-content .breadcrumb li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.breadcrumb-content .breadcrumb li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-content .breadcrumb li a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.breadcrumb-content .breadcrumb li.active {
  color: #ffffff;
  font-weight: 600;
}

.breadcrumb-content .breadcrumb i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media screen and (max-width: 575px) {
  .breadcrumb-content {
    margin-left: 0;
    display: flex;
    margin: 0 20px;
  }

  .breadcrumb-content h1 {
    font-size: 38px;
  }

  .breadcrumb-content .breadcrumb {
    font-size: 14px;
    padding: 6px 18px;
    gap: 8px;
  }
}

.contact-card-premium {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 30px 25px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--falcon-primary-rgb), 0.03) 0%, rgba(var(--falcon-secondary-rgb), 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.contact-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(var(--falcon-primary-rgb), 0.2);
}

.contact-card-premium:hover::before {
  opacity: 1;
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(var(--falcon-primary-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.contact-card-icon i {
  font-size: 22px;
  background: var(--falcon-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

.contact-card-premium:hover .contact-card-icon {
  background: var(--falcon-primary);
  transform: scale(1.05) rotate(8deg);
  box-shadow: 0 8px 16px rgba(var(--falcon-primary-rgb), 0.2);
}

.contact-card-premium:hover .contact-card-icon i {
  -webkit-text-fill-color: #ffffff;
}

.contact-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--falcon-primary);
  margin-bottom: 10px;
  font-family: "Outfit", serif;
}

.contact-card-text {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.5;
}

.contact-card-text a {
  color: #475569;
  text-decoration: none;
  transition: color 0.3s ease;
  word-wrap: break-word;
  word-break: break-word;
}

.contact-card-text a:hover {
  color: var(--falcon-primary);
}

.contact-map-wrapper {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px 15px 5px;
}

.map-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #10b981;
}

.map-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.sitemap-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sitemap-title {
  font-family: "Outfit", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--falcon-primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sitemap-title i {
  background: linear-gradient(135deg, var(--falcon-primary) 0%, var(--falcon-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.sitemap-list li {
  display: block;
}

.sitemap-list li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 550;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sitemap-list li a i {
  font-size: 13px;
  color: rgba(var(--falcon-primary-rgb), 0.65);
  transition: all 0.3s ease;
  width: 20px;
  text-align: center;
}

.sitemap-list li a:hover {
  color: var(--falcon-primary);
  transform: translateX(6px);
}

.sitemap-list li a:hover i {
  color: var(--falcon-secondary);
  transform: scale(1.2);
}

.policy-sidebar {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.policy-nav-title {
  font-family: "Outfit", serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.policy-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-nav-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 8px 12px;
  border-radius: 10px;
}

.policy-nav-links li a:hover {
  background: rgba(var(--falcon-primary-rgb), 0.05);
  color: var(--falcon-primary);
  transform: translateX(4px);
}

.help-card {
  margin-top: 15px;
  background: rgb(var(--falcon-primary-rgb), 0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.help-icon {
  width: 54px;
  height: 54px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.help-icon i {
  font-size: 28px;
  color: var(--falcon-primary);
}

.help-card h4 {
  font-family: "Outfit", serif;
  font-weight: 700;
}

.help-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--falcon-primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: .3s;
}

.help-btn:hover {
  background: var(--falcon-secondary);
}

.help-btn i {
  font-size: 14px;
}

.policy-content-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 45px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Outfit", serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(var(--falcon-primary-rgb), 0.06);
}

.policy-section-header i {
  color: var(--falcon-primary);
  font-size: 18px;
}

.policy-content-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-content-card ul li {
  margin-bottom: 10px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.policy-content-card p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .policy-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .policy-content-card {
    padding: 25px;
  }
}

.thankyou-card{
  background:#fff;
  border-radius:24px;
  padding:30px 60px;
  box-shadow:0 10px 40px rgba(0,0,0,.05);
  text-align:center;
}

.success-icon{
  margin-bottom:20px;
}

.success-circle{
  width:92px;
  height:92px;
  margin:auto;
  border-radius:50%;
  background:rgb(var(--falcon-primary-rgb), 0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.success-circle::before{
  content:"";
  position:absolute;
  width:62px;
  height:62px;
  background:var(--falcon-primary);
  border-radius:50%;
}

.success-circle i{
  position:relative;
  color:#fff;
  font-size:28px;
  z-index:2;
}

.thankyou-card h1{
  font-family:"Outfit", serif;
  font-weight:800;
  color:var(--falcon-primary);
}

.thankyou-card h4{
  font-family: "Outfit", serif;
  color:var(--falcon-secondary);
  font-weight:700;
}

.thankyou-text{
  margin-bottom:30px;
}

.confirmation-box{
  margin-bottom: 30px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:20px 25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;
}

.confirmation-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.confirmation-left i{
  color:var(--falcon-primary);
  font-size:18px;
}

.bottom-info{
  border-top:1px solid #e8edf5;
  padding-top:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.info-item{
  flex:1;
  display:flex;
  align-items:flex-start;
  gap:18px;
  text-align:left;
}

.info-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.info-icon.blue{
  background:#eef3ff;
}

.info-icon.orange{
  background:#fff3ea;
}

.info-icon.blue i{
  color:#1d4ed8;
}

.info-icon.orange i{
  color:#f97316;
}

.info-icon i{
  font-size:24px;
}

.info-content h5{
  font-family: "Outfit", serif;
  font-size: 20px;
  font-weight:700;
  color: var(--falcon-primary);
}

.info-content p{
  margin:0;
}

.info-content a{
  color:var(--falcon-primary);
  font-weight:700;
}

.divider{
  width:1px;
  height:90px;
  background:#e8edf5;
}

@media(max-width:575px){
  .thankyou-card{
    padding:30px 20px;
  }
  .thankyou-card h1{
    font-size:36px;
  }
  .bottom-info{
    flex-direction:column;
  }
  .divider{
    width:100%;
    height:1px;
  }
  .confirmation-box{
    flex-direction:column;
    text-align:center;
  }
  .confirmation-left{
    text-align: center;
  }
}