body {
  font-family: Arial, sans-serif;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  border-radius: 30px;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  margin: 0px 22px;
}

.language-selector-container {
  position: relative;
  display: inline-block;

}

.language-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 6px;
  width: 67px;
  height: 30px;
  color: white;
  background-color: #fff;
}


.div-4 {
  display: flex;
  align-items: center;
  color: black;
}

.img-2 {
  width: 20px;
  height: 20px;
}

.countryCodes {
  font-weight: bold;
}

.language-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  max-height: 90%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  transition: background-color 0.3s ease;
  border-radius: 12px;
  color: #024e69;
}

.language-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid black;

}

.language-popup-content {
  max-height: 80vh;
  overflow-y: auto;
}

.selectedLanguage {
  margin-left: 100px;
  font-weight: 600;
  margin-left: 1px;

}

.suggested-languages,
.all-languages {
  padding: 10px;
}

.language-option {
  display: flex;
  align-items: center;
  position: relative;
  padding: 5px 10px;
  cursor: pointer;
  box-sizing: border-box;
  width: calc(50% - 5px);
  /* Adjust width to account for gap */
  margin-bottom: 5px;
  border: none;
  /* Remove border */
}

.language-option:hover {
  background-color: #007bff;
  /* Set the background to white on hover */
  border-radius: 5px;
  color: white;
  /* Change text color to blue */
}

.language-option .tick-mark {
  display: none;
  position: absolute;
  right: 10px;
  color: green;
  /* Change to the desired tick mark color */
}

.language-option.active .tick-mark {
  display: inline;
}


.language-option .flag-icon {
  margin-right: 5px;
  /* Reduce gap between flag and text */
}

.close-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.language-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  /* Add gap between language options */
  margin-left: 30px;
  /* width:450px; */
}

/* Media queries for mobile responsiveness */
@media (max-width: 600px) {
  .language-popup {
    width: 90%;
    max-height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .selectedLanguage {
    margin-left: 0;
  }

  .language-option {
    width: 100%;
    padding: 10px;
  }

  .language-list {
    margin-left: 0;
  }

  .language-popup-content {
    max-height: 80vh;
  }
}

.div {
  display: flex;
  flex-direction: column;
  padding: 0 3px;
}

.language-selector-container {
  position: relative;
  display: inline-block;

}

.language-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-radius: 6px;
  width: 67px;
  height: 30px;
  color: white;
  background-color: #fff;
}


.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 50px;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  gap: 50px;

}

.card {
  min-width: 200px;
  /* Adjust as needed */
  margin-right: 10px;
  flex-shrink: 0;
}

.card-img {
  width: 100%;
  height: auto;
}

