/*------------***Common-Layout---start***------------*/

* {
   padding: 0;
   margin: 0;
   scroll-behavior: smooth;
   font-family: "Outfit", sans-serif;
   box-sizing: border-box;
}

ul,
ol {
   list-style: none;
}

p {
   margin-bottom: 15px;
}

:root {
   --bs-gutter-x: 1.5rem;
   --bs-gutter-y: 0;
}

.container,
.container-fluid {
   width: 100%;
   padding-right: var(--bs-gutter-x, .75rem);
   padding-left: var(--bs-gutter-x, .75rem);
   margin-right: auto;
   margin-left: auto;
}

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

@media (min-width: 768px) {
   .container {
      max-width: 720px;
   }
}

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

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

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

.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>* {
   box-sizing: border-box;
   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);
}

.col-2 {
   flex: 1 1 auto;
   width: 17%;
}

.col-6 {
   flex: 0 0 auto;
   width: 50%;
}
.gap-15 {
	gap:15px;
}
/*------------ Layout media query starts ------------*/
@media (min-width: 768px) {

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

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

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

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

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

   .col-md-8 {
      flex: 0 0 auto;
      width: 66.66666667%;
   }
}

@media (min-width: 992px) {

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

   .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-7 {
      flex: 0 0 auto;
      width: 58.33333333%;
   }

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

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

   .col-lg-9 {
      flex: 0 0 auto;
      width: 75%;
   }

   .col-lg-10 {
      flex: 0 0 auto;
      width: 83.33333333%;
   }

   .col-lg-11 {
      flex: 0 0 auto;
      width: 91.66666667%;
   }

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

@media (min-width:992px) {
   .col-lg {
      flex: 1 0 0%
   }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
   font-weight: 700;
   line-height: 1.4;
   margin-bottom: 20px;
}

.h1,h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width: 1200px) {
    .h1,h1 {
        font-size:2.5rem
    }
}

.h2,h2 {
    font-size: calc(1.325rem + 0.9vw)
}

@media (min-width: 1200px) {
    .h2,h2 {
        font-size:2rem
    }
}

.h3,h3 {
    font-size: calc(1.3rem + 0.6vw)
}

@media (min-width: 1200px) {
    .h3,h3 {
        font-size:1.75rem
    }
}

.h4,h4 {
    font-size: calc(1.275rem + 0.3vw)
}

@media (min-width: 1200px) {
    .h4,h4 {
        font-size:1.5rem
    }
}

.h5,h5 {
    font-size: 1.25rem
}

.h6,h6 {
    font-size: 1rem
}

[class*="row-gap"] {
   row-gap: 20px;
}

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

img,
svg {
   vertical-align: middle;
}

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

:where(.section, section, .sec-space, .mt-auto) {
   margin-top: 70px;
}

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

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

.mt-5 {
   margin-top: 50px !important;
}

.mx-auto {
   margin-inline: auto;
}

.py-5 {
   padding-block: 30px 50px !important;
}

.pb-5 {
   padding-bottom: 50px !important;
}

.px-15 {
   padding-inline: 15px !important;
}

.p-30 {
   padding: 30px !important;
}

.p-50 {
   padding: 50px !important;
}

.p-0 {
   padding: 0px !important;
}

[class*="flex-"] {
   display: flex;
   align-items: center;
}

[class*="flex-col"] {
   flex-flow: column;
   align-items: unset;
}

[class*="-between"] {
   justify-content: space-between;
}

[class*="grid"] {
   display: grid !important;
}

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

.align-items-center {
   align-items: center;
}
.align-items-left {
   align-items: start!important;
}
.text-left {
	text-align:left;
}

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

.scroll-wrapper{
   overflow-x: scroll;
   flex-wrap: nowrap;
   padding-bottom: 10px;
}

.flex-topbar {
    background: var(--pc);
    padding: 8px 20px;
    position: relative;
    z-index: 9;
    justify-content: center;
    gap: 10px;
}

.header {
   position: sticky;
   top: -1px;
   z-index: 2;
   padding-inline: 30px;
   border-radius: 0 0 25px 25px;
}

.header ul .dropdown  > ul {
   visibility: hidden;
   position: absolute;
   margin: 0;
   z-index: 99;
   transform-origin: top;
   transform: scale(0);
   padding: 20px;
   left: -15px;
   top: 85px;
   white-space: nowrap;
   display: flex;
   flex-direction: column;
   gap: 12px;
   align-items: start;
}

