@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

:root {
  --inter: "Inter", sans-serif;
  --montserrat: "Montserrat", sans-serif;
  --literata: "Literata", serif;
  --white: #fff;
  --fontBlack: #0D091E;
  --themeViolet: #554099;
  --themeblue: #0662C4;
  --themeRed: #DA1B40;
  --themeGreen: #15B852;
  --themeGrey: #F1EFF4;
  --lightBlack: #46444A99;
  --titleblack: #100A27;
  --themegradient: linear-gradient(90deg, #0662C4 0%, #15B852 100%);

}


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

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: var(--inter);
}

body.noscroll {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

body {
  background: var(--white);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

section {
  padding: 120px 0;
}

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

img {
  max-width: 100%;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--helvitica);
}

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

p {
  margin: 0;
}

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

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

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

.mm-menu--position-left-front {
  z-index: 999;
  display: none;
}

#menu {
  display: none !important;
}

.mm-wrapper--position-left-front .mm-wrapper__blocker {
  z-index: 99;
}

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

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

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

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

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

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

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

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

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

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

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

.mm-navbar__title {
  background: var(--themegradient);
}

/* .mm-listview li a {
  color: var(--themeGreen);
} */
.mm-btn--prev {
  background: var(--white);
}

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

/*========================== header start ==========================*/
.mobileCallbtn {
  display: none;
}

.logo img {
  width: 120px;
  height: 80px;
}

.topbar {
  /* background: linear-gradient(90deg, #014894 0%, #3F17CA 100%); */
  background: linear-gradient(90deg, #014894 0%, #835fff 90%);
  padding: 2px 0;
}

.blink {
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {

  0%,
  100% {
    visibility: visible;
  }

  50% {
    visibility: hidden;
  }
}

.topbarWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.topbarWrapper strong {
  background: linear-gradient(90deg, #E4B047 0%, #FFEEAD 50%, #E4B047 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}

.findbutton {
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  background: #f5f6f936 !important;
  border-radius: 5px;
  padding: 10px 12px;
}

.site-header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: 0.5s;
  background: #F5F6F9;
}

.site-header.sticky {
  background: #F3F4F9;
  transition: 0.s;
  top: 0;
  box-shadow: 0px 0px 20px 0px #100A2726;
}

.header_top .container-fluid {
  padding: 0 100px;
}

.header_top_hldr {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  /* padding: 5px 0; */
}

.loginbtn {
  border: 1px solid #E4E1EB;
  border-radius: 30px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: right;
  color: var(--fontBlack);
  transition: 0.5s;
  margin-left: 0px;
  position: relative;
  cursor: pointer;
  font-family: var(--montserrat);
}

.loginbtn:hover img {
  filter: brightness(0) invert(1);
  transition: 0.5;
}

.loginbtn .logdropdown {
  position: absolute;
  top: 100%;
  right: 0px;
  padding-top: 0px;
  width: 100%;
  min-width: 100px;
  overflow: hidden;
  max-height: 0;
  transition: 0.5s;
}

.loginbtn:hover .logdropdown {
  max-height: 150px;
  transition: 0.5s;
  padding-top: 20px;
}

.loginbtn:hover {
  background: linear-gradient(90deg, #533F99 0%, #A389FF 50.35%, #533F99 100%);
  color: var(--white);
  transition: 0.5s;
}

.loginbtn .logdropdown li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.loginbtn .logdropdown::before {
  content: "";
  width: 20px;
  height: 12px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #e7e7e7;
  top: 8px;
  right: 15px;
  position: absolute;
  z-index: 1;
}

.loginbtn .logdropdown li button {
  font-size: 14px;
  line-height: 100%;
  color: var(--fontBlack);
  font-weight: 400;
  padding: 8px 15px;
  transition: 0.5s;
  display: block;
  background: #F5F6F9;
  text-align: left;
  box-shadow: 0px 0px 5px 0px rgb(198 198 198 / 50%);
  position: relative;
  z-index: 2;
  transition: 0.5s;
  font-family: var(--montserrat);
  border: none;
  width: 100%;
}

.loginbtn .logdropdown li button:hover {
  color: var(--themeGreen);
  transition: 0.5s;
}

.loginbtn .logdropdown li:first-child button {
  border-radius: 8px 8px 0 0;
}

.loginbtn .logdropdown li:last-child button {
  border-radius: 0 0 8px 8px;
}


.main_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 38px;
}

.main_menu li a {
  font-size: 15px;
  line-height: 100%;
  color: var(--fontBlack);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--montserrat);
}

.main_menu li a:hover {
  color: var(--themeGreen);
  transition: 0.5s;
}

.btnheader.loginBtn {
  /* background: var(--fontBlack); */
  color: var(--themeViolet);
  border-radius: 44px;
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0%;
  transition: 0.5s;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 6.76px;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  position: relative;
  border: 1px solid #bcbcbc;
  margin-left: 23px;
}

.loginBtn .logdropdown {
  position: absolute;
  top: 100%;
  right: -10px;
  padding-top: 0px;
  width: 110px;
  overflow: hidden;
  max-height: 0;
  transition: 0.5s;
}

.loginBtn .logdropdown::before {
  content: "";
  width: 15px;
  height: 8px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #ffffff;
  top: 3px;
  right: 15px;
  position: absolute;
}

.loginBtn:hover .logdropdown {
  max-height: 150px;
  transition: 0.5s;
  padding-top: 11px;
}

.loginBtn .logdropdown li a {
  font-size: 14px;
  line-height: 100%;
  color: var(--fontBlack);
  font-weight: 400;
  padding: 8px 15px;
  transition: 0.5s;
  display: block;
  background: #fff;
}

.loginBtn .logdropdown li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.loginBtn .logdropdown li:first-child a {
  border-radius: 8px 8px 0 0;
}

.loginBtn .logdropdown li:last-child a {
  border-radius: 0px 0px 8px 8px;
}

.loginBtn .logdropdown li a:hover {
  color: var(--white);
  background: var(--themeGreen);
  transition: 0.5s;
}

.btnheader:hover {
  color: var(--themeGreen);
  transition: 0.5s;
  border: 1px solid var(--themeGreen);
}

.contactBtn {
  display: inline-flex;
  gap: 10px;
  align-items: flex-start;
  padding-right: 10px;
}

.contactBtn .callIcon {
  width: 30px;
  aspect-ratio: 1;
  /* background: var(--themeRed); */
  color: var(--white);
  display: inline-grid;
  place-content: center;
  border-radius: 6.76px;
}

.contactBtn span {
  color: var(--fontBlack);
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  display: block;
  font-family: var(--montserrat);
}

.callContent {
  flex: 1;
}

.contactBtn strong {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--fontBlack);
  transition: 0.5s;
}

.contactBtn:hover strong {
  color: var(--themeGreen);
  transition: 0.5s;
}

.header_top .logo {
  position: relative;
  display: inline-block;
}

.has-megamenu:hover .megamenu,
.has-megamenu .megamenu:hover {
  display: flex;
}

.has-megamenu:hover .megamenu {
  display: flex;
  display: block;
}

.megamenu {
  top: 100%;
  /* attach just below the menu item */
  left: 0;
  margin-top: 0;
  /* ensure no gap */
}


.megamenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
  border-radius: 8px;
}


.megamenu-col h4 {
  margin-bottom: 10px;
}

.megamenu-col ul {
  list-style: none;
  padding: 0;
}

.megamenu-col ul li a {
  display: block;
  padding: 6px 0;
  color: #333;
  font-size: 14px;
}

.megamenu-col ul li a:hover {
  color: #007BFF;
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: transparent;
  width: 100%;
  box-shadow: none;
  z-index: 999;
  gap: 40px;
  flex-wrap: wrap;
  border-radius: 8px;

  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  /* prevents mouse interaction when hidden */
}

.has-megamenu:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.megamenu-col {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.has-megamenu:hover .megamenu-col {
  opacity: 1;
  transform: translateY(0);
}

.inner_menu {
  max-width: 1087px;
  margin: auto;
  background: #fff;
  padding: 30px 30px 30px 30px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0px 4px 10px 0px #100A2714;
}

.main_menu li {
  padding: 32px 0;
}

.megamenu-col ul li {
  padding: 0;
}

.megamenu-col .sectiontitle h2 {
  font-size: 30px;
  width: max-content;
  margin: inherit;
}

.megamenu-col .sectiontitle {
  margin-bottom: 0px;
  width: auto;
}

.megamenu-col .sectiontitle p {
  margin-top: 10px;
  margin-bottom: 30px;
}

.first {
  position: relative;
  padding-right: 40px;
}

.first::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: #E7E7E9;
  right: 0;
  top: 0;
}

.middle {
  padding-left: 20px;
}

.megamenu-col .offers .offer_details a {
  font-size: 16px;
  font-weight: 600;
  color: #100A27;
  padding-bottom: 10px;
  transition: 0.5s;
}

.megamenu-col .offers .offer_details a:hover {
  color: var(--themeGreen);
  transition: 0.5s;
}

.megamenu-col .offers .offer_details a img {
  transition: 0.5s;
}

.megamenu-col .offers .offer_details a:hover img {
  transform: translateX(8px);
  transition: 0.5s;
}

.megamenu-col .offers {
  display: flex;
  gap: 16px;
  padding-bottom: 35px;
  min-height: 120px;
}

.megamenu-col .offer_details {
  flex: 1;
}

.megamenu-col .offers .offer_details p {
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  color: #100A27;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}

.megamenu-col .offersImg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.megamenu-col .offersImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.megamenu-col .offers .offer_details .arrow {
  height: auto;
}

.location_details {
  flex: 1;
}

.location_details h6 {
  color: var(--titleblack);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 12px;
}

.location_details ul {
  display: flex;
  align-items: center;
  gap: 5px;
}

.location_details ul li a {
  background: #F1EFF4;
  border-radius: 44px;
  display: flex;
  align-items: center;
  padding: 6px 7px;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0%;
  gap: 5px;
  color: var(--titleblack);
  transition: 0.5s;
}

.location_details ul li a:hover {
  color: var(--themeGreen);
  transition: 0.5s;
}

.location_details ul li a img {
  transition: 0.5s;
}

.location_details ul li a:hover img {
  transform: translateX(5px);
  transition: 0.5s;
}

.pl-0 {
  padding-left: 0;
}

.inner_menu .col-md-4,
.megamenu-col.first {
  height: 100%;
}

.inner_menu .col-md-4 .megamenu-col .offers:last-child {
  min-height: auto;
  padding-bottom: 0;
}

/* .btnheader  svg {
  display: none;
} */

.dropdownmain-img {
  width: 100%;
  height: 143px;
  border-radius: 10px;
  overflow: hidden;
}

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

/* ===login modal=== */
.modalClose {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 30px;
  height: 30px;
  background: #fff;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-content: center;
  transition: 0.5s;
}

.modalClose:hover {
  background: #f5c2c7;
  color: #842029;
  transition: 0.5s;
}

.logmodal .modal-dialog {
  margin-top: 150px;
  width: 100%;
  max-width: 769px;
}

.logmodal .modal-content {
  border-radius: 20px;
}

.logmodal .modal-body {
  padding: 30px;
}

.loginlogoImg img {
  max-width: 130px;
  margin: 0 auto 20px;
  display: table;
}

.loginForm .form-group {
  position: relative;
  margin-bottom: 10px;
}

.loginForm .form-group input {
  min-height: 45px;
  background: #F0F1F4;
  border: 1px solid #E4E5EF;
  width: 100%;
  border-radius: 5px;
  padding: 8px 10px 8px 45px;
  color: var(--titleblack);
  transition: 0.5s;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;

}

.loginForm .form-group input:focus,
.loginForm .form-group input:active {
  border: 1px solid var(--themeGreen);
  transition: 0.5s;
}

.loginForm .form-group input::placeholder {
  color: var(--fontBlack);
}

.loginIcon {
  color: var(--themeGreen);
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 16px;
  line-height: 1;
}

.forgotPass {
  margin: 20px 0 8px;
  text-align: center;
}

.forgotPass a {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--themeViolet);
  transition: 0.5s;
}

.forgotPass a:hover,
.logMore a:hover {
  letter-spacing: 1px;
  transition: 0.5s;
}

.alterText {
  text-align: center;
}

.alterText span {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  position: relative;
  display: inline-block;
  padding: 0 15px;
}

.alterText span::after,
.alterText span::before {
  width: 47px;
  height: 1px;
  content: "";
  background: #E4E5EF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
}

.alternateLogin {
  margin: 30px 0 25px;
}

.alterText span::after {
  left: inherit;
  right: 100%;
}

.alterlogList {
  display: flex;
  align-items: center;
  gap: 17px;
  justify-content: center;
  margin: 12px 0 35px;
}

.logMore {
  text-align: center;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--titleblack);
}

.logMore a {
  color: var(--themeViolet);
  transition: 0.5s;
}

