header .desktop-header {
  width: 100%;
  width: 100%;
  position: fixed;
  z-index: 1000;
  background-color: #fff;
  top: 0px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 992px) {
  header .desktop-header {
    display: none;
  }
}
header .desktop-header .container-header {
  max-width: 1250px;
  margin: 0 auto;
}
header .desktop-header .desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
}
header .desktop-header .desktop-nav .logo {
  width: 30%;
}
header .desktop-header .desktop-nav .logo a img {
  width: 100%;
}
header .desktop-header .desktop-nav .nav {
  align-items: center;
}
header .desktop-header .desktop-nav .nav ul {
  display: flex;
  margin: 0px;
  list-style: none;
}
header .desktop-header .desktop-nav .nav ul li .nav-link {
  color: #292A39;
  text-decoration: none;
  margin: 0px 10px;
  position: relative;
  font-size: 15px;
  padding: 0px;
}
@media screen and (max-width: 1199px) {
  header .desktop-header .desktop-nav .nav ul li .nav-link {
    font-size: 13px;
    margin: 0px 5px;
  }
}
header .desktop-header .desktop-nav .nav ul li .nav-link::before {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 0;
  bottom: -3px;
  z-index: 0;
  position: absolute;
  background: #1e89d1;
  transition: all 0.3s ease-in-out;
}
header .desktop-header .desktop-nav .nav ul li :hover {
  background-position: 0%;
}
header .desktop-header .desktop-nav .nav ul li :hover:before {
  width: 100%;
}
header .desktop-header .desktop-nav .nav ul li .nav-link.active {
  border-bottom: 2px solid #1e89d1;
}
header .desktop-header .desktop-nav .nav .enquire-btn {
  margin-left: 40px;
}
@media screen and (max-width: 1199px) {
  header .desktop-header .desktop-nav .nav .enquire-btn {
    margin-left: 0px;
  }
}
header .desktop-header .desktop-nav .nav .enquire-btn .button {
  background: #1e89d1;
  padding: 10px 10px;
  border: none;
  display: block;
  color: #fff;
  text-transform: capitalize;
  height: 48px;
  font-size: 16px;
  text-decoration: none;
}
header .mobile-header {
  display: none;
  color: #000;
  padding: 10px 7px;
  position: fixed;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
  border-bottom: 1px solid #D9D9D9;
  top: -2px;
}
@media screen and (max-width: 992px) {
  header .mobile-header {
    display: block;
  }
}
header .mobile-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .mobile-header .header-content .logo a {
  color: #000;
  text-decoration: none;
  font-size: 24px;
}
header .mobile-header .header-content .logo a img {
  width: 80%;
}
header .mobile-header .header-content .hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
}
header .mobile-header .header-content .hamburger div {
  width: 100%;
  height: 2px;
  background-color: black;
  margin: 4px 0;
  transition: 0.4s;
}
header .mobile-header .header-content .change .bar1 {
  transform: rotate(-45deg) translate(-7px, 7px);
  width: 30px;
}
header .mobile-header .header-content .change .bar2 {
  opacity: 0;
}
header .mobile-header .header-content .change .bar3 {
  transform: rotate(45deg) translate(-7px, -7px);
  width: 30px;
}
header .mobile-header .nav-list {
  display: none;
  flex-direction: column;
  position: absolute;
  background: #FFFFFF;
  z-index: 1000;
  padding: 0px;
  width: 80%;
  height: 1000px;
  transition: all 0.3s ease-in;
  top: 75px;
  right: 0px;
  left: auto;
}
header .mobile-header .nav-list .list-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 20px;
}
header .mobile-header .nav-list .list-bar .logo a {
  color: #292A39;
  text-decoration: none;
  font-size: 24px;
}
header .mobile-header .nav-list .list-bar .close-btn {
  align-self: flex-end;
  padding: 10px;
  font-size: 35px;
  cursor: pointer;
  color: #545454;
}
header .mobile-header .nav-list ul {
  list-style: none;
  width: 100%;
  text-align: left;
  margin: 0px;
  padding: 0px;
}
header .mobile-header .nav-list ul li a {
  display: block;
  padding: 15px 20px;
  color: #292A39;
  text-decoration: none;
  font-size: 18px;
}
header .mobile-header .nav-list.active {
  display: flex;
}

.hero-banner {
  margin-top: 80px;
}
.hero-banner .mySwiper .swiper-wrapper .swiper-slide {
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-banner .mySwiper .swiper-wrapper .swiper-slide .hero-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4588235294);
}
.hero-banner .mySwiper .swiper-wrapper .swiper-slide .hero-content h4 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
.hero-banner .mySwiper .swiper-wrapper .swiper-slide .hero-content p {
  font-size: 17px;
  margin-bottom: 40px;
  color: #fff;
}
.hero-banner .mySwiper .swiper-wrapper .swiper-slide .hero-content .btn {
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  padding: 14px 23px;
  font-weight: 700;
  color: #232323;
}
.hero-banner .mySwiper .swiper-button-next:after {
  content: "next";
  color: #fff;
  font-size: 17px;
  border: 1px solid #fff;
  padding: 10px 15px;
  border-radius: 50px;
}
.hero-banner .mySwiper .swiper-button-prev:after {
  color: #fff;
  font-size: 17px;
  border: 1px solid #fff;
  padding: 10px 15px;
  border-radius: 50px;
}

