.container,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.bd-gutter {
  --bs-gutter-x: 3rem;
}

.container-fluid {
  width: 100%;
  padding-right: calc(var(--bs-gutter-x)* .5);
  padding-left: calc(var(--bs-gutter-x)* .5);
  margin-right: auto;
  margin-left: auto;
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 0;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

/* general start ////////////*/
p {
  margin-bottom: 1rem;
}

img,
svg {
  vertical-align: middle;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

button,
[role=button] {
  cursor: pointer;
  border: unset;
  font-size: 1rem;
  outline: none;
}

figure {
  max-width: 100%;
}

.img-placeholder {
  aspect-ratio: 16/9;
}

input,
select,
textarea {
  border: unset;
  outline: none;
  width: 100%;
}


ol,
ul {
  padding-left: 1.5rem;
}

.row-gap {
  row-gap: 30px;
}

.col-gap {
  column-gap: 30px;
}

.w-100 {
  width: 100%;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-60 {
  margin-top: 60px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-auto {
	margin-top: 2rem;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

/* general end ////////////*/


/* Flex ___________ Starts ////////////*/
[class*="d-grid"] {
  display: grid;
}

[class*="flex"] {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.gap-10 {
  gap: 10px;
}

/* Flex ___________ End ////////////*/


/* common componet */
[class*="btn"] {
  padding: 8px 24px;
  width: fit-content;
  display: -webkit-inline-flex;
  border-radius: 50px;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

[class*="btn"]:before {
  background-image: linear-gradient(120deg, hsla(0, 0%, 100%, 0) 30%, hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0) 70%);
  content: "";
  height: 100%;
  left: -100px;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100px;
}

[class*="btn"]:hover:before {
  animation: btnAnimate 1.5s ease-out infinite;
}

@keyframes btnAnimate {
  0% {
    left: -100px
  }

  60% {
    left: 100%
  }

  to {
    left: 100%
  }
}


/* common componet */


/* responsive */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
	
  .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
   .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
	
	.grid-md-50{
	display:grid;
	grid-template-columns:50% auto;
}
	
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .col-lg {
    flex: 1 0 0%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
	.col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}


@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.mt-3 {
  margin-top: 30px;
}

/* Tour Page */

.row-gap-15 {
  gap: 15px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

#read_more {
  cursor: pointer;
}

#main_content {
  display: none;
}

#main_content.expanded {
  display: block;
}

#read_more.scroll {
  position: fixed;
  right: 64px;
  top: 100px;
  background-color: #63aa45;
  color: var(--white);
  z-index: 10;
}

#read_more.scroll svg path{
	fill: #fff !important;
}

.position-relative {
  position: relative;
}

.fw-semibold {
  font-weight: 600;
}

.content-section {
  padding: 30px;
  background-color: #fff;
}

.counter-reset {
  counter-reset: process-step;
}

.cm-num {
  counter-increment: process-step;
}

.package-card .img-placeholder img{
	height:100%;
	width:100%;
	object-fit:cover;
}

.cm-num::after {
  content: counter(process-step, decimal-leading-zero);
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 45px;
  font-weight: 700;
  color: #05203c47;
  opacity: 0.3;
  z-index: 1;
  transition: all 0.3s ease;
}

.sticky-card {
  position: sticky;
  top: 120px;
}

.h-100 {
  height: 100%;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.keywords-wrapper .outline-btn {
  font-size: 16px;
  background-color: var(--white);
  color: var(--pc);
  border: 1px solid #e2e2e2;
  border-bottom: 2px solid #e9cb94c2;
  text-wrap-mode: wrap;
  border-radius: 10px;
}

.text-jusitfy {
  text-align: justify;
}

@media (min-width: 992px) {
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
}

@media (min-width: 768px) {
  .d-md-gird {
    display: grid;
  }

  .gird-md-template-3-9 {
    grid-template-columns: 1.5fr 2.5fr;
  }
}

/* --- Partner Section Layout --- */

.partner-sec .scroller {
    max-width: 100%;
    position: relative;
}

.partner-sec .scroller[data-animated="true"] {
    overflow: hidden;
}

.partner-sec .scroller__inner {
    display: flex;
    gap: 50px;
    width: max-content;
}

.partner-sec:not(.budget-sec) .scroller::before,
.partner-sec:not(.budget-sec) .scroller::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 60px;
    z-index: 1;
}

.full-slides .swiper-slide {
    height: auto !important;
    display: flex;
}

.full-slides .swiper-slide .img-placeholder {
    height: auto;
}

/* Anoop Styles Starts */
.package-card .package-date{
	display: flex;
	align-items: center;
	gap: 4px;
}

.service-card{
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: 1px solid #e1e1e1; 
	padding: 20px;
    height: 100%;
	position: relative;
}

.read-more-button{
	margin-top: auto;
}

body:has(.bottom-sticky-bar.show) #scroll_top_btn {
    bottom: 90px;
}

.bottom-sticky-bar {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%; 
            z-index: 9999;  
            padding: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 25px;
        }

        .bottom-sticky-bar.show {
            bottom: 0
        }

        .sticky-bar-title {
            font-size: clamp(1.25rem, 1.1607rem + 0.2381vw, 1.375rem);
            font-weight: 500;
        }

        .bottom-sticky-bar a.btn-primary{
            flex-shrink: 0;
        }
@media(max-width:1023px){
	.bottom-sticky-bar{
		flex-direction: column;
	     gap:16px;
	}
	.s-p-hero-features{
				gap:10px;
			}
	.sticky-bar-title{
		text-align:center;
	}
}
        @media(max-width:600px) {
            .sticky-inner {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            } 
			.tab-order{
				order:-1;
			}
			.booking-hero{
				flex-wrap:wrap;
			}
			
			
        }
.tabcontent img{
	object-fit:cover;
	height:100%;
}
 .activity-item.activity-item-hover>p {    
	 display: none;
}
.activity-item > .h6{
	margin-bottom:20px;
}
@media(width >= 1024px){
	.tabcontent .tab-con-box{
		height: 225px;
		overflow-y: scroll; 
		padding-right: 12px;
	} 
}



/* Anoop Styles End */

/* Abhishek Styles Start */
.wp-block-create-block-bwe-addons-faq details {
    margin-bottom: 20px;
    border-width: 1px;
    border-style: solid;
}

.wp-block-create-block-bwe-addons-faq summary {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-weight: 600;
    gap: 10px;
    justify-content: space-between;
}

.wp-block-create-block-bwe-addons-faq summary::after {
    content: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2213%22%20viewBox%3D%220%200%2012%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6.017%2012.017a.667.667%200%200%201-.734-.734v-4.5H.75a.75.75%200%201%201%200-1.5h4.5V.75a.75.75%200%200%201%201.5%200v4.5h4.5a.75.75%200%201%201%200%201.5h-4.5v4.5a.67.67%200%200%201-.44.699c-.094.033-.194.078-.293.068%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E);
}