.loginImg {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

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

/* ===login modal=== */

/* ===register modal=== */
.registerLogo img {
  max-width: 100px;
}

.modal-header.pd-0 {
  padding: 30px 30px 0;
  border: none;
}

.modal-header.pd-0 h5 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.registerModal .modal-body {
  padding: 20px 30px 30px;
}

.registerModal .modal-dialog {
  margin-top: 150px;
  width: 100%;
  max-width: 430px;
}

.registerModal .modal-content {
  border-radius: 20px;
}

.registerModal .modal-dialog .form-check-input {
  width: 17px;
  height: 17px;
  border: 1px solid #C0C1CE;
  box-shadow: none !important;
  margin-top: 2px;
}

.registerModal .modal-dialog .form-check {
  margin: 15px 0 30px;
  transition: 0.5s;
}

.registerModal .modal-dialog .form-check label {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.registerModal .modal-dialog .form-check label a {
  color: var(--themeViolet);
  text-decoration: underline;
}

.registerModal .modal-dialog .form-check-input:checked {
  background-color: var(--themeViolet);
  border-color: var(--themeViolet);
  transition: 0.5s;
}

/* ===register modal=== */
/*=========================== header end ===========================*/


/* ===============banner sec start================ */
.bannerSec {
  padding: 0px 0 0;
  margin-top: 118px;
  position: relative;
  z-index: 9;
}

.bannerSec .swiper2 {
  width: 100%;
  height: 750px;
}

.bannerSec .swiper-slide {
  text-align: center;
  position: relative;
}

.bannerSec .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.findSpace {
  position: absolute;
  bottom: 30px;
  width: 100%;
  left: 0;
  z-index: 2;
}

.swiper-slide figure {
  position: relative;
}

.bannerSec .swiper-slide figure::after {
  width: 100%;
  height: 100%;
  content: "";
  background: #07051180;
  position: absolute;
  top: 0;
  left: 0;
}

.findSpace h4 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
}

.findspaceform {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 5px;
  max-width: 944px;
  margin: auto;
}

.findspaceform .form-group {
  display: flex;
  align-items: center;
  gap: 10px;
  align-items: center;
  width: 277px;
  padding: 10px;
  padding-right: 44px;
  border-right: 1px solid #E7E7E9;
}

.findspaceform .form-group:nth-child(2) {
  padding-left: 30px;
  padding-right: 30px;
}

.findspaceform .form-group:nth-child(3) {
  padding-left: 30px;
  padding-right: 10px;
  border-right: none;
  width: 250px;
}

.findspaceform .form-group .formIcon {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: #F2F2F2;
  display: inline-grid;
  place-content: center;
}

.findspaceform .form-group .form-select,
.findspaceform .form-group .form-control {
  flex: 1;
  padding: 5px 5px;
  border: none !important;
  box-shadow: none !important;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0%;
  color: #100A27;
  min-height: 40px;
}

.findspaceform .form-group .form-select::placeholder,
.findspaceform .form-group .form-control::placeholder {
  color: #100A27;
}

.btnPrimary {
  background: var(--themegradient);
  color: var(--white) !important;
  border: none !important;
  box-shadow: none !important;
  padding: 8px 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  gap: 10px;
}

.findspaceform .btnPrimary {
  margin-left: auto;
  margin-right: 10px;
}

.bannertoptext ul {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.bannertoptext ul li {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
  position: relative;
}

.bannertoptext ul li:not(:last-child)::after {
  width: 2px;
  height: 100%;
  content: "";
  background: var(--themeGreen);
  right: -16px;
  position: absolute;
}

.bannertoptext {
  text-align: center;
  margin-bottom: 220px;
}

.btnSecondary {
  background: linear-gradient(90deg, #533F99 0%, #A389FF 50.35%, #533F99 100%);
  font-family: var(--inter);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 27px;
}

.btnSecondary i {
  transition: 0.5s;
}

.btnSecondary:hover i {
  transform: rotate(45deg);
  transition: 0.5s;
}

.bannerSec {}

.heroOverley {
  position: absolute;
  width: 100%;
  top: 190px;
  z-index: 3;
  left: 0px;
}

.heroOverley h1 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 60px;
  line-height: 79px;
  letter-spacing: 0%;
  color: var(--white);
}

.heroOverley h1 span {
  color: var(--themeGreen);
}

.heroslider .swiper-pagination {
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.heroslider .swiper-pagination .swiper-pagination-bullet {
  opacity: 0.8;
  background: var(--white);
  transition: 0.5s;
  position: relative;
  width: 12px;
  height: 12px;
}

.heroslider .swiper-pagination .swiper-pagination-bullet::after {
  width: 200%;
  height: 200%;
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: 0.5s;
}

.heroslider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.heroslider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
  transition: 0.5s;
}

/* .heroslider  .swiper-pagination .swiper-pagination-bullet::after */
/* ===============banner sec close================ */

/* ==============our offering start===================== */
.ourOffering {
  padding: 140px 0 150px;
  position: relative;
}

.ourOffering::before {
  width: 100%;
  height: 70%;
  top: 0;
  content: "";
  left: 0;
  background: radial-gradient(30.91% 86.55% at 50% 25.12%, #FFFFFF 0%, #F1EFF4 100%);
  position: absolute;
}

.sectiontitle {
  margin-bottom: 50px;
}

.sectiontitle h6 {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--titleblack);
  margin-bottom: 20px;
}

.sectiontitle h2 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 38px;
  line-height: 45px;
  letter-spacing: 0%;
  color: var(--titleblack);
  max-width: 820px;
  margin: auto;
}

.sectiontitle h2 span {
  background: var(--themegradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: var(--montserrat);
}

.offeringSliderwrapper .swiper {
  width: 100%;
  height: 100%;
}

.offeringSliderwrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offeringSliderwrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offeringSliderwrapper .swiper-slide .offeringItem {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.offeringSliderwrapper .swiper-slide .offeringItem::before {
  content: "";
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(7, 5, 17, 0) 0%, rgba(7, 5, 17, 0.8) 100%);
  z-index: 1;
  transition: 0.5s;

}

.offeringSliderwrapper .swiper-slide .offeringItem:hover::before {
  height: 80%;
  transition: 0.5s;
}

.offeringItem .offeringTitle h5 {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: left;
  color: var(--white);
  padding-left: 20px;
  position: relative;
}

.offeringItem .offeringTitle h5::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--themeGreen);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
}

.offeringItem .offeringTitle {
  padding: 30px;
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 2;
  width: 100%;
  transition: 0.5s;
}

.offeringItem:hover .offeringTitle {
  bottom: 0px;
  transition: 0.5s;
}

.offeringItem a {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  display: inline-block;
  margin-top: 20px;
}

.offeringItem a:hover {
  transform: translateX(8px);
  transition: 0.5s;
}

.offeringItem:hover a {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}

.ourOffering .container-fluid {
  padding: 0 225px;
  position: relative;
  z-index: 2;
}

.offeringSliderwrapper .swiper-button-next:after,
.offeringSliderwrapper .swiper-button-prev:after {
  display: none;
}

.offeringSliderwrapper .navouter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 10px;
  margin-top: 50px;
}

.offeringSliderwrapper .navouter svg {
  width: 10px;
}

.offeringSliderwrapper .swiper-button-prev,
.offeringSliderwrapper .swiper-button-next {
  position: relative;
  top: inherit;
  left: inherit;
  right: inherit;
  bottom: inherit;
  border: 1px solid #6B7073;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: #6B7073;
  transition: 0.5s;
}

.offeringSliderwrapper .swiper-button-prev:hover,
.offeringSliderwrapper .swiper-button-next:hover {
  background: linear-gradient(90deg, #533F99 0%, #A389FF 50.35%, #533F99 100%);
  color: var(--white);
  transition: 0.5s;
  border: 1px solid transparent;
}

.at-shiny-glass-effect {
  position: relative;
  overflow: hidden;
}

.at-shiny-glass-effect:after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.at-shiny-glass-effect:hover:after {
  height: 250%;
  transition: all 600ms linear !important;
  background-color: transparent;
}

/* ==============our offering start===================== */

/* ==============modern aminities start================= */
.modernAminities {
  padding: 0;
}

.modernAminities .sectiontitle {
  margin-bottom: 0;
  padding-right: 10px;
}

.modernAminitiesWrapper {
  padding-left: 40px;
  display: flex;
  gap: 40px 80px;
  flex-flow: wrap;
  position: relative;
}

.modernAminitiesWrapper::after {
  top: 0;
  height: 100%;
  left: 0;
  width: 1px;
  content: "";
  background: #E4E1EB;
  position: absolute;
}

.AminitiesItem {
  display: flex;
  gap: 15px;
  align-items: center;
  width: 26%;
}

.amiIcon img {
  width: 40px;
}

.amiText {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0%;
  flex: 1;
}

/* ==============modern aminities close================= */

/* ==============range of solution start================ */
.sectiontitle p {
  max-width: 970px;
  margin: 30px auto 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.rangeSolution .container-fluid {
  padding: 0 100px;
}

.rangeWrapper {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
}

.rangeItem {
  width: 32.5%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.rangeItem img {
  transform: scale(1);
  transition: 0.5s;
}

.rangeOverly {
  width: 100%;
  height: 116px;
  bottom: 0;
  left: 0;
  padding: 60px 30px 30px;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  display: grid;
  place-content: center;
  transition: 0.5s;
}

.rangeOverly ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.rangeItem:hover .rangeOverly ul {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}

.rangeOverly ul li a {
  background: #00000080;
  border-radius: 44px;
  font-family: var(--inter);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5.5px 10px;
}

.rangeOverly ul li a i {
  transition: 0.5s;
  color: var(--themeGreen);
  font-size: 24px;
  transform: rotate(-45deg);
}

.rangeOverly ul li a:hover i {
  transform: rotate(0deg);
  transition: 0.5s;
}

.rangeItem:hover .rangeOverly {
  height: 100%;
  transition: 0.5s;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.rangeItem:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}

.rangeOverly h4 {
  color: var(--white);
  font-family: var(--inter);
  font-weight: 700;
  font-size: 22px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
}

/* ==============range of solution close================ */

/* ==============grow faster start====================== */
.growfaster {
  padding-top: 0;
}

.growfasterTitle {
  padding-right: 23px;
  position: relative;
}

.growfasterTitle .sectiontitle {
  margin-bottom: 0;
}

.growfasterTitle .sectiontitle h2 {
  font-weight: 600;
  font-size: 30px;
}

.growfasterTitle .sectiontitle h2 strong {
  color: var(--themeGreen);
}

.growContent {
  padding: 0px 0 11px 23px;
  max-width: 467px;
  position: relative;
  transform: translateY(6px);
}

.growContent::before {
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #0662C4 0%, #15B852 100%);
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
}

.growContent p {
  font-family: var(--literata);
  font-weight: 300;
  font-size: 18px;
  line-height: 31px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

/* ==============grow faster close====================== */

/* =============flexible working start================== */
.flexibleWorking {
  position: relative;
  z-index: 1;
}

.flexibleWorking::before {
  background: linear-gradient(90deg, #42327C 0%, #100A27 61%);
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 66%;
  position: absolute;
  z-index: -1;
}

.flexiblecImgsliderwrap .swiper {
  width: 100%;
  height: 100%;
}

.flexiblecImgsliderwrap .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flexiblecImgsliderwrap .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flexiblecImgItem {
  border-radius: 20px;
  overflow: hidden;
}

.flexibleWorking .flexiblecImgsliderwrap .swiper-pagination {
  top: inherit;
  bottom: 30px;
}

.flexibleWorking .flexiblecImgsliderwrap .swiper-pagination .swiper-pagination-bullet {
  background: var(--titleblack);
  width: 11px;
  height: 11px;
  opacity: 1;
  transition: 0.5s;
}

.flexibleWorking .flexiblecImgsliderwrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--themeGreen);
  transition: 0.5s;
}

.flexibleContent {
  padding-left: 30px;
  padding-top: 50px;
}

.text-white.sectiontitle h2,
.text-white.sectiontitle h6 {
  color: var(--white);
}

.flexibleContent .sectiontitle {
  max-width: 410px;
}

.counterList {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 80px;
  margin-left: -150px;
  position: relative;
  z-index: 2;
}

.counterList li {
  box-shadow: 0px 4px 10px 0px #100A271A;
  background: var(--white);
  border-radius: 20px;
  padding: 18px 20px;
  min-width: 174px;
  text-align: center;
}

.counterList li h4 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 34px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--themeGreen);
  margin-top: 10px;
}

.counterList li h4 span {
  background: var(--themegradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.counterList li strong {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;

}

/* =============flexible working start================== */

/* =============about sec start========================= */
.aboutUs {
  padding: 0;
}

.aboutContent {
  max-width: 538px;
}

.aboutContent .sectiontitle {
  margin-bottom: 30px;
}

.aboutContent p {
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--titleblack);
  margin-bottom: 40px;
}

/* =============about sec close========================= */

/* =============our client start======================== */
.ourClient {
  background: #15B85214;
}

.clientSliderWrapper {
  position: relative;
}

.clientSliderWrapper::before {
  background: linear-gradient(90deg, rgb(237 249 241) 0%, rgba(255, 255, 255, 0) 43%);
  height: 100%;
  width: 200px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
}

.clientSliderWrapper::after {
  background: linear-gradient(270deg, rgb(237 249 241) 0%, rgba(255, 255, 255, 0) 43%);
  height: 100%;
  width: 200px;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  z-index: 2;
}

.ourClient .sectiontitle {
  margin-bottom: 35px;
}

.clientItem {
  background: var(--white);
  display: flex;
  box-shadow: 3px 3px 4px 0px #DEF0E5;
  border-radius: 100px;
  height: 80px;
  align-items: center;
  justify-content: center;
}

.ourClient .swiper {
  padding: 15px 0;
}

.clientSliderWrapper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* =============our client close======================== */

/* =============redefiningSec start ====================*/
.redefiningSec {
  display: grid;
  grid-template-columns: 40% 59%;
  gap: 10px;
  padding: 10px 0;
  background: var(--white);
}

.redefiningLeft {
  position: relative;
  height: 525px;
}

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

/* .redefiningLeft::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(90deg, rgba(6, 98, 196, 0.9) 0%, rgba(21, 184, 82, 0.9) 100%);
  z-index: 1;
} */
.redefiningOverley {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 100%;
  text-align: left;
  padding: 0 60px;
  z-index: 2;
}

.redefiningOverley h2 {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 50px;
  line-height: 70px;
  letter-spacing: 0%;
  color: var(--white);
}

/* detail video slider */
.videothumb {
  height: 525px;
  /* Adjust as needed */
  overflow: hidden;
}

.videothumb .swiper-slide {
  height: auto;
  /* Important for grid rows */
}

.videothumb .swiper-slide img,
.videoslider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videothumb .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide.swiper-slide-visible {
  margin-left: 0 !important;
  height: 170px !important;
}

.pr-0 {
  padding-right: 0;
}

.videonain {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  height: 525px;
}

.dvideoOverley {
  position: absolute;
  bottom: 50%;
  z-index: 3;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
}

.dplayIcon {
  display: inline-grid;
  place-content: center;
  border-radius: 50%;
  color: var(--white);
}

.dplayIcon svg {
  transform: translateX(2px);
}

.dvideoOverley p {
  font-family: var(--lato);
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--white);
}

.thumbImgwrapper {
  position: relative;
  height: 100%;
  border-radius: 0px;
  overflow: hidden;
}

.thumbImgwrapper .dplayIcon {
  width: 20px;
  height: 20px;
  display: none;
}

.thumbImgwrapper .dplayIcon svg {
  width: 7px;
  transform: translateX(2px);
}

.thumbImgwrapper .dvideoOverley {
  bottom: inherit;
  top: 50%;
  transform: translate(-50%, -50%);
}

.videosliderOuter {
  flex: 1;
}

.videothumbouter {
  max-width: 170px;
}

.videothumb .thumbImgwrapper {
  position: relative;
  transition: 0.5s;
}

.videothumb .thumbImgwrapper::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.videothumb .thumbImgwrapper img {
  transform: scale(1);
  transition: 0.5s;
}

.videothumb .swiper-slide-thumb-active .thumbImgwrapper {
  transition: 0.5s;
}

.videothumb .swiper-slide-thumb-active .thumbImgwrapper::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.videothumb .swiper-slide-thumb-active .thumbImgwrapper img {
  transform: scale(1.2);
  transition: 0.5s;
}

.videosliderWrapperInner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

.videothumbouter {
  width: 265px;
}

.videosliderOuter {
  width: calc(100% - 275px);
}

.dplayIcon {
  width: 64px;
  height: 64px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--white);
  font-size: 30px;
  -webkit-animation: ripple 1s linear infinite;
  animation: ripple 1s linear infinite;
}

