@import url('https://fonts.googleapis.com/css2?family=Lateef:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --primary-color: #cb116e;
  --secondary-color: #4491d5;
  --third-color: #dfb615;
  --fourth-color: #051824;
  --jost: "Jost", serif;
  --lateef: "Lateef", serif;
  --ss: "Plus Jakarta Sans", sans-serif;
  --default-transition: 350ms;
  --white: #fff;
  --black: #212121;
  --red: #FF2F39;
  --dark: #181818;
  --light: #F6F6F6;
  --green: #27AE60;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: var(--jost);
}

.bg-transparent {
  background: transparent;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.bg-secondary {
  background: var(--secondary-color) !important;
}

.text-third {
  color: var(--third-color) !important;
}

.bg-third {
  background: var(--third-color);
}

.text-fourth {
  color: var(--fourth-color) !important;
}

.bg-fourth {
  background: var(--fourth-color);
}

.text-justify {
  text-align: justify !important;
}

p {
  margin-bottom: 0;
}

body {
  overflow-x: hidden;
  background: var(--light);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

input:focus:not(input[type=checkbox]),
textarea:focus {
  box-shadow: 0 0 1px 3px var(--primaryopacitycolor);
  border-color: var(--primarycolor) !important;
}

input:user-invalid,
textarea:user-invalid {
  box-shadow: 0 0 1px 3px #f005 !important;
  border-color: #f00 !important;
}

.sans-serif {
  font-family: var(--ss);
}

.jost {
  font-family: var(--jost);
}

.lateef {
  font-family: var(--lateef);

}

strong {
  font-family: inherit;
}

.btn {
  position: relative;
  border-radius: 100px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 10px 30px;
  transition: var(--default-transition);
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 100%;
  background: #fff5;
  top: 50%;
  border-right: 1px solid #fff;
  transform: translateY(-50%)skew(-30deg);
  left: -45px;
  transition: calc(var(--default-transition) * 1.5);
}

.btn:is(:hover, :focus) {
  background: var(--black);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn:is(:hover, :focus)::after {
  left: calc(100% + 20px);
}

a {
  color: var(--secondary-color);
  text-decoration: none !important;
}

a:hover {
  color: var(--hoversecondary);
  text-decoration: none !important;
}

.min-h-100 {
  min-height: 100dvh;
}


header .top-strip {
  background-color: var(--secondary-color);
  padding: 12px 0;
  color: #fff;
}

header .top-strip a {
  color: #fff;
  transition: all 0.4s ease;
}

/* header .top-strip a:hover, header .top-strip a:active {color: var(--third-color);} */
header .top-strip .social-media li .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.14);
  transition: all 0.4s ease;
}

header .top-strip .social-media li .icon img {
  filter: invert(1);
  transition: filter 0.4s ease;
}

header .top-strip .social-media li .icon:hover,
header .top-strip .social-media li .icon:active {
  background: var(--third-color);
}

header .top-strip .social-media li .icon:hover img,
header .top-strip .social-media li .icon:active img {
  filter: none;
}

.first-ele {
  /*margin-top: -90px;*/
}

@media (max-width:992px) {
  .top-strip .container {
    width: 100% !important;
  }
}

.menu-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  /*border-radius: 0px 0px 20px 20px;*/
  padding: 0 15px;
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);*/
}

.menu ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu-wrap .submenu {
  display: none;
  position: absolute;
  background: #fff;
  width: max-content;
  border: 1px solid #efefef;
  padding: 22px 33px;
  border-radius: 0 0 20px 20px;
  left: 50%;
  top: auto;
  transform: translate(-50%, 0);
  transition: all 0.4s ease;
}

.menu-wrap .submenu::before {
  content: "";
  width: 17px;
  height: 10px;
  background: url(../images/icons/caret-up.svg) no-repeat;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translate(0, -50%);
}

.menu-wrap li.has-menu:hover .submenu {
  display: block;
}

.menu li a {
  display: inline-block;
  padding: 33px 10px;
  color: var(--dark);
  position: relative;
  transition: all 0.4s ease;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.menu li a:hover {
  color: var(--primary-color);
}

.menu-wrap .submenu li a {
  padding: 6px 0 6px 12px;
  display: block;
  transition: all 0.4s ease;
}

.menu-wrap .submenu li a:hover {
  color: var(--primary-color);
}

.menu-wrap .submenu ul {
  display: block;
}

.menu-toggle {
  display: none;
}

.mob-logo {
  display: none;
}

header {
  position: relative;
  z-index: 9;
}

header .logo {
  width: 157px;
}

.menu-wrap .submenu .title,
#sidebarmenu .headerSidebarmenu>li>a {
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  color: var(--dark);
  background: var(--light);
  padding: 8px 16px;
  border-left: 10px solid var(--primary-color);
  border-radius: 10px;
  width: 100%;
}

