:root {
  --primary: #1975b5;
  --secondary: #8a2a71;
  --light: #ffd681;
  --dark: #2a2429;
  --dark-2: #4e4c4e;
}
body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--dark-2);
  line-height: 22px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: var(--primary);
}
h1,
.h1 {
  font-size: 64px;
}
h2,
.h2 {
  font-size: 38px;
}
h3 {
  font-size: 58px;
}
h4 {
  font-size: 36px;
}
a {
  color: var(--primary);
}
a:hover {
  color: var(--secondary);
}
b, strong {
    font-weight: 500;
    color: var(--dark);
}
li {
  list-style: none;
}
.hero-section {
  border-radius: 50px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
p.intro-text {
  font-size: 22px;
  color: var(--dark);
}
.hero-section video {
  width: 100%;
  height: calc(100vh - 80px);
  object-fit: cover;
}

#header-carousel .carousel-item img {
  max-width: 100%;
}
.carousel-item:after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0.3;
  content: "";
  top: 0;
  left: 0;
}

.hero-section h1 {
  font-weight: 500;
  text-align: center;
  font-size: 54px;
  line-height: 54px;
}

.hero-section h2 {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #033e7b;
  border-color: #033e7b;
}
.btn-secondary:hover {
  color: #fff !important;
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.text-primary {
  color: var(--primary) !important;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 40px;
  bottom: 40px;
  z-index: 99;
}
.whatsapp-btn{
  position: fixed;
    border-radius: 50%;
    background: var(--secondary);
    width: 48px;
    height: 48px;
    bottom: 95px;
    right: 40px;
    text-align: center;
    padding: 12px;

}
.footer-bg-logo {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.5;
  z-index: 1;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 400;
  padding: 15px 35px;
  font-size: 14px;
  color: #fff;
  border-radius: 60px;
}
.btn-secondary {
  background: var(--secondary);
  border-color: var(--secondary);
}
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
  margin-right: 38px;
  padding: 16px 0;
  color: var(--dark);
  font-size: 14px;
  outline: none;
}
.navbar .navbar-nav .nav-link.btn {
  color: #fff;
  padding: 15px 32px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
  .hero-section h1 {
    font-size: 55px;
    line-height: 55px;
  }
  
}

/*** Header ***/
.carousel-caption {
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  transform: translate(0, -50%);

  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

.page-header {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.page-header .title {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.page-header h2,
.package-title h2 {
  font-size: 36px;
  line-height: 38px;
}
.page-header p {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--secondary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--secondary);
}
.about-intro {
 font-weight: 500;
  color: var(--primary);
  font-size: 22px;
  line-height: 32px;
}
.packages.owl-carousel .owl-nav{
    position: absolute;
    top: -90px;
    right: 0;
}
.packages.owl-carousel .owl-nav .owl-prev{
  margin-right: 8px;

}
/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 50%;
  left: -40px;
  background: var(--secondary);
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/*** About ***/
.about-experience {
  position: absolute;
  width: 100%;
  height: 100%;
  right: -45px;
  bottom: -45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  line-height: 20px;
}
.curved_box {
  position: relative;
  background: var(--primary);
  border-radius: 40px 0 40px 40px;
  padding: 45px;
}
.curved_box.secondary {
  background: var(--secondary);
}
.curved_box:after {
  position: absolute;
  top: 0;
  background: url(../img/box-curve-pri.svg);
  width: 101px;
  height: 82px;
  right: 0;
  content: "";
}
.curved_box.secondary:after {
  background: url(../img/box-curve-sec.svg);
}
.curved_box h3 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 20px;
}
.sky-scrapers {
  position: absolute;
  right: 0;
  opacity: 0.1;
}
.services h4 {
  font-size: 20px;
  position: absolute;
  bottom: 3px;
  left: 12px;
  color: var(--dark);
}
.services.left h4 {
  right: 12px;
  left: auto;
}

/*** Service ***/
.service-item {
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  border-radius: 10px;
}

.service-item .service-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  z-index: 1;
}

.service-item .service-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  transition: 0.5s ease-out;
  z-index: 2;
}

.service-item:hover .service-img::after {
  width: 0;
  left: auto;
  right: 0;
}

.service-item .service-text .service-icon {
  width: 140px;
  height: 140px;
  padding: 15px;
  margin-top: -70px;
  margin-bottom: 40px;
  background: #ffffff;
  border-radius: 140px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
}

.service-item .service-text h5,
.service-item .service-text p {
  transition: 0.5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
  color: #ffffff;
}

.service-item .service-text .btn {
  color: var(--secondary);
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.25);
}

.service-item .service-text .btn:hover {
  color: var(--dark);
  background: var(--secondary);
}

/*** packages ***/
.hol-package-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}
.hol-package-item > img{
  max-height: 413px;
  height: 413px;
  object-fit: cover;
}
.hol-package-item:after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: #000000;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(237, 221, 83, 0) 100%
  );
  opacity: 0.45;
  z-index: 1;
}

.hol-package-item .content-overlay {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 20px;
  transition: 0.5s;
  color: #fff;
  z-index: 2;
  transform: translateY(60px);
}
.hol-package-item .content-overlay a {
  border-radius: 50%;
  background: var(--secondary);
  width: 52px;
  height: 52px;
  color: #fff;
  transform: translateY(13px);
}
.hol-package-item .content-overlay h4 {
  color: #fff;
  font-size: 22px;
  line-height: 25px;
}

.hol-package-item:hover .content-overlay {
  opacity: 1;
  transform: translateY(0);
}
.hol-package-item:hover .content-overlay a {
  transform: translateY(0);
}