.dplayIcon i {
  background: linear-gradient(360deg, #0662C4 -8.33%, #15B852 73.61%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 6px rgba(255, 255, 255, 0.3),
      0 0 0 18px rgba(255, 255, 255, 0.3),
      0 0 0 36px rgba(255, 255, 255, 0.3);
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 6px rgba(255, 255, 255, 0.3),
      0 0 0 18px rgba(255, 255, 255, 0.3),
      0 0 0 36px rgba(255, 255, 255, 0.3);
  }

  100% {
    -webkit-box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.3),
      0 0 0 18px rgba(255, 255, 255, 0.3),
      0 0 0 36px rgba(255, 255, 255, 0.3),
      0 0 0 54px rgba(255, 255, 255, 0);
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.3),
      0 0 0 18px rgba(255, 255, 255, 0.3),
      0 0 0 36px rgba(255, 255, 255, 0.3),
      0 0 0 54px rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  0% {
    -webkit-box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 6px rgba(255, 255, 255, 0.3),
      0 0 0 18px rgba(255, 255, 255, 0.3),
      0 0 0 36px rgba(255, 255, 255, 0.3);
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 6px rgba(255, 255, 255, 0.3),
      0 0 0 18px rgba(255, 255, 255, 0.3),
      0 0 0 36px rgba(255, 255, 255, 0.3);
  }

  100% {
    -webkit-box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.3),
      0 0 0 18px rgba(255, 255, 255, 0.3),
      0 0 0 36px rgba(255, 255, 255, 0.3),
      0 0 0 54px rgba(255, 255, 255, 0);
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.3),
      0 0 0 18px rgba(255, 255, 255, 0.3),
      0 0 0 36px rgba(255, 255, 255, 0.3),
      0 0 0 54px rgba(255, 255, 255, 0);
  }
}



/* 18.6.2025 */

.testi_sec {
  position: relative;
}

.testi_sec::before {
  position: absolute;
  content: "";
  background: url(../images/testimonoial_bg.png) no-repeat;
  background-size: cover;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 250px;
}

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

.testi_bx {
  background-color: #F5F6F9;
  border-radius: 30px;
  padding: 30px;
}

.testi_left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.testi_left h5 {
  text-align: start;
}

.testi_left p {
  margin-top: 6px !important;
}

.testi_bx p {
  font-family: var(--literata);
  text-align: start;
  font-size: 18px;
  font-weight: 300;
  max-width: 100%;
  margin: 30px 0 0 0;
}

.testiSliderwrapper .swiper-button-prev,
.testiSliderwrapper .swiper-button-next {
  position: relative;
  top: inherit;
  left: inherit;
  right: inherit;
  bottom: inherit;
  border: 1px solid #6B7073;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: #6B7073;
  transition: 0.5s;
}

.testiSliderwrapper .swiper-button-prev:hover,
.testiSliderwrapper .swiper-button-next:hover {
  color: var(--white);
  border: 1px solid transparent;
  background: linear-gradient(90deg, #533F99 0%, #A389FF 50.35%, #533F99 100%);
  transition: 0.5s;
}

.testiSliderwrapper .navouter svg {
  width: 10px;
}

.testiSliderwrapper .navouter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 10px;
  margin-top: 50px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
  display: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
  display: none;
}

.testi_left figure {
  position: relative;
  z-index: 1;
  width: 96px;
}

.testi_name {
  flex: 1;
}

.testi_left figure::after {
  position: absolute;
  content: "";
  background: url('../images/testi-Union.png') no-repeat;
  background-size: cover;
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.playripplebtn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  color: var(--white);
  font-size: 20px;
  place-content: center;
  background: var(--themegradient);
  position: relative;
  z-index: 1;
  will-change: box-shadow;
}

.playripplebtn i {
  position: relative;
  z-index: 2;
  transform: translateX(1px);
}

.playripplebtn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  border-radius: 100%;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: #15B8524D;
  animation: pulse_shadow 1s ease-in-out infinite;
  will-change: box-shadow;
}

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

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


/* =============redefiningSec close ====================*/


/* =============gallery sec start======================= */
.gallerySec .container {
  max-width: calc(100% - 60px);
}

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

.gallerySec .div3 {
  grid-column: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 2;
}

.gallerySec .div4 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 1;
}

.galleryQuote {
  background: var(--titleblack);
  display: grid;
  place-content: center;
  border-radius: 10px;
}

.galleryQuote .sectionTitle {
  margin: 0;
}

.galleryItem {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* .fadeLeft, .fadeRight  {
  opacity: 0;
} */
.galleryItem::after {
  content: "\f06e";
  /* Unicode for Font Awesome's eye icon */
  font-family: "Font Awesome 6 Free";
  /* Depends on version you're using */
  font-weight: 900;
  /* Required for solid icons in FA 5+ */
  font-size: 16px;
  color: var(--themeGreen);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  background: var(--white);
  display: inline-grid;
  place-content: center;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: 0.5s;
  z-index: 3;
}

.galleryItem:hover::after {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.5s;
}

.galleryItem::before {
  background: #100a2761;
  backdrop-filter: blur(2px);
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  z-index: 2;
  opacity: 0;
}

.galleryItem:hover::before {
  opacity: 1;
  transition: 0.5s;
}

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

.text-white span.sectionTag {
  color: var(--white);
}

.galleryItem.div4 img {
  min-height: 367px;
}

.gallerySec {
  position: relative;
}

.gallerySec::before {
  width: 49%;
  height: 100px;
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  background: #F5F6F9;
  z-index: 1;
}

.gallerySec .container {
  position: relative;
  z-index: 2;
}

.galleryQuote .btnPrimary {
  margin-top: 15px;
}

.galleryItem img {
  transition: 0.5s;
}

.galleryItem:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}

.galleryQuote .btnSecondary {
  max-width: 134px;
  padding: 13px 20px;
}

/* =============gallery sec start======================= */

/* =============blog sec strat========================== */
.blogListingwrapper {
  position: relative;
}

.blogListingwrapper::after {
  content: "";
  height: 30px;
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.blogListing::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.blogListing {
  display: grid;
  gap: 20px;
  padding-bottom: 30px;
  height: 180px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blogsmallItem {
  display: flex;
  gap: 30px;
}

.blogsmallItem figure {
  border-radius: 5px;
  overflow: hidden;
  width: 120px;
  height: 80px;
}

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

.blogContent {
  flex: 1;
}

.blogContent strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--titleblack);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}

.blogContent a {
  color: var(--themeGreen);
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  transition: 0.5s;
}

.blogContent a:hover {
  letter-spacing: 1px;
  transition: 0.5s;
}

.blogSocial {
  display: flex;
  gap: 15px;
}

.blogSocial li {
  background: #F5F6F9;
  border-radius: 20px;
  padding: 32px 14px 22px;
  text-align: center;
}

span.socialtag {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  padding: 4px 20px;
  border-radius: 44px;
  background: #EBECF2;
  margin: 10px 0 20px;
}

.socialMediaWrapper {
  padding-left: 64px;
  margin-left: 34px;
  border-left: 1px solid #E4E1EB;
}

.blogSocial li a {
  transition: 0.5s;
  cursor: pointer;
  display: inline-block;
}

.blogSocial li a:hover {
  transition: 0.5s;
  transform: translateX(8px);
}

a {
  cursor: pointer !important;
}

/* =============blog sec close========================== */


/* footer start */
.site-footer {
  position: relative;
  /* border-top: 4px solid #36BF86; */
}

.footer_top {
  position: relative;
  padding: 60px 0;
  /* background: #100A27; */
  background: #2F1F65;
}

.footer_top_hldr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer_cont h3 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-bottom: 25px;
}

.footer_cont ul li {
  position: relative;
  padding-left: 15px;
  display: flex;
  /* align-items: center; */
  gap: 15px;
}

.footer_cont ul li svg {
  color: var(--themeGreen);
  transform: translateY(8px);
}

.footer_cont ul li::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: var(--themeGreen);
  left: 0;
  top: 17px;
}

.footer_cont ul li a,
.footer_cont ul li address {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 35px;
  letter-spacing: 0%;
  color: #DDDFEA;
  margin: 0;
}

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

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

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

.address_box li {
  padding-left: 0 !important;
}

.address_box li::after {
  display: none;
}

.footer_cont:first-child {
  width: 31%;
}

.address_box {
  margin-bottom: 27px;
}

.newsletter_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsletter_form input {
  border: 1px solid #605A70;
  padding: 12px 15px;
  border-radius: 7px;
  width: calc(100% - 52px);
  background: transparent;
  font-family: var(--lato);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
}

.newsletter_form input::placeholder {
  color: #fff;

}

.newsletter_form button {
  height: 42px;
  width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--themeGreen);
  border-radius: 50%;
  border: none;
  transition: all 0.5s ease-in-out;
  padding: 0;
}

.newsletter_form button:hover {
  transition: 0.5s;
  transform: translateX(8px);
}

.newsletter_form button:hover {
  background: var(--themeGreen);
  transition: 0.5s;
}

.newsletter_form button::after {
  display: none;
}

/* .newsletter_form button::after, .newsletter_form button::before {
  background: var(--themeGreen);
} */

.footer_btm {
  padding: 3px 0 4px;
  background: var(--fontBlack);
  /* background: #533F99; */
}

.mopartner img {
  margin-right: 60px;
}

.footer_btm_hldr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_btm_hldr ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

.footer_btm_hldr p,
.footer_btm_hldr p a,
.footer_btm_hldr ul li a {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #DDDFEA;
}

.footer_btm_hldr ul li a {
  color: var(--white);
}

.footer_btm_hldr p a:hover,
.footer_btm_hldr ul li a:hover {
  color: var(--themeGreen);
}

.footer_btm_hldr p a.reflink {
  font-weight: 700;
}

.footer_btm_hldr ul li {
  position: relative;
}

.footer_btm_hldr ul li:not(:last-child)::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: #fff;
  right: -20px;
  top: 0;
}

