/* 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);
@import url(toast.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: 200px;
  padding-bottom: 60px;
  background-image: url(../img/banner.png);
  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 h4 {
  font-family: cursive;
  font-style: italic;
}
.home_banner h1 {
  font-family: "Playfair Display", serif;;
  font-size: 70px;
}
.home_banner p {
  font-size: 18px;
  font-family: "Manrope", serif;
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .home_banner {
    padding-top: 150px;
  }
}
@media (max-width: 575px) {
  .home_banner {
    padding-top: 130px;
  }
  .home_banner h1 {
    font-size: 34px;
    margin-bottom: 5px;
  }
  .home_banner p {
    font-size: 16px;
  }
}

.single-feature {
  max-width: 310px;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.single-feature svg {
  fill: var(--falcon-primary);
  margin-bottom: 25px;
}
.single-feature h4 {
  color: var(--falcon-secondary);  
  font-weight: 600;
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-family: "Manrope", serif;
  font-style: normal;
}
.single-feature p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
.single-feature p span {
  color: var(--falcon-secondary);
}

.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;
}


.about-img-area {
  position: relative;
}
.about-img-area .icon {
  width: 110px;
  height: 110px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translateY(-50%);
  z-index: 9;
}
.about-img-area .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background-color: var(--falcon-primary);
  border-radius: 50%;
  z-index: -1;
}
.about-img-area .icon svg {
  fill: #fff;
}
.about-img-area .single-img {
  height: 100%;
}
.about-img-area .single-img img {
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .about-img-area {
    max-width: 700px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .about-img-area {
    max-width: 500px;
  }
}


.why-wrapper {
  position: relative;
  padding: 16px;
  border: 1.5px solid rgba(148, 148, 148, 0.4);
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}
.why-wrapper:hover {
  background: rgb(var(--falcon-primary-rgb), 0.3);
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(17, 34, 17, 0.2);
}
.why-wrapper .why-card {
  display: flex;
  gap: 24px;
  flex-direction: column;
  background: rgba(247, 247, 248, 1);
  box-shadow: none;
  padding: 16px;
  border-radius: 12px;
  border: none;
}
.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  width: 60px;
  height: 60px;
  background-color: var(--falcon-primary);
  border-radius: 10px;
  overflow: hidden;
} 
.why-card .svg-wrapper {
  color: #fff;
  min-width: 32px;
  height: 32px;
}
.why-content h3 {
  font-family: "Manrope", serif;
}
@media (max-width: 991px) {
  .why-content h3 {
    font-size: 20px;
  }
}


.tour-card {
  position: relative;
  --space: 16px;
  transition: all 500ms ease;
}
.tour-card:hover {
  transform: translateY(-5px);
}
.tour-card_img img {
  border-radius: 16px
}
.tour-card .tour-content {
  position: absolute;
  top: var(--space);
  left: var(--space);
  width: calc(100% - var(--space)*2);
  height: calc(100% - var(--space)*2);
  z-index: 2;
  background: rgba(17, 61, 72, 0.5);
  border: 1px solid #fff;
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: end;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  transition: 0.4s ease-in-out;
}
.tour-card:hover .tour-content, .swiper-slide-active .tour-card .tour-content {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.tour-card .box-title {
  color: #fff;
  font-family: "Manrope", serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
.tour-card_price {
  font-family: "Manrope", serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0px
}
.tour-card_price .currency {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.02em;
  color: #fff
}
.tour-card .tour-action {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
.tour-card .tour-action span {
  color: #fff
}
.tour-card .tour-action i {
  margin-right: 8px
}
@media (max-width: 991px) {
  .tour-card .box-title {
    font-size: 24px;
  }
  .tour-card_price .currency {
    font-size: 20px;
  }
}


.blog-card {
  display: grid;
  grid-template-columns: 49% 51%;
  border: 1px solid #E8E8E8;
  border-radius: 20px;
}
.blog-card .blog-img {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 20px;
}
.blog-card .blog-img img {
  border-radius: 20px;
  height: 100%;
  transition: all 0.5s ease-out;
}
.blog-card .blog-img::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.blog-card:hover .blog-img img {
  transform: scale(1.1);
}
.blog-card:hover .blog-img::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.blog-card .blog-content {
  padding: 55px 18px 50px;
}
.blog-card .blog-content .blog-content-top {
  padding-bottom: 20px;
}
.blog-card .blog-content .blog-content-top h4 {
  margin-bottom: 15px;
}
.blog-card .blog-content .blog-content-top h4 a {
  color: var(--falcon-primary);
  font-family: "Manrope", serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.4;
  background: linear-gradient(to bottom, var(--falcon-primary) 0%, var(--falcon-primary) 98%);
  background-size: 0px 1px;
  background-repeat: no-repeat;
  background-position: right 90%;
  transition: background-size 0.75s;
}
.blog-card .blog-content .blog-content-top h4 a:hover {
  background-size: 100% 1px;
  background-position: 0% 90%;
}
.blog-card .blog-content .blog-content-top .blog-date {
  color: #525252;
  font-family: "Manrope", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.5s;
}
.blog-card .blog-content .blog-content-top .blog-date svg {
  fill: #525252;
  transition: 0.5s;
}
.blog-card .blog-content .blog-content-top .blog-date:hover {
  color: var(--falcon-primary);
}
.blog-card .blog-content .blog-content-top .blog-date:hover svg {
  fill: var(--falcon-primary);
}
.blog-card .blog-content .divider {
  fill: #E8E8E8;
  width: 100%;
}
.blog-card .blog-content p {
  color: #525252;
  font-family: "Manrope", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
  padding-top: 15px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-card {
    grid-template-columns: 47% 53%;
  }
  .blog-card .blog-content {
    padding: 55px 15px 50px;
  }
  .blog-card .blog-content .blog-content-top h4 a {
    font-size: 22px;
    line-height: 1.3;
  }
  .blog-card .blog-content p {
    font-size: 17px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card {
    display: block;
  }
  .blog-card .blog-img img {
    max-height: 350px;
    object-fit: cover;
    width: 100%;
  }
  .blog-card .blog-content {
    padding: 30px 20px;
  }
  .blog-card .blog-content .blog-content-top {
    border-bottom: 1px solid #E8E8E8;
  }
  .blog-card .blog-content .blog-content-top .location {
    font-size: 15px;
    margin-bottom: 18px;
  }
  .blog-card .blog-content .blog-content-top h4 a {
    font-size: 24px;
  }
  .blog-card .blog-content .divider {
    display: none;
  }
}
@media (max-width: 767px) {
  .blog-card {
    grid-template-columns: 47% 53%;
  }
  .blog-card .blog-content {
    padding: 45px 10px 40px;
  }
  .blog-card .blog-content .blog-content-top .location {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .blog-card .blog-content .blog-content-top h4 a {
    font-size: 22px;
  }
  .blog-card .blog-content p {
    font-size: 16px;
    padding-top: 10px;
  }
}
@media (max-width: 576px) {
  .blog-card {
    display: block;
    border-radius: 10px;
  }
  .blog-card .blog-img,
  .blog-card .blog-img img {
    border-radius: 10px;
  }
  .blog-card .blog-img img {
    max-height: 250px;
    object-fit: cover;
    width: 100%;
  }
  .blog-card .blog-content {
    padding: 25px 15px;
  }
  .blog-card .blog-content .blog-content-top {
    padding-bottom: 10px;
  }
  .blog-card .blog-content .blog-content-top .blog-date {
    font-size: 15px;
  }
  .blog-card .blog-content p {
    font-size: 15px;
    padding-top: 5px;
  }
}


footer {
  background-image: url(../img/footer-bg.png), linear-gradient(180deg, #110F0F 0%, #110F0F 100%);
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-contact-wrap {
  padding: 45px 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1199px) {
  .footer-contact-wrap {
    flex-direction: column;
  }
}
.footer-contact-wrap .inquiry-area {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-contact-wrap .inquiry-area svg {
  fill: #fff;
}
.footer-contact-wrap .inquiry-area .contents h6 {
  color: #fff;
  font-family: "Manrope", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 5px;
}
.footer-contact-wrap .inquiry-area .contents span {
  color: #AAAAAA;
  font-family: "Manrope", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.footer-contact-wrap .contact-area {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .footer-contact-wrap .contact-area {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }
}
@media screen and (max-width: 575px) {
  .footer-contact-wrap .contact-area {
    gap: 20px;
  }
}
.footer-contact-wrap .contact-area .single-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-wrap .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;
}
.footer-contact-wrap .contact-area .single-contact .contents span {
  color: #AAAAAA;
  font-family: "Manrope", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: block;
  margin-bottom: 7px;
}
.footer-contact-wrap .contact-area .single-contact .contents a {
  color: #fff;
  font-family: "Manrope", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  transition: 0.5s;
}
footer .divider {
  fill: #292727;
  width: 100%;
}
.footer-wrapper {
  padding-top: 30px;
  padding-bottom: 20px;
}
.th-social {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.th-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  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: 150px 0 80px;
  overflow: hidden;
  background-image: url(../img/banner.png);
  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: var(--falcon-secondary);
  z-index: 1;
}
.breadcrumb-content h1 {
  font-family: "Manrope", serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--falcon-secondary);
  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: 575px) {
  .page-breadcrumb {
    padding: 100px 0 30px; 
  }
  .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::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 30px solid var(--falcon-primary);
  opacity: 0.05;
  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;
}