@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap");

:root {
  --primary-blue: #0e5088;
  --green-color: #71bf46;
  --green-blue: #13918c;
  --white: #ffffff;
  --white-opacity: #ffffff82;
  --light-blue: #e1f3fc;
  --overlay-gradient: linear-gradient(
    358deg,
    rgba(0, 0, 0, 0.74),
    transparent,
    rgba(0, 0, 0, 0.73)
  );
}

@font-face {
  font-family: "HelveticaNowDisplay";
  src: url("../fonts/HelveticaNowDisplay-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "HelveticaNowDisplay";
  src: url("../fonts/HelveticaNowDisplay-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "HelveticaNowDisplay";
  src: url("../fonts/HelveticaNowDisplay-LightIta.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

body {
  font-family: "HelveticaNowDisplay";
  font-size: 14px;
  line-height: 1.5;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fredoka";
  font-weight: normal;
}

p,
li {
  color: #494949;
  font-size: 18px;
  line-height: 1.5;
}
section {
  margin-bottom: 60px;
}
.newsletter p,
footer p {
  color: #fff;
}
a {
  font-size: 18px;
  text-decoration: none;
  color: var(--primary-blue);
}
.bg-light-blue {
  background-color: var(--light-blue);
}
.bg-blue {
  background-color: var(--primary-blue);
}
.rounded-tr {
  border-radius: 50px 0 50px 0;
}
.green-color {
  color: var(--green-color);
}

.blue-color {
  color: var(--primary-blue);
}
.teal-color {
  color: var(--green-blue);
}

.form-control:focus {
  box-shadow: none;
}
.nav-link {
  color: var(--white);
}
.about-design {
  position: absolute;
  top: 0;
  right: 2%;
  z-index: -1;
  width: 6%;
}
.about-us {
  padding: 80px 0;
}
.about-blue-btn,
.about-green-btn {
  border-radius: 20px 0 20px 0;
  padding: 1rem 2rem;
  text-align: center;
  color: var(--white);
  font-family: Fredoka;
  font-weight: medium;
}

.about-blue-btn {
  background-color: var(--primary-blue);
}

.about-green-btn {
  background-color: var(--green-blue);
}

.slide-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.dark-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  z-index: 1;
}

header .nav-link.active {
  color: #f3b61a !important;
}
.scroll-text {
  position: absolute;
  bottom: 25px;
  font-size: 20px;
  left: calc(50% - 100px);
  transform: translateX(-50%);
  color: var(--white);
  font-weight: normal;
  z-index: 10;
  cursor: pointer;
}

.mySwiper .swiper-pagination-bullet-active::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid var(--white-opacity);
  position: absolute;
  z-index: 0;
  left: -2px;
  right: 0;
  top: -2px;
  border-radius: 100%;
}

.mySwiper .swiper-pagination {
  text-align: end;
  padding-right: 4%;
  padding-bottom: 1%;
}

.mySwiper .swiper-pagination-bullet-active {
  background-color: var(--white);
  position: relative;
}

header .nav-link {
  font-size: 20px;
  font-weight: normal;
}
.brands {
  padding-top: 80px;
  position: relative;
}
.brands::before {
  content: "";
  background-color: var(--light-blue);
  position: absolute;
  width: 100%;
  height: 90%;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
}
.view-all {
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.scroll-arrow {
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 0;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.view-all svg {
  margin-left: 5px;
}
.intro-text-section {
  overflow-x: hidden;
  padding: 2rem 0;
}
.intro-text {
  font-size: 40px;
  line-height: 56px;
  font-weight: 500;
}
.left-design,
.right-design {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.left-design {
  left: -5%;
}
.right-design {
  right: -5%;
}
.search-container {
  border: 1px solid #ccc;
  border-radius: 30px;
  z-index: 10;
  margin: auto;
  margin-top: -22px;
  position: relative;
  background: #fff;
}
.search-bar {
  border-radius: 30px;
  border: 0;
  height: 45px;
  padding: 0 0 0 20px;
}
.search-bar::focus {
  box-shadow: none;
}

.search-btn {
  border-radius: 30px;
  background-color: #71bf46;
  color: white;
  height: 45px;
}
.search-btn:hover {
  background-color: #71bf46;
}

#brandTabs {
  width: fit-content;
  margin: auto;
}
.nav-tabs .nav-link {
  border: none;
  color: #494949;
  font-weight: 500;
  padding: 10px 60px;
  font-size: 1.25rem;
  font-weight: normal;
}

.nav-tabs .nav-link.active {
  color: #71bf46;
  border-bottom: 3px solid #71bf46;
  font-size: 1.5rem;
  padding: 10px 60px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.brand-card {
  border: 1px solidrgba(73, 73, 73, 0.61);
  transition: border 0.3s ease-in-out;
  border-radius: 8px;
}

.brand-card:hover {
  border-color: #71bf46;
  border-width: 2px;
}

.brand-card .card-body {
  padding: 15px 10px;
}

.brand-name {
  font-weight: 600;
  font-size: 24px;
}

.brand-type {
  font-size: 16px;
  color: #666;
}
.brand-logos {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 35px;
}
.brand-tabs {
  overflow: hidden;
  margin: 40px 0 60px 0;
}
.lr-design .left-design,
.lr-design .right-design {
  width: 10%;
}
.brand-tabs .left-design {
  left: 0;
}
.brand-tabs .right-design {
  right: 0;
}
.brand-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-top: -100px;
  z-index: 1;
  position: relative;
}
.image-gallery-section {
  padding: 50px 0;
  background: var(--light-blue);
}

.info-section {
  background-color: #0e5088;
  color: white;
  padding: 30px 0;
}

.info-section .col {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.info-section .col:last-child {
  border-right: none;
}
.line-r {
  position: relative;
}
.line-r::before {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 50px;
  background: #fff;
}

.imageswiper .swiper-slide img {
  width: 100%;
}
.brand-desc a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: underline;
}
.red-color {
  color: #e6282c;
}
.youtube-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 10;
}
#youtubeWrapper {
  width: 100%;
  height: 100%;
}
.mySwiper .swiper-pagination-bullet {
  background: #fff;
}
.imageswiper .swiper-slide {
  height: auto;
}
#youtubeWrapper iframe {
  width: 100%;
  height: 100%;
}
.youtube-btn img {
  width: 80px;
  height: 80px;
  opacity: 0.85;
  transition: 0.3s ease;
}
.slider-arrow {
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  border-radius: 20px;
  padding: 0px 15px;
  font-size: 1.15rem;
}
.slider-arrow.yellow {
  color: #f1b31b;
  border: 1px solid #f1b31b;
}
.slider-arrow.red {
  color: #e6282c;
  border: 1px solid #e6282c;
}
.yellow-color {
  color: #f1b31b;
}
.title-container {
  margin-bottom: 2rem;
}
.details-section .title {
  margin: 1.5rem 0;
}
.whatsapp {
  position: fixed;
  bottom: 5%;
  right: 2%;
  z-index: 99999;
}
.details-section {
  padding-bottom: 30px;
}
.info-section p {
  margin-bottom: 0;
}
.date {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #858585;
  font-style: italic;
  font-family: "HelveticaNowDisplay";
  font-weight: 600;
}
.event-name {
  font-size: 1.25rem;
  font-weight: 450;
  margin: 0.5rem 0;
}
.event-card a {
  color: #f1b31b;
}
.subheading {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.offer {
  position: relative;
  padding-top: 50px;
}
.offer::before {
  background: #e1f3fc;
  content: "";
  display: block;
  width: 100%;
  height: 60%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.subheading::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #0e5088;
  display: block;
  bottom: 0;
  position: absolute;
}
.red.subheading::before {
  background: #e6282c;
}
.yellow.subheading::before {
  background: #f1b31b;
}
.sky-blue-color {
  color: #66c5f0;
}
.white.subheading::before {
  background: #ffffff;
}
.green.subheading::before {
  background: #71bf46;
}

.sky-blue.subheading::before {
  background: #66c5f0;
}
.blue.subheading::before {
  background: var(--primary-blue);
}
.service-card img {
  width: 50px;
  margin-bottom: 10px;
}
.service-container {
  margin-top: 20px;
}
.service-card {
  padding: 30px 10px;
}
.service-container .col {
  border-bottom: 1px solid #66c5f0;
  border-right: 1px solid #66c5f0;
}
.service-container .col:nth-of-type(3),
.service-container .col:nth-of-type(6) {
  border-right: 0;
}

.service-container .col:nth-of-type(4),
.service-container .col:nth-of-type(5),
.service-container .col:nth-of-type(6) {
  border-bottom: 0;
}
.about-group {
  padding: 60px 0;
}
.about-group::before {
  content: "";
  background: var(--primary-blue);
  width: 48%;
  left: 0;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  border-radius: 50px 0 50px 0;
}
.about-group-img {
  z-index: -2;
  position: relative;
}
.about-group-svg {
  position: absolute;
  left: 0;
  width: 3.25%;
  top: 20%;
}
.instagramslider {
  margin-top: 30px;
}
.about-group {
  color: white;
}
.newsletter {
  color: white;
  text-align: center;
  background: url("../images/banner/newsletter.png");
  background-size: cover;
  padding: 40px 0 120px;
}
footer {
  border-radius: 70px 70px 0 0;
  padding-top: 40px;
  margin-top: -70px;
}
.newsletter-input input::placeholder {
  color: var(--primary-blue);
  opacity: 1; /* Optional: some browsers apply reduced opacity */
}

.newsletter-input::-webkit-input-placeholder {
  color: var(--primary-blue);
}

.newsletter-input:-ms-input-placeholder {
  color: var(--primary-blue);
}
/*.newsletter-input input {*/
/*  border-radius: 50px 0 0 50px !important;*/
/*  font-weight: 600 !important;*/
/*  color: var(--primary-blue);*/
/*  border-right: 2px solid var(--primary-blue) !important;*/
/*}*/

.newsletter-input button {
  font-weight: 600 !important;
}
.newsletter-input button:hover {
  color: var(--primary-blue);
}
.newsletter .subheading {
  width: fit-content;
  margin: auto;

  margin-bottom: 20px;
}
.newsletter .subheading::before {
  margin: auto;
  background: #fff;
  transform: translateX(150%);
}
.subheading .text-white {
}
footer li {
  font-size: 14px;
  margin-bottom: 16px;
}
.event-card img {
  border-radius: 40px 0 40px 0;
}
.bg-white .nav-link {
  color: #000 !important;
}
[data-fancybox="gallery"] {
  cursor: pointer;
}
.offers-listing {
  padding: 50px 0;
}
.timetable {
  padding: 15px 0;
}
header.bg-white .bi-search {
  color: #000;
}
.rythms .title {
  margin-bottom: 2rem;
}
.rythms .timetable {
  margin: 2rem 0;
}
.cta-blue {
  background: var(--primary-blue);
  color: #fff;
  padding: 10px 30px;

  border: 0;
  border-radius: 50px;
}
.swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-bullet {
  background: #fff;
}
.rythms {
  padding-top: 60px;
}

.events-listing {
  padding: 40px 0 80px;
}
.subheading h6 {
  font-family: "HelveticaNowDisplay";
  font-weight: 600;
}
.intro-text {
  font-family: "HelveticaNowDisplay";
  font-weight: 600;
}
header {
  z-index: 99;
}
.search-box-container .search-bar-button {
  width: 100%;
  height: 100%;
  border: 0;
  font-size: 1.25rem;
  border-radius: 8px;
  background: var(--primary-blue);
  color: #fff;
}
.close-btn-drawer {
  display: none;
}
.card-about {
  background: #edf8fd;
  padding: 3rem;
  border-radius: 50px 0 50px 0;
  height: 100%;
  box-shadow: 7px 7px 20px 0px rgba(0, 0, 0, 0.07);
}
.card-about img {
  width: 70px;
}
.about-mindspace {
  padding: 50px 0;
}
.card-about h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
}
.timeline-container {
  padding: 40px 0;
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-icon {
  background-color: var(--primary-blue);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.timeline-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1); /* make icon white */
}

.timeline-text {
  font-size: 16px;
  color: #000;
}
.prime-title {
  margin-top: 50px;
}

.timeline-line {
  position: absolute;
  top: 35px;
  left: 50%;
  width: 100%;
  height: 1px;
  border-top: 2px dotted #054179;
  z-index: 0;
  transform: translateX(-50%);
}
.cstm-margin {
  margin-bottom: 1.5rem;
}

.prime-img {
  margin: 40px 0;
}
.about-us-design {
  width: 4%;
  position: absolute;
  top: 10%;
}
.about-us-design.left-0 {
  left: 0;
}
.about-us-design.right-0 {
  right: 0;
}
.service-page-card {
  background: #edf8fd;
  border: 2px solid #66c5f0;
  box-shadow: 0px 0px 0px 10px #edf8fd;
  text-align: center;
  padding: 30px 15px;
  height: 100%;
}
.view-more-btn {
  cursor: pointer;
}
.service-page-card h2 {
  font-size: 20px;
  line-height: 38px;
  margin-bottom: 5px;
}
.service-page-card .service-page-card-content p {
  font-size: 14px;
  margin-bottom: 0;
}
.service-page-card img {
  width: 50px;
  height: 50px;
  border-radius:100%;
}
.service-page-card-content {
  margin-bottom: 15px;
}
.hidden-content {
  display: none;
  transition: display 0.3s ease;
}

.rotate-icon::before {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.blue-shadow{
  box-shadow: -22px 22px 0px #0E5088;
}
.mind-space-logo,.k-raheja-logo{
  margin-bottom:30px;
} 
.about-group-outer .title{  
  margin-bottom:20px;
}
.about-group-outer p .blue-color{
  font-weight:600;
}
.disclaimer p{
  text-align:justify;
}

.about-group-svg-1 , .about-group-svg-2{
  position:absolute;
  right:0;
  width:12.5%;
  top:3%;
}
.about-group-svg-2{
  width:25%;
}
.text-p{
  color:#494949;
}
.get-direction{
  background:var(--primary-blue);
  padding:20px;
  border-radius:50px 0 0 0;
  width:100%;
  color:#fff;
  margin-top:40px;
position:relative;
}
.get-direction::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width:65%;
  height:1px;
  border-top:1px dashed white;
}
.dropdown-menu {
    background-color: #f9f9f9;
}

.dropdown-item {
    color: #000;
}
/* Dropdown opens on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; 
      border: 0;
}
.dropdown-toggle{
        display: flex
;
    align-items: baseline;
    gap: 5px;
}
.dropdown-toggle::after{
    border:0;
   
 content: "\f282"; /* Unicode for bi-chevron-down */
  font-family: "bootstrap-icons";
  font-weight: 900;
  font-size: 0.75rem;
  margin-left: 2px;
}
/* Optional: Smooth appearance */
.dropdown-menu {
  transition: all 0.3s ease;
}