ul.playstore {
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.downloadWrap {
  display: flex;
  gap: 43px;
  margin-top: 40px;
}

.qrWrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qrimg {
  width: 85px;
  height: 85px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
}

.qrContent {
  flex: 1;
  max-width: 181px;
}

.qrContent p {
  color: var(--white);
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0%;

}

.footer_cont .playstore li {
  padding: 0;
  margin-bottom: 0 !important;
}

.footer_cont .playstore li::after {
  display: none;
}

.footer_cont .playstore li a {
  transform: translateY(0);
  transition: 0.5s;
}

.footer_cont .playstore li a:hover {
  transform: translateY(-8px);
  transition: 0.5s;
}

.footerWrapper {
  width: 34%;
}

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

.footer_btm_hldr p span {
  transform: translateY(3px);
  display: inline-block;
}

/* footer end */


/* ===side socila bar ==== */
ul.SidesocialBar {
  display: grid;
  gap: 7px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  right: 20px;
}

.enqueryBtn {
  background: #533F99;
  border-radius: 44px;
  padding: 12px 8.5px;
  line-height: 1;
}

.enqueryBtn:hover {
  background: var(--themeGreen);
}

.enqueryBtn span {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: var(--white) !important;
  font-family: var(--halisR400);
  font-size: 16px;
  letter-spacing: 0%;
}

.SidesocialBar li a {
  width: 35px;
  height: 35px;
  display: inline-grid;
  place-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: 0.5s;
}

.SidesocialBar li a svg {
  transform: scale(1.1);
}

.SidesocialBar li a:hover {
  transform: translateX(-8px);
  transition: 0.5s;
}

.SidesocialBar li:nth-child(1) a {
  background: #1976D2;
}

.SidesocialBar li:nth-child(2) a {
  background: linear-gradient(131.5deg, #FBD524 14.87%, #F33288 50.79%, #6E1CCF 85.13%);
}

.SidesocialBar li:nth-child(3) a {
  background: #0077B5;
}

.SidesocialBar li:nth-child(4) a {
  background: #E60000;
}

.socialplus {
  display: none;
}

/* enquery modal */
.closeBTn {
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  border-radius: 4px;
  background: #f5c2c7 !important;
  color: #842029 !important;
  box-shadow: none !important;
}

.enqueryContent .modal-header {
  border-bottom: none !important;
  flex-flow: wrap;
  padding: 30px 40px 25px;
}

.enqueryContent .modal-header p {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--lightBlack);
  line-height: 1;
}

.enqueryContent .modal-header h5 {
  font-weight: 700;
  line-height: 100%;
  font-size: 30px;
  letter-spacing: 0%;
  color: var(--fontBlack);
  margin-bottom: 10px;
  position: relative;
  padding-left: 11px;
}

.enqueryContent .modal-header h5::before {
  content: "";
  width: 3px;
  top: 0;
  left: 0;
  background: var(--themeGreen);
  left: 0;
  top: 0;
  height: 100%;
  position: absolute;
}

.enqueryForm .form-control,
.enqueryForm .form-select {
  min-height: 50px;
  border-radius: 7px;
  box-shadow: none !important;
  background-color: #F5F6F9;
  border: 1px solid var(--themeGrey);
  font-family: var(--lato);
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--fontBlack);
}

.enqueryForm .form-control::placeholder {
  color: var(--fontBlack) !important;
}

.enqueryForm .form-group {
  margin-bottom: 15px;
}

.counterOUter {
  background: #F5F6F9;
  border: 1px solid #DDDFEA;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 0 10px;
}

.counterOUter input {
  position: relative;
  z-index: 1;
  width: 142px;
  height: 50px;
  background: transparent;
  border: none;
  text-align: center;
  border-right: 1px solid #DDDFEA;
  border-left: 1px solid #DDDFEA;
}

#enqueryModal .modal-lg,
#enqueryModal .modal-xl {
  --bs-modal-width: 870px;
}

.enqueryForm .form-check-input {
  border-color: var(--themeGreen) !important;
  box-shadow: none !important;
}

.enqueryForm .form-check-input:checked {
  background-color: var(--themeGreen);
  border-color: var(--themeGreen);
}

.enqueryForm .form-control:active,
.enqueryForm .form-control:focus,
.enqueryForm .form-select:active,
.enqueryForm .form-select:focus {
  border: 1px solid var(--themeGreen);
  transition: 0.5s;
}

.enqueryForm .form-group label {
  padding-left: 5px;
  border-left: 2px solid var(--themeViolet);
  margin-left: 3px;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--lightBlack);
  font-weight: 600;
}

.submitQuote {
  margin-left: auto;
  display: table;
}

.cBtnWrap {
  display: flex;
  gap: 4px;
}

.enqueryForm .form-group label.notMandatory {
  border-color: transparent;
}

.counterOUter {
  position: relative;
}

.counterOUter input {
  position: relative;
  z-index: 1;
}

.counterOUter .cBTn {
  width: 48px;
  height: 38px;
  display: inline-grid;
  place-content: center;
  background: #d1d1d1;
  border-radius: 4px;
  color: #535353;
  z-index: 2;
  transition: 0.5s;
  cursor: pointer;
}

.counterOUter .cBTn:hover {
  background: var(--themeGreen);
  color: var(--white);
  transition: 0.5s;
}

.enqueryContent .modal-body p {
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--lightBlack);
}

.enqueryContent .modal-body p a {
  color: var(--fontBlack);
  transition: 0.5s;
  text-decoration: underline;
}

.enqueryContent .modal-body p a:hover {
  color: var(--themeGreen);
  text-decoration: none;
  transition: 0.5s;
}

.enqueryContent .modal-body {
  padding: 0 40px 35px;
}

.enqueryContent {
  border-radius: 30px;
}

.mandatory.form-group {
  position: relative;
}

.mandatory.form-group::after {
  content: "";
  width: 2px;
  height: 36px;
  top: 50%;
  transform: translateY(-50%);
  background: #ce2121;
  position: absolute;
}

/* enquery modal */
/* ===side social bar ==== */


/* ====================================
listing page start
======================================= */
.listingSec {
  margin-top: 0px;
  padding-top: 0;
}

.softbanner {
  border-radius: 10px;
  overflow: hidden;
}

.softbanner img {
  width: 100%;
}

.listItem {
  margin-top: 60px;
}

.listingRight .row .col-sm-12:first-child .listItem {
  margin-top: 30px;
}

.listitemTop {
  display: flex;
  gap: 10px;
}

.listItemContent {
  max-width: calc(100% - 310px);
  flex: 1;
}

.listitemImg {
  width: 300px;
  height: 242px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.listitemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.listitemImg:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}

.populartag {
  position: absolute;
  width: 120px;
  top: 17px;
  left: -35px;
  padding: 4px 0;
  text-align: center;
  transform: rotate(-44deg);
  color: var(--white);
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  background: var(--themeViolet);
}

.listcontentTop {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 10px 18px 20px;
  border: 1px solid #E4E5EF;
  border-radius: 10px;
}

.contentWrapper {
  flex: 1;
}

.contentWrapper h3 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
  margin-bottom: 10px;
  margin-top: 10px;
}

.contentWrapper p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.noofSeats {
  margin: 19px 0 20px;
}

.noofSeats strong {
  color: var(--fontBlack);
  font-weight: 700;
}

.priceWrapper {
  background: #F5F6F9;
  border-radius: 5px;
  padding: 10px 22px 8px;
  margin-bottom: 13px;
}

.priceWrapper h5 {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 21px;
  letter-spacing: 0%;
  color: var(--themeGreen);
  margin-bottom: 4px;
}

.priceWrapper strong {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.bookWrapper .btnPrimary {
  width: 100%;
  margin-top: 20px;
}

.listaminities ul {
  display: flex;
  gap: 15px;
}

.listaminities ul li img {
  width: 25px;
  /* filter: grayscale(100%);
    opacity: 0.5; */
  transition: 0.5s;
}

.listaminities ul li:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transition: 0.5s;
}

.listaminities strong {
  font-family: var(--lato);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--fontBlack);
  display: block;
  margin-bottom: 10px;
}

.slotItem input[type="checkbox"].asButton,
.slotItem input[type="radio"].asButton {
  display: none;
}

.slotItem input[type="checkbox"].asButton+label,
.slotItem input[type="radio"].asButton+label {
  display: block;
  position: relative;
  margin: 0;
  width: 100%;
  /* border: 1px dotted red; */
  padding: 6.5px 3px;
  /* line-height: 40px; */
  color: var(--fontBlack);
  vertical-align: baseline;
  text-align: center;
  white-space: nowrap;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 0;
}

.slotItem input[type="checkbox"].asButton:checked+label {
  background-color: var(--themeViolet);
  color: var(--white);
}


.slotItem input[type="checkbox"].asButton:disabled+label,
.slotItem input[type="radio"].asButton:disabled+label {
  opacity: 0.5;
}

.slotSliderWrapper {
  padding: 0 15px;
}

.slotSliderWrapper .swiper-button-next:after,
.slotSliderWrapper .swiper-button-prev:after {
  display: none;
}

.slotSliderWrapper .swiper-button-next,
.slotSliderWrapper .swiper-button-prev {
  width: 20px;
  height: 25px;
  color: var(--lightBlack);
  position: absolute;
  top: inherit;
  bottom: 0px;
  left: -5px;
  transition: 0.5s;
  z-index: 2;
}

.slotSliderWrapper .swiper-button-next {
  left: inherit;
  right: -5px;
}

.slotSliderWrapper .swiper-button-next:hover,
.slotSliderWrapper .swiper-button-prev:hover {
  color: var(--themeGreen);
  transition: 0.5s;
}

.slotSliderWrapper .swiper-button-next svg,
.slotSliderWrapper .swiper-button-prev svg {
  width: 16px;
  height: 16px;
}

.slotSliderWrapper {
  position: relative;
  width: calc(100% - 92px);
}

.slotItem label {
  font-family: var(--lato);
  font-weight: 500;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  border: 1px solid #C0C1CE;
  border-left: none;
  cursor: pointer;
}

.slotSlider {
  border-left: 1px solid #C0C1CE;
}

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

.slotWrapper strong {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  color: var(--fontBlack);
  display: block;
}

/* filter area */
.mobfilter {
  display: none;
}

.listingleft {
  position: sticky;
  z-index: 1;
  top: 135px;
  max-height: calc(100vh - 135px);
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filterform {
  position: relative;
  z-index: 1;
}

.levelup .filterform {
  position: fixed;
  width: 100%;
  top: 100px;
  left: 0;
  padding: 0 15px;
}

.select2-dropdown {
  z-index: 100 !important;
}

.listingleft::-webkit-scrollbar {
  display: none;
  /* WebKit (Chrome, Safari) */
}

.filterTilte {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--fontBlack);
  margin-bottom: 15px;
}

.filterform .form-group {
  position: relative;
  margin-bottom: 10px;
}

.filterform .form-select {
  border: 1px solid #E4E5EF;
  background-color: var(--white);
  border-radius: 5px;
  min-height: 40px;
  box-shadow: none !important;
  padding-left: 40px !important;
  font-family: var(--lato);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.select2-container--default .select2-search--inline .select2-search__field {
  margin-top: 10px;
  font-family: var(--inter);
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #E4E5EF;
  min-height: 40px;
  padding-left: 38px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid var(--themeGreen);
  outline: none;
  transition: 0.5s;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 7px;
}

.filterform .form-select:active,
.filterform .form-select:focus {
  border-color: var(--themeGreen);
  transition: 0.5s;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--themeGreen);
  border: 1px solid var(--themeGreen);
  color: var(--white);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: var(--white);
  background: #0f915b;
}

.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field::placeholder {
  color: var(--fontBlack);
  /* Change this to your desired color */
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.filterWrapper .formIcon {
  position: absolute;
  top: 8px;
  left: 10px;
}

.sortby {
  border-bottom: 1px solid #E4E5EF;
  padding-bottom: 18px;
  margin: 50px 0 18px;
}


.filtersortItem input[type="checkbox"].asButton,
.filtersortItem input[type="checkbox"].asButton {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.filtersortItem input[type="checkbox"].asButton+label,
.filtersortItem input[type="checkbox"].asButton+label {
  display: inline-block;
  position: relative;
  border: 1px solid #E4E5EF;
  padding: 8.5px 11.5px 8.5px;
  vertical-align: baseline;
  text-align: center;
  white-space: nowrap;
  border-radius: 3px;
  font-family: var(--titleblack);
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  background: #E4E5EF;
  border-radius: 44px;
  cursor: pointer;
}

.filtersortItem input[type="checkbox"].asButton:checked+label {
  background-color: var(--themeGreen);
  color: white;
  transition: 0.5s;
  border: 1px solid var(--themeGreen);
}

.filtersortItem input[type="checkbox"].asButton:disabled+label,
.filtersortItem input[type="checkbox"].asButton:disabled+label {
  opacity: 0.5;
}

.sortOuter {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
  margin-bottom: 35px;
}

.filterSubtitle {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--fontBlack);
  margin-bottom: 15px;
}

/* .width30 {
    width: 31%;
}
.width70 {
    width: 69%;
} */
/* filter area */

ul.pagination {
  justify-content: center;
  margin-top: 30px;
  gap: 5px;
}

.pagination .page-link {
  background: #F5F6F9;
  border: none;
  border-radius: 8px !important;
  color: var(--fontBlack);
  width: 36px;
  height: 36px;
  display: grid;
  place-content: center;
}

.pagination .page-link:hover {
  color: var(--themeViolet);
  background: #dfd6ff;
  transition: 0.5s;
}

.pagination .page-link.active {
  color: var(--white);
  background: var(--themeViolet);
  transition: 0.5s;
}

.breadcumbsec {}

section.breadcumbsec {
  padding: 118px 0 0;
}

.breadcrumb {
  margin: 0;
}

.breadcrumbWrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}

.breadcrumbWrapper svg {
  color: var(--titleblack);
}

.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--titleblack);
  transition: 0.5s;
}

.breadcrumb .breadcrumb-item a:hover {
  color: var(--themeGreen);
  transition: 0.5s;
}

.breadcrumb .breadcrumb-item.active {
  /* color: var(--fontBlack); */
  font-weight: 600;
}

/* ====================================
listing page start
======================================= */

