

/* Fonts */
:root {
  --font-default: "Montserrat", sans-serif;
  --font-primary: "Prata", serif;
  --font-secondary: "Caveat", cursive;
}

/* Colors */
:root {
  --color-default: #0A223D;
  --color-primary: #FF7D24;
  --color-secondary: #4EB166;
  --button-bg-border: #FF7346;
  --white-color: #FFFFFF;
  --black-color: #000000;
  --light-grey: #c6cacf;
  --dark-grey:#666666;
  --color-pink:#F74E4F;
  --grey-color:#F6F6F6;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background-color: var(--white-color);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
}
img{
  max-width: 100%;
  height: auto;
}
h1{
  font-size: 55px;
  line-height: 1.5;
  color: var(--color-default);
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
}
h1 span{
  font-family: var(--font-secondary);
  text-transform: none;
}

h2{
  font-size: 40px;
  line-height: 1.5;
  color: var(--color-default);
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
}
h2 span{
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: 45px;
}
h3{
  font-family: var(--font-default);
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-default);
  margin: 0;
  padding: 0;
}

h6{
  font-family: var(--font-default);
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-default);
  margin: 0;
  padding: 0;
}
h6 i{
  color: var(--color-secondary);
}
p{
  color: var(--color-default);
  font-weight: 400;
  font-size: 12px;
}





.form-control{
  border-radius: 5px;
  border: 1px solid #000;
  margin: 5px 0;
  height: 33px;
  font-size: 12px;
  font-weight: 400;
}
.form-control:focus{
  box-shadow: 0 0 0 .25rem rgba(0,0,0,.1);
  border-color: var(--color-primary);
}
.btn-primary,.btn-primary:focus{
  background-color: var(--color-primary);
  color: var(--white-color);
  border: 1px solid var(--color-primary);
  border-radius: 5px;
}
.btn-secondary,.btn-secondary:focus{
  background-color: var(--white-color);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 5px;
}
.btn-sm-secondary{
  background-color: var(--white-color);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 5px;
}




/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  /*overflow: hidden;*/  
  padding: 20px 0;
  width: 100%;
}

.section-bg {
  background-color: #eee;
}



/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

/*@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
*/
@media (min-width: 991px) {
  .sub-menu-li {
      position: relative;
  }

  .main-nav .sub-menu-li ul.submenu {
      display: none;
      position: absolute;
      left: 0;
      top: 20px;
      background: #fff;
      min-width: 207px;
      padding: 10px 20px;
      box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
  }
  .main-nav .sub-menu-li ul.submenu li {
      margin-left: 0;
  }
  .main-nav .sub-menu-li ul.submenu li a {
      padding-top: 10px;
      padding-bottom: 10px;
  }
  .main-nav .sub-menu-li ul.submenu li a::after {
      content: none;
  }
  .main-nav .sub-menu-li:hover ul.submenu {
      display: block;
  }
}
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.whatsapp{
    position: fixed;
    right: -15px;
    bottom: 75px;
    z-index: 99999;
    border-radius: 50px;
    transition: all 0.4s;
    padding: 0;
}
.whatsapp img{
  width: 120px
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Booking request modal
--------------------------------------------------------------*/
.booking-modal-dialog {
  max-width: 760px;
}

.booking-modal-dialog .modal-content {
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(10, 34, 61, 0.24);
}

.booking-modal-header {
  flex: 0 0 auto;
  padding: 18px 24px;
  color: var(--white-color);
  border: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #f05b32 100%);
  box-shadow: inset 0 -4px 0 rgba(78, 177, 102, 0.9);
}

.booking-modal-header .modal-title {
  color: var(--white-color);
  font-weight: 700;
}

.booking-modal-heading {
  min-width: 0;
}

.booking-modal-title-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.booking-modal-whatsapp {
  display: inline-flex;
  gap: 6px;
  padding: 5px 10px;
  align-items: center;
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.booking-modal-whatsapp:hover,
.booking-modal-whatsapp:focus {
  color: var(--color-default);
  background: var(--white-color);
}

.booking-modal-whatsapp i {
  font-size: 16px;
}

.booking-modal-call {
  background: rgba(78, 177, 102, 0.24);
}

.booking-modal-eyebrow {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-request-form {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
}

.booking-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 20px 24px;
  background: #fbfcfe;
}

.booking-form-intro {
  margin-bottom: 16px;
  color: #536476;
  font-size: 13px;
  line-height: 1.6;
}

.booking-request-form .form-label {
  margin-bottom: 6px;
  color: var(--color-default);
  font-size: 12px;
  font-weight: 700;
}

.booking-character-count {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 6px;
  color: #647587;
  border-radius: 999px;
  background: #e9eef3;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: middle;
}

.booking-request-form .form-control {
  min-height: 44px;
  margin: 0;
  padding: 9px 12px;
  border: 1px solid #cbd4df;
  border-radius: 8px;
  background-color: var(--white-color);
  font-size: 13px;
}

.booking-request-form textarea.form-control {
  min-height: 68px;
  height: auto;
  resize: vertical;
}

.booking-request-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 125, 36, 0.14);
}

.booking-request-form .invalid-feedback {
  margin-top: 5px;
  font-size: 11px;
}

.booking-date-display {
  min-height: 18px;
  margin-top: 4px;
  color: #647587;
  font-size: 11px;
  font-weight: 600;
}

.booking-captcha-group .form-control {
  min-width: 76px;
  text-align: center;
}

.booking-captcha-question {
  min-width: 82px;
  justify-content: center;
  border-color: #cbd4df;
  background: #fff4ec;
  color: var(--color-default);
  font-size: 13px;
  font-weight: 800;
}

.booking-captcha-group .btn {
  border-color: #cbd4df;
}

.booking-request-form .form-control:focus + .booking-date-display {
  color: var(--color-primary);
}

.booking-form-message {
  margin-bottom: 16px;
  padding: 11px 14px;
  font-size: 13px;
  line-height: 1.45;
}

.booking-modal-footer {
  flex: 0 0 auto;
  gap: 8px;
  padding: 14px 24px;
  border-top: 1px solid #e6ebf0;
  background: var(--white-color);
}

.booking-modal-footer .btn {
  min-width: 120px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
}