.wp-block-create-block-bwe-addons-faq .content {
    padding: 0 20px 20px;
    border-top-width: 1px;
    border-top-style: solid;
}

.wp-block-create-block-bwe-addons-faq .content p {
    margin-bottom: 0px;
    margin-top: 16px;
}

.tour-itinerary .day-header::after {
    content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAwLjU0IDAuNTQiIGRhdGEtbmFtZT0iRmxhdCBDb2xvciIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0iaWNvbiBmbGF0LWNvbG9yIj48cGF0aCBkPSJNLjI3LjQ1QS4wMi4wMiAwIDAgMSAuMjQ4LjQyOFYuMjkzSC4xMTJhLjAyMi4wMjIgMCAwIDEgMC0uMDQ1aC4xMzVWLjExMmEuMDIyLjAyMiAwIDAgMSAuMDQ1IDB2LjEzNWguMTM1YS4wMjIuMDIyIDAgMCAxIDAgLjA0NUguMjkydi4xMzVBLjAyLjAyIDAgMCAxIC4yNy40NDkiIHN0eWxlPSJmaWxsOiMwMDAiLz48L3N2Zz4=);
}
/* Abhishek Styles End */


.highlights .features-card {
  border-width: 0.2px;
  border-style: solid;
  gap: 18px !important;
  align-items: start !important;
}

.highlights .features-card .check-icon {
  width: 16px;
  height: 16px;
  border-width: 1px;
  border-style: solid;
}

.highlights .features-card::before {
  left: 0px !important;
  top: 26px !important;
  border-left-width: 2px !important;
  border-left-style: solid !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.budget-cards .budget-card {
  flex: 1;
  width: initial;
  height: initial;
  padding: 20px;
}

.budget-cards .budget-card .btn-dark {
  margin-top: auto;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links .social-link {
  display: flex;
  aspect-ratio: 1/1;
  width: 38px;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.social-link.btn {
  width: initial;
  padding: 10px;
}