.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #000;
}

.contact-form-outer{
  padding:60px 0 80px;
}
.contact-form .form-control{
  background: #fff0;
    padding: 15px;
    border-radius: 20px;
    border-color: #858585;

}
.contact-form label{
    background-color: #dff1fa;
    position: absolute;
    left: 30px;
    top: -9px;
    color: var(--primary-blue);
    font-weight: 600;
    z-index: 10;
}

.contact-form .form-control:focus{
  background: #fff0;
  border-color: var(--primary-blue);
}
.submit-btn{
  border:0;
  background: var(--primary-blue);
  color:#fff;
  border-radius:40px;
  padding:10px 20px;
}
.contact-form-outer .nav-tabs .nav-link.active{
  background:#fff0;
  padding:10px 30px;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}
.contact-form-outer .nav-tabs .nav-link{  
  padding:10px 30px;

}
/*#feedback{*/
/*  margin-top:40px;*/
/*}*/
.contact-form-outer .nav-tabs{
  width:fit-content;
  border-color: #0e508894;
  border-width: 2px;
  flex-wrap:nowrap;
   margin-left: auto;
}
.map{
  height:450px;
}
.nav-option{
  overflow-x: auto;
  overflow-y: hidden;
}
.contact-from-design{
  position:absolute;
  bottom:5%;
  right:-2%;
  width:10%;
}
.about-group p, .about-group li{
  color:#fff;
}
.search-icon{
  cursor:pointer;
}
.destinationslider{
  background:url("../images/banner/destination.svg");
  padding: 40px 0;
  background-position: center;
  background-size: cover;
  background-repeat:no-repeat;
}
.destinationslider .slide-title{
  font-size: 4rem;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px white;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align:center;
  font-family:"HelveticaNowDisplay";
}
.swiper-slide-active .slide-title {
  color: white;
  -webkit-text-stroke: 0;
}
.info-section p{
  color:#fff;
}
#toggleBtn{
  cursor:pointer;
}
.innerbanner .swiper-slide{
  height:auto;
}
.bg-white .nav-link:hover{
  color:#000 !important;
}
@media (max-width: 767px) {
  .innerbanner .swiper-slide{
  height:540px;
  }
  /*#feedback{*/
  /*  margin-top:20px;*/
  /*}*/
  .get-direction::before{
    display:none;
  }
  .about-uspage .subheading::before {
    left: 47%;
  }
  .about-us-design {
    transform: rotate(90deg);
    top: -5%;
    width: 10%;
  }
  .card-about {
    background: #fff;
    box-shadow: 8px 8px 25px 0rgba (0, 0, 0, 0.13);
  }
  .about-cards {
    margin-top: -100px;
  }
  .timeline-line {
    padding: 0;
    border-left: 2px dotted #054179;
    left: 11.5%;
    top: 0;
    height: 100%;
    width: 1px;
  }
  .timeline-item {
    margin-bottom: 40px;
    display: flex;
    width: 100%;
    margin-left: auto;
    align-items: center;
  }
  .timeline-icon {
    min-width: 70px;
    margin: 0;
  }
  .timeline-text {
    text-align: start;
    margin-left: 15px;
  }
  .close-btn-drawer {
    display: block;
    position: absolute;
    top: 1.5%;
    right: 10%;
    font-size: 2rem;
  }
  .offers-listing {
    padding: 25px 0;
  }
  .about-design {
    width: 13%;
    top: unset;
    bottom: -15%;
    transform: rotate(90deg);
  }
  .service-container .col:nth-of-type(3) {
    border-right: 1px solid #66c5f0;
  }
  .service-container .col:nth-of-type(4) {
    border-right: 0;
    border-bottom: 1px solid #66c5f0;
  }
  .service-container .col:nth-of-type(2) {
    border-right: 0;
  }

  .mySwiper .swiper-pagination {
    padding-right: 0;
    text-align: center;
  }
  .btn-wrapper {
    margin-top: -40px;
  }
  #logo {
    width: 120px;
  }
  .scroll-text {
    bottom: 10%;
  }
  .search-box-container .search-bar-button {
    height: 44px;
  }
  .bg-white .nav-link {
    color: #000;
  }
  header.bg-white .bi-search {
    color: #000;
  }
  /* Base drawer styling */
  .mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff; /* or bg-dark, etc */
    padding: 5rem 2rem 2rem 2rem;
    transition: left 0.3s ease-in-out;
    z-index: 1045; /* above backdrop */
  }

  /* When open (Bootstrap adds 'show' class when toggled) */
  .mobile-drawer.show {
    left: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
  }
  .scroll-text {
    left: 30%;
  }

  /* Optional: overlay effect */
  .drawer-backdrop {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    display: none;
  }
  header .nav-link {
    font-size: 16px;
    color: #000 !important;
  }
  .drawer-backdrop.active {
    display: block;
  }

  header {
    padding: 0.25rem 0.75rem;
  }

  p,
  li {
    font-size: 16px;
  }
  .line-r::before {
    display: none;
  }
  .innerbanner .swiper-slide img {
    min-height: 300px;
    object-fit: cover;
  }
  #brandTabs {
    flex-wrap: nowrap;
  }
  .search-bar {
    padding-left: 10px;
  }
  .brand-tabs {
    overflow-x: scroll;
    padding-left: 20px;
    margin: 15px 0 20px 0;
  }
  .lr-design .left-design,
  .lr-design .right-design {
    display: none;
  }
  .nav-tabs .nav-link.active {
    font-size: 1rem;
    padding: 10px;
  }
  .brand-logos {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 17.5px;
  }
  .brand-name {
    font-size: 18px;
  }
  .brand-type {
    font-size: 14px;
  }

  .nav-tabs .nav-link {
    font-size: 1rem;
    width: max-content;
    padding: 10px 20px;
  }

  .about-group::before {
    width: 100%;
    top: 26%;
  }
  .about-group {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .about-group-img {
    min-height: 280px;
    padding: 0 15px;
    border-radius: 50px 0 50px 0;
  }
  .about-group-svg {
    display: none;
  }

  .service-card {
    padding: 15px 10px;
  }
  .service-container {
    margin-top: 0px;
  }
  .about-us {
    padding: 40px 0 0 0;
  }
  .brands {
    padding-bottom: 40px;
  }
  a {
    font-size: 16px;
  }
  .about-blue-btn,
  .about-green-btn {
    padding: 10px 20px;
  }
  .brands::before {
    height: 100%;
  }
  .intro-text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .intro-text-section .left-design,
  .intro-text-section .right-design {
    width: 30%;
  }

  .intro-text-section .left-design {
    top: 15%;
  }
  .intro-text-section .right-design {
    top: unset;
    bottom: 0%;
  }
  .brands {
    margin-bottom: 0;
  }
  .intro-text-section {
    padding: 80px 0 60px;
    margin-bottom: 0;
  }

  .search-bar {
    background: #fff;
    border: 1px solid #e9e9e9;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    padding: 10px;
    height: 60px;
  }
  .search-container {
    background: #fff0;
    border: 0;
    margin-top: -40px;
  }
  .search-btn {
    padding: 0 0.75rem;
    max-width: 95%;
    height: 60px;
    font-size: 1rem;

    margin: auto;
  }
  .page-title {
    position: absolute;
    bottom: 15%;
    text-align: center;
    z-index: 10;
    color: #fff;
    width: 100%;
  }
  .green-search-btn {
    top: 22%;
    right: 8%;
  }
  #brandTabsDropdown {
    background: var(--green-color);
    color: #fff;
    width: 95%;
  }
  .events-listing {
    padding: 10px 0;
  }
  .title-container {
    margin-bottom: 1rem;
  }
  .offer {
    padding-top: 40px;
  }

  .event-name,
  .event-card a {
    font-size: 1rem;
  }
  .date {
    font-size: 0.8rem;
  }
  footer {
    border-radius: 30px 30px 0 0;
  }
  footer li {
    font-size: 16px;
  }
}