.booking-submit-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.booking-modal-loading,
.booking-modal-load-error {
  display: flex;
  min-height: 220px;
  padding: 30px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

@media (max-width: 575.98px) {
  .booking-modal-dialog .modal-content {
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .booking-modal-header {
    padding: 14px 16px;
  }

  .booking-modal-title-row {
    gap: 8px;
  }

  .booking-modal-whatsapp {
    padding: 5px 8px;
    font-size: 11px;
  }

  .booking-modal-body {
    padding: 16px;
  }

  .booking-modal-footer {
    padding: 12px 16px;
  }

  .booking-modal-footer .btn {
    flex: 1;
    min-width: 0;
  }

  .booking-request-form .col-4 .form-label {
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header{
  height: 90px;
  background-color: var(--white-color);
}
.header.sticked{
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
}
@media screen and (min-width: 991px) {
  .main-nav ul{
    padding: 0;
    margin: 0;
    display: flex;
  }
  .main-nav li{
    padding: 0;
    margin: 0;
    list-style: none;
    margin: 0 0 0 20px;
  }
  .main-nav li a{
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--color-default);
    text-transform: uppercase;
    padding: 0 10px;
    display: block;
    position: relative;
  }
  .main-nav li.active a{
    font-weight: 600;
  }
  .main-nav li a:after{
    position: absolute;
    left: 50%;
    bottom: -34px;
    width: 0%;
    height: 5px;
    background-color: var(--color-primary);
    content: "";
    transition: all 0.3s;
  }
  .main-nav li a:hover:after{
    position: absolute;
    left: 0;
    bottom: -34px;
    width: 100%;
    height: 5px;
    background-color: var(--color-primary);
    content: "";
  }
  .main-nav li.active a:after{
    width: 100%;
    left: 0;
  }

}
.mobile-menuIcon{
  display: none;
}
button.sub-menu-toggle{
  display: none;
}

main#main{
  margin-top: 90px;
}
.verified-tag{
  position: relative;
  min-height: 184px;
  overflow: hidden;
}
.verified-tag .property-slide-image{
  display: block;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
.verified-tag .property-slide-image.is-loaded{
  opacity: 1;
}
.property-image-loader{
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: 5px;
  background-color: #f2f7f4;
  background-image: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(62%, 160px) auto;
  animation: property-loader-pulse 1.5s ease-in-out infinite;
}
.property-image-loader:before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.75) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: property-loader-shimmer 1.35s ease-in-out infinite;
}
.verified-tag.is-loading .property-image-loader{
  display: block;
}
.verified-tag.is-loading .verified-nexttrip:after{
  opacity: 0;
}
@keyframes property-loader-shimmer{
  100%{
    transform: translateX(100%);
  }
}
@keyframes property-loader-pulse{
  0%, 100%{
    background-color: #f2f7f4;
  }
  50%{
    background-color: #e7f1eb;
  }
}
@media (prefers-reduced-motion: reduce){
  .property-image-loader,
  .property-image-loader:before{
    animation: none;
  }
}
.verified-nexttrip:after{
  content: "Nexttrip Verified";
  background-image: url(../img/verified.svg);
  background-repeat: no-repeat;
  background-position: 5px center;
  background-color: var(--color-secondary);
  border-radius: 5px;
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 11px;
  font-weight: 500;
  height: 23px;
  line-height: 23px;
  color: var(--white-color);
  padding: 0 5px 0 25px;
}
.price-tag{
  font-size: 20px;
  font-weight: 600;
  color: var(--color-default);
}
.price-tag span{
  font-size: 12px;
  font-weight: 400;
  color: var(--color-default);
}

/*--------------------------------------------------------------
# Home Section -- 1
--------------------------------------------------------------*/
.section-1{  
  background-repeat: no-repeat;
  background-position: center top;
  background-color: var(--white-color);
  background-size: 100%
}
.bg-home{background-image: url(../img/section-1bg.png);}

.section-1 h1{
  text-align: center;
  color: var(--white-color);
}
.section-1 h3.white-heading{
  color: var(--white-color);
  font-size: 24px;
}
.section-1 label{
  /*color: var(--color-default);*/
  font-weight: 600;
  font-size: 11px;
  margin: 10px 0;
  padding: 0;
  display: flex;
  text-transform: uppercase;
}
.section-1 label img{
  margin-right: 8px;
}
.section-1 .btn-primary{
  width: 100%;
  margin: 10px 0 0;
}
.section-1 .btn-secondary{
  width: 100%;
  margin: 10px 0 0;
}


/*--------------------------------------------------------------
# Home Section -- 2
--------------------------------------------------------------*/
.section-2{
  /*background-color: var(--white-color);*/
}
.widget-box_1{
  /*width: 205px;*/
  height: 275px;
  border-radius: 10px;
  overflow: hidden;
/*  margin: 10px;*/
  position: relative;
  transition: all 0.3s;
}
.widget-box_1:before{
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
content: "";
pointer-events: none;
background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
}
.widget-box_1:hover:before{
  background-color: rgba(255, 125, 36, 0.4);
}


.widget-box_1>a{
  display: block;
  height: 100%
}
.widget-box_1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.widget-box_1 h4{
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--white-color);
  z-index: 1;
  padding: 15px;
  width: 100%;
}
.widget-box_1:hover{
  margin-top: -10px;
}


/*--------------------------------------------------------------
# Home Section -- 3
--------------------------------------------------------------*/
.section-3{
  /*background-color: #F6F6F6;*/
}
.widget-box-2 .price-tag span{
  display: block;
}
.widget-box-2 .btn-primary,.widget-box-2 .btn-secondary{
  font-size: 13px;
}

.widget-box-2 p img{
  margin-right: 5px;
}