.grid-3{
	grid-template-columns: repeat(3, 1fr);
    gap: 10px 70px !important;
}

.dropdown {
   position: relative;
   z-index: 2;
	padding-block:30px
}

.header nav > ul {
   align-items: center;
   display: flex;
   gap: 20px 30px;
   list-style: none;
}

.cancelBtn,
.toggleBtn {
   display: none;
}

.header.scrolled {
   height: 70px;
   border-radius: unset !important;
}

.bwe-service-logo {
   width: 180px;
}

.bwe-service-logo img {
   width: 100%;
   height: auto;
   object-fit: contain;
}

.srchBtn {
   margin-left: 30px;
   cursor: pointer;
}

.header .form-wrap {
   position: fixed;
   width: 100%;
   height: fit-content;
   left: 0;
   top: 0;
   padding-block: 80px 40px;
   border-radius: unset;
   z-index: 999;
   transform: translateY(-100%);
   opacity: 0;
   visibility: hidden;
   transition: all .2s ease-in-out 0s;
}

.header .form-wrap form input {
   border: 1px solid var(--muted);
   padding: 15px 20px 15px 15px;
}

.header .form-wrap form button{
   border-radius: 5px;
   height: 100%;
   padding: 10px 25px;
}

.header .form-wrap#showSrch {
   transform: translateY(0%);
   opacity: 1;
   visibility: visible;
   transition: all .2s ease-in-out 0s;
}

.closeSrchBtn {
	top: 54%;
   position: absolute;
   right: 20px;
   cursor: pointer; 
   z-index: 9999;
}

.header .mob-srchBtn{
   background: unset;
    border: unset;
    height: auto !important; 
    padding: 0 !important; 
    position: absolute;
    right: 20px;
    display: none;
    bottom: 35px;
}

/* Mega dropdown wrapper */
.mega-dropdown {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px !important;
    left: -140px !important;
}

/* Mega heading */
.mega-heading {
  margin-bottom: 20px;
  display: flex;
  border-bottom: 2px solid var(--pc);
  width: fit-content;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 600 !important;
  color: var(--pc) !important;
}

/* Inner list */
.mega-list {
  display: grid;
  gap: 15px;
}