.services {
  margin: 70px 0px;
  position: relative;
}
.services .bg-img {
  position: absolute;
}
@media screen and (max-width: 600px) {
  .services .bg-img {
    display: none;
  }
}
.services .service-card {
  padding: 10px 0px 10px 10px;
  position: relative;
}
.services .service-card:hover .service-plane {
  opacity: 0.1;
  visibility: visible;
}
.services .service-card .service-plane {
  opacity: 0;
  visibility: hidden;
  content: "";
  font-size: 100px;
  position: absolute;
  right: 50px;
  top: -30px;
  z-index: -1;
  transition: all 0.3sease-in-out 0s;
  color: #1e89d1;
}
.services .service-card h4 {
  margin-top: 20px;
  color: #1e89d1;
}

.packages {
  background-color: #f6f6f6;
  padding: 50px 0px;
}
.packages .bg-img {
  position: absolute;
  right: 0px;
}
@media screen and (max-width: 600px) {
  .packages .bg-img {
    display: none;
  }
}
.packages h6 {
  color: #1e89d1;
  margin-bottom: 15px;
  text-align: center;
}
.packages h4 {
  font-size: 35px;
  text-align: center;
}
.packages p {
  text-align: center;
  margin-bottom: 50px;
}
.packages .tab-section {
  gap: 42px;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 992px) {
  .packages .tab-section {
    flex-direction: column;
    gap: 25px;
  }
}
.packages .tab-section .content-img {
  flex: 1;
}
.packages .tab-section .content-img img {
  width: 100%;
  border: 1px solid #ddd;
}
.packages .tab-section .content-panel {
  flex: 1;
}
.packages .tab-section .content-panel .tab-container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 540px) {
  .packages .tab-section .content-panel .tab-container {
    gap: 10px;
  }
}
.packages .tab-section .content-panel .tab-container .tab {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 10px;
  cursor: pointer;
  color: #232323;
}
@media screen and (max-width: 992px) {
  .packages .tab-section .content-panel .tab-container .tab {
    font-size: 18px;
  }
}
@media screen and (max-width: 540px) {
  .packages .tab-section .content-panel .tab-container .tab {
    font-size: 14px;
  }
}
.packages .tab-section .content-panel .tab-container .tab.active {
  color: #fff;
  background-color: #1e89d1;
  padding: 10px;
  position: relative;
}
.packages .tab-section .content-panel .tab-content {
  display: none;
  margin-top: 50px;
}
.packages .tab-section .content-panel .tab-content .packtab {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
}
.packages .tab-section .content-panel .tab-content .packtab:hover .img {
  bottom: 0%;
}
.packages .tab-section .content-panel .tab-content .packtab img {
  width: 100%;
  height: 100%;
  display: block;
}
.packages .tab-section .content-panel .tab-content .packtab .img {
  position: absolute;
  bottom: -100%; /* Initially hidden below */
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 10px;
  transition: bottom 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.packages .tab-section .content-panel .tab-content .packtab .img h4 {
  font-size: 16px;
}
.packages .tab-section .content-panel button {
  background-color: #2A4D69;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  height: 48px;
}
@media screen and (max-width: 768px) {
  .packages .tab-section .content-panel button {
    height: 44px;
  }
}
.packages .tab-section .content-panel .tab-content.active {
  display: block;
}

.testimonal {
  padding: 70px 0px;
}
.testimonal .bg-img {
  position: absolute;
}
@media screen and (max-width: 600px) {
  .testimonal .bg-img {
    display: none;
  }
}
.testimonal h6 {
  color: #1e89d1;
  margin-bottom: 15px;
  text-align: center;
}
.testimonal h4 {
  font-size: 35px;
  text-align: center;
}
.testimonal p {
  text-align: center;
  margin-bottom: 50px;
}
.testimonal .mySwiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonal .mySwiper .swiper-wrapper .swiper-slide .testinomal {
  padding: 20px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonal .mySwiper .swiper-wrapper .swiper-slide .testinomal h5 {
  align-items: centerf;
}
.testimonal .mySwiper .swiper-wrapper .swiper-slide .testinomal p {
  margin-bottom: 20px;
}

footer {
  padding: 40px 0px;
  background-color: #1e89d1;
}
footer .detail-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
footer .detail-info i {
  color: #fff;
  font-size: 20px;
  padding-right: 10px;
}
footer .detail-info p {
  color: #fff;
  font-size: 20px;
}
footer .footer-links h4 {
  font-size: 20px;
  color: yellow;
}
footer .footer-links a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}
footer .footer-links .general-links {
  display: flex;
  flex-direction: column;
}
footer .footer-links .g-links {
  display: flex;
  flex-direction: column;
}

.standard-trip {
  background-color: #f6f6f6;
  padding: 50px 0px;
}
.standard-trip h4 {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 10px;
}
.standard-trip p {
  text-align: center;
  font-weight: 400;
  padding-bottom: 40px;
}
.standard-trip .img-card {
  position: relative;
  width: 100%;
  height: 200px;
  display:block !important;
  overflow: hidden;
  margin-bottom: 20px;
}
.standard-trip .img-card:hover .hover-info {
  bottom: 0%;
}
.standard-trip .img-card img {
  width: 100%;
  height: 100%;
  display: block;
}
.standard-trip .img-card .hover-info {
  position: absolute;
  bottom: -100%; /* Initially hidden below */
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 10px;
  transition: bottom 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destination {
  padding: 70px 0px 70px;
}
.destination .bg-img {
  position: absolute;
}
@media screen and (max-width: 600px) {
  .destination .bg-img {
    display: none;
  }
}
.destination h6 {
  color: #1e89d1;
  margin-bottom: 15px;
}
.destination h4 {
  font-size: 35px;
}
.destination .mySwiperdes .swiper-wrapper .swiper-slide .img-card {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;
}
.destination .mySwiperdes .swiper-wrapper .swiper-slide .img-card img {
  width: 100%;
  height: 100%;
  display: block;
}
.destination .mySwiperdes .swiper-wrapper .swiper-slide .img-card .hover-info {
  position: absolute;
  bottom: 0%; /* Initially hidden below */
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 10px;
  transition: bottom 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us {
  background-color: #f6f6f6;
  padding: 50px 0px;
}
.about-us h6 {
  color: #1e89d1;
  margin-bottom: 15px;
}
.about-us h4 {
  font-size: 35px;
  margin-bottom: 15px;
}
.about-us p {
  font-size: 16px;
}
.about-us img {
  width: 100%;
}

.contact-sec {
  background-image: url(assets/images/bg-img.jpg);
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: auto;
}
.contact-sec .bg-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 70px 0px;
}
.contact-sec .bg-overlay h6 {
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}
.contact-sec .bg-overlay h4 {
  font-size: 35px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.contact-sec .bg-overlay .bg-white {
  background-color: #fff;
  padding: 40px;
  border-radius: 5px;
}
.contact-sec .bg-overlay .bg-white .get-in-touch-wrapper {
  margin-left: 50px;
}
.contact-sec .bg-overlay .bg-white .get-in-touch-wrapper .icon-text-wrapper {
  border-bottom: 1px solid #ddd;
  padding-top: 15px;
}
.contact-sec .bg-overlay .bg-white .get-in-touch-wrapper .icon-text-wrapper h5 {
  color: #232323;
  text-align: left;
  margin-bottom: 10px;
}
.contact-sec .bg-overlay .bg-white .get-in-touch-wrapper .icon-text-wrapper .info-wrap {
  display: flex;
}
.contact-sec .bg-overlay .bg-white .get-in-touch-wrapper .icon-text-wrapper .info-wrap i {
  font-size: 25px;
  color: #1e89d1;
  padding-right: 20px;
}
.contact-sec .bg-overlay .bg-white form h4 {
  font-size: 42px;
  color: #292A39;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact-sec .bg-overlay .bg-white form h4 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
.contact-sec .bg-overlay .bg-white form .name-flied {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 992px) {
  .contact-sec .bg-overlay .bg-white form .name-flied {
    gap: 15px;
    margin-bottom: 15px;
  }
}
.contact-sec .bg-overlay .bg-white form .name-flied input {
  width: 100%;
  padding: 10px;
  border: 1px solid #3C3B3B;
}
.contact-sec .bg-overlay .bg-white form .name-flied .iti {
  width: 100%;
}
.contact-sec .bg-overlay .bg-white form .email {
  width: 100%;
  padding: 10px;
  margin-bottom: 25px;
  border: 1px solid #3C3B3B;
  border-radius: 5px;
}
@media screen and (max-width: 992px) {
  .contact-sec .bg-overlay .bg-white form .email {
    margin-bottom: 15px;
  }
}
.contact-sec .bg-overlay .bg-white form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #3C3B3B;
  border-radius: 5px;
}
.contact-sec .bg-overlay .bg-white form button {
  width: 100%;
  background: #1e89d1;
  color: #fff;
  padding: 7px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  height: 48px;
}
@media screen and (max-width: 992px) {
  .contact-sec .bg-overlay .bg-white form button {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .contact-sec .bg-overlay .bg-white form button {
    height: 44px;
  }
}

.flotting-icon {
  bottom: 5%;
  right: 10px;
  position: fixed;
}/*# sourceMappingURL=style.css.map */