/*--------------------------------------------------------------
# Home Section -- 4
--------------------------------------------------------------*/
.section-4{
  background-color: var(--white-color);
}
.widget-box-3 a.btn{
  margin-right: 10px;
  padding: 0 16px;
}
.btn-grp a.btn{
  padding: 0 16px;
}
.widget-box-3 a.btn-secondary:hover{
  background-color: var(--button-bg-border);
  color: var(--white-color);
  border-color:  var(--button-bg-border);
}
ul.facility-list{
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
ul.facility-list li{
  margin: 0;
  padding: 0 0 0 20px;
  font-weight: 500;
  font-size: 13px;
  list-style: none;
  width: 33.333%;
  position: relative;
}
ul.facility-list li:before{
  content: "";
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 6px;
}



.widget-box-3 .price-tag span{
  display: block;
}
.line{
  font-size: 15px !important;
  text-decoration: line-through;
  opacity: 0.5;
}
.widget-box-3 .price-tag{
  font-size: 28px;
}



footer.footer{
  background-color: var(--color-default);
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 0 0;
}
footer.footer ul{
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
footer.footer ul li{
  margin: 0;
  padding: 0 0 20px;
  width: 50%;
}
footer.footer ul li a{
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  display: block;
}
footer.footer h4{
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  padding: 0 0 20px;
  margin: 0;
  display: block;
}
footer.footer p{
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: #fff;
  padding: 0 0 15px;
  margin: 0;
  display: block;
}
footer.footer p.ftrIcon_1{
  padding-left: 20px;
  position: relative;
}
footer.footer p.ftrIcon_1:before{
  background-image: url(../img/footer-icon_1.svg);
  background-repeat: no-repeat;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
}
footer.footer p.ftrIcon_2{
  padding-left: 20px;
  position: relative;
}
footer.footer p.ftrIcon_2:before{
  background-image: url(../img/footer-icon_2.svg);
  background-repeat: no-repeat;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
}
footer.footer p.ftrIcon_3{
  padding-left: 20px;
  position: relative;
}
footer.footer p.ftrIcon_3:before{
  background-image: url(../img/footer-icon_3.svg);
  background-repeat: no-repeat;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
}


.newsletterSec{
  background-color: var(--color-secondary);
  border-radius: 40px;
  position: relative;
  margin-bottom: -40px;
}
.newsletterSec h3{
  color: var(--white-color);
  font-family: var(--font-default);
  margin: 0;
  padding: 0;
  font-size: 28px;
  line-height: 50px;
}
.newsletterSec .bg-white{
  border-radius: 30px;
  width: 50%;
  height: 50px;
}
.newsletterSec input[type="text"]{
    background-color: transparent;
    border: none;
    width: calc(100% - 123px);
    height: 50px;
    outline: 0 none;
    padding: 0 20px;
    display: inline-block;
    vertical-align: middle;
    
}
.newsletterSec input[type="text"]::placeholder{
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.newsletterSec .btn-primary{
/*  width: 136px;*/
  border-radius: 30px;
}

/*jayanta css*/
.know-more-btn{
  font-size: 10px;
  color: #fff;
  font-weight: 600;
  background: var(--color-primary);
  padding: 4px 7px;
  border: 1px solid #000;
  line-height: 21px;
  border-left: none  
}
.know-more-btn.disabled{
  background: var(--light-grey);
  color: var(--white-color)
}
.pr-15{
  padding-right: 95px
}
.btn.position-ab{
    position: absolute;
    right: 6px;
    top: 5px;
    margin: 0;
    border-radius: 5px !important;
    line-height: 15px;
    border: none;
    z-index: 11
}
.input-group-radius-default .form-control{
  border-radius: 5px !important
}
.input-group .form-control{
  margin: 0
}
.label-txt-hghlt{
  font-size: 10px;
}
.label-txt-hghlt i{
  font-size: 14px;
  color: var(--color-secondary);
  margin-right: 4px
}
.color-default{
  color: var(--color-primary);
}
.plus-btn{
  background: var(--color-secondary);
  padding: 4px 8px;
}
.swiper-button-next.arrow-button-one,.swiper-button-prev.arrow-button-one{
  width: 28px;
  height: 28px;
  position: absolute; 
  top: 23px;
  background: var(--color-secondary);
  border:1px solid transparent;
}
.swiper-button-next.arrow-button-one.swiper-button-disabled,.swiper-button-prev.arrow-button-one.swiper-button-disabled{
  background: none;
  border-color:var(--black-color);
  opacity: 1
}
.swiper-button-next.arrow-button-one{
   right: 0;
}
.swiper-button-prev.arrow-button-one{
    right: 33px;
    left: inherit;
}
.swiper-button-next.arrow-button-one:after,.swiper-button-prev.arrow-button-one:after{
   font-size: 10px;
   color: var(--white-color);
}
.pagination-wrap{
      position: absolute;
      background: var(--white-color);
      height: 29px;
      width: 66px;
      top: 0;
      right: 0;
      z-index: 9;
}
.swiper-button-next.arrow-button-one.swiper-button-disabled:after,.swiper-button-prev.arrow-button-one.swiper-button-disabled:after{
  color: var(--black-color);
}
.destination-slider{
  padding-top: 10px
}
.swiper-button-prev.arrow-button-two,.swiper-button-next.arrow-button-two{
  background: var(--white-color);
  width: 41px;
  height: 41px;
  box-shadow: 1px 4px 4px 0px rgba(0,0,0,0.25);
}
.swiper-button-prev.arrow-button-two{
  left: 2px
}
.swiper-button-next.arrow-button-two{
  right: 2px
}
.swiper-button-prev.arrow-button-two:after,.swiper-button-next.arrow-button-two:after{
  font-size: 16px;
  color: var(--black-color);
}
.grey-bg{
  background-color:var(--grey-color);
}
.white-bg{
  background-color: var(--white-color)
}
.btn-primary:hover{
  background: none;
  color: var(--color-primary);
  border-color: var(--color-primary)
}
.btn-secondary:hover{
  background: var(--color-primary);
  color: var(--white-color);
  border-color: var(--color-primary)
}
.inner-banner{
 background-image: url(../img/inner-banner-bg.png);
 padding: 15px 0;
 background-size: cover
}
/*.section-1.inner-banner label,.inner-banner .label-txt-hghlt{
  color: var(--white-color)
}*/
.blck-txt{
  color: var(--color-default) !important;
}
.wht-txt{
  color: var(--white-color) !important;
}
.form-control.h-47{
  height: 47px
}
.know-more-btn.h-l{
    padding: 4px 15px;
   
}
.btn.position-ab.h-l{
  top: 11px;
   line-height: 17px;
}
.heading_18{
  font-weight: 600;
  font-size: 20px;
  color: var(--color-secondary);
  border-color: var(--color-secondary) !important;
}
.heading_19{
  font-size: 15px;
  color: var(--color-secondary);
}
.heading_20{
  color: var(--dark-grey);
  font-weight: 600;
  font-size: 14px !important
}
.heading_24{
  font-size: 24px;
  color: var(--color-default);
}
.text_16{
  color: var(--color-secondary);
  font-size: 24px;
  font-family: var(--font-primary);
}
.filter-checkbox {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #9B9B9B;
    position: relative;
    top: 4px
}
.filter-blk p{
  font-size: 13px;
  margin-bottom: 5px;
  color: var(--color-default);
  font-weight: 500
}
.count{
  color: #6b6b6b;
  font-size: 13px
}
.filter-item input[type=checkbox],.filter-item input[type=radio] {
    display: none;
}

.section-1 .label-txt-hghlt label.filter-label{
  font-size: 10px;
  text-transform: none;
  margin: 0px;
  display: inline-block;
}
.section-1 .label-txt-hghlt .filter-checkbox{
 width: 14px;
 height: 14px;
 border-color: var(--color-secondary);
 border-radius: 100%
}
.section-1 .label-txt-hghlt .filter-label input:checked + .filter-checkbox{
  border-color: transparent;
    background: #fff;
}
.section-1 .label-txt-hghlt .filter-label input:checked + .filter-checkbox:after{
    width: 6px;
    height: 5px;
    left: -1px;
    top: -4px;
    content: "\f058";
    border: none;
    font-family: 'FontAwesome';
    font-size: 14px;
    transform: none;
    color: #4eb166;
}
.filter-label input:checked + .filter-checkbox {
    background-color:var(--color-secondary);
}
.filter-label input:checked + .filter-checkbox:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 5px;
    left: 5px;
    top: 5px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    z-index: 1;
    -ms-transform: rotate(-45deg) translateY(-50%);
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
}
.filter-item{
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-grey);
}
.mobile-filter-trigger-wrap {
  margin-bottom: 18px;
}
.mobile-filter-trigger {
  width: 100%;
  padding: 11px 16px;
  color: var(--color-default);
  border: 1px solid var(--color-primary);
  border-radius: 9px;
  background: #fff7f1;
  font-size: 13px;
  font-weight: 700;
}
.mobile-filter-trigger:hover,
.mobile-filter-trigger:focus {
  color: var(--white-color);
  background: var(--color-primary);
}
.z-depth-1-half iframe{
  width: 100%;
  height: 210px;
}
.show-map-btn{
  font-weight: 600;
  font-size: 13px;
  line-height: 30px;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0px auto;
  width: 144px;
}
.show-map-btn i{
  font-size: 16px;
  margin-right: 10px
}
.transform-none{
  transform: none;
}
.margin-none{
  margin: inherit;
}
.bg-map{
  background: url(../img/map-bg.png);
}
.color-orange{
  color: var(--color-primary);
  font-size: 14px
}
.color-green{
  color: var(--color-secondary);
  font-size: 14px
}
.product-badges{
  background: var(--color-pink);
  line-height: 17px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.product-badges span{
  font-weight: 600
}
.price-tag.border-top{
  border-color: #4E4E4E
}
.listing-sec .widget-box-3 .price-tag span{
  display: inline
}
.days-descrip{
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: var(--color-default);
    font-size: 14px;
    border-radius: 10px;
    line-height: 35px;
    padding: 0 15px;
    font-weight: 500;
    background-color: var(--white-color)
}
.search-btn{
  font-size: 15px;
}
.search-btn i{
  font-size: 24px
}
.input-group .dropdown-menu{
    transform: none !important;
    width: 100%;
    top: 100%! important;
        border-radius: 0 !important;
    border: none !important;
    padding: 10px

}
.input-group .dropdown-menu label{
  margin: 0
}
.cus-row{
  margin: 0 -5px
}
.cus-col{
  padding: 0 5px
}
.cus-col .form-control{
  padding: 6px 8px
}
.form-range{
  height: 4px;
  border: none !important;
  background: var(--black-color) !important
}
/*price range slider*/
.ui-slider .ui-slider-range{
  background: var(--button-bg-border)
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
    width: 17px;
    height: 18px;
    border-radius: 100%;
        top: -7px;
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important
}
.ui-state-active{
  background-color: var(--color-primary) !important;
  border-color: red !important
}
.amount{
  background-color: transparent;
}
.amount:focus{
  outline: none;
}
.close-search,.close-filter{
  display: none;
}
.section-1 label.form-check-label{
    margin: 0;
    font-size: 10px;
    text-transform: none;
    line-height: 12px;
    margin-left: 5px;
    cursor: pointer;
}
.form-switch .form-check-input{
  margin-top: 0;
  cursor: pointer;
}
.form-switch{
  min-height: auto !important;
  margin-bottom: 0;  
}
.form-check-input:checked{
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.font-default{
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 36px;
  color: var(--color-default)
}
.about-package-content h2{
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 25px;
  color: var(--color-default)
}
.package-title-link,
.package-title-link:visited,
.package-title-link:hover,
.package-title-link:focus,
.package-title-link:active{
  color: var(--black-color);
  text-decoration: none;
}
.property-title-link,
.property-title-link:visited,
.property-title-link:hover,
.property-title-link:focus,
.property-title-link:active,
.property-location-link,
.property-location-link:visited,
.property-location-link:hover,
.property-location-link:focus,
.property-location-link:active{
  color: var(--black-color);
  text-decoration: none;
}
.rating ul li{
  color: var(--color-primary)
}
.rating{
  font-weight: 500;
  font-size: 16px;
  color: var(--black-color)
}
.package-dtls-img{
  border-radius: 10px;
  overflow: hidden;
}
.prev-arrow,.next-arrow,.rprev-arrow,.rnext-arrow{
    width: 41px;
    height: 41px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    /* display: inline-block; */
    border-width: 2px !important;
    color: var(--white-color);
}
.next-arrow,.rnext-arrow{
  right: 20px;
  left: inherit;
}
.prev-arrow:hover,.next-arrow:hover,.rprev-arrow:hover,.rnext-arrow:hover{
  background-color: var(--white-color);
  color: var(--color-primary)
}
.active-btn{
  background-color: var(--color-primary);
  color: var(--white-color);
}
.package-rate-box .price-tag {
    font-size: 28px;
}
.package-rate-box span{
  opacity: 1
}
.package-rate-box .price-left .d-block{
  line-height: 28px;
}
.green-text{
  color: var(--color-secondary)
}
.offer{
  font-size: 10px !important;
  color: var(--white-color) !important;
  background-color: var(--color-pink);
  width: 61px;
  line-height: 17px;
}
.package-rate-box .line{
  font-size: 20px !important;
  font-weight: 300
}
.person-per{
  font-size: 10px;
    padding-top: 8px;
    line-height: inherit;
}
.verified-nexttrip-txt{
  font-weight: 500;
  font-size: 11px;
  color: var(--color-default);
}
.date-range{
  font-weight: 600;
  font-size: 13px;
  color: var(--color-default);
}
.dy-count{
  font-size: 10px;
  font-weight: 500;
  color: var(--color-default);
}
.modify-btn{
  color: var(--color-default);
  border-color: var(--color-default);
  font-size: 10px;
  font-weight: 500;
}
.package-rate-box{border-radius: 10px;}
.package-dtls-img img{
  width: 100%
}
.facility-list-vertical li{
  font-size: 13px;
  font-weight: 500;
  color: var(--color-default);
  position: relative;
  padding: 0 0 0 20px;
}
.facility-list-vertical li:before{
  content: "";
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 6px;
}
.book-btn{
  font-size: 15px;
  width: 100%;
  line-height: 40px
}
.advanced-btn{
  font-size: 15px;
  width: 100%;
  color: var(--color-default);
  text-decoration: none;
  padding: 20px 15px
}
.testimonial-part{
  border-radius: 10px
}
.testmial-avtar{
  width: 122px;
  height: 122px;
  border:#f0f2f3 14px solid;
}
.testimonial-part p,.about-package-content p{
  font-size: 16px;
  color: var(--color-default);
}
.testimonial-part h3{
  color: var(--color-secondary);
  font-size: 24px;
  font-weight: 600;
}
.testimonial-part h3 span{
  font-size: 18px;
  color: var(--color-default)
}
.btn-call{
  background-color: var(--color-default);
  font-size: 15px;
  color: #fff;
  line-height: 47px;
  padding: 0 50px;
  border:var(--color-default) 1px solid;
}
.btn-call:hover{
  background-color: transparent;
  color: var(--color-default);
  border:var(--color-default) 1px solid;
}
.btn-call i{
  color: var(--color-primary);
}
.btn-whatsapp i{
  font-size: 22px;
  position: relative;
  top: 3px
}
.btn-whatsapp{
  background-color: var(--color-secondary);
  font-size: 15px;
  color: #fff;
  line-height: 47px;
  padding: 0 50px;
  border:var(--color-secondary) 1px solid;
}
.btn-whatsapp:hover{
  background-color: transparent;
  color: var(--color-secondary);
  border:var(--color-secondary) 1px solid;
}
.about-package-content p a{
  font-weight: 600
}
.about-package-content p a i{
  font-size: 14px
}
.map{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.map iframe{
  width: 100%;
  height: 400px
}
.map-caption{
  background-color: rgba(0,0,0,0.7);
  bottom: 0;
  left: 0;
}
.map-caption .btn-light{
  font-weight: 600;
  font-size: 10px;
  color: var(--color-default)
}
.inner-map-btn{
  width:85%
}
.inner-map-btn a{     width: 31.3%;
    padding: 3px 0px; }
.about-tab{
  border-radius: 10px;
}    
.grey-bg{
  background-color: #F6F6F6;
}
.tab-one{
  background-color: var(--white-color) !important;
  font-size: 13px;
  color: var(--color-default);
  border:none !important;
  position: relative;
}
.tab-one:before{
  height: 1px;
  width: 0;
  left: 0;
  bottom: 0;
  content: '';
  background-color: var(--color-primary);
  position: absolute;
  transition: 0.5s
}
.tab-one:hover{
  color: var(--color-primary);
}
.tab-one.active{
  font-weight: 600;
  color: var(--color-primary) !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.tab-one.active:before,.tab-one:hover:before{
  width: 100%
}
.specility-blk{
  max-width: 130px;
  margin-right: 15px;
}
.specility-blk p{
  font-weight: 500;
  font-size: 12px;
  color: var(--black-color);
  margin-bottom: 0
}
.specility-blk:nth-child(1) img{
  height: 27px
}
.specility-blk:nth-child(2) img{
  height: 27px
}
.specility-blk:nth-child(3) img{
  height: 29px
}
.accordion-button.tab-one{
  color: var(--color-primary) !important
}
.accordion-button.tab-one.collapsed{
  color: var(--color-default) !important;
}
.accordion-button.tab-one:before{
  width: 100%
}
.accordion-button.tab-one.collapsed:before{
  width: 0
}
.accordion-button::after{
  color: var(--color-primary) !important
}
.tab-two{
  border: var(--color-default) 2px solid !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-default) !important;
  line-height: 35px;
}
.tab-two.active,.tab-two:hover{
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--white-color) !important;
}
.tab-two .day-date{
  color: var(--white-color);
  font-size: 11px;
  font-weight: 500;
  background-color: var(--color-primary);
  line-height: 21px;
  padding: 0 10px;
  float: right;
  margin-top: 7px;
  border-radius: 5px;
  font-family: var(--font-default)
}
.accordion-button{
  font-family: var(--font-default)
}
.tab-two.active .day-date,.tab-two:hover .day-date{
  color: var(--color-primary);
  background-color:var(--white-color);
}
.day-description h2{
  font-weight: 600;
  font-size: 25px;
  color: var(--color-default);
  text-align: left;
  font-family: var(--font-default);

}
.day-description h2 span{
  color: var(--color-secondary);
  font-family: var(--font-default);
  font-size: 25px;
}
.day-description p{
  font-weight: 500;
  font-size: 15px;
  color: var(--color-default)
}
.day-description ul.facility-list{
  padding-left: 15px
}
.day-description ul.facility-list li{
  font-weight: 500;
  font-size: 15px
}
.pagination-bottom a{ color: var(--color-default); font-size: 15px; font-weight: 500 }
.pagination-bottom a:hover{
  color: var(--color-primary)
}
.accordion-button.tab-two{
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--white-color) !important;
  background-image: none !important;
  box-shadow: none;
}
.accordion-button.tab-two.collapsed{
  background: var(--white-color) !important;
  color: var(--color-default) !important;
  border-color:  var(--color-default) !important;
}
.btn-call,.btn-whatsapp{ width: auto !important;  }
.place-loction-s{
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-default);

}
.place-loction-s i{
  color: var(--color-secondary);
  font-size: 21px;
  margin-right: 10px
}
.room-avaiable{
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 12px
}
.room-type{
  color: var(--color-default);
  font-weight: 600;
  font-size: 28px;
  line-height: 34px
}
.check-room{
  color: var(--color-default);
  font-size: 12px;
}
.adult-count{
  font-size: 13px;
  font-weight: 500;
  color: var(--color-default);
}
.adult-count i{
  color: var(--color-secondary);
}
.view-tarif-link{
  font-weight: 500;
  font-size: 11px;
  color: var(--white-color);
  background: var(--color-secondary);
  padding: 0 10px;
  line-height: 22px;
}
.view-tarif-link:hover{
  background-color: var(--color-default);
  color: var(--white-color)
}
.check-availity-form input{
  height: auto;
}
.map-top-search{
  position: absolute;
  top: 10px;
  right: 0px;
  width: 100%;
  padding: 0 15px;
}
.search-map{
  width: 113px
}
.search-map input{
  height: 27px;
  color: var(--color-default);
  font-size: 10px;
  font-weight: 600;
}
.search-map input::placeholder{
  color: var(--color-default)
}
.search-map input:focus,.check-availity-form input:focus{
  outline: none;
  border:none;
  box-shadow: none;
}
.search-map i{
  font-size: 12px
}
.large-view{
  color: var(--color-default);
  font-size: 10px;
  font-weight: 600;
}
.all-photos-link{
  position: absolute;
  right: 5px;
  bottom: 5px;
  font-weight: 600;
  color: #fff;
  font-size: 12px
}
.room-dtls-left .room-avaiable{
  color: var(--color-primary)
}
.room-dtls-left .room-type{
  font-size: 22px;
  line-height: 24px
}
.recommended-txt{
  width: auto;
  padding: 4px 10px
}
.room-type-head{
  font-weight: 600
}
.room-option-list li{
  font-size: 13px;
  font-weight: 500;
  color: var(--color-default);
  position: relative;
}
.room-option-list li .fa-circle-xmark{
  color: var(--color-pink);
}
.room-option-list li .fa-circle-check{
  color: var(--color-secondary)
}
.day-description .price-tag{
      font-size: 20px;
}
.day-description .line {
    font-size: 20px !important;
    font-weight: 300;
}
.day-description .person-per{
  font-size: 14px;
  font-weight: normal;
  color: var(--color-default)
}
.check-avaaility-btn{
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
}
.day-description .room-type-head{
  line-height: 24px;
}
.scroll-area{
  /* max-height: 375px; */
  overflow: auto;
  padding-right: 0px
}
.scroll-area {
   scrollbar-width: thin;
   scrollbar-color: var(--color-default) #bbb;
}
.scroll-area::-webkit-scrollbar {
   width: 6px;
   height: 10px;
}
.scroll-area::-webkit-scrollbar-track {
   background-color: #bbb;
}
.scroll-area::-webkit-scrollbar-thumb {
   background-color: var(--color-default);
}
.scroll-area::-webkit-scrollbar-track, .scroll-area::-webkit-scrollbar-thumb {
   border-radius: 12px;
}

.scroll-area .overflow-hidden{
  margin-bottom: 8px;
}
.scroll-area .overflow-hidden:nth-last-child(1){
  margin-bottom: 0
}
.room-dtls-content .room-dtls-blk{
  position: relative;
  margin-bottom: 25px;
  padding-top: 30px
}

.room-dtls-content .room-dtls-blk::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background-color: #6c757d;
    width: 99.1%;
    height: 1px;
    margin: 0px auto;
    right: 0;
}
.room-dtls-content .room-dtls-blk:nth-child(1){
  padding-top: 0
}
.room-dtls-content .room-dtls-blk:nth-child(1):after{
  content: none;
}
.viewmore-hotel-detailsbtn{
  background-color: var(--color-default);
  color: var(--white-color);
  border: var(--color-default) 1px solid !important
}
.default-header{
  font-family: var(--font-default);
  font-weight: 600;
}
.ameties-form{
  width: 68%;
}
.ameties-form .form-control{
  font-weight: 500;
}
.ameties-form .form-control::placeholder{
  font-weight: 500;
}
.ameties-form i{
  font-size: 13px;
  color: var(--color-secondary)
}
.search-green{
  background-color: var(--color-secondary);
  border-color: var(--color-secondary) !important;
}
.search-green:hover{
  background-color: transparent;
}
.search-green i{
  color: var(--white-color) !important
}
.search-green:hover i{
  color: var(--color-secondary) !important;
}
.amenities-blk h6{
  color: var(--button-bg-border);
  font-weight: 600;
  font-size: 15px;
}
.circle-listing{
  padding-left: 0
}
.circle-listing li{
  color: var(--color-default);
  font-size: 13px;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
  text-transform: uppercase;
  list-style-type: none;
  width: 20%;
  padding-right: 15px
}
.circle-listing li:after{
  background-image: url(../img/circle-icon.png);
  position: absolute;
  left: 0;
  top: 2px;
  content: '';
  width: 14px;
  height: 14px
}
.circle-listing-large-text li{
  font-size: 15px;
  width: 25%
}
.property-rules-blk h4{
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 15px;
}
.property-rules-blk h4 span{
  margin-right: 25px
}
.basic-ul{
  padding-left: 30px;
}
.basic-ul li{
  font-weight: 500;
  font-size: 13px;
  color: var(--color-default);
  padding-right: 30px;
}