.homepage-hero {
   background: url(https://batterseaconsultant.com/andamantour/wp-content/uploads/2025/12/hero-bg.webp) no-repeat center center / cover;
   height: auto;
   width: 100%;
   margin-top: -90px;
   position: relative;
   z-index: 0;
   padding-block: 160px 50px;
}

.homepage-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
/*     z-index: -1; */
    background: linear-gradient(to right, #000000eb, #00000063);
}

.homepage-hero .flex-col-hero-content {
   gap: 25px;
	position:relative;
	z-index:99
}

.form-wrap form :is(input, select, textarea),
.cta-container form input {
   width: 100%;
   padding: 10px 15px;
}

/* .homepage-hero .form-wrap form :is(input, select, textarea){
   padding: 10px 35px 10px 15px !important;
} */

.form-control{
   position: relative;
}

.form-control span{
   position: absolute;
   right: 10px;
   z-index: 99;
   top: 50%;
   transform: translateY(-50%);
}

form .flex-col-form-control {
   gap: 10px;
}

.flex-col-sec-hd-center {
   align-items: center;
   text-align: center;
}

[class*="flex-col-sec-hd"] {
   gap: 5px;
   margin-bottom: 30px;
}

[class*="-btn"] {
   padding: 12px 24px;
   overflow: hidden;
   position: relative;
   width: fit-content;
   z-index: 0;
   gap: 8px
}

.btn-flex-pair {
   gap: 15px 25px;
   flex-wrap: wrap;
   margin-top: 30px;
}

.flex-details {
   gap: 8px
}

.flex-details .flex-icon {
   background: var(--pc);
   border-radius: 50%;
   height: 30px;
   width: 30px;
}

.product-table {
   width: 100%;
   overflow-x: auto
}

table td,
th {
   text-align: left;
   padding: 10px 15px
}

table tr [class*="-btn"] {
   justify-content: center;
   width: 100%
}

.moreContent {
   display: none
}

/* package's card css  */

.flex-col-tour-card{
   height: 100%;
   /*flex: 1;*/
}

.flex-col-tour-card .flex-col-tour-content {
   padding: 20px;
   gap: 12px;
   flex-grow: 1;
   height: 100%;
}

.flex-col-tour-card .img-placeholder img {
   height: 200px;
   width: 100%;
   object-fit: cover;
}

.flex-col-tour-card .flex-col-tour-content [class*="-btn"] {
   width: 50%;
   margin-top: auto;
}

.flex-col-tour-card .flex-col-tour-content .btn-flex-pair{
   flex-wrap: unset;
   margin-top: 5px;
}

.flex-col-tour-card .flex-col-tour-content .flex-tour-cat-wrap-between {
   flex-wrap: wrap;
   gap: 10px 0;
}

.flex-mrp{
    gap: 10px;
    margin-block: 5px;
}

.keywords a {
   padding: 8px 20px;
   text-align: center;
}

.keywords .flex-keywords{
   flex-wrap: wrap;
    gap: 20px 20px;
    justify-content: center;
    align-items: center;
}

.grid-5 {
   grid-template-columns: repeat(5, 1fr);
   gap: 20px 30px;
}

.flex-col-desti-card {
   gap: 10px;
   text-align: center;
}

.destination-wrap .swiper .swiper-slide:nth-child(even) .img-card {
   margin-top: 50px;
}

.flex-col-desti-card img {
   height: 150px;
   width: 100%;
   object-fit: cover;
   border-radius: 10px;
}

.flex-col-rev-card .flex-between-info .flex-user {
   gap: 10px;
}

.flex-col-rev-card .flex-user-nm {
    height: 35px;
    width: 35px;
    background: var(--pc);
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    color: var(--white);
}

.wcu-content-card .flex-col-wcu-content :is(.h3, .h4, .h5) {
   margin-bottom: 10px;
}

.wcu-cta img {
   border-radius: 10px;
   margin-top: 20px;
}

.wcu-content-card {
   display: grid;
   gap: 15px;
   grid-template-columns: 17% auto;
}

.wcu-content-card .flex-wcu-icon {
   height: 70px;
   width: 70px;
   justify-content: center;
}

.cta-container {
   background: linear-gradient(180deg, #02010100 0%, #050101 100%), url(https://batterseaconsultant.com/andamantour/wp-content/uploads/2025/12/newsletter-img.webp) no-repeat center center / cover fixed;
   padding: 120px 20px 0 20px;
}

.trans-cta-bg{
	background:transparent !important;
	padding: unset !important;
}

.flex-col-cta-content {
   z-index: 0;
   padding: 30px 30px 0px;
   position: relative;
}

.cta-container form {
   position: relative;
}

.cta-container form button {
   position: absolute;
   right: 0;
   top: 30px;
   height: -webkit-fill-available;
   border-radius: 0 10px 10px 0;
}

.flex-col-stats-col {
   gap: 10px;
}

/* blog-css  */

.flex-col-blog-card {
   gap: 10px;
   width: 100%;
   height: 100%;
   position: relative;
}

.grid-blog-card {
   align-items: center;
   grid-template-columns: 40% auto;
}

.flex-col-blog-card .img-placeholder {
   aspect-ratio: 16/9;
   overflow: hidden;
   position: relative;
	background:#c7c7c7
}

.flex-col-blog-card .img-placeholder,
.flex-col-blog-card .img-placeholder img {
   width: 100%;
/*    height: 100%; */
   border-radius: 10px;
   object-fit: cover;
   transition: all 0.5s ease-in-out;
}

.flex-col-blog-card .flex-col-blog-content {
   gap: 5px;
   padding: 10px;
	flex:1
}

.flex-col-blog-card .flex-col-blog-content .flex-blog-smry {
   gap: 10px 30px;
   flex-wrap: wrap;
   margin-bottom: 10px;
}

.flex-col-blog-card .flex-col-blog-content .category {
   position: absolute;
   top: 20px;
   right: 0;
   text-align: center;
   padding: 7px 20px;
}

[class*="-title"] {
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   display: -webkit-box !important;
   margin-bottom: 0 !important;
   overflow: hidden;
   text-overflow: ellipsis;
}

.flex-end {
   justify-content: flex-end;
}

.marquee {
   background: var(--pc);
   overflow: hidden;
   padding-block: 15px !important;
   width: 100%;
}

.marquee-content {
   min-width: 100%;
   gap: 10px;
   white-space: nowrap;
}

.flex-mrq-item {
   padding-inline: 25px;
   gap: 10px;
   white-space: nowrap;
   width: fit-content;
}

/* contact-pg  */

.sticky-col {
   position: sticky;
   top: 100px;
}

.single-page-hero {
   background: url(https://batterseaconsultant.com/andamantour/wp-content/uploads/2025/12/single-page-hero-img.webp) no-repeat center center / cover;
   padding-bottom: 100px 
}

.contact-con {
   position: relative;
}

.contact-con .form-wrap {
   padding: 0 !important;
}

.contact-info-con {
   padding: 30px;
   position: absolute;
   width: 100%;
   max-width: 500px;
   bottom: 350px;
}

.grid-info-con {
   grid-template-columns: 15% auto;
   align-items: center;
	margin-top:20px
}

.grid-info-con .flex-info-icon {
   height: 50px;
   width: 50px;
   justify-content: center;
}

.grid-info-con .flex-col-info {
   gap: 10px;
}

.site-page-status .flex-col-main-content img {
   height: 300px;
   width: 300px;
   object-fit: contain;
}

:is(body.page, body.single-post, body.author) main :is(ul, ol) {
   padding-left: 20px;
   margin-bottom: 20px;
}

.single-page-hero .flex-blog-item {
   gap: 20px 70px;
   margin-top: 10px;
   flex-wrap: wrap;
}

.blog-content figure img {
   height: 100%;
   border-radius: 5px;
   margin-bottom: 20px;
}

.flex-col-ath-card {
   align-items: center;
   gap: 10px;
   text-align: center;
}

.flex-col-ath-card img {
   height: 100px;
   width: 100px;
   border-radius: 50%;
}

.site-cta {
   background: var(--pc) url(https://batterseaconsultant.com/andamantour/wp-content/uploads/2025/12/cta-bg.webp) no-repeat left center / cover;
	background-blend-mode: multiply;
   width: 100%;
   overflow: hidden;
   border-radius: 20px;
   position: relative;
}

.site-cta .cta--img{
   height: 350px;
   object-fit: cover;
}

.site-cta .flex-col-sec-hd {
   padding: 50px;
}

.flex-abt-call-wrap {
   gap: 15px;
   padding: 30px;
}

.flex-abt-call-wrap .flex-col-call {
   gap: 5px;
}

 .flex-col-coloring-card{
            height: 100%;
            padding: 30px;
            gap:10px;
         }

         .flex-col-icn-card{
            padding: 30px;
            height: 100%;
            gap:10px;
         }

         .icn-card .grid-icn-card{
            grid-template-columns: 24% auto;
    align-items: center;
    gap: 15px;
         }

         .flex-col-img-card{
            border-radius: 10px;
            background: var(--white);
            height: 100%;
            gap: 10px;
         }

         .icn-card .flex-icn{
            height: 80px;
    width: 80px;
    justify-content: center;
         }

.clusion-tab .tab{
   border-bottom: 1px solid var(--muted);
   margin-bottom: 25px;
   gap:50px;
}


.sec-img img{
   border-radius: 5px;   
}

.clusion-tab .tab button {
    padding-bottom: 10px;
    position: relative;
}

.clusion-list li{
   position: relative;
   list-style: none !important;
   padding-left: 12px;
}

.icon-faq details summary {
    gap:15px;
}

.icon-faq details summary span img{
    height: 45px;
    width: 45px;
    object-fit: cover;
}

         .flex-col-wcu-card{
            align-items: center;
            text-align: center;
            gap: 10px;
            padding: 20px;
            height: 100%;
         }

         .flex-col-wcu-card .flex-col-wcu-content{
            gap: 10px;
         }

         .flex-col-wcu-card span:not(span.readmore-btn){
            height: 60px;
            width: 60px;
            justify-content: center;
         }

         .flex-col-heading-card{
            padding: 30px;
    text-align: left;
    gap: 20px;
    height: 100%;
    border-radius: 10px
         }

         .flex-col-light-card {
    gap: 15px;
    align-items: center;
    padding: 25px;
    text-align: center;
    height: 100%;
}
                     
                     .flex-col-light-card img {
    height: 64px;
    width: 64px;
}

.flex-col-sidebar-cta{
                     padding: 25px;
                     margin-top: 30px;
                     position: sticky;
                     top: 100px;
                     z-index: 0;
                  }

                  .flex-col-sidebar-cta .flex-col-sec-hd{
                     margin-bottom: 20px !important;
                  }

.more-content{
         display: none;
      }


  .modal_overlay{
      position: fixed;
      z-index: 99999;
      background: #000000bd;
      left: 0;
      top: 0;
      height: 0%;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      transition: all .3s;
   }

   .modal_overlay.active{
      opacity: 1;
      height: 100%;
      visibility: visible;
      transition: all .3s;
   }

   .modalForm{
      position: fixed !important;
      max-width: 550px;
      width: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, 15px);
      z-index: 99999 !important;
/*       overflow: hidden; */
      padding: 0 !important;
      opacity: 0;
      visibility: hidden;
      transition: all .4s;
   }

   .modalForm.active{
      opacity: 1;
      visibility: visible;
      transition: all .4s;
      transform: translate(-50%, -50%);
   }

   .modalForm .modalHero{
      background: var(--pc);
	  border-radius:20px 20px 0 0;
   }

   .modalForm :is(.modalHero, form){
      padding: 30px ;
   }

.modalForm .flex-closeModal {
    position: absolute;
    right: -10px;
    top: -10px;
    height: 35px;
    cursor: pointer;
    width: 35px;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
}

.w-fc{
	width:fit-content !important;
}

/* footer-start  */

.footer .flex-col-foot-list ul {
   gap: 20px;
}

.footer .logo-wrapper {
   padding: 20px 30px;
   margin-top: 50px;
}

.footer .logo-wrapper .flex-foot-info {
   gap: 10px;
}

@media (width <=1400px) {
	
	:is(.bwe-service-logo, .bwe-service-logo img) {
		width: auto;
	}
	
	.bwe-service-logo img {
    	height: 50px;
	}
	
	.header nav ul li > a{
		font-size:15px
	}

   .site-cta .cta--img{
      height: 400px
   }
}

.footer .logo-wrapper .flex-foot-info .flex-info-icon {
   height: 40px;
   width: 40px;
flex-shrink:0;
   justify-content: center;
}

.flex-social {
   gap: 10px;
   flex-wrap: wrap;
}
   
.flex-social li a{
       height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-card img{
            height: 300px;
            object-fit: cover;
            transition: all .4s ease;
            object-position: center;
         }

         .sm-img .img-card img{
            height: 200px !important
         }

         .img-card :is(h3, .h3, .h5, .h6, a) {
    position: absolute;
    bottom: 20px;
    left: 0;
			 width:100%;
    text-align: center;
    padding-inline: 20px;
    margin: 0;
    z-index: 9;
}

.high-icon {
    display: flex;
    flex-shrink: 0;
    gap: 15px;
}
.high-icon svg {
 flex-shrink: 0;
}

.flex-col-ath-desc .flex-ath-bio{
               gap: 15px;
               font-weight: 600;
            }

            .flex-col-ath-desc .flex-ath-bio img{
               height: 80px;
               width: 80px;
               object-fit: cover;
               border-radius: 50%;
            }

            .flex-col-ath-desc .auth-social-follow ul{
               padding: unset;
               display: flex;
               flex-wrap: wrap;
               gap: 8px;
               margin-top: 10px ;
            }

/* responsive css  */
@media (width <=1023px) {
	
	.blog-content figure img {
		width: 100%;
	}

   [class*="row-gap"]{
      row-gap: 10px !important;
   }
	
	.row-gap-3 {
   		row-gap: 20px !important;
	}

   [class*="flex-col-sec-hd"] {
      margin-bottom: 15px !important;
   }

   .p-50{
      padding: 20px !important;
   }

   .abt-wrapper .site-cta .flex-col-sec-hd{
      padding: 0 !important;
   }
	
	.header {
      padding: 15px 10px !important;
   }
	
	.dropdown{
		padding-block:unset
	}

   .header .form-wrap form input{
      margin-block: 10px; 
   }

   .header .bwe-service-logo img {
      width: fit-content;
      height: 40px;
   }

   .header .srchBtn {
      margin: unset !important;
   }
	
	.header .closeSrchBtn{
		top:20px !important
	}

   .header .mob-srchBtn{
      display: block;
   }

   .header .form-wrap{
      padding: 50px 10px 10px 10px !important
   }

   .header nav>ul {
      flex-flow: column;
      position: fixed;
      left: 0;
      top: 0;
      background: var(--white);
      padding: 30px;
      width: 100%;
      border-right: 1px solid #eee;
      z-index: 999;
      height: 100%;
      overflow: scroll;
      align-items: unset !important;
      transform: translateX(-100%);
      opacity: 0;
      visibility: hidden;
      transition: all .4s ease;
   }

   .header nav>ul.showMenu {
      transform: translateX(0%);
      opacity: 1;
      visibility: visible;
      transition: all .4s ease;
   }

   .header ul .dropdown ul {
      position: unset;
      margin-top: 20px !important;
	   white-space:unset;
	   grid-template-columns:auto
   }

   .header ul .dropdown ul,
   .header .flex-pc-btn span,
   .d-md-none,
   .texture-bg:after, .texture-bg:before,
   .our-txtr:before{
      display: none !important;
   }
	
	.header ul li .mega-list{
		display:grid !important
	}

   .header ul .dropdown ul#show {
      display: flex !important;
      transform: unset !important;
      transition: unset !important;
      visibility: unset !important;
      opacity: unset !important;
   }

   .header .toggleBtn {
      display: block !important;
   }

   .header::before,
   .header::after,
   .flex-col-cta-content:before,
   .flex-col-cta-content:after {
      content: unset !important;
   }
	
   .header .cancelBtn {
      position: absolute;
      right: 10px;
      z-index: 99999;
      top: -50px;
   }

   .homepage-hero {
      padding-block: 110px 50px !important;
      height: 100%;
   }

   .homepage-hero .flex-col-hero-content h1,
   .site-cta .flex-col-sec-hd h2 {
      font-size: 28px !important;
   }

   .site-cta .flex-col-sec-hd p {
      font-size: 16px !important;
   }

   .form-wrap,
   .site-cta .flex-col-sec-hd {
      padding: 20px !important;
   }

   .destination-wrap .swiper .swiper-slide:nth-child(even) .img-card {
      margin-top: unset !important;
   }

   .wcu-content-card {
      grid-template-columns: 22% auto !important;
   }
	
	.bg-wcu-wrap{
		padding-block:30px !important
	}

   .footer .grid-5 {
      grid-template-columns: repeat(2, 1fr);
   }

   .footer .logo-wrapper {
      padding: 15px !important;
   }

   .flex-end {
      justify-content: flex-start !important;
   }

   .flex-copyright .flex-container-between{
      flex-wrap: wrap;
      gap: 10px;
   }

   .cta-container {
      padding: 50px 0 !important;
   }

   .flex-col-cta-content {
      padding: 20px !important;
      border-radius: 30px !important;
   }

   .contact-info-con {
      position: unset !important;
      max-width: 100%;
      padding: 20px !important;
   }

   .bg-abt-wrap {
      padding-block: 30px !important;
   }

   .flex-abt-call-wrap {
      padding: 20px !important;
      margin-top: 0 !important;
   }

   .flex-abt-call-wrap .flex-col-call a {
      font-size: 20px !important;
   }

   .bg-abt-wrap:after {
      width: 100% !important;
   }

   .py-5 {
      padding-block: 10px 50px !important;
   }

   .mt-5{
      margin-top: 30px !important
   }
	
	.single-post .row .col-lg-12:not(:last-child) .blog-card{
		padding-bottom:10px !important
	}
	
	.flex-topbar{
		z-index:1;
	}
}

@media (600px <=width <=1023px) {

   .header .flex-Btn {
      gap: 20px;
   }

   .abt-wrapper {
      padding-block: 50px !important;
   }

   .grid-info-con {
      grid-template-columns: 12% auto;
   }

   :where(.section, section, .sec-space, .mt-auto) {
      margin-top: 50px !important;
   }
}

@media (width <=600px) {
	
	.bwe-service-logo {
   		width: auto;
	}

   .header .flex-pc-btn {
      font-size: 14px;
      padding: 10px 20px;
   }

   .header .flex-Btn {
      gap: 15px;
   }

   .abt-wrapper {
      padding-block: 30px !important;
   }

   .grid-blog-card {
      grid-template-columns: auto;
   }

   .cta-container form button {
      position: unset;
      border-radius: 10px;
      margin-top: 10px;
   }

   .grid-info-con {
      grid-template-columns: 25% auto;
   }

   :where(.section, section, .sec-space, .mt-auto) {
      margin-top: 30px !important;
   }
}



/* ---updated----------css */

ul.flex-social{
	margin-bottom:unset !important;
/* 	padding-left:unset !important; */
}

ul.flex-social li{
	margin-bottom:unset !important;
	list-style:none !important
}

.blog-card .flex-col-blog-content{
	gap: 15px;
    padding: 0;
}

.sticky-col .row .col-lg-12:not(:last-child) .blog-card {
    border-bottom: 1px solid #afafaf54;
    padding-bottom: 20px !important;
}


.pagination .nav-links{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
        gap: 10px 15px;
        flex-wrap: wrap;
    }