/* ====================================
listing details page start
======================================= */
.detailmain .swiper-pagination {
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.detailslideItem {
  border-radius: 20px;
  overflow: hidden;
}

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

.detailSlider {
  margin-bottom: 30px;
}

.detailLoc {
  display: flex;
  gap: 10px;
}

.detailLoc p {
  flex: 1;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.detailContent .sectionTitle {
  margin-bottom: 15px;
}

.detailContent .sectionTitle h2 {
  margin-top: 0;
}

.seaterWrapper {
  text-align: right;
}

.seaterContent {
  display: inline-flex;
  align-items: center;
  padding: 7px 20px;
  gap: 8px;
  background: #F5F6F9;
  border-radius: 5px;
  font-family: var(--inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.seaterContent h4 {
  font-family: var(--inter);
  color: var(--themeViolet);
  font-weight: 700;
  font-size: 25px;
  line-height: 25px;
  letter-spacing: 0%;
}

.detailCall {
  display: inline-flex;
  gap: 15px;
  margin-top: 25px;
  align-items: center;
}

.detailCIcon {
  border: 1px solid #E4E5EF;
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: var(--titleblack);
  transition: 0.5s;
}

.detailCtext h6 {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  text-align: left;
  margin-bottom: 2px;
}

.detailCtext h4 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
  text-align: left;
  transition: 0.5s;
}

.detailCall:hover .detailCtext h4 {
  color: var(--themeViolet);
  transition: 0.5s;
}

.detailCall:hover .detailCIcon {
  background: var(--themeViolet);
  border: 1px solid var(--themeViolet);
  color: var(--white);
  transition: 0.5s;
}

.overview {
  margin: 30px 0;
  padding-top: 30px;
  border-top: 1px solid #E4E5EF;
}

.overview strong,
.aminitiesSubtitle {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--fontBlack);
  display: block;
  margin-bottom: 5px;
}

.overview p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--fontBlack);
}

.amenitiesWrapper strong {
  font-family: var(--lato);
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--fontBlack);
  display: block;
  margin-bottom: 15px;
}

.amenitiesdListing {
  display: flex;
  flex-flow: wrap;
  gap: 17px;
}

.amenitiesdListing li {
  display: flex;
  align-items: center;
  gap: 15px;
  align-items: center;
  width: 30%;
}

.amenitiesdIcon {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #F5F6F9;
  display: grid;
  place-content: center;
}

.amenitiesdIcon img {
  max-width: 24px;
}

.aminitiesdContent {
  max-width: 137px;
  flex: 1;
  font-family: var(--lato);
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0%;
  color: var(--lightBlack);
}

/* .detailfilterWrap{
    position: sticky;
    top: 90px;
} */
.filterform .form-control {
  border: 1px solid #E4E5EF;
  background-color: var(--white);
  border-radius: 5px;
  min-height: 40px;
  box-shadow: none !important;
  padding-left: 40px !important;
  font-family: var(--lato);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.billingWrapper .form-control::placeholder {
  color: var(--titleblack);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  min-width: 30px;
  width: 30px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover,
.daterangepicker td.available:hover {
  background-color: var(--themeViolet);
  border-color: transparent;
  color: #fff;
}

.daterangepicker td.in-range {
  background-color: #d9ceff;
  color: var(--themeViolet);
}

.daterangepicker td.in-range.end-date {
  background-color: var(--themeViolet);
  border-color: transparent;
  color: #fff;
}

.applyBtn {
  color: #155724;
  background-color: #d4edda;
  border-radius: 44px;
  border: none;
  padding: 4px 12px;
  transition: 0.5s;

}

.applyBtn:hover {
  background: var(--themeGreen);
  color: var(--white);
  transition: 0.5s;
}

button.applyBtn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.cancelBtn {
  color: #a50707 !important;
  border-radius: 44px;
}

.cancelBtn:hover {
  background: #ffe3e3;
}

.seatbtn {
  background: var(--themeGrey);
  color: var(--lightBlack);
  position: absolute;
  width: 48px;
  height: 30px;
  padding: 0;
  top: 5px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: none !important;
}

.seatadd {
  right: 57px;
}

.seatminus {
  right: 5px;
}

.seatbtn:hover {
  background: var(--themeGreen);
  color: var(--white);
  transition: 0.5s;
}

.slotdSliderWrapper {
  padding: 0 15px;
  position: relative;
}

.slotdSlider {
  border-left: 1px solid #C0C1CE;
}

.slotdSliderWrapper .swiper-button-next,
.slotdSliderWrapper .swiper-button-prev {
  width: 20px;
  height: 25px;
  color: var(--lightBlack);
  position: absolute;
  top: inherit;
  bottom: 0px;
  left: -5px;
  transition: 0.5s;
  z-index: 2;
}

.slotdSliderWrapper .swiper-button-next {
  left: inherit;
  right: -5px;
}

.slotdSliderWrapper .swiper-button-next {
  left: inherit;
  right: -5px;
}

.slotdSliderWrapper .swiper-button-next::after,
.slotdSliderWrapper .swiper-button-prev::after {
  display: none;
}

.slotdSliderWrapper .swiper-button-next svg,
.slotdSliderWrapper .swiper-button-prev svg {
  width: 16px;
  height: 16px;
}

.wholeDay label {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
  margin: 5px;
}

.wholeDay .form-check-input {
  width: 17px;
  height: 17px;
  box-shadow: none !important;
}

.wholeDay .form-check-input:checked {
  background-color: var(--themeViolet);
  border-color: var(--themeViolet);
}

.billingWrapper {
  margin-top: 40px;
}

.filterform .form-control.couponinput {
  border: 1px dashed #605A70;
  background: #F5F6F9;
}

.priceTable {
  border: 1px solid #E4E5EF;
  padding: 14px 20px 14px;
  border-radius: 5px;
}

.priceTable table {
  margin: 0;
}

.priceTable td {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--titleblack);
  padding: 0;
}

.priceTable td .totaltext {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.priceTable td .totalvalue {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0%;
  color: var(--themeGreen);
}

.priceTable tr td:last-child {
  text-align: right;
}

.agreeterm {
  margin: 15px 0 30px;
}

.agreeterm .form-check-input {
  width: 20px;
  height: 20px;
  box-shadow: none !important;
}

.agreeterm .form-check-input:checked {
  background-color: var(--themeViolet);
  border-color: var(--themeViolet);
}

.agreeterm label {
  margin: 6px 5px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.agreeterm label a {
  color: var(--themeGreen);
}

.notification {
  font-family: var(--inter);
  font-weight: 500;
  font-style: italic;
  font-size: 13px;
  line-height: 12px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.billingWrapper .btnPrimary {
  margin-top: 30px;
}

.detailSec {
  padding-top: 0;
}

/* detail gallery */
.detailGallery .parent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  width: 49%;
}


.detailGallery .div2 {
  grid-column-start: 1;
  grid-row-start: 2;
}

.detailGallery .div3 {
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 1;
}

.parentWrapper {
  display: flex;
  gap: 15px;
}

/* detail gallery */




.faqSec {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.mapwrapper {
  width: 48%;
}

.faqWrapper {
  width: 50%;
  flex: 1;
  background: #F5F6F9;
}

.faqTitle {
  font-family: var(--helvitica);
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  letter-spacing: 0%;
  color: var(--fontBlack);
  margin-bottom: 30px;
}

.faqInner {
  max-width: 600px;
  padding: 60px 0 60px 75px;
}

.accordion-item {
  margin-bottom: 10px;
  background: var(--white);
  border: none !important;
  box-shadow: 0px 0px 9px 0px #0000001A;
  border-radius: 10px;
  overflow: hidden;
  padding: 22px 30px;
}

.accordion-button {
  display: flex;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
  justify-content: space-between;
  gap: 15px;
}

.accordion-button h6 {
  font-family: var(--lato);
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--fontBlack);
  flex: 1;
}

.accordion-button span {
  width: 14px;
  height: 2px;
  background: var(--lightBlack);
  display: inline-block;
  position: relative;
}

.accordion-button span::after {
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  content: "";
  background: var(--lightBlack);
  position: absolute;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.5s;
  opacity: 1;
}

.accordion-button::after {
  display: none;
}

.accordion-body {
  margin-top: 13px;
  padding: 0;
  font-family: var(--lato);
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0%;
  color: var(--lightBlack);
}

.accordion-button:not(.collapsed) span::after {
  transform: translate(-50%, -50%) rotate(0deg);
  transition: 0.5s;
  opacity: 0;
}

.select2-container {
  max-width: 100%;
  width: 100% !important;
}

.listingleft .select2-container--default .select2-selection--single {
  border: 1px solid #E4E5EF;
  border-radius: 5px;
  min-height: 40px;
  padding-left: 38px;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 160px;
  overflow-y: auto;
}

.listingleft .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--titleblack);
  line-height: 37px;
  font-family: var(--inter);
}

.listingleft .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
}

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

.detailAminities::after {
  display: none;
}

.filterform .formIcon {
  position: absolute;
  top: 8px;
  left: 10px;
}

.form-check.wholeDay {
  margin-top: 30px;
}

.smallslotWrapper strong {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
  display: inline-block;
  margin-bottom: 12px;
}

.text-center.btnSecondary {
  justify-content: center;
  margin-top: 40px;
}

.sectionTitle h2 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.detailGallerysec .container {
  max-width: 1200px;
}

.detailGallerysec .galleryItem.div4 img {
  min-height: 342px;
}

.detailGallerysec .sectiontitle h2 {
  font-size: 32px;
  line-height: 38px;
}

.detailvideoWrapper {
  position: relative;
  border-radius: 30px;
  z-index: 1;
  overflow: hidden;
}

.detailvideoWrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  background: #0000004D;
}

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

/* .detailtestimonial .testiSliderwrapper .navouter {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: 10px;
    margin-top: 0px;
    position: absolute;
    bottom: 0;
    width: 100%;
} */

.detailmain .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  width: 11px;
  height: 11px;
  background: var(--white);
  opacity: 1;
  position: relative;
  transition: 0.5s;
}

.detailmain .swiper-pagination .swiper-pagination-bullet::before {
  width: 25px;
  height: 25px;
  content: "";
  border: 1.3px solid var(--white);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: transparent;
  opacity: 0;
  transition: 0.5s;
}

.detailmain .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
  transition: 0.5s;
}

.detailmain .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--themeGreen);
  transition: 0.5s;
}

.detailmain .swiper-pagination {
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.closefiletr {
  width: 30px;
  height: 30px;
  border: 1px solid #faaaaa;
  color: #faaaaa;
  margin: 10px 0;
  margin-left: auto;
  display: none;
  place-content: center;
  border-radius: 8px;
}

#readMoreBtn {
  display: none;
}

/* ====================================
details page close
======================================= */

/* ====================================
billing page start
======================================= */
.billingHero figure {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.moreInfo_list {
  display: grid;
  margin: 20px 0 30px;
}

.moreInfo_list li {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--titleblack);
  position: relative;
  padding-left: 20px;
}

.moreInfo_list li::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--titleblack);
  position: absolute;
  top: 10px;
  left: 0;
}

.addfb {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--themeGreen);
  background: transparent;
  border: none;
}

.billinginfo {
  padding-left: 35px;
}

.billinginfo h3 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.billinginfo .billingWrapper {
  margin-top: 30px;
}

.billinginfo .priceTable {
  padding: 20px 30px 20px;
}

.billinginfo .filterform .form-group {
  margin-bottom: 20px;
}

.billinginfo .priceTable table {
  margin-bottom: 30px;
}

/* ====================================
billing page start
======================================= */

/* ====================================
profile page start
======================================= */
.profileMain {
  border-right: 1px solid #E4E5EF;
  padding-right: 30px;
}

.profileDp {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

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

.profileDpWrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.dpInfo {
  flex: 1;
}

.dpInfo h4 {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 19px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--titleblack);
  margin-bottom: 10px;
}

.dpInfo strong {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.profileContactsItem {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.profileContactsItem i {
  margin-right: 8px;
}

.verification {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-top: 10px;
  padding-left: 25px;
}

.verification i {
  margin-right: 4px;
}

.verified {
  color: var(--themeGreen);
}

.notverified {
  color: #F00004;
}

.profileMain .profileContacts {
  margin-bottom: 25px;
}

.editbtn {
  width: 100%;
  justify-content: center;
  margin-top: 15px;
}

.editbtn:hover i {
  transform: rotate(0deg);
  transition: 0.5s;
}

.myactionItem {
  background: #E8F8EE;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: 0.5s;
}

.myactionItem:hover {
  transform: translateY(-10px);
}

figure.myactionIcon {
  width: 75px;
  height: 75px;
  margin: 0 auto 15px;
  display: inline-grid;
  place-content: center;
  background: var(--themeGreen);
  border-radius: 10px;
}

.myactionContent h6 {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--titleblack);
  margin-bottom: 7px;
}

.myactionContent strong {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--themeGreen);
  display: block;
}

.actionTitle {
  margin-bottom: 13px;
  min-height: 48px;
}

.myactionbtn {
  width: 100%;
  background: transparent;
  color: var(--titleblack) !important;
  justify-content: center;
  border: 1px solid #A6C3B1 !important;
  margin-top: 10px;
  padding: 10.5px 27px;
}

.myactionbtn:hover {
  background: var(--themegradient);
  color: var(--white) !important;
  transition: 0.5s;
}

/* ====================================
profile page close
======================================= */

/* ====================================
contact page start
======================================= */
.innerbanner {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 100px;
  height: 200px;
  position: relative;
}

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

.cinfoItem {
  margin-bottom: 20px;
}

.cinfoItem strong {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--titleblack);
  margin-bottom: 0px;
}

.cinfoItem strong img {
  width: 19px;
  margin-right: 8px;
}

.cinfoItem p,
.cinfoItem a {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--titleblack);
  transition: 0.5s;
}

.cinfoItem a:hover {
  color: var(--themeViolet);
  letter-spacing: 1px;
  transition: 0.5s;
}

.contactpageform h3 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
  margin-bottom: 5px;
}

.mandatorytext {
  margin-bottom: 30px;
}