.card-content {
  text-align: start;
  padding: 16px;
  height: 200px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 30px;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


.about-us {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  justify-content: start;
}

@media (max-width: 991px) {
  .about-us {
    max-width: 100%;
  }
}

.hero-section {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 22px 80px 160px;
  background-image: url(img/hero-img2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .hero-section {
    max-width: 100%;
    padding: 12px;
  }
}

.header {
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  width: 100%;
  padding-left: 32px;
  align-items: center;
  gap: 40px 100px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  justify-content: space-between;
  flex-wrap: wrap;

}

@media (max-width: 991px) {
  .header {
    max-width: 100%;
    padding: 20px;
  }
}

.img {
  aspect-ratio: 2.29;
  object-fit: contain;
  object-position: center;
  width: 94px;
  align-self: stretch;
  margin: auto 0;
  margin-left: 12px;
}

.header-2 {
  border-radius: 50px;
  align-self: stretch;
  display: flex;
  min-width: 240px;
  align-items: start;
  gap: 28px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto 0;
  padding: 16px 36px;
}

@media (max-width: 991px) {
  .header-2 {
    max-width: 100%;
    padding: 0 20px;
  }
}

.div-2 {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 28px;
  justify-content: center;
  font: 400 16px/30px Poppins, sans-serif;
}

@media (max-width: 991px) {
  .div-2 {
    max-width: 100%;
    justify-content: flex-start;
  }
}

.nav-→-list-→-item-→-link-→-home {
  align-self: stretch;
  margin: auto 0;
}

.nav-→-list-→-item-→-link-→-company {
  align-self: stretch;
  margin: auto 0;
}

.nav-→-list-→-item-→-link-→-services {
  align-self: stretch;
  margin: auto 0;
}

.nav-→-list-→-item-→-link-→-works {
  align-self: stretch;
  margin: auto 0;
  color: #0f172a;
}

.nav-→-list-→-item-→-link-→-blog {
  align-self: stretch;
  margin: auto 0;
  color: #0f172a;
}

.div-3 {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  justify-content: center;
}

@media (max-width: 991px) {
  .div-3 {
    white-space: initial;
    justify-content: left;
  }
}

.div-4 {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font: 400 16px/30px Poppins, sans-serif;
  color: black;
}

@media (max-width: 991px) {
  .div-4 {
    white-space: initial;
  }
}

.img-2 {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}

.div-5 {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: start;
  margin: auto 0;
}

@media (max-width: 991px) {
  .div-5 {
    white-space: initial;
  }
}

.img-3 {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 20px;
  align-self: stretch;
  margin: auto 0;
}

.bttn {
  border-radius: 100px;
  background-color: rgba(2, 78, 105, 1);
  overflow: hidden;
  margin: auto 0;
  padding: 6px 33px;
  text-decoration: none;
}

@media (max-width: 991px) {
  .bttn {
    white-space: initial;
    padding: 4px 16px;
    width: 100%;
    display: flex;
  }
}

/* .btn-2 {
  border-radius: 100px;
  background-color: rgba(2, 78, 105, 1);
  align-self: stretch;
  overflow: hidden;
  width: 100px;
  margin: auto 0;
  padding: 9px 27px;
}
@media (max-width: 991px) {
  .btn-2 {
    white-space: initial;
    padding: 0 20px;
    width: 100%;
    display: flex;
  }
} */
.div-6 {
  display: flex;
  margin-top: 8px;
  width: 100%;
  justify-content: start;
}

@media (max-width: 991px) {
  .div-6 {
    max-width: 100%;
    margin-top: 40px;
    flex-direction: column;
    padding: 8px;
  }
}

.explore-dream {
  align-self: start;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  font-family: Poppins, sans-serif;
  color: rgb(255, 255, 255);
  font-weight: 500;
  justify-content: center;
  width: 617px;
}

@media (max-width: 991px) {
  .explore-dream {
    max-width: 100%;
  }
}

.on-a-global-scale {
  font: 700 48px/64px El Messiri, sans-serif;
  padding-top: 100px;
}

@media (max-width: 991px) {
  .on-a-global-scale {
    max-width: 100%;
    font-size: 40px;
    line-height: 47px;
  }
}

.travel-requirements {
  font-size: 20px;
  margin-top: 14px;
  line-height: 30px;
}

@media (max-width: 991px) {
  .travel-requirements {
    max-width: 100%;
  }
}

.button-1 {
  align-self: start;
  position: relative;
  display: flex;
  margin-top: 14px;
  min-height: 53px;
  align-items: flex-start;
  gap: 10px;
  overflow: hidden;
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  letter-spacing: -0.54px;
  line-height: 29px;
  justify-content: center;
  padding: 13px 80px;
}

@media (max-width: 991px) {
  .button-1 {
    padding: 0 20px;
  }
}

.rectangle {
  border-radius: 30px;
  background-color: rgba(2, 78, 105, 1);
  align-self: start;
  position: absolute;
  z-index: 0;
  display: flex;
  height: 54px;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 258px;
}

.button-name {
  z-index: 0;
  margin: auto 0;
}

.explore-dream-2 {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  min-width: 240px;
  flex-direction: column;
  justify-content: start;
  width: 740px;
}

@media (max-width: 991px) {
  .explore-dream-2 {
    max-width: 100%;
  }
}

.img-4 {
  aspect-ratio: 1.39;
  object-fit: contain;
  object-position: center;
  width: 740px;
  max-width: 100%;
}

.media {
  background-color: rgb(254, 254, 254);
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  justify-content: start;
  padding: 40px 80px;
}

@media (max-width: 991px) {
  .media {
    max-width: 100%;
    padding: 20px;
  }
}

.title {
  display: flex;
  width: 100%;
  flex-direction: column;
  color: rgba(12, 31, 38, 1);
  justify-content: start;
}

@media (max-width: 991px) {
  .title {
    max-width: 100%;
    padding: 12px;
  }
}

.text {
  border-radius: 0px 0px 0px 0px;
  max-width: 100%;
  text-align: center;
  font: 700 48px/1 El Messiri, sans-serif;
}

@media (max-width: 991px) {
  .text {
    max-width: 100%;
    font-size: 40px;
  }
}

.Sub-text {
  margin-top: 10px;
  font: 500 20px Poppins, sans-serif;
  text-align: center;
  display: flex;
}

@media (max-width: 991px) {
  .Sub-text {
    max-width: 100%;
  }
}

.div-7 {
  align-self: center;
  display: flex;
  margin-top: 10px;
  align-items: center;
  gap: 40px;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .div-7 {
    max-width: 100%;
  }
}

.card-test-1 {
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: start;
  width: 311px;
  margin: auto 0;
}

.div-8 {
  border-radius: 18px;
  display: flex;
  max-width: 100%;
  width: 311px;
  flex-direction: column;
  overflow: hidden;
}

.img-5 {
  aspect-ratio: 1.54;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.the-transfer-and-distribution-of-products-by-an-air-carrier-which-could-be-commercial-or-charter-is-known-as-air-freight-package-delivery {
  flex: 1;
  margin-top: 10px;
  min-height: 200px;
  max-width: 100%;
  width: 311px;
  gap: 10px;
  overflow: hidden;
  color: rgba(92, 102, 102, 1);
  padding: 7px 16px 102px;
  font: 500 16px/20px Poppins, sans-serif;
}

@media (max-width: 991px) {
  .the-transfer-and-distribution-of-products-by-an-air-carrier-which-could-be-commercial-or-charter-is-known-as-air-freight-package-delivery {
    padding-bottom: 100px;
  }
}

.card-test-2 {
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: start;
  width: 311px;
  margin: auto 0;
}

.div-9 {
  border-radius: 18px;
  display: flex;
  max-width: 100%;
  width: 311px;
  flex-direction: column;
  overflow: hidden;
}

.img-6 {
  aspect-ratio: 1.54;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.card-test-3 {
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: start;
  width: 311px;
  margin: auto 0;
}

.div-10 {
  border-radius: 18px;
  display: flex;
  max-width: 100%;
  width: 311px;
  flex-direction: column;
  overflow: hidden;
}

.img-7 {
  aspect-ratio: 1.54;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.testimonials {
  /* background-color: rgba(6, 24, 32, 1); */
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  justify-content: start;
  padding: 80px;
}

@media (max-width: 991px) {
  .testimonials {
    max-width: 100%;
    padding: 20px;
  }
}

.title-2 {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  color: rgb(255, 255, 255);
  text-align: center;
  justify-content: start;
  font: 700 48px/1 El Messiri, sans-serif;
}

@media (max-width: 991px) {
  .title-2 {
    font-size: 40px;
  }
}

.text-2 {
  border-radius: 0px 0px 0px 0px;
  width: 100%;
}

@media (max-width: 991px) {
  .text-2 {
    max-width: 100%;
    font-size: 40px;
  }
}

.div-11 {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  justify-content: start;
  flex-grow: 1;
  width: 450px;
  margin: auto 0;
}

@media (max-width: 991px) {
  .div-11 {
    max-width: 100%;
  }
}

.test-1 {
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  min-height: 198px;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  padding: 19px 17px;
  border: 1px solid rgb(32, 119, 157);
}

@media (max-width: 991px) {
  .test-1 {
    max-width: 100%;
  }
}

.make-a-change {
  line-height: 30px;
  align-self: center;
}

@media (max-width: 991px) {
  .make-a-change {
    max-width: 100%;
  }
}

.div-12 {
  display: flex;
  margin-top: 10px;
  width: 100%;
  align-items: center;
  gap: 40px 100px;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .div-12 {
    max-width: 100%;
  }
}

.e-velez-colombia {
  align-self: stretch;
  margin: auto 0;
}

.img-8 {
  aspect-ratio: 5.49;
  object-fit: contain;
  object-position: center;
  width: 132px;
  align-self: stretch;
  margin: auto 0;
}

.test-2 {
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  margin-top: 22px;
  min-height: 198px;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  padding: 19px 17px;
  border: 1px solid rgba(6, 24, 32, 1);
}

@media (max-width: 991px) {
  .test-2 {
    max-width: 100%;
  }
}

.div-13 {
  display: flex;
  margin-top: 10px;
  width: 100%;
  align-items: center;
  gap: 40px 100px;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .div-13 {
    max-width: 100%;
  }
}

.img-9 {
  aspect-ratio: 5.49;
  object-fit: contain;
  object-position: center;
  width: 132px;
  align-self: stretch;
  margin: auto 0;
}

.img-10 {
  aspect-ratio: 1.45;
  object-fit: contain;
  object-position: center;
  width: 536px;
  align-self: stretch;
  min-width: 240px;
  flex-grow: 1;
  margin: auto 0;
}

@media (max-width: 991px) {
  .img-10 {
    max-width: 100%;
  }
}

.why-choose-us {
  background-color: rgba(232, 237, 239, 1);
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 40px 0;
}

@media (max-width: 991px) {
  .why-choose-us {
    max-width: 100%;
  }
}

.title-3 {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  color: rgba(12, 31, 38, 1);
  text-align: center;
  justify-content: start;
  font: 700 48px/1 El Messiri, sans-serif;
}

@media (max-width: 991px) {
  .title-3 {
    font-size: 40px;
  }
}

.text-3 {
  border-radius: 0px 0px 0px 0px;
  width: 100%;
}

@media (max-width: 991px) {
  .text-3 {
    font-size: 40px;
  }
}

.div-14 {
  display: flex;
  margin: 40px;
  align-items: center;
  gap: 14px;
  font-family: Inter, sans-serif;
  color: rgba(255, 255, 255, 1);
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .div-14 {
    max-width: 100%;
    justify-content: center;
  }
}

.card-1 {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  overflow: hidden;
  justify-content: end;
  width: 388px;
  margin: auto 0;
  background-image: url(img/card-img1.svg);
  padding: 200px 31px 60px;
}

@media (max-width: 991px) {
  .card-1 {
    padding: 100px 20px 0;
  }
}

.div-15 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.built-for-everyone {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.our-customizable-and-flexible-subscription-models-are-built-for-teams-of-1-to-1-000 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 10px;
}

.card-2 {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  overflow: hidden;
  justify-content: end;
  width: 388px;
  margin: auto 0;
  background-image: url(img/card-img2.svg);
  padding: 200px 31px 60px;
}

@media (max-width: 991px) {
  .card-2 {
    padding: 100px 20px 0;
  }
}

.div-16 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.exclusive-savings {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.we-offer-the-best-exclusive-rates-with-savings-up-to-45-off-compared-to-our-leading-competitors {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 10px;
}

.card-3 {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  overflow: hidden;
  justify-content: end;
  width: 388px;
  margin: auto 0;
  background-image: url(img/card-img3.svg);
  padding: 200px 31px 60px;
}

@media (max-width: 991px) {
  .card-3 {
    padding: 100px 20px 0;
  }
}

.div-17 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.customizable {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.customize-your-operations-finances-and-reports-to-perfectly-match-your-teams-needs {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 10px;
}

.all-in-one {
  position: relative;
  display: flex;
  width: 100%;
  align-items: start;
  overflow: hidden;
  justify-content: center;
  padding: 40px;
  background-repeat: no-repeat;
  background-image: url(img/bg1.png);
  background-size: cover;
  background-position: center;

}

@media (max-width: 991px) {
  .all-in-one {
    max-width: 100%;
    padding: 20px;
  }
}

.aall-in-one {
  background-color: rgba(255, 255, 255, 1);
  position: relative;
  display: flex;
  width: 100%;
  align-items: start;
  overflow: hidden;
  font-family: Calibri, sans-serif;
  letter-spacing: -0.25px;
  justify-content: center;
  padding: 40px;
  background-repeat: no-repeat;
  background-image: url(img/bg.jpg);
  background-size: cover;
  background-position: center;

}

@media (max-width: 991px) {
  .aall-in-one {
    max-width: 100%;
    padding: 20px;
  }
}

.get-started-btn {
  background-color: rgba(2, 78, 105, 1);
  border: none;
  color: white;
  padding: 12px 42px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 10px 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  width: 200px;
}

.get-started-btn:hover {
  background-color: #45a049;
  /* Darker green on hover */
}

.frame {
  position: absolute;
  z-index: 0;
  display: flex;
  min-width: 240px;
  height: 312px;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 1440px;
}

@media (max-width: 991px) {
  .frame {
    max-width: 100%;
  }
}

.rectangle-2 {
  position: absolute;
  z-index: 0;
  display: flex;
  min-width: 240px;
  height: 312px;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
}

@media (max-width: 991px) {
  .rectangle-2 {
    max-width: 100%;
  }
}

.auto-layout-vertical {
  align-self: stretch;
  z-index: 0;
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: start;
  flex: 1;
  flex-basis: 0%;
  margin: auto 0;
}

@media (max-width: 991px) {
  .auto-layout-vertical {
    max-width: 100%;
    padding: 12px;
  }
}

.auto-layout-vertical-2 {
  display: flex;
  width: 100%;
  padding: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

@media (max-width: 991px) {
  .auto-layout-vertical-2 {
    max-width: 100%;
  }
}

.your-all-in-one-travel-app {
  color: rgba(2, 36, 123, 1);
  font-size: 57px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 991px) {
  .your-all-in-one-travel-app {
    max-width: 100%;
    font-size: 40px;
  }
}

.only-on-the-app {
  color: rgba(0, 0, 0, 1);
  font-size: 20px;
  text-align: center;
  margin-top: 18px;
  width: 80%;
}

@media (max-width: 991px) {
  .only-on-the-app {
    max-width: 100%;
  }
}

.aonly-on-the-app {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 18px;
}

@media (max-width: 991px) {
  .only-on-the-app {
    max-width: 100%;
  }
}

.footer-4-c {
  background-color: rgba(6, 24, 32, 1);
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 40px 0;
}

@media (max-width: 991px) {
  .footer-4-c {
    max-width: 100%;
    padding: 22px;
  }
}

.div-18 {
  display: flex;
  width: 1122px;
  max-width: 100%;
  align-items: center;
  gap: 40px 100px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  justify-content: space-between;
  flex-wrap: wrap;
}

.div-19 {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  justify-content: start;
  width: 720px;
  margin: auto 0;
}

@media (max-width: 991px) {
  .div-19 {
    max-width: 100%;
  }
}

.img-11 {
  aspect-ratio: 2.26;
  object-fit: contain;
  object-position: center;
  width: 122px;
  max-width: 100%;
}

.we-create-unforgettable-travel-experiences-that-you-will-cherish-all-your-life {
  color: var(--White-900, #fff);
  font-size: 18px;
  line-height: 28px;
  margin-top: 32px;
}

.menu-categories {
  display: flex;
  margin-top: 32px;
  width: 100%;
  align-items: start;
  gap: 40px 48px;
  font-size: 16px;
  color: var(--Gray-400, #8896ab);
  white-space: nowrap;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .menu-categories {
    max-width: 100%;
    white-space: initial;
  }
}

.img-12 {
  aspect-ratio: 1.43;
  object-fit: contain;
  object-position: center;
  width: 166px;
  border-radius: 5px;
  align-self: stretch;
  margin: auto 0;
  height: 55px;
}

.div-20 {
  min-height: 0px;
  margin-top: 48px;
  max-width: 1122px;
  border-bottom: 1px solid rgba(51, 63, 81, 1);
  width: 100%;
}

@media (max-width: 991px) {
  .div-20 {
    margin-top: 40px;
    padding-left: 0;
  }
}

.div-21 {
  display: flex;
  margin-top: 48px;
  width: 1130px;
  max-width: 100%;
  align-items: center;
  gap: 40px 100px;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .div-21 {
    margin-top: 40px;
  }
}

.rights-reserved {
  color: var(--Gray-400, #8896ab);
  align-self: stretch;
  margin: auto 0;
  font: 500 16px Poppins, sans-serif;
}

.div-22 {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 34px;
  justify-content: start;
  margin: auto 0;

}

.img-13 {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}

.img-14 {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}

.img-15 {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}

.img-16 {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}

.img-17 {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}

.img-50 {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 42px;
  align-self: stretch;
  margin: auto 0;
}

.img-51 {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 46px;
  align-self: stretch;
  margin: auto 0;
}

.play-app-store {
  display: flex;
  flex-direction: column;
  gap: 12px;
}




.great-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 110px;
  background-color: floralwhite;
}

@media (max-width: 991px) {
  .great-features {
    padding: 12px 20px;
  }
}

.great-features2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 110px;
  background-color: rgba(232, 237, 239, 1);
}

@media (max-width: 991px) {
  .great-features2 {
    padding: 12px 20px;
  }
}

.great-features3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 110px;
  background-color: rgba(238, 244, 237, 1);
}

@media (max-width: 991px) {
  .great-features3 {
    padding: 12px 20px;
  }
}

.div-get {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .div-get {
    max-width: 100%;
  }
}

.images-get {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  width: 595px;
  margin: auto 0;
  align-items: center;
}

@media (max-width: 991px) {
  .images-get {
    max-width: 100%;
  }
}

.bg-get {
  border-radius: 20%;
  background-color: var(--Blue-shade, #ebf6ff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 60px;
  background-image: url(img/confident-businesspeople.svg);
  height: 500px;
  width: 500px;
}

@media (max-width: 991px) {
  .bg-get {
    max-width: 100%;
    padding: 0 20px;
  }
}

.bg-get2 {
  border-radius: 20%;
  background-color: var(--Blue-shade, #ebf6ff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 60px;
  background-image: url(img/group-people.svg);
  height: 500px;
  width: 500px;
}

@media (max-width: 991px) {
  .bg-get2 {
    max-width: 100%;
    padding: 0 20px;
  }
}

.bg-get3 {
  border-radius: 20%;
  background-color: var(--Blue-shade, #eef4ed);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 60px;
  background-image: url(img/global.svg);
  height: 500px;
  width: 500px;
}

@media (max-width: 991px) {
  .bg-get3 {
    max-width: 100%;
    padding: 0 20px;
  }
}

.img-get {
  aspect-ratio: 0.49;
  object-fit: contain;
  object-position: center;
  width: 262px;
  max-width: 100%;
}

.right-side-content {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  font-family: Poppins, sans-serif;
  flex: 1;
  flex-basis: 0%;
  margin: auto 0;
}

@media (max-width: 991px) {
  .right-side-content {
    max-width: 100%;
  }
}

.title {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: start;

}

@media (max-width: 991px) {
  .title {
    max-width: 100%;
  }
}

.ardor-connect {
  color: var(--Typography-heading-color, #0c1f26);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .ardor-connect {
    font-size: 40px;
  }
}

.practical-applications {
  color: var(--Typography-paragraph-color, #5c6666);
  leading-trim: both;
  text-edge: cap;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-top: 24px;
}

@media (max-width: 991px) {
  .practical-applications {
    max-width: 100%;
  }
}

.div-2-get {
  display: flex;
  margin-top: 24px;
  width: 100%;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  justify-content: start;
  flex-wrap: wrap;
  font: 700 17px/1 Roboto, sans-serif;
}

@media (max-width: 991px) {
  .div-2-get {
    max-width: 100%;
  }
}


.button-1 {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* Smooth color transition */
}

.rectangle {
  width: 100%;
  height: 100%;
  background-color: #007bff;
  /* Initial color */
  transition: background-color 0.3s ease;
  /* Smooth color transition */
}

.button-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
}

.button-1:hover .rectangle {
  background-color: #0056b3;
  /* Color on hover */
}

.button-name:hover {
  color: white;
}

.button-1 {
  align-self: start;
  position: relative;
  display: flex;
  width: 40%;
  margin-top: 14px;
  min-height: 53px;
  align-items: flex-start;
  gap: 10px;
  overflow: hidden;
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.54px;
  line-height: 29px;
  justify-content: center;
  padding: 12px 80px;
}

.rectangle {
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  align-self: start;
  position: absolute;
  z-index: 0;
  display: flex;
  height: 53px;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.button-name {
  z-index: 0;
  margin: auto 0;
  color: rgba(2, 78, 105, 1);

}


.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.popup-content {
  background-color: #f9f9f9;
  width: 320px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-content h2 {
  font-size: 24px;
  text-align: center;
}

/* Styles for the form */
.popup-form input[type="text"],
.popup-form input[type="email"],
.popup-form input[type="date"],
.popup-form textarea {
  width: calc(100% - 2px);
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.select-time {
  width: calc(100% - 2px);
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.popup-form button {
  width: 100%;
  padding: 12px 0;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.popup-form button:hover {
  background-color: #0056b3;
}

.close-btn {
  position: relative;
  margin-left: 16rem;
  cursor: pointer;
}

.play-app-store {
  display: flex;
  flex-direction: column;
  gap: 12px;
}



.testimonial {
  display: flex;
  margin-top: 18px;
  width: 100%;
  align-items: center;
  gap: 40px 58px;
  color: rgba(0, 0, 0, 1);
  letter-spacing: -0.25px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  font: 400 20px Calibri, sans-serif;
}

@media (max-width: 991px) {
  .testimonial {
    max-width: 100%;
  }
}

.testimonial-container {
  position: relative;
  width: 585px;
  height: 280px;
  overflow: hidden;
  margin: auto;
  border: 2px solid #0f172a;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .testimonial-container {
    max-width: 100%;
    height: 416px;
  }
}

.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}

/* .testimonial {
  padding: 20px;
  box-sizing: border-box;
} */

.quote {
  font-size: 20px;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-img {
  width: 150px;
  height: 50px;
  border-radius: 50%;
}

.arrows {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.arrow-left,
.arrow-right {
  cursor: pointer;
  font-size: 24px;
}

/* Style for the scroll-to-top button */
#scrollTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 50px;
  z-index: 99;
  font-size: 18px;
  background-color: rgba(2, 78, 105, 1);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 50px;
}

#scrollTopBtn:hover {
  background-color: #333;
  /* Darken the button when hovered */
}



/* Button Style */
.btn-2 {
  background-color: rgba(2, 78, 105, 1);
  color: white;
  padding: 6px 33px;
  font-size: 16px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  /* Positions the menu below the button */
  left: 0;
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 5px 0 0;
  min-width: 200px;
}

/* Dropdown Items */
.dropdown-menu li {
  padding: 10px;
  text-align: left;
}

.dropdown-menu li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  display: block;
}

.dropdown-menu li:hover a {
  background-color: #efefef;
}

/* Show Dropdown */
.dropdown-menu.show {
  display: block;
}