.tag {
  background: var(--primary);
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  padding: 3px 5px;
  margin-bottom: 8px;
  display: inline-block;
  letter-spacing: 0.5;
}
.package-title {
  padding: 25px 0;
}
.package-cover-img {
  border-radius: 40px;
  min-height: 285px;
  max-height: 285;
  object-fit: cover;
}
.nav-tabs {
  border-color: #e9e9e9;
}
p {
  line-height: 26px;
}
a.tab-link {
  color: var(--dark-2);
  font-size: 16px;
  margin: 0;
  padding: 15px 13px;
  display: inline-block;
  display: block;
  margin-bottom: -1px;
}
a.tab-link.active {
  color: var(--primary);
  font-weight: 500;
  border-bottom: 3px solid var(--primary);
}

.day {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}
.itinerary-item {
  border-bottom: 1px dashed #c4c4c4;
  padding: 40px 0;
 
}
.itinerary-item-outer .itinerary-item:last-child {
  border: 0;
}
.itinerary-item h4 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 20px;
  display: block;
}
.itinerary-item ul li,.curved_box ul li {
  list-style: disc;
  margin-bottom: 4px;
}
.itinerary-item ul, .curved_box ul  {
  padding-left: 18px;
  margin-bottom:20px;
}
.itinerary-item img {
  border-radius: 15px;
  object-fit: cover;
  max-height: 280px;
  margin: 20px 0;
}
.itinerary-item table{
  font-size: 14px;
  width: 100%;
}
.itinerary-item table tr{
  border-bottom: 1px solid #c4c4c4;
  
}
.itinerary-item table td{
  padding: 10px ;

}
.nav-tabs-outer.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  left: 0;
  z-index: 100;
}
.nav-tabs-outer.sticky ul {
  max-width: 1272px;
  margin: 0 auto;
}
.curved_box h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

/*** Team ***/
.team-item {
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item .btn {
  border-color: transparent;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

/*** Testimonial ***/
.testimonial-img {
  position: relative;
  min-height: 400px;
}

.testimonial-img::after {
  position: absolute;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 200px;
  color: #eeeeee;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.testimonial-img img {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
  top: 0;
  left: 0;
}

.testimonial-img img:nth-child(2) {
  top: 60%;
  left: 20%;
}

.testimonial-img img:nth-child(3) {
  top: 20%;
  left: 60%;
}

.testimonial-img img:nth-child(4) {
  bottom: 0;
  right: 0;
}

.testimonial-img img .animated.pulse {
  animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-right: 15px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border-radius: 45px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
  color: var(--dark);
}

/*** Footer ***/
.footer {
  color: #8f94a6;
  background: #3a3e4b;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}
.footer p,
.footer h5 {
  color: #8f94a6;
}
.footer a {
  color: #8f94a6;
}
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #b0b9ae;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
  font-size: 14px;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}
.copyright {
  border-top: 1px solid #484c5b;
}
.navbar-brand img {
  width: 115px;
}
.header-fixed .navbar-brand img {
  width: 80px;
  transition: all 0.3s;
}

.font-10 {
  font-size: 10px;
}
.font-12 {
  font-size: 12px;
  line-height: 16px;
}
.font-14 {
  font-size: 14px;
  line-height: 18px;
}
.header-sticky .navbar-brand img {
  width: 75px;
  transition: all 0.3s;
}
.wa-enquiry{
  background: var(--secondary);
  color: #ffffff;
  font-size: 16px;
  display: block;
  text-align: center;
  border-radius: 40px;
  padding: 18px;
  font-weight: 500;
  margin-top: 10px;
}
.wa-enquiry:hover{
  color: #fff;
  opacity: .95;
}
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}
@media (max-width: 768px) {
  body {
    padding: 5px;
  }
  .product-item {
    border-radius: 40px;
  }
  h1 {
    font-size: 46px;
  }
  h3 {
    font-size: 42px;
  }
  .hero-section h1 {
    font-size: 36px;
    line-height: 36px;
  }
  .hero-section h2 {
    font-size: 18px;
  }
  
  .brands-slider {
    margin: 0;
  }
  p.intro-text {
    font-size: 16px;
  }
  h2,
  .h2 {
    font-size: 32px;
  }
  .services h4,
  .services.right h4 {
    position: relative;
    right: 0;
    left: 0;
    font-size: 16px;
    margin-top: 15px;
  }
  .package-title h2 {
    font-size: 32px;
    line-height: 34px;
  }
  .package-cover-img {
    border-radius: 20px;
    min-height: 200px;
  }
  a.tab-link {
    padding: 12px 10px;
  }
  .curved_box:after {
    display: none;
  }
  .curved_box {
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 15px;
  }
  .sky-scrapers {
    display: none;
  }
  .page-header{
    border-radius: 20px;
    padding: 0;
  }
  .page-header img {
    height: 190px;
    object-fit: cover;
    border-radius: 20px;
  }
  .page-header:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: .4;
    padding: 0 10px;
    z-index: 1;
  }
  .page-header h2 {
  font-size: 28px;
  line-height: 28px;
  text-align: center;
}
.page-header p{
    font-size: 14px;
    text-align: center;
    margin-bottom: 0;

}
h4{
  font-size: 24px;
  line-height: 26px;
}
.services h4{
     margin-top: 25px !important;
    font-size: 20px !important;
}
.services.left h4{
    left: 0;
   
}
.hol-package-item > img {
  max-height: 290px;
    height: 290px;
}
.itinerary-item {
   overflow-x: auto;
}
}

@media (max-width: 412px) {
  .product-item {
    border-radius: 10px;
  }
  .hero-section,
  .footer {
    border-radius: 25px;
  }
  .hero-section video {
    height: calc(70vh - 80px);
  }
  .hol-package-item .content-overlay h4{
    font-size: 18px;
    line-height: 20px;
  }
}