#sidebarmenu .headerSidebarmenu .icon {
  display: none;
}

#sidebarmenu .headerSidebarmenu>li>a {
  margin-bottom: 4px;
  background: white;
  display: block;
  border: 1px solid var(--primary-color);
  border-left: 10px solid var(--primary-color);
}

#sidebarmenu .headerSidebarmenu .submenu {
  display: none;
}

.round-btn {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  padding: 13px;
}

/*----- side bar form ----*/
.side-form {
  background: var(--light);
  border-radius: 12px;
  padding: 0 0 20px;
}

.side-form .top-head {
  background: var(--primary-color);
  border-radius: 12px 12px 0px 0px;
  padding: 32px 20px;
  height: 148px;
}

.side-form .top-head .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #FFFFFF;
}

.side-form .form-wrap {
  background: #fff;
  border-radius: 15px;
  padding: 20px 15px 25px;
  width: 90%;
  margin: 0 auto;
  margin-top: -50px;
}

.side-form .form-wrap .item .icon {
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
  width: 16px;
}

.side-form .form-wrap form .form-control {
  background: var(--light);
  border-radius: 8px;
  height: 45px;
  border: none;
  padding-left: 40px;
}

.side-form .form-wrap form .btn {
  width: fit-content;
}

.side-form .form-wrap form .btn-2 {
  padding: 8px 50px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.enquiry-modal-form .form-wrap form .btn-2 {
  max-width: 180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.enquiry-modal-form .form-wrap form textarea.form-control {
  resize: none;
  height: 100px;
}

.enquiry-modal-form .form-wrap form .item .message-icon {
  top: 20px;
}

/*----- side bar form end ----*/


/* FOOTER */
.footer {
  background: #1E1E1E;
  padding: 46px 0 20px;
  border-radius: 46px 46px 0 0;
}

.footer .icon-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .icon-box i {
  width: 50px;
  height: 50px;
  border: 1px solid #595959;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.footer a:hover {
  color: var(--third-color) !important;
}

.footer .social-icons i {
  padding: 22px;
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .social-icons i:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  color: #aaa;
}

.footer .contact-info a {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  transition: all 0.4s ease;
}

.footer .contact-info a:hover {
  color: var(--yellow);
}

.footer .contact-info .icon-box .text {
  width: 50%;
}

.footer .social-icons .icon {
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 50%;
  padding: 12px;
}

.footer .social-icons .icon img {
  filter: invert(1);
}

.footer .social-icons li:nth-child(1) .icon {
  padding: 15px;
}

.footer .social-icons .icon:hover {
  background: var(--red);
}

.footer .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}

.footer .address .icon {
  background: var(--red);
  border-radius: 6px;
  width: 48px;
  height: 48px;
  padding: 14px;
}

.footer .f-list li a {
  color: #fff;
}

.footer .f-list li {
  margin-bottom: 14px;
  position: relative;
}

.footer .f-list li::before {
  content: "\f105";
  font-family: 'fontAwesome';
  color: var(--white);
  left: 0;
  margin-right: 5px;
}

.footer .f-list li:nth-last-child(1) {
  margin-bottom: 0;
}

.footer .f-list li a:hover {
  color: var(--yellow);
}

.footer .about p {
  padding-right: 20px;
}

.footer-logo {
  width: 170px;
}


/* home-banner */
.home-banner .item {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.home-banner .item a {
  display: flex;
  height: 100%;
  color: var(--black);
}

.home-banner .item img.bg-img {
  /*position: absolute;*/
  /*top: 50%;*/
  /*transform: translateY(-50%);*/
  /*z-index: -1;*/
  /*left: 0;*/
  /*width: 100%;*/
  /*height: 100%;*/
  /*object-fit: cover;*/
}


/* destination_card */
.destination_card {
  position: relative;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid #efefef;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.destination_card .destination_body {
  flex-grow: 1;
}

.destination_card .imgBx {
  overflow: hidden;
  border-radius: 8px;
}

.destination_card .imgBx img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.4s ease;
}

.destination_card:hover .imgBx img {
  transform: scale(1.1);
}

.destination_card h3 {
  color: var(--primary-color);
}


/* why_choose_us */
.why_choose_us {
  position: relative;
}

.why_choose_us .row .col-lg-4 img {
  aspect-ratio: 0.8;
  object-fit: contain;
}

.why_choose_us .row ul {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: space-around;
}

.why_choose_us .row ul li {
  border: 1px solid #efefef;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* TESTIMONIALS */
.testimonial_section {
  position: relative;
}
.testimonial_section .testimonial_img
{
  transition: var(--default-transition);
  box-shadow: -5px -5px 0 var(--light), 5px 5px 0 var(--light), 10px 10px 0 var(--primary-color), -10px -10px 0 var(--secondary-color);
}
.testimonial_section .testimonial_img:hover
{
  box-shadow: -5px -5px 0 var(--light), 5px 5px 0 var(--light), 12px 12px 0 var(--primary-color), -12px -12px 0 var(--secondary-color);
}
.client-testimonial {
  position: relative;
}

.client-testimonial .item {
  position: relative;
  padding: 50px 50px 100px;
  border-radius: 20px;
}

.client-testimonial .item .content {
  position: relative;
  border-radius: 10px;
  background: #fff;
  padding: 60px 30px 60px;
  padding-bottom: 10px;
  box-shadow: 0 6.25rem 5rem 0 rgba(0, 0, 0, 0.02),
    0 4.05063rem 2.92813rem 0 rgba(0, 0, 0, 0.0152),
    0 2.4075rem 1.5925rem 0 rgba(0, 0, 0, 0.0121),
    0 1.25rem 0.8125rem 0 rgba(0, 0, 0, 0.01),
    0 0.50938rem 0.4075rem 0 rgba(0, 0, 0, 0.0079),
    0 0.11563rem 0.19687rem 0 rgba(0, 0, 0, 0.0048) !important;
}

.client-testimonial .item .content::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  transform: translate(20px, 20px);
  border-radius: inherit;
  background: inherit;
  box-shadow: inherit;
}

.client-testimonial .imgBx {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.client-testimonial .imgBx img {
  position: relative;
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.client-testimonial .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 8px;
  padding: 8px;
  justify-content: center;
}

.client-testimonial .owl-dots button {
  width: 8px;
  aspect-ratio: 1;
  background: var(--primary-color);
  transition: var(--default-transition);
}

.client-testimonial .owl-dots button.active {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

@media(max-width:768px) {
  .client-testimonial .imgBx img {
    width: 80px;
  }

  .client-testimonial .item {
    position: relative;
    padding: 40px 40px 80px;
    border-radius: 20px;
  }

  .client-testimonial .item .content {
    padding: 40px 25px 40px;
    padding-bottom: 10px;
  }

}
/* faqs_wrapper */
.faqs_wrapper
{
  position: relative;
  user-select: none;
}
.faqs_wrapper .faqs_box
{
  position: relative;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
  margin-bottom: 15px;
  cursor: pointer;
}
.faqs_wrapper .faqs_box .faqs_q h5
{
  margin-bottom: 0;
  position: relative;
  padding-right: 23px;
}
.faqs_wrapper .faqs_box .faqs_q h5::before
{
  content: "\f107";
  font-family: 'fontAwesome';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 24px;
  font-weight: 600;
  transition: var(--default-transition);
}
.faqs_wrapper .faqs_box:is(:hover,.active) .faqs_q h5::before{
  transform: rotate(180deg) translate(0, 50%);
}
.faqs_wrapper .faqs_box .faqs_a
{
  position: relative;
  overflow: hidden;
  height: 0px;
  opacity: 0;
  visibility: hidden;
  transition: var(--default-transition);
}
.faqs_wrapper .faqs_box:is(:hover,.active) .faqs_a{
  height: auto;
  visibility: visible;
  opacity: 1;
  margin-top: 10px;
}

/* PAGE BANNER */
.page_banner{
  background: linear-gradient(#00000099,#00000099), url(../img/bcbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0 40px;
  margin-top: -90px;
}
.page_banner .page_breadcrumb .breadcrumb{
  background: var(--white);
  border-radius: 40px;
  color: #000;
  padding: 10px 20px;
}

.gallery_section
{
  position: relative;
  columns: 3;
}
@media(max-width:768px)
{
  .gallery_section
  {
    columns: 2;
  }
}
.gallery_section .imgBx
{
  width: 100%;
  margin-bottom: 15px;
  break-inside: avoid;
}
.gallery_section .imgBx img,
.gallery_section .imgBx video
{
  width: 100%;
  border-radius: 12px;
  transition: var(--default-transition);
}
.gallery_section .imgBx img:hover,
.gallery_section .imgBx video:hover
{
  transform: scale(1.03);
}