.mandatorytext span {
  display: inline-block;
  width: 2px;
  height: 13px;
  background: #ce2121;
  margin: 0 3px;
  transform: translateY(2px);
}

.contactpageform input,
.contactpageform select,
.contactpageform textarea {
  border: 1px solid #E4E5EF;
  background-color: #F0F1F4 !important;
  border-radius: 5px;
  width: 100%;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
  padding: 13px 20px;
  box-shadow: none !important;
  transition: 0.5s;
}

.contactpageform input:focus,
.contactpageform select:focus,
.contactpageform textarea:focus {
  border: 1px solid var(--themeGreen);
  transition: 0.5s;
}

.contactpageform input::placeholder,
.contactpageform textarea::placeholder {
  color: var(--titleblack);
}

.formsubmitbtn {
  margin-left: auto;
  display: table;
}

.contactus.pd-0 {
  padding: 0;
}

.contactListingItem {
  margin-bottom: 60px;
}

.contactListingImg {
  height: 170px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.mapBtn {
  width: 50px;
  height: 50px;
  background: var(--white);
  display: grid;
  place-content: center;
  position: absolute;
  bottom: 5px;
  left: 5px;
  border-radius: 0 25px 0 6px;
}

.contactListingImg img.Listing_Img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.contactListingItem:hover img.Listing_Img {
  transform: scale(1.2);
  transition: 0.5s;
}

.contactListdetail h3 {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.contactListdetail p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 0%;
  color: var(--titleblack);
  margin: 18px 0 2px;
}

.contactListdetail a {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
  transition: 0.5s;
  display: inline-block;
  margin-top: 13px;
}

.contactListdetail a:hover {
  color: var(--themeGreen);
  transition: 0.5s;
}

.contactListdetail a i {
  color: var(--themeGreen);
  margin-left: 5px;
}

section.contactListingsec {
  padding: 120px 0 60px;
}

.cLocationTab {
  background: #F5F6F9;
  padding: 20px;
  border-radius: 10px;
}

.cLocationTab ul {
  display: grid;
  gap: 5px;
}

.cLocationTab ul li {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: 0%;
  color: var(--titleblack);
  display: flex;
  justify-content: space-between;
  padding: 10px;
  align-items: center;
  background: #2F1F641A;
  transition: 0.5s;
  border-radius: 4px;
  cursor: pointer;
}

.cLocationTab ul li svg {
  color: var(--white);
}

.cLocationTab ul li.locactive {
  background: var(--themeViolet);
  color: var(--white);
}

.locationmap {
  border-radius: 10px;
  overflow: hidden;
  margin-left: 30px;
}

.locationInfo h3 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
  margin-bottom: 5px;
  text-transform: capitalize;
}

.locationInfo h6 {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 147%;
  letter-spacing: 0%;
  color: var(--titleblack);
  padding-bottom: 30px;
  border-bottom: 1px solid #E4E5EF;
  margin-bottom: 30px;
}

.conTitle {
  display: flex;
  font-family: var(--inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--titleblack);
  gap: 10px;
  align-items: center;
}

.conTitle img {
  width: 19px;
}

.locationInfo p,
.locationInfo a {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--titleblack);
  display: inline-block;
  margin: 5px 0 25px;
  transition: 0.5s;
}

.locationInfo a:hover {
  color: var(--themeGreen);
  transition: 0.5s;
}

.innerbanneroverly {
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  max-width: 700px;
  padding: 11px 130px 11px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.innerbanneroverly h1 {
  color: var(--white);
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
}

.locationInfo {
  padding-left: 30px;
}

/* ====================================
contact page close
======================================= */


/* ====================================
blog listing page start
======================================= */
.blogListingSec {
  padding-bottom: 70px !important;
}

.bloglistItem {
  margin-bottom: 60px;
}

.bloglistImg {
  border-radius: 10px;
  overflow: hidden;
  height: 220px;
}

.bloglistImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.bloglistItem:hover .bloglistImg img {
  transform: scale(1.2);
  transition: 0.5s;
}

.blogdate {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 15px;
  font-family: var(--inter);
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #605A70;
}

.bloglistContent a {
  color: var(--titleblack);
}

.bloglistContent a:hover {
  color: var(--themeGreen);
}

.bloglistContent a h3 {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blogright {
  padding-left: 30px;
}

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

.blogsearch input {
  width: 100%;
  border: 1px solid #E4E5EF;
  border-radius: 5px !important;
  padding: 16px 20px;
  padding-right: 65px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
  transition: 0.5s;
}

.blogsearch input:focus {
  border: 1px solid var(--themeGreen);
  transition: 0.5s;
}

.blogsearch input::placeholder {
  color: var(--titleblack);
}

.blogsearch .btnPrimary {
  top: 6px;
  right: 6px;
  position: absolute;
  z-index: 5;
  border-radius: 5px !important;
}

.blogright h4 {
  color: var(--titleblack);
  font-family: var(--inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.blogmorelist {
  display: grid;
  gap: 30px;
}

.blogmorelist li {
  display: flex;
  gap: 20px;
  align-items: center;
}

a.blogmoreImg {
  display: block;
  width: 100px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
}

a.blogmoreImg figure,
a.blogmoreImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.blogmorelist li:hover a.blogmoreImg img {
  transform: scale(1.2);
  transition: 0.5s;
}

.blogmoreContent {
  flex: 1;
}

.blogmoreContent .blogdate {
  margin: 0 0 15px;
}

.blogmoreContent a h5 {
  color: var(--titleblack);
  font-family: var(--inter);
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0%;
  transition: 0.5s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blogmoreContent a:hover h5 {
  color: var(--themeGreen);
  transition: 0.5s;
}

.bloglistItem a {
  display: block;
}

/* ====================================
blog listing page close
======================================= */

/* ====================================
blog details page start
======================================= */
.blogdetailsHero {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.blogdetailContent h2 {
  margin: 20px 0;
  font-family: var(--inter);
  font-weight: 600;
  font-size: 25px;
  line-height: 40px;
  letter-spacing: 0%;
  color: var(--fontBlack);
}

.blogdetailContent p {
  margin-bottom: 13px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--fontBlack);
}

.blogdetailContent p em {
  font-weight: 600;
}

.blogdetailContent h3 {
  color: var(--fontBlack);
  font-family: var(--inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0%;
  margin-bottom: 10px;
}

/* ====================================
blog details page close
======================================= */

/* ====================================
about page start
======================================= */
.aboutmainInner {
  display: flex;
  gap: 10px;
  padding-right: 30px;
}

.aboutimgrow {
  flex: 1;
}

.imgrow1,
.imgrow2 {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: flex-end;
}

.imgrow2 {
  align-items: flex-start;
}

.imgrow1 {
  transform: translateY(49px);
}

.aboutimg1 {
  width: 100%;
  max-width: 213px;
  height: 193px;
  border-radius: 10px;
  overflow: hidden;
}

.aboutimg2 {
  width: 100%;
  max-width: 266px;
  height: 251px;
  border-radius: 10px;
  overflow: hidden;
}

.aboutimg1 img,
.aboutimg2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutpageContent {
  padding-top: 20px;
}

.aboutpageContent p {
  margin-top: 30px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.aboutimgSec .container-fluid {
  padding: 0 100px;
}

.aboutimgwrapper {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

/* ==about gallery== */

.parent1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

.parent1 .div2 {
  grid-column-start: 1;
  grid-row-start: 2;
}

.parent1 .div3 {
  grid-column-start: 1;
  grid-row-start: 3;
}

.parent1 .div4 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 1;
}

.parent1 .div5 {
  grid-row-start: 3;
}

.parent1 .div6 {
  grid-row-start: 3;
}

.aboutimgitem {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
}

.aboutimgitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.5s;
}

.aboutimgitem:hover img {
  transition: 0.5s;
  transform: scale(1.2);
}

.aboutimgitem::before {
  background: #100a2761;
  backdrop-filter: blur(2px);
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  z-index: 2;
  opacity: 0;
}

.aboutimgitem:hover::before {
  opacity: 1;
  transition: 0.5s;
}

.aboutimgitem::after {
  content: "\f06e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  color: var(--themeGreen);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  background: var(--white);
  display: inline-grid;
  place-content: center;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: 0.5s;
  z-index: 3;
}

.aboutimgitem:hover::after {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.5s;
}

.parent2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

.parent2 .div3 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 2;
}

.parent2 .div4 {
  grid-column-start: 3;
  grid-row-start: 1;
}

.parent2 .div5 {
  grid-column-start: 3;
}

.parent2 .div6 {
  grid-column-start: 3;
  grid-row-start: 3;
}

/* ==about gallery== */

/* ====================================
about page close
======================================= */


/* ====================================
partners page start
======================================= */
.partnersouter {
  margin-right: 30px;
  height: 100%;
}

.partnersHero {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

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

.partnersSec {
  background: #EDFAF2;
  margin-top: 130px;
}

.ourpartnerswrapper ul {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
  justify-content: center;
}

.ourpartnerswrapper ul li {
  width: 14.5%;
  height: 80px;
  background: var(--white);
  box-shadow: 3px 3px 4px 0px #DEF0E5;
  border-radius: 100px;
  overflow: hidden;
}

.ourpartnerswrapper ul li a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/* ====================================
partners page close
======================================= */

/* ====================================
reward page start
======================================= */
.rewardsWrapper {
  margin-top: 40px;
}

.rewardsItem {
  margin-bottom: 60px;
}

.rewardimgWrapper {
  position: relative;
}

.rewardImg {
  border-radius: 10px;
  overflow: hidden;
}

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

.rewardIcon {
  width: 140px;
  height: 140px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  box-shadow: 0px 0px 15px 0px #00000033;
  z-index: 2;
}

.rewardContent {
  padding-top: 70px;
}

.rewardContent h3 {
  font-family: var(--inter);
  font-weight: 700;
  font-style: Bold;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--titleblack);
  margin-bottom: 20px;
}

.rewardContent p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
}

/* ====================================
reward page close
======================================= */

/* ====================================
wonder women start
======================================= */
.wonderwomencontent {
  margin-bottom: 100px;
}

.wonderwomencontent p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.wonderwomencontent p:not(:last-child) {
  margin-bottom: 20px;
}

.wonderwomenImg {
  border-radius: 10px;
  overflow: hidden;
  /* height: 340px; */
  margin-bottom: 30px;
}

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

.wonderwomenContent ul {
  display: grid;
  gap: 10px;
}

.wonderwomenContent li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wonderwomenContent li .wonderImg {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.wonderwomenContent li .wonderImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.wonderwomenContent li:hover .wonderImg img {
  transform: scale(1.2);
  transition: 0.5s;
}

.wondertext {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
  flex: 1;
}

.wonderwomenItem {
  margin-bottom: 50px;
}

.wonderWomenSec.contactus.pd-0 {
  padding: 0 0 80px;
}

/* ====================================
wonder women close
======================================= */

/* ====================================
key benefits start
======================================= */
.keybenefitsSec {
  padding: 25px 0 25px;
}

.whyABC p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.keyimgWrapper {
  display: flex;
  gap: 20px;
}

.keyimg {
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
}

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

.active .ki-01 {
  animation: moveup 1s forwards;
  animation-delay: 0.5s;
}

.active .ki-02 {
  animation: movedown 1s forwards;
  animation-delay: 1s;
}

@keyframes moveup {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }

  100% {
    transform: translateY(-25px);
    opacity: 1;
  }
}

@keyframes movedown {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }

  100% {
    transform: translateY(25px);
    opacity: 1;
  }
}

.keybenefitItem {
  background: #F5F6F9;
  padding: 30px;
  border-radius: 20px;
}

.keybenefitcontentSec .row .col-md-12:nth-child(even) .keybenefitItem {
  background: #EDEFF4;
}

.keybenefitcontentSec .row .col-md-12:not(:last-child) .keybenefitItem {
  margin-bottom: 20px;
}

.keybenefitItem h3 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--titleblack);
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.keybenefitItem h3::before {
  content: "";
  width: 10px;
  height: 10px;
  top: 8px;
  left: 0;
  background: var(--themeGreen);
  position: absolute;
  border-radius: 50%;
}

.keybenefitItem p {
  padding-left: 20px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.keybenefitItem ul {
  display: grid;
  margin: 20px 0 10px;
  padding-left: 20px;
}

.keybenefitItem ul li {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--titleblack);
  padding-left: 20px;
  position: relative;
}

.keybenefitItem ul li strong {
  font-weight: 600;
}

.keybenefitItem ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--titleblack);
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
}

.edgeWrapper {
  margin-top: 60px;
}

.edgeWrapper h4 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--titleblack);
}

.edgeWrapper p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--titleblack);
  margin-top: 18px;
}

/* ====================================
key benefits close
======================================= */

/* 7.5.2026 */

.top-menu li a {
  color: #fff;
  text-decoration: none;
  padding: 9px 10px 7px 15px !important;
  border-radius: 6px 6px 0 0;
  font-size: 15px;
  display: inline-block;
}

