@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: IvyMode-Regular;
  src: url("../assets/fonts/Ivy-Mode/IvyMode-Regular.ttf");
}

@font-face {
  font-family: IvyMode-SemiBold;
  src: url("../assets/fonts/Ivy-Mode/IvyMode-SemiBold.ttf");
}

@font-face {
  font-family: IvyMode-Bold;
  src: url("../assets/fonts/Ivy-Mode/IvyMode-Bold.ttf");
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --light: #ffffff;
  --dark: #000;
  --Lato: "Lato", sans-serif;
  --Montserrat: "Montserrat", sans-serif;
  --Raleway: "Raleway", sans-serif;
  --IvyMode-Regular: IvyMode-Regular;
  --IvyMode-SemiBold: IvyMode-SemiBold;
  --IvyMode-Bold: IvyMode-Bold;
  --Avenir: Avenir;
  --primary: #998648;
  --gold: #e8cfa0;
  --secondary: #b9803c;
  --dark-pink: #801c52;
  --text-dark: #2e2e2e;
  --text-dark-2: #1e1e1e;
  --dark-blue: #005792;
  --text-mute: #2a2a2a;
  --primary-bg: linear-gradient(91deg, #801c52 18.53%, #1e407f 109.69%);
  --primary-bg-2: linear-gradient(112deg, #801c52 27.94%, #1660ac 70.17%);
  --primary-bg-3: linear-gradient(112deg, #801c52 36.99%, #1660ac 66.41%);
  --secondary-bg: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
}

html {
  font-size: 16px !important;
  overflow-x: hidden;
}

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-right: 0px !important;
  font-family: var(--Lato);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

body.loading {
  width: 100%;
  height: 100vh !important;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

body.loaded {
  -webkit-animation: fadeIn 3s ease-out forwards;
  animation: fadeIn 3s ease-out forwards;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

.toggle-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--dark-blue);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  position: fixed;
  bottom: 0%;
  right: 1.25%;
  color: var(--light);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up.show {
  opacity: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up i {
  font-size: 1.15rem;
}

.loader-container {
  display: none;
}

.loader-wrapper {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
  background-color: #ffffffe3;
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  height: 100vh;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: -o-radial-gradient(farthest-side, #2a75ff 94%, #0000) top/8px 8px
      no-repeat,
    conic-gradient(#0000 30%, #4184ff);
  background: radial-gradient(farthest-side, #2a75ff 94%, #0000) top/8px 8px
      no-repeat,
    conic-gradient(#0000 30%, #4184ff);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  -webkit-animation: l13 1s infinite linear;
  animation: l13 1s infinite linear;
}
@-webkit-keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

/* form loader css */

.form-loader {
  display: none;
}

.form-loader-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  background-color: transparent;
  margin: auto;
  padding: 0.5rem 0.75rem 0.25rem 0.75rem;
  border-radius: 100px;
}

.form-loader-wrapper .loader-txt {
  color: var(--light);
  font-size: 0.95rem;
  font-weight: 400;
}

.f-loader {
  width: 30px;
  height: 30px;
  border: 5px solid #ffab17;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 0.75s linear infinite;
  animation: rotation 0.75s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem !important;
}

ul {
  padding-left: 0rem !important;
  margin-bottom: 0rem !important;
}

li {
  list-style: none;
  text-decoration: none;
}

a {
  text-decoration: none !important;
}

p {
  margin-bottom: 0rem !important;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@-webkit-keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #d9b66f;
    box-shadow: 0 0 0 0 #d9b66f;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #d9b66f;
    box-shadow: 0 0 0 0 #d9b66f;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  z-index: 9;
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem 8rem;
  background: var(--primary-bg);
  gap: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.menu {
  display: none;
  width: 21px;
  cursor: pointer;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 200px;
  max-width: 100%;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  gap: 2.875rem;
}

.navLinks .navLink {
  display: block;
  font-size: 1rem;
  background: var(--secondary-bg);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-transform: capitalize;
}

.primary-button {
  /* background: url("../assets/images/icons/btn-primary.svg") no-repeat center
    center/contain; */
  background: -o-radial-gradient(
    50% 50%,
    255.11% 35.79%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  border-radius: 20px;
}

.primary-button.submit {
  background: url("../assets/images/icons/submit.svg") no-repeat center
    center/contain;
}

.btnPrimary {
  font-size: 1.1rem;
  color: var(--dark-pink);
  font-weight: 600;
  /* top: -2px; */
  border: none;
  outline: none;
  position: relative;
  text-transform: capitalize;
  width: 100%;
  padding: 0.7rem 1.75rem;
  /* line-height: 40px; */
  background: transparent;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btnPrimary.submit {
  padding: 0.55rem 2.5rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.offcanvas {
  background: var(--primary-bg);
}

.offcanvas.offcanvas-start .offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.offcanvas-logo {
  width: 180px;
}

.offcanvas-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offcanvas-close {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border-radius: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--light);
  -webkit-transform: translateY(4px) scale(0.95);
  -ms-transform: translateY(4px) scale(0.95);
  transform: translateY(4px) scale(0.95);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.offcanvas-close i {
  font-size: 1.1rem;
}

.offcanvas-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.offcanvas-link {
  display: block;
  font-size: 1.15rem;
  background: var(--secondary-bg);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-transform: capitalize;
}

.section-heading {
  position: relative;
  width: 100%;
  z-index: 1;
}

.section-heading.max-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.section-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-0%, -50%);
  -ms-transform: translate(-0%, -50%);
  transform: translate(-0%, -50%);
  z-index: -1;
  width: 100%;
  height: 150px;
  background: url("../assets/images/overlay/header-overlay.svg") no-repeat
    center center / contain;
}

.section-heading .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.section-heading .section-title h2 {
  background: var(--secondary-bg);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--Montserrat);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: uppercase;
  font-size: 2.5vw;
}

.section-heading .section-title.custom-fontsize h2 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 3vw;
}

.section-heading .section-title h2.primary {
  background: var(--primary-bg-2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading .section-title h2.custom-size {
  font-size: 1.95vw;
}

.section-heading .section-title .light,
.content-heading .content-title .light {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 400;
}

.section-heading .section-title .bold,
.content-heading .content-title .bold {
  font-weight: 600;
}

.section-desc {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--light);
}

.custom-margin {
  margin: 4rem 0 0 0;
}

section.main-banner {
  margin: 6rem 0 0 0;
}

section.section-overview {
  background: var(--primary-bg);
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.overview-overlay {
  position: absolute;
  z-index: -1;
}

.overview-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.overview-overlay.overview-overlay-1 {
  width: 300px;
  height: 320px;
  top: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  right: 0;
}

.overview-overlay.overview-overlay-2 {
  width: 230px;
  height: 450px;
  left: 0px;
  bottom: 10%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.overview-img {
  width: 100%;
  height: 100%;
}

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

.overview-img iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.overview-container.overview-container-2 {
  margin: 6.5rem auto auto auto;
  display: none;
}

.overview-container iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.primary-btn {
  margin: 1rem 0 0 0;
}

.btn-know {
  color: var(--dark-pink);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: none;
  border-radius: 2px;
  padding: 0.55rem 1.75rem;
  background: -o-radial-gradient(
    50% 50%,
    255.11% 35.79%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  font-size: 1.05rem;
  font-weight: 600;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
}

section.section-therapy {
  position: relative;
  padding: 8rem 0;
}

.therapy-txt {
  margin: 0 2rem 0 0;
}

section.section-sangama {
  padding: 5rem 0;
  position: relative;
}

section.section-sangama::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background: url("../assets/images/overlay/texture.png") no-repeat center
    center/cover;
}

.sangama-overlay {
  position: absolute;
  z-index: 1;
}

.sangama-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sangama-overlay.sangama-overlay-1 {
  width: 185px;
  height: 430px;
  top: -250px;
  right: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sangama-overlay.sangama-overlay-2 {
  width: 150px;
  height: 270px;
  left: 0px;
  top: -120px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sangama-container {
  margin: 5rem 0 0 0;
}

.custom-nav .nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  position: relative;
  z-index: 3;
}

.custom-nav .nav-pills button {
  font-size: 1.25rem;
  color: var(--text-dark-2);
  font-family: var(--Montserrat);
  text-transform: capitalize;
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}

.custom-nav .nav-pills button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  border: 2px dashed #d9b66f;
}

span.text-3 {
  display: inline;
}

span.no-3 {
  display: none;
}

.custom-nav .nav-pills button.active {
  background: var(--primary-bg-3);
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.three-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.three-nav .nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.three-nav .nav-pills .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  border: 1px solid #e8cfa0;
  width: 100%;
  font-family: var(--Montserrat);
  font-weight: 600;
  font-size: 1.15rem;
}

.three-nav .nav-pills .nav-link span.txt {
  background: -o-radial-gradient(
    50% 50%,
    255.11% 35.79%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.three-nav .nav-pills .nav-link .icon img.active {
  display: none;
}

.three-nav .nav-pills .nav-link.active .icon img {
  display: none;
}

.three-nav .nav-pills .nav-link.active .icon img.active {
  display: block;
}

.three-nav .nav-pills .nav-link.active {
  background: var(--light);
  border: 1px solid transparent;
  color: var(--dark-pink);
}

.three-nav .nav-pills .nav-link.active span.txt {
  background: unset;
  color: var(--dark-pink);
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.custom-content-container {
  border: 4px solid #e8cfa0;
  margin: auto;
  width: 90%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: -o-linear-gradient(338deg, #801c52 36.99%, #1660ac 66.41%);
  background: linear-gradient(112deg, #801c52 36.99%, #1660ac 66.41%);
  padding: 3rem 2rem;
}

.therapy-overlay {
  position: absolute;
  z-index: 1;
}

.therapy-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.therapy-overlay.therapy-overlay-1 {
  width: 220px;
  height: 500px;
  top: -250px;
  right: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.therapy-overlay.therapy-overlay-2 {
  width: 230px;
  height: 600px;
  left: 0px;
  bottom: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.therapy-img-content {
  background-image: -o-linear-gradient(
    135deg,
    #ffffff 0 100%,
    transparent 40% 100%
  );
  background-image: linear-gradient(
    -45deg,
    #ffffff 0 100%,
    transparent 40% 100%
  );
  background-color: white;
  /* overflow: hidden; */
  position: relative;
}

.therapy-img-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3); /* soft white wash */
  z-index: 0;
}

.therapy-img-content,
.therapy-img {
  position: relative;
}

.therapy-img::after {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  border: 1px solid var(--gold);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.therapy-row {
  margin: 5rem 0 0 0;
}

.slide-number {
  position: absolute;
  top: 50%;
  font-family: var(--IvyMode-SemiBold);
  left: 0;
  z-index: 1;

  mix-blend-mode: normal;
  background: -o-radial-gradient(
    0% 50%,
    150% 100%,
    #d3ab57 15%,
    #d3ab57 10%,
    #fff 60%,
    transparent 80%
  );
  background: radial-gradient(
    150% 100% at 0% 50%,
    #d3ab57 15%,
    #d3ab57 10%,
    #fff 60%,
    transparent 80%
  );
  margin: 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 6.5rem;
  letter-spacing: 1px;
}

.content-heading .content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.content-desc {
  color: var(--light);
  font-size: 1.25rem;
  margin: 2rem 0 0 0;
  text-align: center;
  text-wrap: balance;
  font-weight: 400;
}

.content-heading .content-title h2 {
  background: -o-linear-gradient(338deg, #801c52 17.14%, #1660ac 37.47%);
  background: linear-gradient(112deg, #801c52 17.14%, #1660ac 37.47%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--Montserrat);
  text-transform: uppercase;
  font-size: 2.4vw;
}

.content-heading .content-title h2.white {
  color: var(--light);
  background: unset;
  -webkit-text-fill-color: unset;
}

section.section-difference {
  background: var(--primary-bg);
  padding: 4rem 0 1rem 0;
}

.diff-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.diff-img::after {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  border: 1px solid var(--gold);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.diff-img.animate::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  left: 0;
  bottom: -30%;
  z-index: 1;
  background: transparent;
}

.diff-img.animate:hover::before {
  bottom: 0%;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(#000)
  );
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.diff-title {
  position: relative;
  z-index: 1;
}

.diff-title::after {
  content: "";
  position: absolute;
  width: 223px;
  height: 10px;
  left: 50%;
  z-index: -1;
  bottom: -15px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../assets/images/overlay/header.svg) no-repeat center center /
    contain;
}

.diff-title h2 {
  color: var(--light);
  font-family: var(--IvyMode-Regular);
  font-size: 3.35vw;
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: lowercase;
}

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

.diff-container {
  margin: 5rem 0 0 0;
}

.diff-overlay-txt {
  position: absolute;
  left: 50%;
  width: 100%;
  bottom: -50%;
  -webkit-transform: translate(-50%, -25%);
  -ms-transform: translate(-50%, -25%);
  transform: translate(-50%, -25%);
  padding: 0 1rem;
  opacity: 0;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.diff-img.animate:hover .diff-overlay-txt {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 2;
  opacity: 1;
  bottom: 0%;
}

.diff-overlay-txt .diff-overlay-title {
  font-weight: 600;
  margin: 0 0 0.8rem 0 !important;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--light);
  text-align: center;
  font-size: 1.35vw;
}

.diff-overlay-txt .diff-overlay-subtitle {
  font-weight: 500;
  text-align: center;
  text-wrap: pretty;
  font-size: 1vw;
  color: var(--light);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.diff-overlay-txt.small .diff-overlay-title {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 0.975rem;
}

.diff-overlay-txt.small .diff-overlay-subtitle {
  font-size: 0.8rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.diff-overlay-txt.medium .diff-overlay-title {
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.2vw;
}

.diff-overlay-txt.medium .diff-overlay-subtitle {
  font-size: 0.8rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

section.section-amenities {
  padding: 6rem 0;
  position: relative;
}

section.section-amenities::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
  background: url("../assets/images/overlay/texture.png") no-repeat center
    center/cover;
}

.amenities-overlay {
  position: absolute;
  width: 280px;
  height: 480px;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.amenities-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.amenities-container {
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 5rem 2rem 3rem 2rem;
  position: relative;
  z-index: 8;
}

.amens-navs-tab {
  margin: 0.85rem 0 0 0;
}

.amens-navs-tab .nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.amens-navs-tab .nav-pills .nav-item {
  border-bottom: 1px dashed #d9b66f;
  border-width: 3px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.amens-navs-tab .nav-pills .nav-item:last-child {
  border-bottom: 1px dashed transparent;
}

.amens-navs-tab .nav-pills .nav-link {
  background: var(--primary-bg-3);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--Montserrat);
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.amens-navs-tab .nav-pills .nav-link.active {
  font-weight: 800;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.amenities-img {
  width: 100%;
  height: 100%;
  /* border-radius: 6px; */
  /* overflow: hidden; */
}

.amenities-img a {
  width: 100%;
  position: relative;
  display: block;
  z-index: 2;
  height: 100%;
}

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

.amenities-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1.25rem 0 1.65rem 0 !important;
}

.amenities-carousel .owl-nav button {
  width: 50px;
  height: 50px;
}

.amenities-carousel .owl-nav button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.amenities-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.05rem;
  margin: 1rem 0 0 0;
}

.amenities-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 3px;
  border-radius: 100px;
  -webkit-transform: scaleX(0.7);
  -ms-transform: scaleX(0.7);
  transform: scaleX(0.7);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  background: #b9b8b8 !important;
  -webkit-transition: -webkit-transform 0.65s ease;
  transition: -webkit-transform 0.65s ease;
  -o-transition: transform 0.65s ease;
  transition: transform 0.65s ease;
  transition: transform 0.65s ease, -webkit-transform 0.65s ease;
}

.amenities-carousel .owl-dots .owl-dot.active {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  background: -o-linear-gradient(
    338deg,
    #801c52 36.99%,
    #1660ac 66.41%
  ) !important;
  background: linear-gradient(
    112deg,
    #801c52 36.99%,
    #1660ac 66.41%
  ) !important;
  -webkit-transition: -webkit-transform 0.65s ease;
  transition: -webkit-transform 0.65s ease;
  -o-transition: transform 0.65s ease;
  transition: transform 0.65s ease;
  transition: transform 0.65s ease, -webkit-transform 0.65s ease;
}

.amenities-carousel .owl-item.active .amenities-img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.amenities-carousel .owl-item.active .amenities-img a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(39, 62, 126, 0) 84.74%,
    #801c52 100%
  );
}

.amenities-carousel .owl-item:not(.active) .amenities-img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.amenities-txt {
  position: absolute;
  bottom: -6%;
  z-index: 3;
  left: 0;
  text-align: center;
  color: var(--light);
  width: 100%;
  font-size: 1.65vw;
  font-family: var(--Avenir);
  opacity: 0;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.amenities-carousel .owl-item.active .amenities-txt {
  -webkit-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
  opacity: 1;
  bottom: 3%;
}

.slide-progress {
  width: 0;
  max-width: 100%;
  height: 4px;
  background: #cddc39;
}

section.section-location {
  background: var(--primary-bg);
  padding: 6.5rem 0 5rem 0;
  position: relative;
}

section.section-location::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
  background: url("../assets/images/overlay/texture.png") no-repeat center
    center/cover;
}

.location-overlay {
  position: absolute;
  width: 200px;
  height: 500px;
  top: -300px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  right: 0;
}

.location-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.location-map {
  width: 100%;
  /* height: 100%; */
}

.location-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.location-accordion .accordion {
  --bs-accordion-bg: transparent !important;
}

.location-accordion .accordion-item {
  border: unset;
}

.location-accordion .accordion-header {
  background: transparent;
  position: relative;
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 0.25rem;
}

.location-accordion .accordion-header button {
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  font-family: var(--Montserrat);
  color: var(--light);
  text-transform: capitalize;
  font-weight: 600;
  padding: 0.25rem 1rem 0.25rem 1.75rem;
  position: relative;
  line-height: 52px;
  font-size: 1.05rem;
  background: -o-radial-gradient(
    50% 50%,
    255.11% 35.79%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-accordion .accordion-button::after {
  background-image: url("../assets/images/icons/drop.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 40px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.location-accordion .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-accordion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.6rem;
}

.location-accordion-content .location-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.location-accordion-content .location-content .location-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.25rem;
}

.location-accordion-content .location-content .location-head .location-no {
  font-size: 1rem;
  font-weight: 400;
  color: var(--light);
  font-family: var(--Montserrat);
}

.location-accordion-content .location-content .location-head .location-title {
  font-weight: 400;
  font-family: var(--Montserrat);
  color: var(--light);
  font-size: 1rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-accordion-content .location-content .location-dist {
  font-weight: 400;
  font-family: var(--Montserrat);
  color: var(--light);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1rem;
  text-wrap: nowrap;
}

section.section-gallery {
  padding: 6rem 0 4rem 0;
  position: relative;
}

.gallery-overlay {
  position: absolute;
}

.gallery-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-overlay.gallery-overlay-1 {
  width: 160px;
  height: 270px;
  top: -55px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  left: 0;
}

.gallery-overlay.gallery-overlay-2 {
  width: 210px;
  height: 535px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: -260px;
  right: 0;
}

.gallery-nav {
  margin: 7rem 0 0 0;
}

.gallery-nav .nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.gallery-tab-content {
  margin: 2rem 0 0 0;
}

.gallery-nav .nav-pills .nav-link {
  background: transparent;
  font-size: 1.175rem;
  color: var(--text-dark-2);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 400;
  border-width: 3px;
  border-radius: unset;
  padding: 0;
  font-family: var(--Montserrat);
  border-bottom: 2px dashed #d9b66f;
}

.gallery-nav .nav-pills .nav-link.active {
  background: transparent;
  background: var(--primary-bg-3);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-weight: 600;
  transition: all 0.5s ease;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 0 0;
}

.gallery-carousel .owl-nav button {
  width: 55px;
  height: 55px;
}

.gallery-carousel .owl-nav button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-carousel .gallery-content {
  position: relative;
}

.gallery-carousel .gallery-content .gallery-click {
  position: absolute;
  top: 50%;
  z-index: 0;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transform: translate(-50%, -50%);
  background-color: var(--dark-pink);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  color: var(--gold);
}

section.section-spec {
  padding: 4rem 0;
}

.spec-tab-content {
  margin: 2rem 0 0 0;
}

.spec-nav {
  margin: 5rem 0 0 0;
}

.spec-nav .nav-pills {
  width: 40vw;
  margin: auto;
  border-bottom: 2px dashed #d9b66f;
  transition: all 0.5s ease;
  padding: 0 0 0.2rem 0;
}

.spec-nav .nav-pills .nav-item {
  display: flex;
  width: calc(100% / 3);
  justify-content: center;
}

.spec-nav .nav-pills .nav-link {
  background: transparent;
  font-size: 1.175rem;
  color: var(--text-dark-2);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 400;
  border-width: 3px;
  border-radius: unset;
  padding: 0;
  font-family: var(--Montserrat);
}

.spec-nav .nav-pills .nav-link.active {
  background: transparent;
  background: var(--primary-bg-3);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-weight: 600;
  transition: all 0.5s ease;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.document-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem auto 2rem auto;
}

.document-content .document-title {
  background: transparent;
  background: var(--primary-bg-3);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-weight: 600;
  transition: all 0.5s ease;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.document-img {
  width: 75px;
  height: 75px;
}

.document-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-download {
  border: none;
  display: block;
  margin: 0.25rem 0 0 0;
  font-weight: 500;
  color: var(--text-dark);
}

section.section-brochure {
  position: relative;
  padding: 4rem 0;
  background: var(--primary-bg);
}

.brochure-container {
  border: 2px solid #e8cfa0;
  margin: auto;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 80%;
}

.brochure-content {
  padding: 7rem 3rem 2rem 3rem;
}

.brochure-img {
  width: 100%;
  height: 100%;
}

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

.custom-input {
  padding: 0.85rem 0.75rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: #821b53;
  border-radius: 4px;
}

.custom-input:focus {
  -webkit-box-shadow: unset;
  box-shadow: unset;
}

.invalid-feedback {
  margin-top: 0.25rem;
  font-size: 0.85em;
  /* background: -o-radial-gradient(
    50% 50%,
    255.11% 35.79%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color: var(--light);
}

.contact-form {
  margin: 6rem 0 0 0;
}

.form-check-label {
  color: var(--light);
  cursor: pointer;
}

.form-check-label.checkbox-label {
  font-size: 0.925rem;
  cursor: pointer;
  font-weight: 400;
}

.was-validated .form-check-input:valid ~ .form-check-label {
  color: var(--light);
}

.contact-label {
  background: -o-radial-gradient(
    50% 50%,
    255.11% 35.79%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0 !important;
  text-transform: capitalize;
}

::-webkit-input-placeholder {
  font-size: 1.05rem;
  font-weight: 400;
  color: #821b53 !important;
}

::-moz-placeholder {
  font-size: 1.05rem;
  font-weight: 400;
  color: #821b53 !important;
}

:-ms-input-placeholder {
  font-size: 1.05rem;
  font-weight: 400;
  color: #821b53 !important;
}

::-ms-input-placeholder {
  font-size: 1.05rem;
  font-weight: 400;
  color: #821b53 !important;
}

::placeholder {
  font-size: 1.05rem;
  font-weight: 400;
  color: #821b53 !important;
}

section.section-FAQ {
  padding: 5.5rem 0 4rem 0;
  position: relative;
}

.FAQ-accordion .accordion {
  --bs-accordion-bg: transparent !important;
}

.FAQ-overlay {
  position: absolute;
  width: 270px;
  height: 800px;
  z-index: -1;
  left: 0;
  bottom: 5%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.FAQ-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.FAQ-container {
  border: 2px solid #e8cfa0;
  padding: 7rem 3rem 3rem 3rem;
}

.FAQ-main-content {
  margin: 5rem 0 0 0;
}

.FAQ-accordion .accordion-button {
  background: transparent;
  font-weight: 600;
  padding: 1.35rem 0.95rem;
  font-size: 1.02rem;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  background: var(--primary-bg-3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.FAQ-accordion .accordion-item {
  border: none;
  border-bottom: 2px solid #e8cfa0;
}

.FAQ-accordion .accordion-button::after {
  background-image: url("../assets/images/icons/plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 16px;
}

.FAQ-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../assets/images/icons/minus.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.enquire-div {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99;
  -webkit-transform: rotate(270deg) translateY(52px);
  -ms-transform: rotate(270deg) translateY(52px);
  transform: rotate(270deg) translateY(52px);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.mobile-navs {
  display: none;
}

.mobile-navs .mobile-nav {
  width: 50px;
  height: 50px;
}

.mobile-navs .mobile-nav img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mob.enquire-div {
  display: none;
  position: fixed;
  top: unset;
  right: unset;
  z-index: 99;
  width: 100%;
  left: 0;
  opacity: 0.5;
  bottom: -50px;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

.mob.enquire-div.show {
  bottom: 0;
  opacity: 1;
  -webkit-transition: all 1sease;
  -o-transition: all 1s ease;
  -o-transition: all 1sease;
  transition: all 1sease;
  left: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mob.enquire-div .btn-enquire {
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.btn-enquire {
  color: var(--dark-pink);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.45rem 1.5rem;
  background: -o-radial-gradient(
    50% 50%,
    255.11% 35.79%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  font-size: 1.05rem;
  font-weight: 600;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
}

section.section-about {
  padding: 3rem 0 4rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-overlay {
  position: absolute;
  z-index: -1;
}

.about-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-overlay.about-overlay-1 {
  width: 125px;
  height: 390px;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.about-overlay.about-overlay-2 {
  width: 82px;
  height: 300px;
  top: 35%;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  right: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.about-img {
  width: 16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  margin: auto;
}

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

.about-txt {
  font-family: var(--Lato);
  color: var(--text-dark-2);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.15rem;
}

footer {
  background: var(--primary-bg);
  padding: 3.5rem 0rem 1.5rem 0;
  position: relative;
}

.footer-overlay {
  position: absolute;
  /* z-index: -1; */
}

.footer-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer-overlay.footer-overlay-1 {
  width: 200px;
  height: 100%;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer-overlay.footer-overlay-2 {
  width: 170px;
  height: 400px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: 0;
  right: 0;
}

.footer-logo {
  /* width: 250px; */
  max-width: 100%;
  margin: auto auto 2rem auto;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*  */

.footer-logo-2 {
  width: 170px;
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-logo-2 .logo-2 {
  background-color: #fff;
  border-radius: 8px;
}

.footer-logo-2 .logo-2 p {
  color: #000;
  font-size: 1.1rem;
  text-align: center;
  margin: -1.35rem auto 0.15rem auto !important;
}

/*  */

.footer-txt {
  font-family: var(--Raleway);
  background: -o-radial-gradient(
    50% 50%,
    255.11% 35.79%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1rem;
  font-weight: 500;
  -webkit-text-fill-color: transparent;
}

.section-igbc {
  position: relative;
  z-index: 2;
}

.igbc-img {
  width: 10rem;
  max-width: 100%;
  margin: auto;
}

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

.igbc-title {
  font-family: var(--Raleway);
  background: -o-radial-gradient(
    50% 50%,
    255.11% 35.79%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1rem;
  font-weight: 500;
  -webkit-text-fill-color: transparent;
  margin: 0 0 1rem 0;
  text-align: center;
}

.disclaimer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  position: relative;
  z-index: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* margin: 2rem auto auto auto; */
}

.disclaimer p {
  font-weight: 500;
  font-size: 1rem;
  text-wrap: balance;
  width: 100%;
}

.primary-line {
  width: 100%;
  height: 1px;
  background: -o-radial-gradient(
    50% 50%,
    255.11% 35.79%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  margin: 1.5rem auto;
}

.modal-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 2rem 0 0 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background: var(--primary-bg) !important;
  padding: 2rem 0rem;
  z-index: 1;
}

.modal-overlay {
  position: absolute;
  z-index: -1;
}

.modal-close {
  position: absolute;
  z-index: 9;
  top: 10%;
  right: 10%;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal-overlay.modal-overlay-1 {
  width: 315px;
  height: 100%;
  top: 0;
  left: 0;
}

.modal-overlay.modal-overlay-2 {
  width: 240px;
  height: 100%;
  top: 0;
  right: 0;
}

.contact-form.custom-form {
  margin: 2rem auto auto auto;
  width: 60%;
}

.form-check-input.circle {
  border-radius: 100%;
}

.copyright {
  text-align: center;
  margin: 1rem 0 0 0;
  font-family: var(--Raleway);
  background: -o-radial-gradient(
    50% 50%,
    255.11% 35.79%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background: radial-gradient(
    255.11% 35.79% at 50% 50%,
    #e8cfa0 0%,
    #e3c892 21%,
    #d9b66f 60%,
    #d2aa56 85%
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.05rem;
  font-weight: 500;
  -webkit-text-fill-color: transparent;
}

/* thank you css */

section.secton-thankyou {
  height: calc(100vh - 75px);
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-logo {
  max-width: 100%;
  width: 300px;
  margin: auto;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thankyou-title {
  text-align: center;
  margin: 0.35rem 0 0 0;
}

.thankyou-subtitle {
  text-align: center;
  text-wrap: balance;
  opacity: 0.85;
  margin: 0.5rem 0 0 0;
}

/*********** media query *********/

@media only screen and (max-width: 1400px) {
  section.main-banner {
    margin: 4.95rem 0 0 0;
  }

  .navbar-container {
    padding: 1rem 4rem;
    gap: 1rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .location-accordion .accordion-header button {
    line-height: 43px;
  }
}

@media only screen and (max-width: 1200px) {
  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 2rem;
  }

  .custom-nav .nav-pills {
    gap: 1rem;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }

  .custom-nav .nav-pills button {
    font-size: 1.15rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  /* .location-accordion .accordion-header button::before {
    background: url(../assets/images/overlay/button-overlay.png) no-repeat
      center center / contain;
  } */

  .diff-overlay-txt.small .diff-overlay-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 0 0 0.5rem 0 !important;
    font-size: 0.85rem;
  }

  .diff-overlay-txt.small .diff-overlay-subtitle {
    font-size: 0.7rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-overlay.overview-overlay-1 {
    width: 240px;
    height: 260px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-overlay.overview-overlay-2 {
    width: 135px;
    height: 270px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .therapy-overlay.therapy-overlay-1 {
    width: 170px;
    height: 400px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .therapy-overlay.therapy-overlay-2 {
    width: 160px;
    height: 480px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .sangama-overlay.sangama-overlay-1 {
    width: 120px;
    height: 280px;
    top: -180px;
    right: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .sangama-overlay.sangama-overlay-2 {
    width: 110px;
    height: 200px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .gallery-overlay.gallery-overlay-1 {
    width: 120px;
    height: 203px;
    top: -45px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .gallery-overlay.gallery-overlay-2 {
    width: 180px;
    height: 455px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: -235px;
  }

  .FAQ-overlay {
    width: 180px;
    height: 542px;
    bottom: 24%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .footer-overlay.footer-overlay-2 {
    width: 130px;
    height: 300px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .spec-nav .nav-pills {
    width: 50vw;
    transition: all 0.5s ease;
  }
}

@media only screen and (max-width: 1080px) {
  .navbar-container {
    padding: 0.95rem 2rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .section-heading.max-content {
    margin: auto;
  }

  .section-heading .section-title {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .section-heading .section-title h2 {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.25vw;
  }

  .section-heading .section-title.custom-fontsize h2 {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.5vw;
  }

  .content-heading .content-title h2 {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3.15vw;
  }

  .section-heading .section-title h2.primary.custom-size {
    font-size: 3.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .brochure-container {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 100%;
  }

  .custom-nav .nav-pills {
    gap: 1rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 2.5rem 0 0 0;
  }

  .three-nav .nav-pills {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }

  .three-nav .nav-pills .nav-link {
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
  }

  .custom-content-container {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 3rem 1rem;
  }

  .diff-title h2 {
    font-size: 4.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .brochure-content {
    padding: 4rem 2rem 1rem 2rem;
  }

  .overview-container.overview-container-2 {
    margin: 3.5rem auto auto auto;
  }

  .therapy-row {
    margin: 3.5rem 0 0 0;
  }

  .sangama-overlay.sangama-overlay-1 {
    width: 96px;
    height: 225px;
    top: -170px;
    right: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .sangama-overlay.sangama-overlay-2 {
    width: 80px;
    height: 150px;
    top: -90px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .therapy-txt {
    margin: 0 0 0 0;
  }

  .custom-margin-2 {
    margin: 3rem 0 0 0;
  }

  section.section-location {
    padding: 8rem 0 6rem 0;
  }

  .section-heading .section-title h2.custom-size {
    font-size: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-accordion .accordion-header button {
    line-height: 59px;
  }

  .location-accordion .accordion-header button::before {
    background: url(../assets/images/overlay/button-overlay.png) no-repeat
      center center / cover;
  }

  .overview-overlay.overview-overlay-1 {
    width: 190px;
    height: 200px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-overlay.overview-overlay-2 {
    width: 110px;
    height: 240px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .amenities-overlay {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 200px;
    height: 400px;
  }

  .location-overlay {
    width: 150px;
    height: 369px;
    top: -230px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .gallery-overlay.gallery-overlay-1 {
    width: 100px;
    height: 165px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .gallery-overlay.gallery-overlay-2 {
    width: 135px;
    height: 335px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: -195px;
  }

  .contact-form {
    margin: 5rem 0 2rem 0;
  }

  .diff-overlay-txt .diff-overlay-title {
    margin: 0 0 0.8rem 0 !important;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: var(--light);
    text-align: center;
    font-size: 1.35vw;
  }

  .diff-overlay-txt .diff-overlay-subtitle {
    font-weight: 500;
    text-align: center;
    text-wrap: pretty;
    font-size: 1vw;
    color: var(--light);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .diff-overlay-txt.small .diff-overlay-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 1rem;
  }

  .diff-overlay-txt.small .diff-overlay-subtitle {
    font-size: 0.8rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .diff-overlay-txt.medium .diff-overlay-title {
    font-weight: 600;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2.5vw;
  }

  .diff-overlay-txt.medium .diff-overlay-subtitle {
    font-size: 0.8rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .FAQ-container {
    padding: 7rem 2rem 3rem 2rem;
  }

  .FAQ-overlay {
    width: 130px;
    height: 397px;
    bottom: 5%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .contact-form.custom-form {
    width: 80%;
  }

  .footer-overlay.footer-overlay-1 {
    width: 212px;
    height: 100%;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .footer-overlay.footer-overlay-2 {
    width: 160px;
    height: 415px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .diff-img.animate:hover .diff-overlay-txt {
    bottom: 0%;
  }

  .modal-overlay.modal-overlay-1 {
    display: none;
  }

  .diff-overlay-txt .diff-overlay-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3vw;
  }

  .diff-overlay-txt .diff-overlay-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2vw;
  }

  .modal-overlay.modal-overlay-2 {
    display: none;
  }

  .modal-close {
    top: 5%;
    right: 5%;
    width: 50px;
    height: 50px;
  }

  .amenities-txt {
    font-size: 2.5vw;
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
  }

  .gallery-nav {
    margin: 5rem 0 0 0;
  }

  .spec-nav .nav-pills {
    width: 60vw;
    transition: all 0.5s ease;
  }

  .overview-img {
    width: 100%;
    height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  section.main-banner {
    margin: 4.5rem 0 0 0;
  }

  .overview-img {
    width: 100%;
    height: 300px;
  }

  .section-heading .section-title h2 {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.75vw;
  }

  .section-heading .section-title.custom-fontsize h2 {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 5vw;
  }

  .section-heading.max-content {
    width: 100%;
  }

  .content-heading .content-title h2 {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3.35vw;
  }

  .diff-title h2 {
    font-size: 5.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-title h2.primary.custom-size {
    font-size: 3.65vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .logo-img {
    width: 170px;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .btnPrimary {
    font-size: 1.15rem;
    padding: 0.25rem 1.5rem;
    line-height: 35px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-accordion .accordion-header button::before {
    background: url(../assets/images/overlay/button-overlay.png) no-repeat
      center center / contain;
  }

  .custom-nav .nav-pills button {
    font-size: 1rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-title h2.custom-size {
    font-size: 3.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-overlay.overview-overlay-1 {
    width: 120px;
    height: 140px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-overlay.overview-overlay-2 {
    width: 96px;
    height: 190px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: -190px;
  }

  .diff-overlay-txt {
    opacity: 1;
    bottom: 0;
    -webkit-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
    transition: all 1.2s ease;
    z-index: 2;
  }

  .diff-img.animate::before {
    bottom: 0%;
    z-index: 1;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000 100%);
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(0, 0, 0, 0)),
      to(#000)
    );
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  }

  .diff-overlay-txt.medium .diff-overlay-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 1.15rem;
  }

  .diff-overlay-txt .diff-overlay-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3.65vw;
  }

  .diff-overlay-txt .diff-overlay-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2.25vw;
  }

  .therapy-overlay.therapy-overlay-1 {
    width: 130px;
    height: 303px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .custom-nav .nav-pills {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    gap: 1.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }

  .therapy-overlay.therapy-overlay-2 {
    width: 115px;
    height: 355px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .amens-navs-tab .nav-pills .nav-link {
    font-size: 1.15rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .FAQ-container {
    padding: 5.5rem 1rem 3rem 1rem;
  }

  .FAQ-main-content {
    margin: 4rem 0 0 0;
  }

  .contact-form.custom-form {
    width: 90%;
  }

  .footer-overlay.footer-overlay-1 {
    display: none;
  }

  .primary-button.submit .btnPrimary {
    width: 120px;
    height: 50px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .brochure-content {
    padding: 4rem 1rem 0rem 1rem;
  }

  .mobile-navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0 0 0;
  }

  .amenities-txt {
    font-size: 3vw;
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
  }

  .amenities-container {
    padding: 3rem 1rem 2.5rem 1rem;
  }

  .amenities-overlay {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 140px;
    height: 290px;
  }

  .three-nav .nav-pills .nav-item {
    display: none;
  }

  .three-nav .nav-pills .nav-item:has(.nav-link.active) {
    display: block;
  }

  .diff-overlay-txt.small .diff-overlay-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 0.9rem;
  }

  .diff-overlay-txt.small .diff-overlay-subtitle {
    font-size: 0.785rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .diff-overlay-txt.medium .diff-overlay-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 1rem;
  }

  .spec-nav .nav-pills {
    width: 100%;
    transition: all 0.5s ease;
  }
}

@media only screen and (max-width: 576px) {
  section.main-banner {
    margin: 4.25rem 0 0 0;
  }

  .navbar-container {
    padding: 1rem;
    gap: 1rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .logo {
    gap: 0.75rem;
  }

  .logo-img {
    width: 150px;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .btnPrimary {
    font-size: 0.85rem;
    padding: 0.2rem 0.85rem;
    line-height: 30px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .btnPrimary.submit {
    font-size: 1rem;
    padding: 0.25rem 2rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-title h2 {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 5.25vw;
  }

  .section-heading .section-title.custom-fontsize h2 {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 5.75vw;
  }

  .content-heading .content-title h2 {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.75vw;
  }

  .section-desc {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 0.9rem;
    text-align: justify;
    text-wrap: pretty;
  }

  section.section-overview {
    padding: 4rem 0;
  }

  .custom-nav .nav-pills button {
    font-size: 0.9rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .content-desc {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 1.1rem;
  }

  .diff-title h2 {
    font-size: 6.85vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .diff-overlay-txt .diff-overlay-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 5vw;
  }

  .diff-overlay-txt .diff-overlay-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2.75vw;
  }

  .diff-overlay-txt.small .diff-overlay-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 0.85rem;
  }

  .diff-overlay-txt.small .diff-overlay-subtitle {
    font-size: 0.75rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-title h2.primary.custom-size {
    font-size: 4.5vw;
    text-wrap: pretty;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-accordion .accordion-header button {
    font-size: 1rem;
    line-height: 43px;
  }

  .location-accordion .accordion-header button::before {
    background: url(../assets/images/overlay/button-overlay.png) no-repeat
      center center / cover;
  }

  .section-heading .section-title h2.custom-size {
    font-size: 4.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .sangama-overlay.sangama-overlay-1 {
    width: 73px;
    height: 170px;
    top: -125px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .sangama-overlay.sangama-overlay-2 {
    width: 60px;
    height: 110px;
    top: -70px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .gallery-overlay.gallery-overlay-1 {
    width: 80px;
    height: 135px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .gallery-overlay.gallery-overlay-2 {
    width: 100px;
    height: 240px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: -150px;
  }

  .amens-navs-tab .nav-pills .nav-link {
    font-size: 1rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .amenities-container {
    padding: 3rem 1rem 1rem 1rem;
  }

  .footer-overlay.footer-overlay-2 {
    width: 100px;
    height: 220px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .contact-form.custom-form {
    width: 100%;
  }

  .modal-close {
    top: 3%;
    right: 3%;
    width: 40px;
    height: 40px;
  }

  .enquire-div {
    display: none;
  }

  .mob.enquire-div {
    display: block;
  }

  .toggle-up.show {
    -webkit-transform: translateY(-48px);
    -ms-transform: translateY(-48px);
    transform: translateY(-48px);
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  span.text-3 {
    display: none;
  }

  span.no-3 {
    display: inline;
  }

  .location-accordion-content .location-content .location-head .location-title {
    font-size: 0.9rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-accordion-content .location-content .location-dist {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 0.9rem;
  }

  .overview-overlay.overview-overlay-1 {
    display: none;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .amenities-txt {
    font-size: 4.5vw;
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
  }

  .gallery-nav .nav-pills {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    gap: 1rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }

  .gallery-nav .nav-pills .nav-item {
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }

  .gallery-nav .nav-pills .nav-link {
    font-size: 1rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .about-txt {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 1rem;
    text-align: center;
    text-wrap: balance;
  }

  .igbc-img {
    width: 8rem;
    max-width: 100%;
    margin: auto;
  }

  .about-img {
    width: 8rem;
    max-width: 100%;
    margin: auto;
  }

  footer {
    padding: 3.5rem 0rem 4rem 0;
  }

  .spec-nav .nav-pills .nav-link {
    font-size: 1rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .document-content .document-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 1rem;
  }

  .document-img {
    width: 60px;
    height: 60px;
  }
}

@media only screen and (max-width: 550px) {
  .location-accordion .accordion-header button::before {
    background: url(../assets/images/overlay/button-overlay.png) no-repeat
      center center / contain;
  }

  .location-accordion .accordion-header button {
    line-height: 43px;
  }
}

@media only screen and (max-width: 470px) {
  .location-accordion .accordion-header button::before {
    background: url(../assets/images/overlay/button-overlay.png) no-repeat
      center center / contain;
    width: 98%;
    z-index: 1;
    height: 98%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .location-accordion .accordion-header button {
    line-height: 35px;
  }
}

@media only screen and (max-width: 400px) {
  .custom-nav .nav-pills {
    gap: 0.75rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }

  .gallery-nav .nav-pills .nav-link {
    font-size: 0.9rem;
    text-wrap: nowrap;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .diff-overlay-txt {
    padding: 0 0.5rem;
    -webkit-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
    transition: all 1.2s ease;
  }

  .diff-overlay-txt.small .diff-overlay-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3.25vw;
  }

  .diff-overlay-txt.small .diff-overlay-subtitle {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .spec-nav .nav-pills .nav-link {
    font-size: 0.95rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media only screen and (max-width: 350px) {
  .gallery-nav .nav-pills .nav-link {
    font-size: 0.85rem;
    text-wrap: nowrap;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .spec-nav .nav-pills .nav-link {
    font-size: 0.85rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media only screen and (max-width: 320px) {
  .hide-in-sm {
    display: none;
  }

  section.main-banner {
    margin: 3.5rem 0 0 0;
  }

  .gallery-nav .nav-pills .nav-link {
    font-size: 0.85rem;
    text-wrap: nowrap;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.blurrr {
  filter: blur(3px);
}