@media (min-width: 1199.99px) {
  .innerbanner .swiper-slide{
    height:31.25vw;
  }
  
  .destinationslider{
    padding:3.26vw 0;

  }
.destinationslider .slide-title
{
  font-size:3.68vw;
}
  .submit-btn{  
    font-size:0.94vw; 
    padding:1.04vw 1.56vw;
  }
  .map{
    height:30vw;
  }
  .service-page-card img{
width:4.01vw;
height:4.01vw;
  }
  .service-page-card-content p{
    font-size: 0.73vw;
  }
  .service-page-card h2{
    font-size:1.3vw;
    line-height:1.98vw;
    margin-top:0.63vw;
  }
  .timeline-line{
    top:2.63vw;
  } 
  .service-page-card-content{
    margin-bottom:1.042vw;
  }
  .about-mindspace {
    padding: 5.21vw 0;
  }
  .about-mindspace .cstm-margin {
    margin-bottom: 2.92vw;
  }
  .prime-img {
    margin: 3.65vw 0 4.69vw;
  }
  .timeline-icon {
    width: 5.47vw;
    height: 5.47vw;
  }
  .card-about img {
    width: 4.43vw;
  }
  .card-about {
    padding: 2.08vw 1.67vw;
  }
  .card-about h3 {
    font-size: 1.3vw;
    margin: 1.56vw 0 1.2vw;
  }
  .timeline-icon img {
    width: 2.86vw;
    height: 2.86vw;
  }
  .timeline-text {
    font-size: 0.94vw;
    line-height: 1.56vw;
  }
  .timeline-container {
    padding: 0;
    margin-top: 4.69vw;
  }
  .cstm-margin {
    margin-bottom: 1.35vw;
  }
  .about-group {
    min-height: 36.46vw;
    display: grid;
    align-items: center;
    justify-items: start;
  }
  #logo {
    width: 10.42vw;
  }
  header {
    padding: 0.8vw 0;
  }
  .container {
    max-width: none;
    padding: 0 5.21vw;
  }
  .about-group-img {
    max-height: 32.29vw;
  }
  h1.title {
    font-size: 2.34375vw;
    line-height: 2.60417vw;
  }

  h2.sub-heading {
    font-size: 1.30208vw;
    line-height: 2.60417vw;
  }

  section {
    margin-bottom: 5.21vw;
  }
  p,
  li,
  a {
    font-size: 1.04vw;
  }
  .title-container {
    margin-bottom: 2.08vw;
  }
  .details-section .title {
    margin: 1.82vw 0 1.25vw 0;
  }
  .brand-type {
    font-size: 1.04vw;
  }
  .brand-name {
    font-size: 1.56vw;
  }
  #brandTabs .nav-link {
    font-size: 1.3vw;
    padding: 1.04vw 3.75vw;
  }
  .search-btn,
  .search-bar {
    font-size: 1.04vw;
    height: 4.17vw;
  }
  .lr-design .left-design,
  .lr-design .right-design {
    width: 13.33vw;
    top: 3.65vw;
  }
  .search-btn,
  .search-container {
    border-radius: 2.6vw;
  }
  .search-container {
    margin-top: -2.08vw;
  }
  .brand-tabs {
    margin: 3.18vw 0 4.32vw 0;
  }
  .search-container {
    width: 58.18vw;
  }
  #brandTabs .nav-link.active {
    font-size: 1.56vw;
  }
  .image-gallery-section {
    padding: 4.17vw 0;
  }
  .brand-logo {
    width: 13.02vw;
    height: 13.02vw;
    border-radius: 0.52vw;
  }
  .details-section.lr-design .left-design,
  .details-section.lr-design .right-design {
    top: 5.85vw;
  }
  .info-section h6 {
    font-size: 1.3vw;
    font-weight: 450;
  }
  .info-section {
    padding: 2.6vw 0;
  }
  .details-section {
    padding-bottom: 2.4vw;
  }
  footer li {
    font-size: 1.04vw;
    margin-bottom: 0.83vw;
  }
  .disclaimer p {
    font-size: 0.95vw;
  }
  .subheading h6 {
    font-size: 1.04vw;
  }
  .subheading {
    margin-bottom: 0.98vw;
  }
  .instagramslider {
    margin-top: 2.2vw;
  }
  .service-card h6 {
    font-size: 1.3vw;
  }
  .service-card img {
    width: 3.18vw;
  }
  .event-name {
    font-size: 1.3vw;
    margin: 0.52vw 0;
  }
  .event-card a,
  .date {
    font-size: 1.04vw;
  }
  .intro-text {
    font-size: 2.6vw;
    width: 60.63vw;
    line-height: 3.65vw;
  }
  .left-design,
  .right-design {
    width: 20.57vw;
  }
  .brands {
    padding-top: 4.69vw;
  }

  .about-us {
    padding: 5.21vww 0;
    margin-bottom: 0;
  }
  .about-blue-btn,
  .about-green-btn {
    font-size: 1.15vw;
    padding: 1.3vw 2.08vw;
  }
  header .nav-link {
    font-size: 1.042vw;
  }
}