.blogListingSec {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.blogListingSec .innerbanner {
  margin-bottom: 50px;
}

.bloglistContent a {
  text-decoration: none;
}

.blogmorelist {
  padding-left: 0 !important;
}

.bloglistItem {
  margin-bottom: 10px !important;
}

.blogsearch .btnPrimary {
  top: 50%;
  right: 6px;
  position: absolute !important;
  z-index: 5 !important;
  border-radius: 5px !important;
  transform: translateY(-50%);
}

.blogmoreContent a {
  text-decoration: none !important;
}

/* ========================== responsive ========================== */
@media (min-width: 1440px) {}

@media (max-width: 1600px) {
  .herobanner .container {
    max-width: calc(100% - 100px);
  }

  .header_top .container-fluid,
  .rangeSolution .container-fluid,
  .aboutimgSec .container-fluid {
    padding: 0 50px;
  }

  .main_menu li a {
    font-size: 14px;
  }

  .inner_menu {
    max-width: 921px;
  }

  .main_menu {
    gap: 18px;
  }

  .bannerSec .swiper2 {
    width: 100%;
    height: 525px;
  }

  .ourOffering .container-fluid {
    padding: 0 80px;
  }

  .offeringItem .offeringTitle h5 {
    font-size: 16px;
    line-height: 16px;
  }

  .offeringItem .offeringTitle {
    padding: 30px 25px;
  }

  .bannertoptext {
    text-align: center;
    margin-bottom: 80px;
  }

  .heroOverley {
    top: 120px;
  }

  .bannertoptext ul li {
    font-size: 18px;
  }

  .heroOverley h1 {
    font-size: 46px;
  }

  .ourOffering {
    padding: 120px 0 130px;
  }

  .redefiningOverley h2 {
    font-size: 42px;
    line-height: 53px;
  }

  .megamenu-col .offers .offer_details a {
    font-size: 15px;
  }

  .detailvideoWrapper figure {
    height: 368px;
  }

  .logmodal .modal-dialog {
    margin-top: 70px;
  }

  .registerModal .modal-dialog {
    margin-top: 70px;
  }

  section.contactListingsec {
    padding: 80px 0 20px;
  }

  .innerbanner {
    margin-bottom: 130px;
  }

  .blogListingSec {
    padding-bottom: 40px !important;
  }

  .blogdetailsHero {
    height: 320px;
  }

  .pagination.mt-4 {
    display: none !important;
  }

  .wonderWomenSec.contactus.pd-0 {
    padding: 0 0 30px;
  }

  .logmodal .modal-dialog {
    margin-top: 70px;
  }
}

@media (max-width: 1199px) {}

@media (max-width: 1023px) {

  /* mmenu start */
  .mobileMenuButton {
    display: inline-block;
  }

  /* mmenu end */
  .main_menu {
    display: none;
  }

}

@media (max-width: 767.98px) {
  .searchBtn {
    border-radius: 8px;
  }

  .socialplus {
    display: grid;
    place-content: center;
    width: 35px;
    height: 35px;
    background: #000;
    background: var(--themeGreen);
    border-radius: 50%;
    position: relative;
    z-index: 3;
  }

  .socialplus span {
    width: 12px;
    height: 2px;
    background: var(--white);
    display: inline-block;
    position: relative;
  }

  .socialplus span::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    background: var(--white);
    transition: 0.5s;
    opacity: 1;
  }

  .show-all .socialplus span::after {
    transform: translate(-50%, -50%) rotate(0deg);
    transition: 0.5s;
    opacity: 0;
  }

  .SidesocialBar li:not(:last-child):not(:nth-last-child(2)) {
    opacity: 0;
    margin-bottom: -20px;
    transition: 0.5s;
    visibility: hidden;
  }

  .show-all.SidesocialBar li:not(:last-child):not(:nth-last-child(2)) {
    opacity: 1;
    transition: 0.5s;
    margin-bottom: 0px;
    visibility: visible;
  }

  .gallerySec .parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallerySec .div1,
  .gallerySec .div2 {
    grid-column: span 1;
  }

  .gallerySec .div3,
  .gallerySec .div4 {
    grid-row: auto;
    grid-column-start: auto;
    grid-row-start: auto;
  }

  .gallerySec .container .row {
    gap: 15px;
  }

  /* ===listing=== */
  .mobfilter {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
    border-top: 1px solid #bcbbbb;
    border-bottom: 1px solid #bcbbbb;
    margin-bottom: 30px;
    position: relative;
  }

  .mobfilter::after {
    width: 1px;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #bcbbbb;
    position: absolute;
    content: "";
  }

  .mobfilter img {
    max-width: 18px;
    transition: 0.5s;

  }

  .mobfilteritem {
    flex: 1;
    padding: 10px 10px;
    text-align: center;
    background: #ece7fe;
    color: var(--themeViolet);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .mobfilteritem.active {
    background: var(--themeViolet);
    color: var(--white);
    transition: 0.5s;
  }

  .mobfilteritem.active img {
    filter: brightness(0) invert(1);
    transition: 0.5s;
  }

  .filterTilte {
    display: none;
  }

  .filterWrapper,
  .sortWrapper {
    height: 0;
    overflow: hidden;
  }

  .filtershow {
    height: 400px;
    transition: 0.5s;
    overflow-y: auto;
  }

  .filterbg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    background: #080513e8;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .show.filterbg {
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
  }

  .listingleft {
    z-index: 9;
  }

  .listingleft.levelup {
    z-index: 11;
  }

  .filterSubtitle {
    color: #b6b6b6;
  }

  .mobfilter {
    display: flex;
  }

  .listItem,
  .listcontentTop {
    flex-flow: wrap;
  }

  .listitemImg {
    width: 100%;
    height: 160px;
  }

  .listItemContent {
    max-width: 100%;
  }

  .contentWrapper {
    flex: none;
    width: 100%;
  }

  .listitemTop {
    flex-flow: wrap;
  }

  .listcontentTop {
    gap: 20px;
    padding: 0;
    width: 100%;
    border: none;
  }

  .listItem {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-top: 30px;
  }

  .slotWrapper strong {
    font-size: 12px;
  }

  .slotWrapper {
    gap: 10px;
  }

  .slotSliderWrapper {
    width: calc(100% - 82px);
  }

  .levelup .closefiletr {
    display: grid;
  }

  /* ===listing=== */
  .blogright {
    padding-left: 0;
    padding-top: 30px;
  }

  .aboutmainInner {
    padding-right: 0px;
  }

  .aboutpageContent {
    padding-top: 80px;
  }

  .aboutimgSec .container-fluid {
    padding: 0 15px;
  }

  .aboutimgwrapper {
    grid-template-columns: none;
  }

  .ourpartnerswrapper ul li {
    width: 45.5%;
  }

  .partnersouter {
    margin-right: 0;
    margin-bottom: 30px;
    height: auto;
  }

  .rewardsItem .sectiontitle {
    margin-bottom: 20px;
  }

  .innerbanneroverly {
    padding: 11px 30px 11px 30px;
  }

  .wonderwomencontent {
    margin-bottom: 60px;
  }

  .breadcrumbWrapper {
    padding: 30px 0 10px;
  }
}

@media (max-width: 991.98px) {
  .topbar {
    display: none;
  }

  .header_top .container-fluid,
  .rangeSolution .container-fluid,
  .ourOffering .container-fluid {
    padding: 0 15px;
  }

  .loginbtn span {
    display: none;
  }

  .header_top_hldr {
    gap: 10px;
  }

  .loginbtn {
    border: 1px solid var(--themeViolet);
  }

  .loginbtn {
    padding: 8px 8px;
    margin-right: 65px;
  }

  .mobileCallbtn {
    display: grid;
    width: 34px;
    height: 34px;
    place-content: center;
    border: 1px solid var(--themeGreen);
    border-radius: 50%;
    margin-left: auto;
  }

  .mobileCallbtn img {
    max-width: 20px;
  }

  .header_top_hldr .logo img {
    max-width: 100px;
    height: auto;
  }

  .site-header {
    padding: 5px 0;
  }

  .bannerSec {
    margin-top: 57px;
  }

  .mobileMenuButton {
    top: 20px;
    right: 15px;
  }

  .bannerSec .swiper-slide img,
  .bannerSec .swiper2 {
    height: 600px;
  }

  .heroOverley h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .bannertoptext ul li {
    font-size: 14px;
  }

  .bannertoptext ul {
    gap: 10px 30px;
    flex-flow: wrap;
  }

  ul.SidesocialBar {
    right: 10px;
  }

  .findspaceform .form-group .formIcon {
    display: none;
  }

  .findspaceform {
    flex-flow: wrap;
  }

  .findspaceform .form-group {
    align-items: center;
    width: 50%;
    padding: 10px;
    padding-right: 10px;
    border: none;
  }

  .findspaceform .form-group:nth-child(2) {
    padding-left: 10px;
    padding-right: 10px;
  }

  .findspaceform .form-group:nth-child(3) {
    padding-left: 10px;
    padding-right: 10px;
    border-right: none;
    width: 50%;
  }

  section {
    padding: 60px 0;
  }

  .ourOffering {
    padding: 60px 0 60px;
  }

  .sectiontitle h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .modernAminities .sectiontitle {
    margin-bottom: 30px;
    padding-right: 0;
    text-align: center !important;
  }

  .sectiontitle h6 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .modernAminitiesWrapper {
    padding-left: 0;
    gap: 20px 30px;
  }

  .modernAminitiesWrapper::after {
    display: none;
  }

  .AminitiesItem {
    gap: 10px;
    width: 45.5%;
  }

  .rangeItem {
    width: 47.5%;
  }

  .rangeItem img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }

  .rangeOverly ul {
    flex-flow: wrap;
    gap: 10px;
    min-height: 80px;
  }

  .rangeOverly {
    padding: 60px 10px 30px;
  }

  .rangeOverly ul li a {
    font-size: 13px;
  }

  .growfasterTitle .sectiontitle {
    margin-bottom: 0;
    text-align: center !important;
  }

  .growfasterTitle {
    padding-right: 0;
  }

  .growfasterTitle .sectiontitle h2 {
    font-size: 24px;
  }

  .growContent {
    padding: 15px 0 0;
    max-width: 100%;
    transform: translateY(0px);
  }

  .growContent::before {
    display: none;
  }

  .flexibleContent {
    padding-left: 0;
    padding-top: 50px;
  }

  .counterList {
    gap: 12px;
    margin-top: 30px;
    margin-left: 0;
    flex-flow: wrap;
  }

  .counterList li {
    width: 48%;
    min-width: auto;
  }

  .counterList li strong {
    font-size: 14px;
  }

  .bannertoptext {
    margin-bottom: 60px;
  }

  .heroslider .swiper-pagination {
    left: 5px;
  }

  .aboutUs .row {
    flex-flow: wrap-reverse;
  }

  .aboutContent {
    padding: 30px 0 50px;
  }

  .redefiningSec {
    display: block;
    overflow: hidden;
  }

  .redefiningOverley h2 {
    font-size: 26px;
    line-height: 34px;
    text-align: left;
  }

  .videothumbouter {
    width: 85px;
  }

  .videosliderWrapperInner {
    padding-right: 0;
    padding-top: 10px;
  }

  .testi_bx {
    padding: 20px;
  }

  .testi_left {
    gap: 15px;
  }

  .testi_left h5 {
    font-size: 16px;
  }

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

  .gallerySec .container {
    max-width: calc(100% - 0px);
  }

  .socialMediaWrapper {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    margin-top: 60px;
  }

  .blogSocial {
    flex-flow: wrap;
  }

  .blogSocial li {
    width: 47%;
  }

  .footer_top_hldr {
    flex-flow: wrap;
  }

  .footer_cont:first-child,
  .footer_cont {
    width: 100%;
    margin-bottom: 30px;
  }

  .footerWrapper {
    width: 100%;
  }

  .footer_cont h3 {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .footer_cont ul li a,
  .footer_cont ul li address {
    font-size: 13px;
    line-height: 30px;
  }

  .footer_cont ul li::after {
    top: 13px;
  }

  .footer_btm_hldr {
    flex-flow: wrap;
    gap: 20px;
  }

  .footer_btm_hldr p,
  .footer_btm_hldr p a,
  .footer_btm_hldr ul li a {
    text-align: center;
  }

  .mopartner img {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .footer_btm_hldr ul {
    justify-content: center;
    gap: 40px;
    width: 100%;
  }

  section.breadcumbsec {
    padding: 57px 0 0;
  }

  /* ===list details */
  .seaterWrapper {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
  }

  .detailCtext h4 {
    font-size: 14px;
  }

  .detailCall {
    gap: 10px;
    margin-top: 0;
  }

  #readMoreBtn {
    display: inline-block;
    margin-top: 10px;
    background: transparent;
    color: var(--themeViolet) !important;
    padding: 0;
  }

  #detailpara.collapsed {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .detailAminities {
    gap: 20px;
    margin-bottom: 30px;
  }

  .detailAminities .AminitiesItem {
    width: 46%;
  }

  .detailAminities .amiText {
    font-size: 14px;
    line-height: 22px;
  }

  .detailGallery .parent {
    width: 100%;
  }

  .parentWrapper {
    flex-flow: wrap;
  }

  .faqSec {
    flex-flow: wrap;
  }

  .mapwrapper {
    width: 100%;
  }

  .faqInner {
    max-width: 100%;
    padding: 40px 15px;
  }

  /* ===list details */
  .counterText {
    font-size: 10px;
    padding-right: 8px;
  }

  .counterOUter input {
    max-width: 100px;
  }

  .counterOUter .cBTn {
    width: 38px;
    height: 38px;
  }

  .loginImg {
    display: none;
  }

  .logmodal .modal-dialog,
  .registerModal .modal-dialog {
    max-width: 96%;
  }

  .modalClose {
    top: -37px;
    right: 0;
  }

  /* ==billing page== */
  .billinginfo {
    padding-left: 0;
    padding-top: 35px;
  }

  /* ==profile== */
  .profileMain {
    border-bottom: 1px solid #E4E5EF;
    border-right: none;
    padding-right: 0;
    padding-bottom: 40px;
    margin-bottom: 10px;
  }

  .myactionItem {
    margin-top: 30px;
  }

  /* ==contact us=== */
  .innerbanner {
    height: 150px;
    margin-bottom: 50px;
  }

  .contactContent .sectiontitle {
    margin-bottom: 30px;
  }

  .formsubmitbtn {
    margin-left: unset;
    display: table;
  }

}

