@import url('https://fonts.googleapis.com/css2?family=Palanquin+Dark:wght@400;500;600;700&display=swap');

/* font-family: 'Palanquin Dark', sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* font-family: 'Poppins', sans-serif; */

@font-face {
  font-family: 'hey_augustregular';
  src: url('../fonts/hey_august-webfont.woff2') format('woff2'),
    url('../fonts/hey_august-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
  --headingFont: 'Palanquin Dark', sans-serif;
  ;
  --bodyFont: 'Poppins', sans-serif;
  --curveTitle: 'hey_augustregular';
  --deepBlue: #010938;
  --skyBlue: #1BC2E6;
  --bodyColor: #4B4D5B;
  --orangeColor: #E75317;
}

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bodyColor);
  font-family: var(--bodyFont);
}

section {
  padding: 80px 0;
}

.container {
  max-width: 1170px;
  padding: 0px 15px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p {
  margin: 0;
  font-size: 15px;
  line-height: 27px;
  color: var(--bodyColor);
  font-family: var(--bodyFont);
  /* text-align: justify; */
}

/* ===================== common css start ====================== */

/* ================== mobile menu section start================= */
.mobileMenuSection {
  display: none;
}

.mobileMenuButton {
  display: none;
  text-decoration: none;
  width: 25px;
  position: absolute;
  top: 45px;
  right: 15px;
}

.mobileMenuButton span {
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background: #000;
  display: block;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.mobileMenuButton span:not(:last-child) {
  margin-bottom: 5px;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(2) {
  opacity: 0;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.mm-navbar {
  z-index: 123;
  background: #f1f1f1;
}

.mm-navbar__title>span {
  color: #fff;
}

.mm-listitem:after {
  left: 0;
}

/* code for fixing the conflict of mmenu and bs modal */
.mm-page {
  position: initial;
}

.mm-btn--next:after,
.mm-btn--prev:before {
  border-color: #000000;
}

.mm-listitem.active {
  background: #878787;
}

/* ==================== mobile menu section end =================== */

/*========================== header start ==========================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  transition: all 1s ease-in-out;
  border-bottom: 2px solid var(--skyBlue);
}

.site-header.sticky {
  box-shadow: 0 2px 10px -2px rgba(0 0 0 / 0.25);
}

.site-header.sticky .logo {
  width: 95px;
}

.site-main {
  padding-top: 100px;
}

.logo {
  width: 128px;
}

.logo img {
  width: 100%;
}

.main-header-hldr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu ul li a {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.main-menu ul li:nth-child(3) a span {
  margin-left: 8px;
}

.main-menu ul li:nth-child(7) a span {
  margin-right: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li.active a {
  color: var(--orangeColor);
}

.main-menu ul li:not(:last-child) {
  margin-right: 25px;
}

.floating_icon {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 9;
  width: 190px;
  overflow: hidden;
}

.floating_icon ul li {
  transition: all 0.5s ease-in-out;
  transform: translateX(146px);
}

.floating_icon ul li:hover {
  transform: translateX(0px);
}

.floating_icon ul li a {
  padding: 10px 15px;
  color: #fff;
  color: #FFF;
  font-family: var(--bodyFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.floating_icon ul li a span {
  margin-right: 5px;
}

.floating_icon ul li a span img {
  width: 20px;
}

.floating_icon ul li:nth-child(1) {
  background: #0052F2;
}

.floating_icon ul li:nth-child(2) {
  background: #29A71A;
}

.floating_icon ul li:nth-child(3) {
  background: #665CAC;
}

.floating_icon ul li a span:last-child {
  margin: 0;
}

/*=========================== header end ===========================*/

/*========================== banner start ==========================*/
.banner_form {
  padding: 30px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(1, 9, 56, 0.20);
  margin-bottom: 45px;
  z-index: 2;
  position: relative;
}

.banner_form label {
  color: var(--bodyColor);
  font-family: var(--bodyFont);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 5px;
}

.banner {
  position: relative;
  padding-top: 18px;
  background: url(../images/banner_bg.jpg) no-repeat left bottom / cover;
  background-attachment: fixed;
}

.banner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 83px;
  top: 0;
  left: 0;
  background: var(--skyBlue);
}

.banner_form input,
.banner_form select,
.banner_form textarea {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border-radius: 3px;
  border: 1px solid #DDDFEB;
  background: #EBECF3;
  color: #9496A8;
  position: relative;
}

.banner_form select {
  background: #EBECF3 url(../images/dd_black.svg) no-repeat right 10px center;
}

.banner_form input::placeholder,
.banner_form select::placeholder,
.banner_form textarea::placeholder {
  color: #9496A8;
  font-family: var(--bodyFont);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.banner_form button[type="submit"] {
  border-radius: 3px;
  background: linear-gradient(270deg, #FFA200 0%, #DD3022 100%);
  border: none;
  padding: 10px 12px;
  color: #fff;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.5s ease-in-out;
  height: 47px;
}

.banner_form button[type="submit"]:is(:hover, :focus) {
  box-shadow: none;
}

.banner_form button[type="submit"]:hover {
  background: linear-gradient(270deg, #DD3022 0%, #FFA200 100%);
}

.banner_form input:focus,
.banner_form select:focus,
.banner_form textarea:focus {
  box-shadow: none;
  background: #fff;
  border: 1px solid #9ba2c7;
}

.banner_form select:focus {
  background: #fff url(../images/dd_black.svg) no-repeat right 10px center;
  ;
}

.main_hd_white {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.main_hd_white::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  background: url(../images/hd_bg.svg) no-repeat center center / contain;
  width: 350px;
  height: 105px;
  z-index: -1;
  /* animation: glow 4s linear infinite; */
}

.banner_form .row>div.position-relative input {
  background: #EBECF3 url(../images/calender_ico.svg) no-repeat top 13px right 9px;
  cursor: pointer;
}

@keyframes glow {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  70% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.cal_icon {
  position: absolute;
  top: 67%;
  right: 14px;
  transform: translate(0, -50%);
}

.main_hd_white h2 {
  color: #FFF;
  font-family: var(--headingFont);
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.banner_slider .item figure {
  position: relative;
  overflow: hidden;
}

.banner_slider .item figure::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: #0000007c;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: all 0.9s ease-in-out;
}

.banner_slider .item figure {
  margin: 0;
}

.banner_slider .item figure img {
  width: 100%;
}

.banner_slider .item figure a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.7);
  font-size: 20px;
  color: #fff;
  z-index: 2;
  transition: all 0.9s ease-in-out;
  opacity: 0;
  transform-origin: center;
}

.banner_slider .item figure:hover::after {
  width: 150%;
  height: 150%;
}

.banner_slider .item figure:hover a {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.banner_slider .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.banner_slider .owl-dots button {
  margin: 0 5px;
}

.banner_slider .owl-dots button span {
  height: 6px;
  width: 6px;
  background: #6B7BDD;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.banner_slider .owl-dots button.active span {
  background: #fff;
  box-shadow: 0 0 0 3px #fff;
}

.owl-nav {
  display: none;
}

.main_hd {
  margin-bottom: 40px;
  position: relative;
}

.main_hd h2 {
  color: var(--skyBlue);
  font-family: var(--headingFont);
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
}

.main_hd h2 span {
  color: var(--deepBlue);
}

.cmn_btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin-top: 40px;
  color: #FFF;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  /* width: 155px; */
  padding: 12px 16px;
  text-align: center;
  border-radius: 3px;
  background: linear-gradient(270deg, #FFA200 0%, #DD3022 100%);
  transition: all 0.4s ease-in-out;
}

.cmn_btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.cmn_btn:hover {
  background: transparent;
}

.cmn_btn:hover::before {
  background: linear-gradient(270deg, #DD3022 0%, #FFA200 100%);
}

.about_img {
  margin: 0;
  position: absolute;
  bottom: 0;
  right: -90px;
  z-index: 1;
  width: 137%;
}

.about_img img {
  width: 100%;
}

.about_hldr .row>div {
  position: relative;
}

.about_cont {
  z-index: 2;
  position: relative;
}

.feature_wrapr {
  text-align: center;
  padding: 25px 20px;
  border-radius: 10px;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.feature_wrapr:hover {
  transform: translateY(-9px);
  box-shadow: 0 2px 12px -2px rgba(0 0 0 / 0.25);
}

.feature_wrapr figure {
  margin-bottom: 15px;
}

.feature_wrapr img {
  width: 45px;
}

.feature_wrapr h6 {
  color: var(--deepBlue);
  text-align: center;
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.feature_wrapr p {
  color: var(--deepBlue);
  text-align: center;
  font-family: var(--bodyFont);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  min-height: 80px;
}

.feature {
  margin-top: 80px;
}

.feature.row>div:nth-child(odd) .feature_wrapr {
  background: #F7F7FC;
}

.feature.row>div:nth-child(even) .feature_wrapr {
  background: #EBECF3;
}

.main_hd p {
  margin-top: 20px;
}

.videobox {
  position: relative;
  height: 530px;
}

.videobox figure {
  height: 100%;
}

.videobox figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videobox a {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.9s ease-in-out;
  opacity: 1;
}

.package .container {
  max-width: 100%;
  padding: 0;
}

.videobox h3 {
  font-family: var(--curveTitle);
  color: #FFF;
  text-align: center;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  line-height: 83px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
}

.gallery_bx {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.gallery_bx::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 127px;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, #00000070 0%, transparent 100%);
  transition: all 1s ease-in-out;
}

/* .gallery_bx::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  transition: all 1s ease-in-out;
  z-index: 1;
} */
/* .gallery_bx:hover::before{
  height: 100%;
  background: rgba(253, 122, 1, 0.73);
} */
.gallery_bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.gallery_bx figcaption {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 0);
  text-align: center;
  font-family: var(--bodyFont);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3.75px;
  text-transform: uppercase;
  z-index: 2;
  transition: all 0.5s ease-in-out;
  width: 100%;
}

.package_hldr .row>div:last-child .row>div:nth-child(2) figure figcaption {
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.package_hldr .row>div:last-child .row>div:nth-child(2) figure::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  bottom: 0;
  transition: all 1s ease-in-out;
  z-index: 1;
  height: 100%;
  background: rgba(253, 122, 1, 0.73);
}

.package_hldr .row>div:last-child .row>div:nth-child(3) figure figcaption {
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.package_hldr .row>div:last-child .row>div:nth-child(3) figure img {
  filter: grayscale(1);
}

.package_hldr .row>div:last-child .row>div:nth-child(3) figure img:hover {
  filter: grayscale(0);
}

.gallery_bx figcaption a {
  color: #FFF;
  display: inline-block;
}

.gallery_bx:hover figcaption {
  bottom: 40%;
}

.gallery_bx:hover img {
  transform: scale(1.1);
}

.package_hldr .row>div:last-child .row>div:nth-child(1) figure {
  height: 261px;
  margin-bottom: 9px;
}

.package_hldr .row>div:last-child .row>div:nth-child(1) figure:last-child {
  margin: 0;
}

.package_hldr .row>div:last-child .row>div:nth-child(2) figure,
.package_hldr .row>div:last-child .row>div:nth-child(3) figure {
  height: 530px;
  margin: 0;
}

.package {
  padding-bottom: 8px;
  overflow: hidden;
}

.trending {
  background: linear-gradient(90deg, #1BC2E6 0%, #72E6FF 100%);
  padding-bottom: 0;
}

.trending_hldr .main_hd_white::before {
  display: none;
}

.main_hd_white p {
  margin-top: 5px;
}

.trendy_cont figure {
  width: 100%;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.trendy_cont figure img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.trendy_cont {
  padding: 5px 5px 30px 5px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  position: relative;
  transition: all 0.8s ease-in-out;
}

.trendy_cont p {
  text-align: center;
  padding: 0 30px;
}

.trendy_cont h3 {
  color: var(--deepBlue);
  text-align: center;
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.trendy_cont a {
  margin-top: 15px;
}

.trendy_cont:hover figure img {
  transform: scale(1.08)
}

.deals {
  position: relative;
  background: url(../images/deals_bg.jpg) no-repeat center center / cover;
  margin-top: -55px;
  padding-top: 150px;
  background-attachment: fixed;
}

.deals_hldr .main_hd span {
  color: #fff;
}

.deals_hldr .cmn_btn {
  background: transparent;
  border: 4px solid;
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: linear-gradient(270deg, #FFA200 0%, #DD3022 100%);
  border-radius: 3px;
  margin-top: 0;
}

.deals_hldr .cmn_btn::before {
  display: none;
}

.deals_hldr .cmn_btn:hover {
  border-image-source: linear-gradient(270deg, #DD3022 0%, #FFA200 100%);
}

.deal_slider a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 5px;
}

.deal_slider .owl-dots {
  position: absolute;
  left: -52%;
}

.deal_slider .owl-dots button {
  margin: 0 5px;
}

.deal_slider .owl-dots button span {
  height: 6px;
  width: 6px;
  background: #6B7BDD;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.deal_slider .owl-dots button.active span {
  background: #fff;
  box-shadow: 0 0 0 3px #fff;
}

.offer_slider .owl-dots {
  margin-top: 30px;
}

.offer_slider .owl-dots button {
  margin: 0 5px;
}

.offer_slider .owl-dots button span {
  height: 6px;
  width: 6px;
  background: #6B7BDD;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.offer_slider .owl-dots button.active span {
  background: #6B7BDD;
  box-shadow: 0 0 0 3px #6B7BDD;
}

.offer_hldr {
  position: relative;
}

.offer_hldr a.view_all {
  color: var(--orangeColor);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
}

.offer_hldr a.view_all span {
  transition: all 0.5s ease-in-out;
  position: relative;
  display: inline-block;
}

.offer_hldr a.view_all:hover span {
  transform: translateX(5px);
}

.sp_offer_hldr .offer_hldr:last-child {
  margin-top: 60px;
}

.tips ul {
  margin-top: 20px;
}

.tips ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tips ul li img {
  height: 78px;
  width: 78px;
  border-radius: 3px;
}

.tips ul li p {
  width: calc(100% - 95px);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.tips ul li:not(:last-child) {
  margin-bottom: 15px;
}

.tips {
  border-radius: 10px;
  border: 1px solid #DDDFEB;
  background: #FFF;
  padding: 20px;
}

.tips h3 {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  padding-bottom: 15px;
  border-bottom: 1px solid #DDDFEB;
}

.tips h4 {
  padding: 15px 0;
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.sp_offer {
  background: #FFFCF6;
  overflow: hidden;
}

.tips .banner_form {
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.sp_offer_hldr .row>div:last-child .tips:not(:last-child) {
  margin-bottom: 15px;
}

.testimonial {
  padding: 30px 0;
  background: url(../images/test_bg.jpg) no-repeat left top / cover;
  position: relative;
  z-index: 2;
}

.testimonial::before {
  position: absolute;
  content: "";
  width: 75%;
  height: 158px;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.70);
  z-index: -1;
}

.testi_box {
  padding: 35px 30px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(1, 9, 56, 0.20);
  text-align: center;
}

.testi_box h3 {
  color: var(--deepBlue);
  text-align: center;
  font-family: var(--headingFont);
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
  position: relative;
}

.testi_box h3::after {
  position: absolute;
  content: "";
  top: -10px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 38px;
  height: 24px;
  background: url(../images/quote_svg.svg)no-repeat center center / cover;
}

.client_dtl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.client_dtl i {
  color: #FFA200;
  padding-right: 15px;
  border-right: 1px solid #DDDFEB;
}

.client_dtl img {
  height: 70px;
  width: 70px !important;
  object-fit: cover;
  border-radius: 50%;
}

.testi_slider .owl-dots {
  margin-top: 30px;
}

.testi_slider .owl-dots button {
  margin: 0 5px;
}

.testi_slider .owl-dots button span {
  height: 6px;
  width: 6px;
  background: #6B7BDD;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.testi_slider .owl-dots button.active span {
  background: #6B7BDD;
  box-shadow: 0 0 0 3px #6B7BDD;
}

.social_hldr {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 5px;
  background: #FFF;
  gap: 15px;
  position: relative;
}

.social_hldr i {
  padding-left: 15px;
  color: var(--bodyColor);
  position: relative;
  transition: all 0.4s ease-in-out;
}

.social_media h3 {
  color: #FFF;
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.social_hldr:hover i {
  transform: translateX(5px);
}

/* footer style */
.footer_btm {
  padding: 20px 0;
  background: #E9EAF1;
  text-align: center !important;
}

.footer_btm p {
  text-align: center !important;
}

.footer_btm p a {
  color: #1ABCE3;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.footer_btm p a:hover {
  color: var(--deepBlue);
}

.footer_top {
  padding: 80px 0;
}

a.view_all {
  color: var(--orangeColor);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  z-index: 4;
  margin-top: 20px;
}

.footer_cont .logo {
  margin-bottom: 15px;
}

.footer_cont h4 {
  color: var(--deepBlue);
  font-family: var(--headingFont);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
  margin-top: 50px;
}

.footer_cont ul li:not(:last-child) {
  margin-bottom: 8px;
}

.footer_cont ul li a {
  color: #4B4D5B;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  display: inline-block;
}

.footer_cont ul li a:hover {
  color: var(--orangeColor);
}

.footer_cont address {
  display: flex;
  align-items: flex-start;
  color: #4B4D5B;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 15px;
}

.footer_cont address img {
  margin-right: 10px;
}

.footer_cont ul li a img {
  width: 16px;
  margin-right: 10px;
  transition: all 0.5s ease-in-out;
}

.pmt_opt {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
}

.pmt_opt img {
  width: 58px;
  border: 1px solid #D9E8F8;
}

.tips h6 {
  color: #4B4D5B;
  font-family: var(--bodyFont);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.tips select {
  border: none;
  color: #4B4D5B;
  font-family: var(--bodyColor);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.calendar-container {
  position: relative;
}

.special-buttons {
  position: absolute;
  border: none;
  padding: 0;
  left: 50%;
  bottom: -30px;
  transform: translate(-50%, 0);
}

.footer_cont p {
  margin-right: 40px;
}

/* inner page style start */
.inner_banner {
  position: relative;
}

.inner_banner figure {
  position: relative;
  margin: 0;
  height: 300px;
}

.inner_banner figure::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.50);
}

.inner_banner figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bnr_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bnr_txt h2 {
  color: #FFF;
  text-align: center;
  font-family: var(--headingFont);
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
}

.bnr_txt .breadcrumb {
  margin-top: 5px;
  justify-content: center;
}

.bnr_txt .breadcrumb li a,
.bnr_txt .breadcrumb li {
  color: #FFF;
  text-align: center;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bnr_txt .breadcrumb li {
  color: #FD9C02;
}

.bnr_txt .breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  padding-right: 0.5rem;
  color: #fff;
}

.pkg_img {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 2;
}

.pkg_img::after {
  position: absolute;
  content: "";
  height: 60px;
  width: 100%;
  background: rgba(0, 0, 0, 0.60);
  bottom: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
}

.pkg_img::before {
  position: absolute;
  content: "";
  height: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.60);
  top: 0;
  left: 0;
  transition: all 0.7s ease-in-out;
}

.pkg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.pkg_img figcaption {
  color: #FFF;
  text-align: center;
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  bottom: 17px;
  transform: translate(-50%, 0);
  width: 100%;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

.pkg_img:hover figcaption {
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.pkg_img:hover::after {
  height: 0;
}

.pkg_img:hover::before {
  height: 100%;
}

.lt_blog_hldr {
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid #DDDFEB;
  background: #FFF;
}

.lt_blog_hldr form input {
  padding: 0 0 0 35px;
  border: none;
  background: url(../images/clrfl_search.svg) no-repeat left center / contain;
  color: #4B4D5B;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.lt_blog_hldr form input::placeholder {
  color: #4B4D5B;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.lt_blog_hldr form input:is(:hover, :focus) {
  box-shadow: none;
}

.lt_blog .lt_blog_hldr:not(:last-child) {
  margin-bottom: 15px;
}

.lt_blog_hldr h3 {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  border-bottom: 1px solid #DDDFEB;
  padding-bottom: 18px;
}

.lt_blog_hldr ul {
  margin-top: 24px;
}

.lt_blog_hldr ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lt_blog_hldr ul li:not(:last-child) {
  margin-bottom: 10px;
}

.lt_blog_hldr ul li img {
  width: 79px;
}

.lt_blog_hldr ul li span {
  width: calc(100% - 100px);
  position: relative;
}

.lt_blog_hldr ul li span a img {
  width: auto;
}

.lt_blog_hldr ul li span p {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.lt_blog_hldr ul li span a {
  color: var(--deepBlue);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.tel_hldr span a {
  display: block;
}

.tel_hldr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.tel_hldr img {
  width: 40px;
}

.tel_hldr span {
  width: calc(100% - 55px);
}

.tel_hldr span a {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.lt_blog_hldr .banner_form {
  padding: 0;
  box-shadow: none;
  margin: 0;
}

.lt_blog_hldr p.text-center {
  color: #C7C9D3;
  font-family: var(--bodyFont);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 15px 0;
}

.blog_cont {
  padding: 15px 25px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(1, 9, 56, 0.20);
}

.blog_cont h5 {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
  margin-top: 7px;
}

.blog_dates i {
  margin-right: 7px;
}

.more {
  color: #ec7646;
}

.more:hover {
  color: #000;
}

.blog_cont p:not(:last-of-type) {
  margin-bottom: 30px;
}

.blog_cont figure {
  margin-bottom: 30px;
}

.blog_cont figure img {
  width: 100%;
}

.blog_cont .d-flex img {
  width: auto;
}

.blog_cont .main_hd {
  margin-bottom: 10px;
}

.blog_cont h6 {
  color: var(--bodyColor);
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 15px;
}

.blog_cont .d-flex {
  margin-bottom: 30px;
}

.blog_cont .d-flex span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 12px;
}

.mission_text {
  margin-left: 60px;
}

.mission_text h6 {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 33px;
  margin-bottom: 60px;
}

.sm_hd {
  color: var(--deepBlue);
  font-family: var(--headingFont);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.mission_text ul li {
  position: relative;
  color: var(--bodyColor);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  padding-left: 15px;
}

.mission_text ul li::before {
  position: absolute;
  content: "";
  top: 14px;
  left: 0;
  transform: translate(0, -50%);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #FFA200;
}

.mission_text ul li:not(:last-child) {
  margin-bottom: 10px;
}

.mission_hldr {
  padding-bottom: 80px;
  position: relative;
}

.mission_hldr::before {
  position: absolute;
  content: "";
  width: 86%;
  height: 370px;
  bottom: 0;
  right: 0;
  background: #F7F7FC;
}

.mission_img figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mission_img {
  position: relative;
}

.mission_img .row>div:first-child figure {
  width: 145%;
  margin: 0;
  height: 507px;
}

.small_msn_image {
  top: -38px;
  position: relative;
}

.small_msn_image figure {
  margin: 0;
}

.small_msn_image figure:first-child {
  height: 265px;
  border-radius: 0 50px 0 0;
  overflow: hidden;
}

.small_msn_image figure:last-child {
  height: 245px;
}

.mission_text ul {
  padding-right: 20px;
}

.ccs {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  background: #1BC2E6;
}

.cc_inner {
  width: 50%;
  padding: 60px 0;
}

.ccs .cc_inner:first-child {
  background: url(../images/cv_bg.jpg) no-repeat left center / cover;
}

.cc_hldr {
  width: 585px;
}

.cc_hldr h3 {
  color: #FFF;
  font-family: var(--bodyFont);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: 5px;
}

.cc_hldr p {
  color: #fff;
}

.ccs .cc_inner:first-child {
  display: flex;
  justify-content: flex-end;
}

.ccs .cc_inner:first-child .cc_hldr {
  padding-right: 60px;
}

.ccs .cc_inner:last-child .cc_hldr {
  padding-left: 60px;
}

.unique_hldr ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.unique_hldr ul li:not(:last-child) {
  margin-bottom: 20px;
}

.unique_hldr ul li img {
  width: 50px;
}

.unique_hldr ul li span {
  width: calc(100% - 70px);
}

.unique_hldr ul li span strong {
  color: var(--deepBlue);
  font-weight: 600;
}

.why_hldr figure {
  margin: 0;
  width: 134%;
  height: 440px;
}

.why_hldr figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.why_text {
  padding: 70px;
  background: #fff;
}

.where {
  background: var(--deepBlue);
  padding: 50px 0;
}

.where_hldr h3 {
  color: #868DB7;
  text-align: right;
  font-family: var(--headingFont);
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 43px;
  margin-bottom: 15px;
}

.where_hldr p {
  color: #868DB7;
  text-align: right;
  font-size: 16px;
}

.call_mail ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.call_mail ul li img {
  width: 40px;
}

.call_mail ul li:not(:last-child) {
  margin-bottom: 20px;
}

.call_mail ul li span {
  width: calc(100% - 55px);
  font-size: 18px;
  color: #F98E05;
}

.call_mail p {
  color: #1BC2E6;
  text-align: left;
}

.call_mail ul li span a {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.call_mail ul li span a:hover {
  color: var(--orangeColor);
}

.where_hldr .row>div:first-child {
  border-right: 1px solid #3A4378;
}

.counter_box {
  text-align: center;
  position: relative;
  padding: 25px 22px;
  border-radius: 10px;
  background: linear-gradient(125deg, #1BC2E6 13.54%, #0084A0 100%);
}

.counter_box img {
  position: absolute;
  top: 5px;
  left: 5px;
}

#counters_1 {
  color: #FFF;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  z-index: 2;
}

.counter_box p {
  font-weight: 600;
  color: #fff;
}

.pkg_ftr {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.pkg_ftr li img {
  margin-right: 12px;
  width: 30px;
}

.pkg_ftr li span {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.pkg_ftr li:not(:last-child) {
  margin-right: 30px;
}

.package_hldr_inner .main_hd {
  margin-bottom: 25px;
}

.package_hldr_inner h6 {
  color: #4B4D5B;
  font-family: var(--bodyFont);
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

.package_price {
  margin-top: 30px;
}

.package_price span {
  display: inline-block;
  padding: 0 12px;
  color: #FFF;
  font-family: var(--bodyFont);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  background: var(--skyBlue);
}

.package_price h6 {
  color: #4B4D5B;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 49.615px;
  margin-top: 5px;
}

.package_price h6 span {
  color: #DD3022;
  font-family: var(--bodyFont);
  font-size: 27.564px;
  font-style: normal;
  font-weight: 600;
  line-height: 49.615px;
  background: transparent;
  padding: 0;
}

.package_detail_slider {
  margin-top: 30px;
  margin-bottom: 50px;
}

.package_detail_slider figure {
  margin: 0;
  height: 355px;
}

.package_detail_slider figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.package_detail_slider .owl-dots button {
  margin: 0 5px;
}

.package_detail_slider .owl-dots button span {
  height: 6px;
  width: 6px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

.package_detail_slider .owl-dots button.active span {
  background: #fff;
  box-shadow: 0 0 0 3px #fff;
}

.package_detail_slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 0);
}

.destination_hldr h4 {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}

.destination_hldr a {
  margin: 0;
  display: block;
}

.destination_hldr a img {
  height: 110px;
  border-radius: 5px;
  width: 100%;
  object-fit: cover;
}

.destination_hldr a figcaption {
  color: var(--deepBlue);
  text-align: center;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  margin-top: 10px;
}

.destination_hldr {
  margin-bottom: 30px;
}

.itenary_hldr h4 {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 10px 10px 0px 0px;
  background: #F7F7FC;
  padding: 15px 30px;
}

.itenary_hldr ul {
  padding: 30px;
}

.itenary_hldr ul li:not(:last-child) {
  margin-bottom: 30px;
}

.itenary_hldr {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(1, 9, 56, 0.20);
  margin: 40px 0;
}

.itenary_hldr ul li p span {
  font-weight: 600;
}

.contact_wrap span {
  padding: 10px;
  display: inline-block;
  border-radius: 8px;
  background: linear-gradient(90deg, #1BC2E6 0%, #006492 100%);
}

.contact_wrap span img {
  width: 30px;
  height: 30px;
}

em.time_date {
  margin-left: 10px;
  color: #1bc2e6;
}

em.time_date i {
  margin-right: 2px;
}

.contact_wrap {
  text-align: center;
}

.contact_wrap h6 {
  color: var(--deepBlue);
  text-align: center;
  font-family: var(--bodyFont);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3.75px;
  text-transform: uppercase;
  margin-top: 10px;
}

.contact_wrap div {
  margin-top: 3px;
  color: #E1E3ED;
}

.contact_wrap div a {
  color: #4B4D5B;
  font-family: var(--bodyFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0 5px;
  display: inline-block;
}

.contact_wrap div a:hover {
  color: var(--orangeColor);
}

.contact_wrap address {
  margin-top: 3px;
  color: #4B4D5B;
  font-family: var(--bodyFont);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.contact_form_img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.contact_form_hldr {
  padding: 30px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(1, 9, 56, 0.20);
}

.banner_form.contact_form {
  padding: 0;
  box-shadow: none;
  margin: 0;
}

.contact_hldr .row>div {
  position: relative;
}

.contact_hldr .row>div:not(:last-child)::after {
  position: absolute;
  content: "";
  height: 165px;
  width: 1px;
  background: #E1E3ED;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.banner_form.checkin_form input {
  background: #EBECF3;
  cursor: pointer;
  padding: 12px;
  font-size: 14px;
  border-radius: 3px;
  border: 1px solid #DDDFEB;
  color: #9496A8;
  position: relative;
}
.banner_form.checkin_form input.datepickerAdd {
  background: #EBECF3 url(../images/calender_ico.svg) no-repeat top 13px right 9px;
}

.banner_form.checkin_form input::placeholder {
  font-size: 13px;
}

.banner_form.checkin_form {
  margin-top: 18px;
}

.location img {
  margin-right: 5px;
}

.rating span i:not(:last-child) {
  color: #00BD2A;
}

.rating span i:last-child {
  color: #ddd;
}

.rating span i {
  font-size: 20px;
  margin-right: 2px;
}

.rating {
  padding: 20px 0;
  color: #979AAB;
}

.hotel_fare {
  color: #979AAB;
}

.hotel_fare span {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 5px;
}

.hotel_details .main_hd {
  margin-bottom: 18px;
}

.hotel_ftr {
  margin-bottom: 30px;
}

.hotel_ftr h4 {
  color: var(--deepBlue);
  font-family: var(--headingFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 15px;
}

.hotel_ftr .pkg_ftr {
  gap: 15px;
}

.amnities_list {
  margin-top: 15px;
  padding-left: 15px;
}

.amnities_list li {
  position: relative;
}

.amnities_list li::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  background: #4B4D5B;
  border-radius: 50%;
  top: 7px;
  left: -15px;
}

.amnities_list li:not(:last-child) {
  margin-bottom: 8px;
}

.map_hldr {
  height: 238px;
}

.map_hldr iframe {
  width: 100%;
  height: 100%;
}

.hotel_details .hotel_ftr:last-child {
  margin-bottom: 0;
}

.related_hotel_inner h6 {
  color: var(--deepBlue);
  font-family: var(--headingFont);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.related_hotel_inner .d-flex {
  align-items: flex-start;
}

.related_hotel_inner .d-flex img {
  width: 20px;
  margin: 5px 5px 0 0;
}

.related_hotel_inner .rating {
  padding-top: 0;
}

.related_hotel_inner .cmn_btn {
  margin-top: 20px;
}

.lt_blog {
  position: sticky;
  top: 90px;
}

.hotel_form input,
.hotel_form select {
  border-radius: 10px;
  border: 1px solid #DDDFEB;
  background: #FFF;
  padding: 15px;
  color: #4B4D5B;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  height: 50px;
}

.hotel_form select {
  background: url(../images/dd_black.svg) no-repeat right 10px center;
}

.hotel_form input[type="search"] {
  padding-left: 50px;
  background: url(../images/clrfl_search.svg) no-repeat left 15px center / contain;
  background-size: 20px;
}

.hotel_form input:is(:hover, :focus),
.hotel_form select:is(:hover, :focus) {
  box-shadow: none;
}

.hotel_img_gallery a {
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.hotel_img_gallery a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hotel_list {
  margin-top: 50px;
}

.hotel_list .related_hotel_inner h6 {
  line-height: 30px;
}

.hotel_list .related_hotel_inner .cmn_btn {
  margin-top: 60px;
}

.hotel_list .pkg_ftr {
  gap: 12px;
  padding-left: 12px;
  border-left: 1px solid #DDDFEB;
}

.hotel_list .pkg_ftr li img {
  width: 25px;
  margin-right: 10px;
}

.hotel_list .row>div:nth-child(2) {
  width: 47% !important;
}

.hotel_list .row>div:nth-child(3) {
  width: 19% !important;
}

.hotel_img_gallery .row>div:not(:first-child) {
  width: 25% !important;
}

.hotel_list .row:not(:last-child) {
  margin-bottom: 60px;
}

.hotel_list .related_hotel_inner .d-flex img {
  width: 20px;
  margin: 0 5px 0 0;
}

.hotel_img_gallery .row>div:last-child a {
  position: relative;
}

.hotel_img_gallery .row>div:last-child a span {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bodyFont);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.50);
  ;
}

.pagination {
  justify-content: center;
  align-items: flex-end;
}

.pagination .page-link {
  border: none !important;
  background: none !important;
  color: #4B4D5B;
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.page-item:first-child .page-link {
  color: #D8DBEE;
}

.page-item.active .page-link {
  color: #1BC2E6;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 2.73px;
}

.banner_hldr {
  text-align: center;
}

.blogContentSec:not(:last-child) {
  margin-bottom: 25px;
}

.blogContentSec img {
  object-fit: cover;
}

.blogContentSec h4 {
  font-size: 21px;
}

.blogContentSec h4 a {
  color: #0d7aa5;
}

.wp-block-heading {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: 500;
}

.blog_cont .main_hd h2 {
  font-size: 35px;
  line-height: 1.2;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
  color: var(--deepBlue);
  font-family: var(--bodyFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 0;
  padding-right: 22px;
  transition: .4s all ease-in-out;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator {
  top: 5px;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item:last-child a.mega-menu-link {
  padding-right: 0;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  background: #fff !important;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
  background: #e6e3e3 !important;
}

#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover>ul.mega-sub-menu,
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus>ul.mega-sub-menu,
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on>ul.mega-sub-menu,
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.form-control:focus {
  box-shadow: initial;
}

.quotes_modal .cmn_btn {
  margin-top: 0;
}

.quotes_modal span.wpcf7-form-control-wrap.recaptcha {
  scale: .8;
  transform-origin: left center;
}

.quotes_modal button.cmn_btn {
  border: 0;
  margin: 0;
}

.quotes_modal button.cmn_btn span {
  display: none;
}

.package_highlight_section h4 {
  text-transform: capitalize;
  margin-bottom: 10px;
  background: #1bc2e6;
  padding: 10px 14px;
  border-radius: 0;
  color: #fff;
  font-size: 23px;
}

.cost_include_exclude h5 {
  text-transform: capitalize;
  margin-bottom: 10px;
}

.cost_include_exclude ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.cost_include_exclude ul li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #1bc2e6;
  left: 0;
  top: 5px;
  border-radius: 50%;
}

.cost_include_exclude ul li:last-child {
  margin-bottom: 0;
}

.full_width.package_highlight_section {
  background: rgb(128 218 237 / 14%);
  padding: 30px;
}

/* inner page style end */

/* 18.6.2025 */

#btnSearch {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 30px !important;
    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 500 !important;
    color: #fff !important;
    padding: 16px !important;
    outline: 0 !important;
    border: 0 !important;
    cursor: pointer !important;
    margin: 20px auto -7px !important;
    width: 220px !important;
}
.banner_form .SE_.flight_{
    background: #fff !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1490196078) !important;
    border-radius: 0px !important;
    padding: 24px !important;
    /* margin: 0 0 40px; */
    position: relative !important;
    /* margin-top: -500px; */
}
/* ========================== responsive ========================== */
@media (min-width: 1440px) {
  .about_img {
    margin: 0;
    position: absolute;
    bottom: 0;
    right: -95px;
    z-index: 1;
    width: 140%;
  }
}

@media (max-width: 1199px) {

  /* mmenu start */
  .mobileMenuButton {
    display: inline-block;
    transition: all 0.5s ease-in-out;
  }

  .mm-menu {
    z-index: 99;
    width: 30%;
  }

  .site-header.sticky .mobileMenuButton {
    top: 29px;
  }

  /* mmenu end */
  .main-menu {
    display: none;
  }

  .banner_form {
    padding: 20px;
  }

  .banner_hldr .banner_form button[type="submit"] img {
    width: 15px;
  }

  .banner_hldr .banner_form button[type="submit"] {
    display: flex;
    padding: 11px 10px;
    justify-content: space-between;
  }

  .about_img {
    right: 0;
    width: 121%;
  }

  .videobox h3 {
    font-size: 62px;
    line-height: 60px;
  }

  .deal_slider .owl-dots {
    bottom: -50px;
  }

  .testimonial {
    background: url(../images/test_bg.jpg) no-repeat center / cover;
  }

  .testimonial::before {
    width: 81%;
  }

  .footer_cont p {
    margin-right: 20px;
  }

  .social_hldr i {
    padding-left: 0;
    left: -5px;
  }

  .ccs .cc_inner:first-child .cc_hldr {
    padding: 0 30px 0 15px;
  }

  .ccs .cc_inner:last-child .cc_hldr {
    padding: 0 15px 0 30px;
  }

  .why_text {
    padding: 26px;
  }

  .counter_box p {
    font-size: 14px;
  }

  .mission_img {
    margin-bottom: 15px;
  }

  .small_msn_image figure:first-child {
    height: 239px;
  }

  .mission_img .row>div:first-child figure {
    width: 128%;
    height: 443px;
  }

  .hotel_list.hotel_list .related_hotel_inner .cmn_btn {
    margin-top: 20px;
  }

  .hotel_list .related_hotel_inner .rating {
    padding-bottom: 5px;
  }

  .hotel_list .row>div:nth-child(2) {
    width: 42% !important;
  }

  .hotel_img_gallery .row>div:not(:first-child) {
    width: 25% !important;
  }

  .hotel_list .row>div:nth-child(3) {
    width: 24% !important;
  }

  #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item {
    display: block;
  }

  #mega-menu-wrap-primary #mega-menu-primary {
    padding: 20px;
  }

  .mm-listitem__btn:not(.mm-listitem__text) {
    border-left-width: 0;
    border-left-style: 0;
    position: absolute;
    right: -20px;
    top: 8px;
  }

  #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator {
    display: none;
  }
}

@media (max-width: 1023px) {
  section {
    padding: 50px 0;
  }

  .logo {
    width: 100px;
  }

  .site-main {
    padding-top: 78px;
  }

  .mobileMenuButton {
    top: 34px;
  }

  .banner_hldr .banner_form button[type="submit"] {
    justify-content: center;
  }

  .banner_hldr .banner_form button[type="submit"] img {
    margin-right: 6px;
  }

  .about_img {
    position: relative;
    width: 100%;
  }

  .banner_form {
    margin-bottom: 24px;
  }

  .main_hd_white h2 {
    font-size: 35px;
  }

  .blog_cont .main_hd h2,
  .main_hd h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .main_hd {
    margin-bottom: 20px;
  }

  .main_hd_white {
    margin-bottom: 20px;
  }

  .main_hd_white::before {
    width: 250px;
    height: 55px;
  }

  .offer_slider .item a {
    width: 100%;
  }

  .offer_slider .item a img {
    width: 100% !important;
  }

  .testimonial::before {
    width: 100%;
  }

  .social_media {
    margin-top: 17px;
  }

  .pmt_opt img {
    width: 80px;
  }

  .social_hldr i {
    padding-left: 15px;
    left: 0;
  }

  .mission_text h6 {
    margin-bottom: 35px;
  }

  .mission_hldr {
    padding-bottom: 50px;
  }

  .cc_inner {
    padding: 50px 0;
  }

  .counter_box p {
    font-weight: 600;
    color: #fff;
    min-height: 55px;
  }

  .mission_text {
    margin-left: 0;
  }

  .mission_hldr::before {
    width: 100%;
    height: 330px;
  }

  .destination_hldr a img {
    height: 223px;
  }

  .contact_wrap span img {
    width: 20px;
    height: 20px;
  }

  .contact_wrap h6 {
    font-size: 18px;
  }

  .contact_wrap div a,
  .contact_wrap address {
    font-size: 14px;
  }

  .contact_hldr .row>div:not(:last-child)::after {
    height: 115px;
  }

  .hotel_ftr {
    margin-bottom: 20px;
  }

  .lt_blog {
    margin-top: 25px;
  }

  .hotel_list .row>div:nth-child(2),
  .hotel_list .row>div:nth-child(3) {
    width: 100% !important;
  }

  .hotel_img_gallery .row>div:not(:first-child) {
    width: 25% !important;
  }

  .hotel_list .pkg_ftr {
    gap: 12px;
    padding-left: 0;
    border-left: none;
    margin-top: 15px;
  }

  .hotel_list .related_hotel_inner {
    margin-top: 15px;
  }


}

@media (max-width: 767px) {
  .mm-menu {
    z-index: 99;
    width: 60%;
  }

  .mm-navbar__title img {
    width: 95px;
  }

  section {
    padding: 30px 0;
  }

  .main_hd_white h2 {
    line-height: 35px;
    font-size: 30px;
  }

  .banner_form {
    margin-bottom: 15px;
  }

  .blog_cont .main_hd h2,
  .main_hd h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .main_hd {
    margin-bottom: 15px;
    text-align: center;
  }

  .banner_slider .owl-dots {
    margin-top: 15px;
  }

  .cmn_btn {
    margin-top: 20px;
  }

  .feature {
    margin-top: 0;
  }

  .feature_wrapr p {
    min-height: auto;
  }

  .main_hd p {
    margin-top: 10px;
  }

  .package .container {
    max-width: 100%;
    padding: 0 8px;
  }

  .videobox {
    height: auto;
  }

  .videobox h3 {
    font-size: 50px;
    line-height: 45px;
    bottom: 20px;
  }

  .package_hldr .row>div:last-child .row>div:nth-child(1) figure,
  .package_hldr .row>div:last-child .row>div:nth-child(2) figure,
  .package_hldr .row>div:last-child .row>div:nth-child(3) figure {
    height: auto;
  }

  .trendy_cont {
    padding: 5px;
  }

  .deals {
    padding-top: 90px;
  }

  .about_cont {
    text-align: center;
  }

  .deals_hldr .row>div:first-child {
    text-align: center;
  }

  .deal_slider {
    margin-top: 20px;
  }

  .deal_slider .item a {
    width: 100%;
  }

  .sp_offer_hldr .offer_hldr:last-child {
    margin-top: 20px;
  }

  .social_hldr i {
    padding-left: 15px;
    left: auto;
    position: absolute;
    right: 10px;
  }

  .footer_top {
    padding: 30px 0;
  }

  .footer_cont h4 {
    margin-top: 10px;
  }

  .testimonial::before {
    height: 310px;
  }

  .blog_cont h6 {
    font-size: 15px;
  }

  .blog_cont .d-flex {
    margin-bottom: 20px;
  }

  .blog_cont {
    padding: 15px;
  }

  .blog_cont p:not(:last-of-type) {
    margin-bottom: 10px;
  }

  .blog_cont figure {
    margin-bottom: 15px;
  }

  .lt_blog {
    margin-top: 25px;
  }

  .small_msn_image figure:first-child {
    height: 182px;
  }

  .small_msn_image figure:last-child {
    height: 169px;
  }

  .mission_text h6 {
    margin-bottom: 30px;
  }

  .mission_text h6 {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
  }

  .mission_hldr::before {
    height: 385px;
  }

  .mission_text ul {
    padding: 0 20px;
  }

  .sm_hd {
    text-align: center;
  }

  .ccs {
    flex-wrap: wrap;
  }

  .cc_inner {
    width: 100%;
    padding: 30px 0;
  }

  .cc_hldr {
    width: 100%;
  }

  .ccs .cc_inner:first-child .cc_hldr,
  .ccs .cc_inner:last-child .cc_hldr {
    padding: 0 15px;
  }

  .mission_hldr {
    padding-bottom: 30px;
  }

  .cc_hldr h3 {
    font-size: 25px;
    line-height: 40px;
    text-align: center;
  }

  .why_hldr figure {
    width: 100%;
    height: auto;
  }

  .cc_hldr p,
  .why_text,
  .where_hldr p {
    text-align: center;
  }

  .why_text {
    padding: 15px 0;
  }

  .where {
    padding: 30px 0;
  }

  .where_hldr h3 {
    font-size: 30px;
    line-height: 35px;
    text-align: center;
  }

  .call_mail p {
    text-align: left !important;
  }

  .where_hldr .row>div:first-child {
    margin-bottom: 15px;
  }

  .call_mail ul li span a {
    font-size: 14px;
  }

  .counter_box p {
    min-height: auto;
  }

  .counter_sec .row>div:not(:last-child) {
    margin-bottom: 15px;
  }

  .package_hldr_inner h6 {
    text-align: center;
    font-size: 20px;
  }

  .pkg_ftr {
    gap: 15px;
  }

  .pkg_ftr li {
    width: 45%;
  }

  .pkg_ftr li:not(:last-child) {
    margin-right: 0;
  }

  .pkg_ftr {
    justify-content: center;
  }

  .package_price {
    text-align: center;
  }

  .package_detail_slider figure {
    height: 190px;
  }

  .package_detail_slider .owl-dots {
    bottom: 15px;
  }

  .package_detail_slider {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .destination_hldr a img {
    height: 116px;
  }

  .destination_hldr {
    margin-bottom: 15px;
  }

  .itenary_hldr {
    margin-top: 20px;
  }

  .itenary_hldr ul,
  .itenary_hldr h4 {
    padding: 15px;
  }

  .itenary_hldr h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .itenary_hldr ul li:not(:last-child) {
    margin-bottom: 15px;
  }

  .bnr_txt h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .inner_banner figure {
    height: 200px;
  }

  .contact_hldr .row>div:not(:last-child)::after {
    height: 1px;
    width: 80%;
    top: auto;
    bottom: -10px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .contact_form_img img {
    height: auto;
  }

  .contact_form_hldr {
    padding: 20px;
  }

  .bnr_txt {
    width: 100%;
  }

  .hotel_ftr,
  .hotel_ftr h4 {
    margin-bottom: 10px;
  }

  .pkg_ftr li img {
    margin-right: 10px;
    width: 20px;
  }

  .amnities_list {
    margin-top: 10px;
  }

  .related_hotel_inner h6 {
    font-size: 23px;
  }

  .hotel_list .pkg_ftr {
    justify-content: flex-start;
  }

  .hotel_list {
    margin-top: 20px;
  }

  .hotel_list .row:not(:last-child) {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #DDDFEB;
  }

  .blogContentSec img {
    width: 100%;
    height: 270px;
  }

  .blogContentSec h4 {
    font-size: 19px;
    margin-top: 13px;
  }

  .wp-block-heading {
    font-size: 20px;
  }

  .full_width.package_highlight_section {
    padding: 14px;
  }

  .cost_include_exclude {
    margin-bottom: 20px;
  }

  .package_highlight_section h4 {
    font-size: 20px;
  }

  .cost_include_exclude h5 {
    font-size: 1.2rem;
  }
}

@media (max-width: 479px) {
  .blogContentSec h4 {
    font-size: 17px;
  }
}

.mapWrapper {
    border-radius: 30px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0px 0px 5px 2px rgb(175 175 175 / 50%);
}
.downloadBtn {
    border-radius: 3px;
    background: linear-gradient(270deg, #FFA200 0%, #DD3022 100%);
    border: none;
    padding: 10px 12px;
    color: #fff;
    font-family: var(--bodyFont);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all 0.5s ease-in-out;
    height: 47px;
    display: block;
    margin-top: 20px;
    text-align: center;
}
.downloadBtn:hover {
    background: linear-gradient(270deg, #DD3022 0%, #FFA200 100%);
}