#faq-accordian .accordion-button{
  box-shadow: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-secondary);
}
#faq-accordian .accordion-body{
  color: (--color-default);
  font-size: 13px;
  font-weight: 500;
  padding-bottom: 25px !important
}
#faq-accordian .accordion-button:after{
  content: "";
  background-image: url(../img/minus-icon.png);
  width: 13px;
  height: 3px;
  color: var(--color-default) !important;
  background-size: inherit;
}
#faq-accordian .accordion-button.collapsed::after{
  background-image: url(../img/plus-cion.png);
  width: 13px; height: 12px;  
}
#faq-accordian .accordion-item:last-of-type{
  border-radius: 0 !important
}
#faq-accordian .accordion-item:nth-last-child(1){
  border:none !important;
}
.rating-summery h4{
  font-weight: 500;
  font-size: 20px;
  color: var(--color-default);
}
.progress{ height: 11px }
.progress-bar{
  background-color: var(--button-bg-border);
  border-radius: 30px;
}
.rating-summery ol{
  padding-left: 17px;
}
.rating-summery ol li{
  font-weight: 600;
  font-size: 20px;
  color: var(--color-default);
  margin-bottom: 15px;
}
.rating-summery h6{
  font-weight: 600;
  font-size: 64px;
  color: var(--color-default)
}
.rating-summery li {
    color: var(--color-primary);
}
.review-user-img{
  width: 57px;
  height: 57px;
  border-radius: 100%;
  overflow: hidden;
}
.review-content{
  width: 85%
}
.review-content h5{
  font-weight: 600;
  font-size: 15px;
  color: var(--color-default);
}
.review-content li{
  color: var(--color-primary);
}
.review-content p{
  font-weight: 500;
  font-size: 13px;
  color: var(--color-default)
}
.review-part{
  border-top: #929090 1px solid;
  margin-top: 25px;
  padding-top: 25px
}
.review-part:nth-child(1){
  border:none;
  padding-top: 0
}
.combo-packages{
  font-size: 10px;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--color-secondary);
  line-height: 16px;
  width: 104px;
  position: absolute;
  left: 0;
  top: 14px;
  text-align: center;
}
.combo-packages:after{
  background: url(../img/ribbon.png);
  width: 6px;
  height: 16px;
  position: absolute;
  right: -6px;
  top: 0;
  content: '';
}
.rating-pay{
  font-size: 14px;
  width: 38%;
}
.rating-pay ul li{display: inline-block;}
.price-total-calc p{
  font-weight: 500;
  font-size: 13px;
  color: var(--color-default);
  margin-bottom: 10px
}
.btn-total,.btn-total:hover,.btn-total:focus{
  background-color: var(--color-default);
  font-size: 19px;
  font-weight: 600;
  color: var(--white-color);
  line-height: 45px;
  cursor: default;
}
.custom-tab .btn-secondary,.custom-tab-location .btn-secondary{
  font-size: 12px;
  font-weight: 500;
  color: var(--color-default);
  line-height: 40px;
  padding: 0 25px;
  border-color: var(--color-default)
}
.custom-tab .btn-secondary:hover,.custom-tab .btn-secondary.active-btn,.custom-tab-location .btn-secondary:hover,.custom-tab-location .btn-secondary.active-btn{
  background-color: var(--color-default);
  color: var(--white-color)
}
.tab-cutom-headline{
  font-weight: 600;
  font-size: 22px;
  color: var(--color-default);
  position: relative;
}
.tab-cutom-headline:after{
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  content: '';
  position: absolute;
  bottom: 0;
  left: 0
}
#ameties .circle-listing li{
  width: 25%
}
#where-will .inner-map-btn{
      width: 50%;
}
#where-will .inner-map-btn a{
      padding: 5px 0px;
}
#where-will .search-map {
    width: 34%;
}
.custom-tab-fixed{
  position: fixed;
    top: 75px;
    background: #fff;
    z-index: 9;
}
.body-padding{
  padding-top: 126px;
}
.confirm-text-headline{
  font-size: 24px;
  font-weight: 600;
  color: var(--color-default);
}
.date-edit-blk .form-control{
  height: 48px;
  font-weight: 500;
  color: var(--color-default);
  font-size: 15px
}
.date-edit-blk i{
  color: var(--color-secondary);
}
.login-signup-blk .input-group span{
  font-size: 21px;
  font-weight: 600;
  color: var(--color-default)
}
.login-signup-blk .form-control{
  height: 63px;
  font-weight: 500;
  color: var(--color-default);
  font-size: 15px
}
.login-signup-blk .form-control:focus,.date-edit-blk .form-control:focus{
  box-shadow: none;
}
.send-otp-btn{
  font-size: 15px;
  font-weight: 700;
  background-color: var(--color-secondary);
  height: 63px;
  border-color: var(--color-secondary);
  width: 100%
}
.send-otp-btn:hover{
  border-color: var(--color-secondary);
  color: var(--color-secondary)
}
.date-edit-blk label{
  font-weight: 600;
  font-size: 24px;
  color: var(--color-default)
}
.date-edit-blk i{
  color: #9da7b1
}
.agree-btn{
  background-color: var(--button-bg-border);
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  line-height: 52px
}
.or-blk{
  width: 70%;
  margin: 0px auto;
}
.or-blk>span{
  color: var(--color-default);
  font-size: 12px;
  position: relative;
  font-weight: 500;
  position: relative;
}
.or-blk>span:after{
  background-color: var(--color-default);
  width: 46%;
  left: 0;
  content: '';
  position: absolute;
  top: 50%;
  height: 1px
}
.or-blk>span:before{
  background-color: var(--color-default);
  width: 46%;
  right: 0;
  content: '';
  position: absolute;
  top: 50%;
  height: 1px
}
.signin-method a{
  width: 100%;
  display: inline-block;
  font-size: 12px;
  color: var(--color-default);
  text-transform: uppercase;
}
.location-name h3{
  font-size: 20px;
  font-weight: 600;
  color: var(--color-default);
  line-height: 24px
}
.location-main-place span{
  font-size: 16px;
  color: var(--color-default);
  font-weight: 300;
}
.price-dtls{
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 600;
  position: relative;
}
.price-dtls:after{
  background-color: #84909e;
  width: 65%;
  height: 1px;
  content: '';
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.select-method-fld i{color: var(--color-secondary)}
.select-method-fld select{
  background:url(../img/select-arrow.png);
  width: 21px;
  height: 12px;
  background-position: 96%;
  background-repeat: no-repeat;
}
.enter-coupon{
  color: var(--color-default);
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
}
.cancellation-link{
  color: #4E4E4E;
  font-weight: 500;
  font-size: 15px;
}
.location-details h2{
  font-weight: 600;
  font-size: 25px;
  color: var(--color-default);
  font-family: var(--font-default);  
}
.location-details input{
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--color-default);
  border-color: (--white-color);
  height: 49px;
  padding: 6px 20px
}
.search-blue-btn,.search-blue-btn:hover,.search-blue-btn:focus{
  background-color: var(--color-default);
  color: var(--white-color);
  height: 49px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  padding: 0 25px;
}
.location-details .custom-tab a{
  font-weight: 600;
  font-size: 14px
}
.custom-tab-location .btn-secondary{
  font-size: 14px;
  color: var(--color-default)
}
.location-dtls h4{
  font-weight: 600;
  font-size: 25px;
  color: var(--color-default);
}
.location-dtls h6{
  font-weight: 500;
  font-size: 15px;
  color: var(--color-default);
}
.location-dtls p{
  font-size: 13px;
  color: var(--color-default);
  margin-bottom: 0;
  display: inline-block;
  width: 100%
}
.hotel-trip span{
  color: var(--color-default);
  font-size: 13px;
  font-weight: 600;
}
.hotel-info-desc p{
  font-weight: 600;
  font-size: 13px;
}
.location-tab{
  border-bottom: #dcdcdc 1px solid;
}
.location-tab li button{
  font-size: 20px;
  color: var(--color-default) !important;
  padding-left: 0 !important;
  position: relative;
}
.location-tab li button:after{
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-color: var(--color-secondary);
  opacity: 0
}
.location-tab li button.active{
  background-color: transparent !important;
  font-weight: 600;
}
.location-tab li button.active:after{
  opacity: 1
}
.location-tab li button.active span{
  color: var(--color-secondary)
}
.hotel-location-blk h3{
  font-weight: 600;
  font-size: 16px;
  color: var(--color-default);
}
.hotel-location-blk span{
  color: var(--color-default);
  font-weight: 500;
  font-size: 10px;
}
.hotel-location-blk span i{
  color: var(--color-secondary);
  font-size: 14px;
  vertical-align: middle;
  margin-right: 5px
}
.hotel-location-blk p{
  font-weight: 300;
  color: var(--color-default);
  margin-top: 10px
}
.scroll-area .overflow-hidden{
  background: #eee;
  padding: 15px;
  border-radius: 10px;
}
/*price range slider*/
@media screen and (max-width: 991px) {
  .mobile-menuIcon{
    display: block;
  }
  .mobile-menuIcon{
    position: absolute;
    /*left: 15px;
    top: 25px;*/
    color: var(--font-default);
    font-size: 35px;
    right: 15px
  }
  .mm-ocd{
    font-size: 20px;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: 600;
  }

}
@media only screen and (min-width: 992px) and (max-width: 1024px)  {
  .section-4 ul.facility-list li{
    width: 50%;
  }
  .widget-box-2 .btn-primary,.widget-box-2 .btn-secondary{
    font-size: 11px;
  }
  .section-1 .btn-secondary{
    font-size: 13px
  }
  .testimonial-inner{
    width: 68%;
  }
  .circle-listing li{ width: 25% }
  #packagescollapse ul.facility-list li{
    width: 50%;
  }
  #where-will .inner-map-btn{
    width: 100%;
    margin-bottom: 5px;
  }
  #where-will .search-map{width: 50%}
  #where-will .map-caption .large-view{width: 48%}

}
@media only screen and (min-width: 768px) and (max-width: 991px)  {
  ul.facility-list li{
    width: 50%;
  }
  .newsletterSec h3{
        font-size: 20px;
  }
  .listing-sec .widget-box-3 .price-tag span{
    display: block;
  }
  .testmial-avtar{
    margin: 0px auto;
  }
  .btn-call,.btn-whatsapp,.book-btn,.advanced-btn{ width: auto !important;  }
  .photos-grp img{width: 100%}
  /* .scroll-area{
    max-height:440px
  } */
  .circle-listing li{
    width: 33.3%;
  }
  .ameties-form{
    width: 100%
  }
  .rating-summery h6{
        font-size: 48px;
  }
  .location-banner h1{
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  body.filter-box-open {
    overflow: hidden;
  }

  .newsletterSec .bg-white{
    width: 100%;
  }
  .section-1{
    background-size: cover;
  }
  .verified-tag img{
    width: 100%
  }
  h1{
    font-size: 40px
  }
  .newsletterSec h3{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px
  }
  .listing-sec .widget-box-3 .price-tag span{
    display: block;
  }
  .whatsapp{
    display: none !important;
  }
  .scroll-top{
    display: none !important;
  }
  .position-fixed-mob,.position-fixed-mobw{
    position: fixed;
    right:0;
    width: 100%;
    top: 0;
    z-index: 9999;
    height: 100%;
    background: none;
    padding: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s
  }
  .search-inner,.filter-inner{
    width: 85%;
    background-image: url(../img/inner-banner-bg.png);
    padding: 15px 0;
    background-size: cover;
    position: relative;
    z-index: 1;
    float: right;
    height: 100%;
    padding-top: 65px;
    right: -100%;
    transition: 0.5s
  }
  .filter-inner{
    display: flex;
    width: min(88%, 390px);
    height: 100vh;
    height: 100dvh;
    max-height: none;
    padding: 0;
    background-color: var(--white-color);
    background-image: none;
    flex-direction: column;
  }
  .position-fixed-mob:after,.position-fixed-mobw:after{
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.5s
  }
  .close-search,.close-filter{
    position: absolute;
    top: 15px;
    right: 12px;
    background-color: var(--white-color);
    width: 38px;
    height: 38px;
    border-radius: 100%;
    text-align: center;
    font-size: 24px;
    padding-top: 3px;
  }
  .close-filter{
    position: static;
    flex: 0 0 auto;
    background: var(--color-primary);
    color: var(--white-color);
    border: 0;
  }
  .filter-fixed{
    position: fixed;
    z-index: 999;
    bottom: 0;
    width: 100%;
    background-color: var(--white-color);

  }
  .filter-fixed a{
     background-color: var(--white-color);
     padding: 20px 15px;
     width: 50%;
     text-align: center;
     font-weight: bold;
  }
  .search-box-open .position-fixed-mob,.filter-box-open .position-fixed-mobw{
    right: 0;
    opacity: 1;
    visibility: visible;
  }
  .search-box-open .position-fixed-mob:after,.filter-box-open .position-fixed-mobw:after{
    width: 100%
  }
  .search-box-open .position-fixed-mob .search-inner,.filter-box-open .position-fixed-mobw .filter-inner{
    right: 0
  }
  .filter-blk{
    border:none !important;
  }
  .listing-sec{
    padding-top: 0
  }
  .close-search,.close-filter{
    display: block;
  }
  .filter-overflow-blk{
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    padding: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .inner-banner.position-fixed-mob .container{
    overflow: auto;
    height: 100%;
  }
  .mobile-filter-header{
    display: flex;
    flex: 0 0 auto;
    min-height: 70px;
    padding: 12px 14px 12px 18px;
    align-items: center;
    justify-content: space-between;
    color: var(--white-color);
    background: linear-gradient(135deg, var(--color-primary), #f05b32);
    box-shadow: inset 0 -4px 0 rgba(78, 177, 102, 0.9);
  }
  .mobile-filter-header span{
    display: block;
    margin-bottom: 2px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .mobile-filter-header h2{
    color: var(--white-color);
    font-family: var(--font-default);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
  }
  .mobile-filter-footer{
    flex: 0 0 auto;
    padding: 12px 16px;
    border-top: 1px solid #e5e9ee;
    background: var(--white-color);
    box-shadow: 0 -8px 24px rgba(10, 34, 61, .08);
  }
  .mobile-filter-footer .btn{
    width: 100%;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 700;
  }
  .tab-content>.tab-pane {
    display: block;
    opacity: 1;
  }
  .testmial-avtar{
    margin: 0px auto;
  }
  .accordion-button.tab-two{
    font-size: 14px;
    line-height: 20px
  }
  .accordion-button.tab-two.collapsed::after{
    background: none;
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    color: var(--color-default) !important;
    transform: rotate(-90deg);
    position: relative;
    top: -5px;
  }
  .accordion-button.tab-two::after{
    background: none;
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    color: var(--white-color) !important;
    transform: rotate(90deg);
    position: relative;
    top: 6px;
  }
  .tab-two .day-date{
    margin-top: 0; margin-left: 15px;
    background-color: var(--white-color);
    color: var(--color-primary)
  }
  .tab-two.collapsed .day-date{
    background-color: var(--color-primary);
    color: var(--white-color)
  }
  .btn-call, .btn-whatsapp{width: 100% !important}
  .photos-grp img{width: 100%}
  /* .scroll-area{
    max-height: 180px
  } */
  .circle-listing li{
    margin-bottom: 10px !important;
    width: 33.3%;
  }
  .ameties-form{
    width: 100%;
  }
  .rating-summery h6{
    font-size: 38px;
  }
  #where-will .inner-map-btn{
    width: 100%;
    margin-bottom: 5px;
  }
  #where-will .search-map{width: 50%}
  #where-will .map-caption .large-view{width: 48%}
  .custom-tab-fixed{
    width: 100%;
    padding: 0 115px;
    left: 0
  }
  .body-padding{
        padding-top: 230px;
  }
  .or-blk{width: 90%}
}
@media screen and (max-width: 480px) {
  .inner-map-btn{
    width: 84%;
  }
  /* .scroll-area{
    max-height: 330px
  } */
  .circle-listing li{
    width:50%;
  }
  #packagescollapse ul.facility-list li{
    width: 50%;
  }
  #ameties .circle-listing li{
    width: 50%
  }
  .custom-tab-fixed{
    width: 100%;
    padding: 0 12px;
    left: 0
  }
  .location-tab li button{
    font-size: 16px
  }
}