@media (max-width: 575.98px) {
  .AminitiesItem {
    width: 100%;
  }

  .bannerSec {
    overflow: hidden;
  }

  .detailvideoWrapper {
    margin-top: 30px;
  }

  .locationmap {
    margin-left: 0;
    margin: 30px 0;
  }

  .locationInfo {
    padding-left: 0;
  }

  .innerbanneroverly h1 {
    font-size: 18px;
  }

  .keybenefitItem {
    padding: 20px;
  }

  .keybenefitItem h3 {
    font-size: 16px;
  }

  .keybenefitItem p,
  .keybenefitItem ul li {
    font-size: 14px;
    line-height: 20px;
  }

  .keybenefitItem ul {
    gap: 5px;
  }

  .keybenefitsSec .row {
    flex-flow: wrap-reverse;
  }

  @keyframes moveup {
    0% {
      transform: translateY(0px);
      opacity: 0;
    }

    100% {
      transform: translateY(-15px);
      opacity: 1;
    }
  }

  @keyframes movedown {
    0% {
      transform: translateY(0px);
      opacity: 0;
    }

    100% {
      transform: translateY(15px);
      opacity: 1;
    }
  }

  .whyABC {
    margin-top: 30px;
  }

  .whyABC .sectiontitle {
    margin-bottom: 30px;
  }

  .keybenefitItem ul,
  .keybenefitItem p {
    padding-left: 0px;
  }

  .breadcrumb .breadcrumb-item.active {
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
  }

  .footer_top {
    padding: 40px 0;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .heroOverley h1 {
    font-size: 44px;
    line-height: 48px;
    max-width: 80%;
    margin: auto;
  }

  .bannertoptext {
    margin-bottom: 40px;
  }

  .bannertoptext ul li {
    font-size: 19px;
  }

  .sectiontitle h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .flexibleWorking::before {
    height: 86%;
  }

  .counterList li strong {
    font-size: 16px;
  }

  .redefiningOverley h2 {
    font-size: 30px;
    line-height: 38px;
  }

  span.socialtag {
    max-width: 160px;
    margin: 10px auto 20px;
  }

  .footer_cont:first-child,
  .footer_cont {
    width: 46%;
  }

  .detailvideoWrapper {
    margin-top: 30px;
  }

  .loginImg {
    display: block;
  }

  .locationmap {
    margin-left: 0;
    margin: 30px 0;
  }

  .locationInfo {
    padding-left: 0;
  }

  .ourpartnerswrapper ul li {
    width: 29.5%;
  }

  .keybenefitsSec .row {
    flex-flow: wrap-reverse;
  }

  .breadcrumb .breadcrumb-item.active {
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 490px;
  }
}


@media (min-width: 768px) and (max-width: 991.98px) {
  .heroOverley h1 {
    font-size: 48px;
    line-height: 60px;
    max-width: 70%;
    margin: auto;
  }

  .loginbtn span {
    display: block;
  }

  .findspaceform .form-group .formIcon {
    display: inline-grid;
  }

  ul.SidesocialBar {
    gap: 3px;
    top: 58%;
  }

  .enqueryBtn span {
    font-size: 12px;
  }

  .SidesocialBar li a {
    width: 31px;
    height: 31px;
  }

  .bannertoptext ul li {
    font-size: 16px;
  }

  .bannertoptext {
    margin-bottom: 40px;
  }

  .sectiontitle h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .AminitiesItem {
    width: 30.5%;
  }

  .growContent {
    padding: 0px 0 11px 23px;
    max-width: 467px;
    position: relative;
    transform: translateY(6px);
  }

  .growfasterTitle {
    padding-right: 23px;
    position: relative;
  }

  .growContent::before {
    display: block;
  }

  .growfasterTitle .sectiontitle {
    margin-bottom: 0;
    text-align: right !important;
  }

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

  .counterList {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    margin-left: -210px;
    position: relative;
    z-index: 2;
    flex-flow: nowrap;
  }

  .counterList li {
    padding: 18px 15px;
    min-width: 144px;
  }

  .counterList li strong {
    font-size: 12px;
  }

  .flexibleWorking::before {
    height: 73%;
  }

  .aboutContent p {
    font-size: 14px;
    line-height: 26px;
  }

  .gallerySec .row {
    gap: 30px;
  }

  .gallerySec .row .col-md-6,
  .blogSec .col-md-5,
  .blogSec .col-md-7 {
    width: 100%;
  }

  .blogSocial li {
    width: 23%;
  }

  .footer_cont:first-child,
  .footer_cont {
    width: 46%;
    margin-bottom: 30px;
  }

  .footer_btm_hldr {
    justify-content: center;
  }

  .videothumbouter {
    width: 135px;
  }

  /* listing */
  .listingleft {
    top: 75px;
    max-height: calc(100vh - 75px);
  }

  .listitemImg {
    width: 170px;
    height: 338px;
  }

  .listItemContent {
    max-width: calc(100% - 180px);
  }

  .listcontentTop {
    flex-flow: wrap;
  }

  .contentWrapper {
    flex: none;
    width: 100%;
  }

  .bookWrapper {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .priceWrapper {
    padding: 10px 10px 8px;
  }

  .bookWrapper .btnSecondary {
    font-size: 14px;
    padding: 13px 10px;
  }

  .priceWrapper h5 {
    font-size: 18px;
    line-height: 18px;
  }

  /* listing */
  .seaterWrapper {
    flex-direction: column;
    gap: 15px;
  }

  .seaterContent h4 {
    font-size: 16px;
  }

  .detailCtext h4 {
    font-size: 12px;
  }

  .loginImg {
    display: block;
  }

  .registerModal .modal-dialog {
    max-width: 430px;
  }

  .billinginfo {
    padding-left: 20px;
    padding-top: 0;
  }

  /* ===profile=== */
  .profileDp {
    width: 50px;
    height: 50px;
  }

  .dpInfo h4 {
    font-size: 16px;
    line-height: 12px;
    margin-bottom: 5px;
  }

  .dpInfo strong {
    font-size: 13px;
  }

  .profileContactsItem {
    font-size: 11px;
  }

  .profileMain {
    border-right: none;
    border-bottom: none;
    padding-right: 0px;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .myactionItem {
    margin-top: 0;
    margin-bottom: 30px;
    padding: 20px;
  }

  .myactionbtn {
    padding: 10.5px 12px;
    font-size: 14px;
  }

  .profileDpWrapper {
    gap: 10px;
    margin-bottom: 30px;
  }

  .myactionContent h6 {
    font-size: 18px;
    line-height: 24px;
  }

  figure.myactionIcon {
    width: 60px;
    height: 60px;
  }

  figure.myactionIcon img {
    max-width: 24px;
  }

  .blogright {
    padding-left: 0;
  }

  .blogmoreContent .blogdate {
    font-size: 12px;
  }

  .blogdetailsArea {
    padding-right: 30px;
  }

  .blogdetailsHero {
    height: 260px;
  }

  .blogdetailContent h2 {
    font-size: 22px;
    line-height: 34px;
  }

  .blogdetailContent p {
    font-size: 13px;
    line-height: 23px;
  }

  .cLocationTab ul li {
    font-size: 12px;
    line-height: 15px;
  }

  .locationInfo {
    padding-left: 0px;
  }

  .locationmap {
    margin-left: 0;
  }

  .locationInfo p,
  .locationInfo a {
    font-size: 13px;
    line-height: 22px;
  }

  .aboutpageContent {
    padding-top: 90px;
  }

  .ourpartnerswrapper ul li {
    width: 21%;
  }

  .rewardsItem .sectiontitle {
    margin-bottom: 30px;
  }

  .rewardsItem .sectiontitle h2 {
    font-size: 26px;
  }

  .gx-md-0 {
    --bs-gutter-x: inherit;
  }

  .whyABC {
    padding-top: 50px;
  }
}


@media (min-width: 992px) and (max-width: 1023px) {
  .mobileCallbtn {
    display: grid;
    width: 34px;
    height: 34px;
    place-content: center;
    border: 1px solid var(--themeGreen);
    border-radius: 50%;
    margin-left: auto;
  }

  .mobileCallbtn img {
    max-width: 20px;
  }

  .loginbtn {
    margin-right: 50px;
  }

  .mobileMenuButton {
    top: 66px;
  }

  a.logo img {
    max-width: 100px;
    padding: 8px 0;
  }

  .bannerSec {
    margin-top: 103px;
  }

  .bannerSec .swiper-slide figure {
    position: relative;
    height: 525px;
  }

  .sectiontitle h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .rangeItem {
    width: 32.15%;
  }

  .growContent {
    padding: 0px 0 8px 23px;
    transform: translateY(4px);
  }

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

  .counterList {
    margin-top: 50px;
  }

  .counterList li strong {
    font-size: 14px;
  }

  .counterList li {
    padding: 18px 15px;
    min-width: 146px;
  }

  .aboutContent p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .redefiningOverley h2 {
    font-size: 30px;
    line-height: 42px;
  }

  .galleryQuote .btnSecondary {
    padding: 6px 5px;
    margin-top: 5px !important;
    font-size: 12px;
  }

  .galleryItem.div4 img {
    min-height: 264px;
  }

  .galleryQuote .sectiontitle h2 {
    font-size: 19px;
    line-height: 25px;
  }

  .galleryQuote .text-white span.sectionTag {
    color: var(--white);
    font-size: 12px;
  }

  .galleryItem figure {
    height: 100%;
  }

  section {
    padding: 80px 0;
  }

  .listitemImg {
    width: 230px;
  }

  .listItemContent {
    max-width: calc(100% - 240px);
  }

  .contentWrapper p {
    font-size: 12px;
    line-height: 17px;
  }

  section.breadcumbsec {
    padding: 103px 0 0;
  }

  .footer_btm_hldr p,
  .footer_btm_hldr p a,
  .footer_btm_hldr ul li a {
    font-size: 13px;
  }

  .footer_btm_hldr img {
    margin-right: 30px;
  }

  .detailCtext h4 {
    font-size: 16px;
  }

  .detailAminities {
    gap: 40px;
  }

  .faqInner {
    max-width: 480px;
    padding: 60px 0 60px 45px;
  }

  .profileDp {
    width: 60px;
    height: 60px;
  }

  .dpInfo h4 {
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 5px;
  }

  .dpInfo strong {
    font-size: 13px;
    line-height: 13px;
  }

  .profileContactsItem {
    font-size: 13px;
  }

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

  .ourpartnerswrapper ul li {
    width: 21%;
  }
}

@media (min-width: 1024px) and (max-width: 1198.98px) {
  .loginbtn span {
    display: none;
  }

  .loginbtn {
    padding: 9px 9px;
  }

  .main_menu li a {
    font-size: 12px;
  }

  .callContent {
    display: none;
  }

  a.logo img {
    max-width: 100px;
  }

  .counterList li strong {
    font-size: 14px;
  }

  .counterList li {
    padding: 18px 15px;
    min-width: 155px;
  }

  .socialMediaWrapper {
    padding-left: 30px;
    margin-left: 24px;
    border-left: 1px solid #E4E1EB;
  }

  .bannerSec .swiper-slide figure {
    position: relative;
    height: 525px;
  }

  .modernAminitiesWrapper {
    gap: 40px 40px;
  }

  .AminitiesItem {
    width: 28.5%;
  }

  .sectiontitle h2 {
    font-size: 32px;
  }

  .rangeItem {
    width: 32.15%;
  }

  .galleryQuote .btnSecondary {
    padding: 7px 6px;
    font-size: 14px;
    margin-top: 5px !important;
  }

  .galleryItem.div4 img {
    min-height: 271px;
  }

  .galleryQuote .sectiontitle h2 {
    font-size: 19px;
    line-height: 25px;
  }

  .galleryItem figure {
    height: 100%;
  }

  .blogSocial li {
    padding: 32px 8px 22px;
    width: 22.5%;
  }

  span.socialtag {
    font-size: 14px;
    padding: 4px 10px;
  }

  .footer_btm_hldr p {
    display: flex;
    align-items: center;
  }

  .mopartner img {
    margin-right: 10px;
  }

  .redefiningOverley h2 {
    font-size: 30px;
    line-height: 40px;
  }

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

  .ourpartnerswrapper ul li {
    width: 21%;
  }
}

@media (min-width: 1024px) and (max-width: 1349.98px) {
  .main_menu li a {
    font-size: 13px;
  }

  .loginbtn {
    font-size: 11px;
  }

  .contactBtn strong {
    font-size: 12px;
  }

  .logo img {
    max-width: 110px;
  }

  .main_menu {
    gap: 14px;
  }

  .bannerSec .swiper-slide figure {
    position: relative;
    height: 525px;
  }

  .rangeItem {
    width: 32.15%;
  }

  .galleryItem.div4 img {
    min-height: 322px;
  }

  .galleryQuote .sectiontitle h2 {
    font-size: 22px;
    line-height: 25px;
  }

  .galleryQuote .btnSecondary {
    padding: 9px 10px;
  }

  .blogSocial li {
    padding: 32px 10px 22px;
    width: 22%;
  }

  span.socialtag {
    padding: 4px 10px;
  }
}

/* 14.07.2025 */
#ast-scroll-top {
  display: none !important;
}

.single-post .blogListingSec {
  padding-bottom: 50px !important;
}

@media (min-width: 1600px) {
  .blogdetailsHero img {
    height: 380px;
    width: 100%;
    object-fit: cover;
  }
}