@font-face {
  font-family: "Athelas-Regular";
  src: url("/themes/kso/assets/fonts/Athelas-Regular.ttf");
}
@font-face {
  font-family: "IBMPlexSansArabic-Medium";
  src: url("/themes/kso/assets/fonts/ar/IBMPlexSansArabic-Medium.ttf");
}
@font-face {
  font-family: "Athelas-Bold";
  src: url("/themes/kso/assets/fonts/Athelas-Bold.ttf");
}
@font-face {
  font-family: "Source-Serif-4";
  src: url("/themes/kso/assets/fonts/en/SourceSerif4-VariableFont.ttf");
}
@font-face {
  font-family: "Source-Sans-3";
  src: url("/themes/kso/assets/fonts/en/SourceSans3-VariableFont.ttf");
}
@font-face {
  font-family: "29LTAzaharDisplayAL-Regular";
  src: url("/themes/kso/assets/fonts/ar/29LTAzaharDisplayAL-Regular.ttf");
}
p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

input:focus, select:focus, textarea:focus {
  border: 1px solid #B9AC8A !important;
}

p, li, label, a {
  font-size: 18px;
}

.fs-72 {
  font-size: 72px;
}

.fs-56 {
  font-size: 56px;
}

.fs-48 {
  font-size: 48px;
}

.fs-64 {
  font-size: 64px;
}

.fs-32 {
  font-size: 32px;
}

.fs-24 {
  font-size: 24px;
}

.fs-22 {
  font-size: 22px;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.italic {
  font-style: italic;
}

.inter {
  font-family: Inter;
}

.white-space-nowrap {
  white-space: nowrap;
}

.animate__animated {
  animation-fill-mode: backwards;
}

body::-webkit-scrollbar {
  width: 12px;
}

.fa-solid {
  font-family: "Font Awesome 6 Free" !important;
}

body::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: #969696;
  border-radius: 3px;
}

.clamp-to-three {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limits the text to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden; /* Hides the overflowed text */
  text-overflow: ellipsis; /* Adds the dots (...) */
}

.clamp-to-two {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limits the text to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden; /* Hides the overflowed text */
  text-overflow: ellipsis; /* Adds the dots (...) */
}

.truncate-text {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit the text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: justify;
  line-height: 1.5;
}

.text-d-gray {
  color: #606060 !important;
}

select:focus, select:focus-visible {
  box-shadow: none !important;
}

.form-control::placeholder {
  font-size: 16px;
}

.dropdown-toggle::after {
  content: none;
}

button.btn-close {
  filter: brightness(1);
}

.mx-25 {
  max-width: 25%;
}

.mx-40 {
  max-width: 40%;
}

.mx-50 {
  max-width: 50%;
}

.mx-55 {
  max-width: 55%;
}

.mx-60 {
  max-width: 60%;
}

.mx-100 {
  max-width: 100%;
}

.mx-75 {
  max-width: 75%;
}

.mx-80 {
  max-width: 80%;
}

.px-100 {
  padding: 0 100px;
}

.py-100 {
  padding: 100px 0;
}

.break-para {
  word-break: break-all;
}

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

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

.btn:active, .btn.show {
  background-color: transparent !important;
  color: transparent !important;
}

.coworking-toggle.show {
  color: white !important;
}

.btn:focus-visible {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background-color: transparent !important;
}

.btn:focus, .accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

.accordion-item {
  border: none;
}

.card, .card-header {
  border: none;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: #F58F2D;
}

body {
  --sb-track-color: #ededed;
  --sb-thumb-color: #f58f2d;
  --sb-size: 16px;
}

.nav-pills::-webkit-scrollbar {
  width: var(--sb-size);
}

.nav-pills::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

.nav-pills::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
}

.nav-pills .nav-link {
  text-align: left;
  color: black;
  margin-block-end: 25px;
  max-width: fit-content;
}

.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50px);
  display: inline-block;
}

.lead {
  font-size: 13px;
}

.loader img {
  display: inline-block;
  width: 150px;
  -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
  animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader img {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
  0%, 100% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ballPulseDouble {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.form-control:focus {
  box-shadow: none !important;
}

.custom-checkbox .form-check-input {
  width: 24px;
  height: 24px;
  border-radius: 4px; /* Makes the checkbox rounded */
  border: 1px solid #EDEDED;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
  margin: 0;
  transition: background-color 0.2s ease-in-out;
}

.custom-checkbox .form-check-input:checked {
  background-color: #878787; /* Color for the check when checked */
  border-color: #878787;
}

.custom-checkbox .form-check-input:checked::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
}

.form-check-input:focus {
  box-shadow: none;
}

.range-slider {
  text-align: center;
  position: relative;
  height: 6em;
}

.range-slider svg,
.range-slider input[type=range] {
  position: absolute;
  left: 0;
  bottom: 0;
}

input[type=number] {
  border: 1px solid #ddd;
  text-align: center;
  font-size: 1.6em;
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number]:invalid,
input[type=number]:out-of-range {
  border: 2px solid #ff6347;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #d0d0d0;
}

input[type=range]:focus::-ms-fill-lower {
  background: #C07629;
}

input[type=range]:focus::-ms-fill-upper {
  background: #C07629;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: #d0d0d0;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

input[type=range]::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #A86825;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #A86825;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: #d0d0d0;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

input[type=range]::-moz-range-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #A86825;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #A86825;
  cursor: pointer;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-ms-fill-lower,
input[type=range]::-ms-fill-upper {
  background: #A86825;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

input[type=range]::-ms-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #A86825;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #A86825;
  cursor: pointer;
}

.range-result {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  color: #606060;
}
.range-result input {
  background: transparent;
  border: none;
  color: #606060;
}
.range-result input:focus-visible {
  outline: none;
}

.auth-container {
  min-height: 100vh;
}

.login-bg {
  background-image: url("/themes/kso/assets/images/auth-login.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}

.signup-bg {
  background-image: url("/themes/kso/assets/images/auth-signup.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}

.auth-link {
  color: #F58F2D;
  font-weight: 700;
}

.auth-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  background-color: #F58F2D;
  width: 100%;
}
.auth-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}
.auth-btn:hover {
  background-color: transparent;
  border: 1px solid #F58F2D;
  color: #F58F2D;
}

.outlined-btn {
  background-color: transparent;
  border-radius: 50px;
  color: black;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid #D6D6D6;
  width: 100%;
  color: #F58F2D;
}

.toggle-password {
  position: absolute;
  top: 53px;
  right: 10px;
}
.toggle-password:active i {
  color: black;
}
.toggle-password:active i:focus-visible {
  outline: none !important;
}

.auth-form-container form > *:not(:last-child) {
  margin-block-end: 20px;
}
.auth-form-container .form-control {
  height: 56px;
  border: 1px solid rgb(214, 214, 214);
}

.auth-left {
  position: relative;
  padding: 0 50px;
}

.otp-container {
  display: flex;
  gap: 10px;
}
.otp-container input {
  width: 60px;
  text-align: center;
  height: 60px;
  font-size: 1rem;
  text-align: center;
  border: 1px solid rgb(208, 213, 221);
  border-radius: 8px;
}
.otp-container input:focus {
  border-color: rgb(208, 213, 221);
  outline: none;
}

.auth-dropdown {
  top: 50px !important;
  right: 20px !important;
}

.otp-btn {
  background-color: #F58F2D;
  color: white;
  border-radius: 6px;
  border: none;
}

.auth-form-container {
  padding-top: 100px;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 70px;
}
.auth-form-container h1 {
  font-family: "Source-Serif-4";
}

.auth-logo {
  position: absolute;
  top: 2%;
}

body {
  font-family: "Source-Sans-3";
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  background: linear-gradient(rgba(0, 0, 0, 0.5));
}

.dir-rtl {
  direction: rtl !important;
}

.kso-main .kso-offcanvas,
.kso-nav .kso-offcanvas {
  background-color: black !important;
  backdrop-filter: none !important;
  max-width: 300px !important;
}

.kso-main {
  display: flex;
  overflow: hidden;
  flex-direction: column;
}

a {
  text-decoration: none;
}

.kso-index {
  background-image: url("/themes/kso/assets/images/kso-home-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
}

nav {
  padding: 15px 25px;
}

.ko-logo {
  max-width: 35px;
}

.nav-right-items {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-right-items button {
  padding: 0;
}
.nav-right-items img {
  max-width: 22px;
}
.nav-right-items .dropdown-menu {
  background-color: rgb(80, 80, 80);
  text-align: right;
  padding: 10px;
  z-index: 1000;
}
.nav-right-items .dropdown-menu > * {
  margin-block-end: 10px;
}
.nav-right-items .dropdown-menu .dropdown-item {
  color: white;
}
.nav-right-items .dropdown-menu .dropdown-item:hover {
  color: black;
}
.nav-right-items .dropdown-menu .dropdown-item:active {
  background-color: white;
}

.offcanvas {
  width: 100% !important;
  background-clip: border-box;
  height: 100vh;
  max-width: 100% !important;
  backdrop-filter: blur(20px);
  background-color: transparent !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.offcanvas-body .navbar-nav {
  align-items: flex-start;
}

.offcanvas-scrolled {
  background-color: white !important;
}
.offcanvas-scrolled .nav-link {
  color: #606060 !important;
}
.offcanvas-scrolled .nav-link.active {
  color: black;
}
.offcanvas-scrolled i {
  color: black !important;
}
.offcanvas-scrolled img {
  filter: brightness(0);
}
.offcanvas-scrolled .offcanvas-divider {
  display: inline-block;
  height: 2px;
  width: 327px;
  background-image: linear-gradient(to right, rgba(16, 16, 16, 0), #101010, rgba(16, 16, 16, 0));
}

.offcanvas-divider {
  display: inline-block;
  height: 2px;
  width: 327px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff, rgba(255, 255, 255, 0));
}

.navbar-expand-lg {
  backdrop-filter: blur(150px);
  background-color: rgba(255, 255, 255, 0.1019607843) !important;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar-expand-lg i {
  color: white;
}
.navbar-expand-lg a {
  color: white;
  font-size: 18px;
}
.navbar-expand-lg .nav-link.active {
  background-color: black;
  color: white;
}
.navbar-expand-lg .nav-link {
  border-radius: 50px;
}
.navbar-expand-lg .nav-link:hover {
  background-color: #F58F2D !important;
  color: white;
}
.navbar-expand-lg .navbar-nav {
  gap: 10px;
  white-space: nowrap;
}

.navbar-expand-lg .nav-link {
  padding: 8px 20px 9px 20px !important;
  font-family: "Source-Serif-4";
}

.event-nav .nav-link {
  padding: 8px 20px;
}
.event-nav .nav-link:hover {
  background-color: #F58F2D !important;
  color: white;
}

/* Styles when scrolled */
.scrolled {
  background-color: white !important;
  color: black !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.scrolled i {
  color: black !important;
  /* Icon color change */
}

.navbar-toggler {
  border: none;
}
.navbar-toggler img {
  max-width: 40px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.splitter {
  display: inline-block;
  height: 27px;
  width: 2px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff, rgba(255, 255, 255, 0));
}

.logo-left {
  max-width: 100px;
}

.logo-right {
  max-width: 55%;
}

.offcanvas {
  max-width: 358px;
  background-color: #1F1F1D;
  color: white;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.off-canvas-btn img {
  max-width: 32px;
}
.off-canvas-btn:active {
  border: none;
}

.offcanvas-body .nav-link {
  color: white;
  font-size: 24px;
}
.offcanvas-body .nav-link:hover {
  color: #F58F2D;
}
.offcanvas-body .active {
  color: #F58F2D;
}

.offcanvasSideActive {
  color: #F58F2D !important;
}

.offcanvas-footer {
  text-align: left;
  padding: 40px 25px;
}
.offcanvas-footer a {
  text-decoration: underline;
  font-size: 24px;
}

.kso-main-inner {
  flex: 1;
}

.kso-main-footer {
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 20px;
  justify-content: space-between;
}

.kso-main-cards {
  padding-top: 50px;
  padding-inline: 25px;
}
.kso-main-cards > div {
  display: flex;
  justify-content: center;
  margin-block-end: 20px;
}
.kso-main-cards .card {
  position: relative;
  max-height: 626px;
  max-width: 443px;
  border-radius: 20px;
  background-color: transparent;
  transition: transform 0.2s ease;
}
.kso-main-cards .card .card-body {
  position: absolute;
  text-align: center;
  bottom: 10px;
  right: 0;
  left: 0;
  color: white;
}
.kso-main-cards .card img {
  border-radius: 25px;
}

footer {
  padding: 15px 25px;
  color: white;
}

.new-fs-background {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%), url("/themes/kso/assets/images/fs-hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.event-header-image {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%), url("/themes/kso/assets/images/event-header-image.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.new-cowork-background {
  background-image: url("/themes/kso/assets/images/cowor-fs.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.59);
  background-blend-mode: multiply;
}
.new-cowork-background .booking-event-main-heading {
  padding: 60px 0;
}

.booking-landing-header {
  background-image: url("/themes/kso/assets/images/booking-hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.59);
  background-blend-mode: multiply;
}

.shop-landing-header {
  background-image: url("/themes/kso/assets/images/shop-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.59);
  background-blend-mode: multiply;
}
.shop-landing-header h1 {
  font-size: 96px !important;
  padding-top: 150px;
  padding-bottom: 200px;
}

.fs-header-main-content {
  color: white;
}
.fs-header-main-content h1 {
  font-family: "Source-Serif-4";
  font-weight: 700;
  font-size: 55px !important;
}
.fs-header-main-content .header-explore {
  background-color: rgb(192, 118, 41);
  color: white;
  padding: 20px 32px;
  border-radius: 9999px;
  border: none;
  outline: none;
  margin: 48px 0px 0px 0px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.fs-header-main-content .fs-index-title {
  font-size: 70px !important;
}

.fs-header-bottom {
  padding-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fs-header-bottom p {
  font-size: 18px;
  max-width: 40%;
  font-weight: 400;
  line-height: 27px;
  color: rgb(237, 237, 237);
  margin-bottom: 56px;
}
.fs-header-bottom button {
  background-color: #C07629 !important;
  color: white !important;
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  white-space: nowrap;
}

.feature-section {
  background-color: #D1C7AC;
  padding: 100px 0;
}
.feature-section h1 {
  font-weight: 400;
  margin-bottom: 12px;
}
.feature-section p {
  font-size: 18px;
  font-weight: 400;
  color: #1d1d21;
}
.feature-section .card {
  max-width: 100%;
  background: rgba(0, 0, 0, 0.2901960784);
  background-blend-mode: multiply;
  min-height: 644px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  width: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 10;
  margin: 25px 0;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08);
  color: white;
  justify-content: flex-end;
}
.feature-section .card i {
  position: absolute;
  right: 0;
  top: 0;
  padding: 15px;
  font-size: 1.4rem;
  line-height: 3.2rem;
}
.feature-section .card .card-text {
  padding: 20px;
}
.feature-section .card .card-text h1 {
  font-size: 40px;
}
.feature-section .card .card-img {
  transform: translate(90px, -10px);
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease-out;
}
.feature-section .card-date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-section .card-date span {
  font-size: 20px;
}
.feature-section .card-date img {
  max-width: 30px;
}
.feature-section .btn-book {
  width: 100%;
  padding: 15px 0;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50px;
  color: white;
  margin-top: 20px;
  transition: ease 0.3s;
}
.feature-section .btn-book:hover {
  background-color: white;
  color: black;
}
.feature-section .card-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow: auto;
  padding-right: 50px;
  scroll-behavior: smooth;
  padding-left: 100px;
}
.feature-section .card-content::-webkit-scrollbar {
  height: 0px;
}
.feature-section .card-content:after {
  content: "";
  display: block;
  min-width: 20px;
  height: 100px;
  position: relative;
}
.feature-section .btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0px;
  outline: none;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  background-color: black;
  color: white;
}
.feature-section .btn:hover {
  box-shadow: 0px 17px 35px 0px rgba(0, 0, 0, 0.07);
}
.feature-section .btn i {
  font-size: 1.2rem;
}
.feature-section .slider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.card .event {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: white;
  padding: 0px 30px;
  border-radius: 50px;
  color: black !important;
  font-size: 16px !important;
  z-index: 1;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .event p {
  margin: 0;
}

.title-header {
  padding: 0 100px;
}
.title-header h1 {
  font-size: 56px;
}
.title-header p {
  font-size: 20px;
  color: rgb(96, 96, 96);
  font-weight: 400;
  line-height: 30px;
  margin: 12px 0px;
}

.feature-btn {
  border-radius: 50px;
  padding: 20px 32px;
  font-size: 20px;
  margin: 30px 0;
  line-height: 24px;
  white-space: nowrap;
  max-width: 283px;
  background-color: rgb(255, 255, 255);
  color: rgb(16, 16, 16);
  border: none;
}

.explore-section {
  background-color: #EDFAFF;
}
.explore-section .title-header h1 {
  font-size: 64px;
  color: rgb(29, 29, 33);
  line-height: 76px;
}
.explore-section .title-header p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: rgb(56, 56, 56);
}
.explore-section .explore-content h4 {
  font-size: 24px;
  color: rgb(29, 29, 33);
}
.explore-section .explore-content p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(56, 56, 56);
  padding-left: 35px;
}

.explore-content img {
  width: 36px;
  height: 36px;
}
.product-dropdown {
  border: none;
  max-width: 120px;
  font-size: 20px;
}

.product-tab-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-tab-btns button {
  border: 1px solid black;
  background-color: transparent;
  border-radius: 50px;
  padding: 5px 20px;
  font-size: 24px;
}
.product-tab-btns button:hover {
  background-color: #F58F2D;
  color: white;
}

.sort-heading {
  white-space: nowrap;
}

.pr-varients {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pr-varients button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  padding: 0;
}
.pr-varients button:nth-child(1) {
  background-color: #9B937B;
}
.pr-varients button:nth-child(2) {
  background-color: #D46210;
}
.pr-varients button:nth-child(3) {
  background-color: #32688D;
}
.pr-varients .pr-varient-active {
  outline: 5px solid rgba(128, 128, 128, 0.1294117647);
}

.product-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-img img {
  transition: ease 0.3s;
  min-height: 491px;
  object-fit: cover;
}

.view-pr-btn {
  background-color: #C07629;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
  position: absolute;
  opacity: 0;
}
.view-pr-btn:hover {
  background-color: #C07629;
  color: white;
}

.pr-btn-active {
  background-color: #F58F2D !important;
  color: white;
  border: none !important;
}

.product-img:hover .view-pr-btn {
  opacity: 1;
  transition: ease 0.3s;
}

.product-img:hover img {
  border-radius: 20px;
  transition: ease 0.3s;
}

.product-section .title-header h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 76px;
  color: rgb(29, 29, 33);
}
.product-section .title-header p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: rgb(96, 96, 96);
}
.product-section .card {
  background-color: white;
  margin-bottom: 20px;
  max-width: 411px;
}
.product-section .card h5 {
  font-size: 24px;
  font-weight: 700;
  color: rgb(29, 29, 33);
}

.explore-more-btn {
  text-align: center;
  padding-top: 50px;
}
.explore-more-btn button {
  background-color: #C07629;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
}
.explore-more-btn button:hover {
  background-color: #C07629;
  color: white;
}

.fs-land-footer-foodsphere {
  background-image: url("/themes/kso/assets/images/footer-bg-img.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(4, 4, 4, 0.5);
  background-blend-mode: multiply;
  width: 100%;
  z-index: 1;
  position: relative;
}
.fs-land-footer-foodsphere .title-header {
  padding: 0px 0px;
}
.fs-land-footer-foodsphere .title-header h1 {
  font-size: 56px;
  color: rgb(255, 255, 255);
  font-weight: 400;
  line-height: 56px;
  margin-top: 56px;
  font-family: "9LTAzaharDisplayAL-Regular";
}
.fs-land-footer-foodsphere .title-header p {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: rgb(250, 250, 250);
  margin: 24px 0px 32px 0px;
}

.fs-land-footer {
  background-color: rgb(237, 250, 255);
  color: rgba(4, 4, 4, 0.5);
  width: 100%;
}
.fs-land-footer .title-header {
  padding: 0px 262px;
}
.fs-land-footer .title-header h1 {
  font-size: 56px;
  color: rgb(29, 29, 33);
  line-height: 56px;
  margin-top: 56px;
}
.fs-land-footer .title-header p {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: rgb(29, 29, 33);
  margin: 24px 0px 32px 0px;
}

.footer-form {
  margin-top: 20px;
}
.footer-form input {
  padding: 16px 24px 16px 24px;
  max-width: 690px;
  margin: auto;
}
.footer-form button {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  max-width: 690px;
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: #F58F2D;
}
.footer-form button:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}
.footer-form button:hover {
  color: #F58F2D;
}

.form-style input {
  margin: 0;
}

.bottom-footer {
  background-color: black;
  color: white;
}

.kso-about-header {
  background-image: url("/themes/kso/assets/images/kso-about-hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(4, 4, 4, 0.4);
  background-blend-mode: multiply;
  background-position: center;
}

.kso-about-header-content {
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
  min-height: 800px;
  flex-direction: column;
  text-align: center;
  padding: 0px 20px;
}
.kso-about-header-content p {
  font-size: 24px;
}
.kso-about-header-content h1 {
  font-size: 80px;
}

.mission-section {
  margin: 70px 60px 70px 60px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #f58f2d;
  border-bottom: 1px solid #f58f2d;
}
.mission-section h5 {
  text-align: center;
  font-size: 20px;
  line-height: 35px !important;
}

.mission-section-new {
  margin: 70px 60px 0px 60px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #f58f2d;
}
.mission-section-new h5 {
  text-align: center;
  font-size: 20px;
  line-height: 35px !important;
}

.ex-right-all h3 {
  font-weight: 700;
}
.ex-right-all img {
  width: 380px;
  height: 260px;
  border-radius: 16px;
  object-fit: cover;
}

.core-values-section {
  padding: 70px 0;
  background-color: rgb(236, 249, 255);
}
.core-values-section .col div {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-section {
  margin: 70px 60px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #F58F2D;
  border-bottom: 1px solid #F58F2D;
}
.location-section h1 b {
  color: rgb(31, 31, 29);
}
.location-section p {
  padding-top: 20px;
  color: rgb(29, 29, 33);
}

.offer-section {
  background-color: #f4f1ea;
  text-align: center;
  padding: 70px 0;
  position: relative;
}
.offer-section p {
  padding: 30px 0;
}
.offer-section .bottom-heading {
  padding: 40px 0;
}
.offer-section .offer-btm-img {
  position: relative;
}
.offer-section img {
  max-width: 500px;
  border-radius: 16px;
}

.target-section {
  margin: 0px 60px 70px 60px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #F58F2D;
  border-bottom: 1px solid #F58F2D;
}
.target-section p {
  font-size: 24px;
  padding-top: 20px;
}

.innovation-section {
  padding: 100px 0;
  text-align: center;
  background-color: rgb(244, 239, 255);
}
.innovation-section p {
  font-size: 18px;
}

.culture-section {
  margin: 70px 60px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #F58F2D;
  border-bottom: 1px solid #F58F2D;
}
.culture-section p {
  font-size: 24px;
  padding-top: 20px;
}

.relation-section {
  background-color: #ecf9ff;
  padding: 100px 0;
  text-align: center;
}
.relation-section h1 b {
  color: rgb(31, 31, 29);
}
.relation-section p {
  padding-top: 20px;
  color: rgb(29, 29, 33);
}

.relation-section h5,
.mission-section h5,
.location-section h5,
.offer-section h5,
.culture-section h5,
.target-section h5,
.core-values-section h5,
.innovation-section h5 {
  line-height: 35px;
}

.kso-about-footer {
  background-image: url("/themes/kso/assets/images/updated-footer-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 175px 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.46);
  background-blend-mode: multiply;
  background-position: center;
}
.kso-about-footer h1 {
  font-size: 60px;
}

.fs-contact-header {
  min-height: 512px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dimensions-container .nav-pills {
  height: 600px;
  flex-wrap: nowrap;
  overflow-y: scroll;
}
.dimensions-container .tab-pane {
  text-align: center;
}
.dimensions-container .tab-pane img {
  max-width: 100%;
  height: 600px;
  object-fit: contain;
}

.contact-form-card {
  border-radius: 50px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  max-width: 1000px;
  margin: auto;
}
.contact-form-card > div:nth-child(1) {
  padding: 50px;
}
.contact-form-card .contact-img {
  max-width: 100%;
  width: 100%;
  height: 1304px;
  object-fit: cover;
  border-radius: 50px 0 0 50px;
}

.contact-text h1 {
  font-size: 56px;
  color: rgb(29, 29, 33);
  line-height: 67px;
}
.contact-text p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(29, 29, 33);
  padding-top: 16px;
}

.contact-details {
  padding: 42px 0;
}
.contact-details p {
  color: #606060;
}

.contact-form input,
.contact-form select {
  height: 56px;
}
.contact-form button {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  max-width: 200px;
  width: 100%;
}
.contact-form button:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}
.contact-form form div {
  margin-block-start: 25px;
}

.social-btns {
  padding-top: 70px;
}
.social-btns button {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  font-size: 16px;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-btns button:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}
.social-btns h3 {
  color: #82694f;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.price-badge {
  background-image: url("/themes/kso/assets/images/badge-price.svg");
  position: absolute;
  right: 20px;
  top: 20px;
  width: 72px;
  color: white;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.filter-container {
  background-color: #E9D7A5;
}
.filter-container input,
.filter-container select {
  height: 48px;
}
.filter-container input::placeholder,
.filter-container select::placeholder {
  color: black;
}

.site-map-container {
  display: flex;
  position: relative;
  justify-content: center;
  max-width: 100%;
  width: 100%;
}
.site-map-container .map-left-label {
  position: absolute;
  max-width: 620px;
  left: 80px;
}
.site-map-container .map-right-label {
  position: absolute;
  max-width: 280px;
  right: 55px;
}
.site-map-container .map-right {
  padding-left: 30px;
  font-size: 24px;
  padding-top: 70px;
}
.site-map-container .map-left {
  padding-top: 150px;
  font-size: 20px;
}
.site-map-container .int-site-map {
  width: 100%;
  height: auto;
}

.map-title {
  font-size: 56px;
  padding: 30px 0;
  text-align: center;
}

.distinct-map-section {
  position: relative;
  text-align: center;
  width: 100%;
}
.distinct-map-section h1 {
  font-size: 56px;
  line-height: 67px;
  color: rgb(29, 29, 33);
}

.main-map {
  width: 100%;
  /* The main image scales with the container */
  max-width: 700px;
  /* Limit the maximum size */
  height: auto;
  /* Maintain aspect ratio */
}

.bio-map,
.oasis-map,
.apiary-map {
  position: absolute;
  max-width: 100%;
  /* Ensure they scale relative to the parent container */
}

.bio-map {
  top: 10%;
  /* Positioning based on percentages */
  left: 15%;
  width: 20%;
  /* Size relative to the main map */
}

.oasis-map {
  top: 50%;
  left: 30%;
  width: 25%;
}

.apiary-map {
  top: 70%;
  left: 60%;
  width: 20%;
}

.dist-map-title {
  color: #B9AC8A;
  padding: 50px 0;
}
.dist-map-title h3 {
  font-size: 40px;
}
.dist-map-title h5 {
  font-size: 32px;
  padding-top: 10px;
}

.dist-sec-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #B9AC8A;
}
.dist-sec-bottom > div:nth-child(1) {
  text-align: left;
}
.dist-sec-bottom > div:nth-child(2) {
  text-align: end;
}
.dist-sec-bottom h2 {
  font-size: 40px;
}
.dist-sec-bottom h3 {
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  padding-top: 10px;
}

.int-pin-btn {
  background-color: #F58F2D;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  max-width: 100%;
  outline: 5px solid rgba(245, 143, 45, 0.2);
}
.int-pin-btn:hover {
  background-color: #df8229;
}

.bio-pin {
  left: 72%;
  top: 25%;
}

.cw-pin {
  top: 33%;
  left: 59%;
}

.booking-fs-section {
  background-color: white;
}
.booking-fs-section h1 {
  font-size: 56px;
}
.booking-fs-section p {
  font-size: 18px;
  font-weight: 400;
  color: rgb(96, 96, 96);
}
.booking-fs-section .card {
  background-image: url("/themes/kso/assets/images/f-card-1.jpg");
  min-height: 644px;
  width: 100%;
  margin: 25px 0;
  border-radius: 30px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.08);
  color: white;
  background-color: rgba(0, 0, 0, 0.5607843137);
  background-blend-mode: multiply;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  justify-content: flex-end;
}
.booking-fs-section .card .event {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: white;
  padding: 10px 30px;
  border-radius: 50px;
  color: black !important;
  font-size: 16px !important;
}
.booking-fs-section .card .event p {
  margin: 0;
}
.booking-fs-section .card i {
  position: absolute;
  right: 0;
  top: 0;
  padding: 15px;
  font-size: 1.4rem;
  line-height: 3.2rem;
}
.booking-fs-section .card .card-text {
  padding: 20px;
}
.booking-fs-section .card .card-text h1 {
  font-size: 40px;
}
.booking-fs-section .card .card-date,
.booking-fs-section .card .card-location {
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-fs-section .card .card-date span,
.booking-fs-section .card .card-location span {
  font-size: 20px;
}
.booking-fs-section .card .card-date img,
.booking-fs-section .card .card-location img {
  max-width: 30px;
}
.booking-fs-section .card .card-location img {
  max-width: 26px;
}
.booking-fs-section .card .btn-book {
  width: 100%;
  padding: 15px 0;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50px;
  color: white;
  margin-top: 20px;
  transition: ease 0.3s;
}
.booking-fs-section .card .btn-book:hover {
  background-color: white;
  color: black;
}
.booking-fs-section .card .card-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow: auto;
  padding-right: 50px;
  scroll-behavior: smooth;
  padding-left: 100px;
}
.booking-fs-section .card .price-badge {
  font-size: 12px;
}
.booking-fs-section .active-card {
  opacity: 1;
  transform: scale(1);
  position: relative !important;
}

.entry-ticket-section {
  background-color: #FAF2DE;
}

.entry-ticket-content .title-header h1 {
  font-size: 64px;
  line-height: 76px;
  color: rgb(29, 29, 33);
}
.entry-ticket-content .title-header p {
  margin: 16px 0px 24px 0px;
  font-size: 22px;
  line-height: 33px;
  color: rgb(96, 96, 96);
}
.entry-ticket-content .title-header h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: rgb(29, 29, 33);
}
.entry-ticket-content .btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  color: white;
  background-color: #F58F2D;
  text-transform: capitalize;
  margin-bottom: 72px;
}
.entry-ticket-content .btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}

.entry-process-section {
  background-color: #FFF7E2;
  position: relative;
  min-height: 700px;
}
.entry-process-section .title-header h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 56px;
  color: rgb(29, 29, 33);
}
.entry-process-section .title-header p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: rgb(96, 96, 96);
}

.process-card-container {
  position: absolute;
  right: 0;
  left: 0;
}
.process-card-container .card {
  max-width: 1062px;
  margin: auto;
  border-radius: 40px;
  padding: 48px 32px 48px 32px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: white;
}
.process-card-container .card h3 {
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 10px;
}
.process-card-container .card p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: rgb(29, 29, 33);
}
.process-card-container .card > *:not(:last-child) {
  margin-block-end: 50px;
}

.event-booking-section {
  padding-top: 500px;
}

.booking-landing-footer {
  background-color: #EDFAFF;
  color: black;
}

.frequently-asked-section .title-header h1 {
  font-size: 56px;
  line-height: 56px;
  color: rgb(29, 29, 33);
}
.frequently-asked-section .title-header p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: rgb(96, 96, 96);
}
.frequently-asked-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}
.frequently-asked-section .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: black;
}
.frequently-asked-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.frequently-asked-section .accordion-button::after {
  transition: all 0.5s;
}
.frequently-asked-section .accordion-item {
  border: none !important;
}
.frequently-asked-section .accordion-button,
.frequently-asked-section .accordion-item {
  border-radius: 40px !important;
}
.frequently-asked-section .accordion-button {
  font-size: 24px;
  font-weight: 700;
}
.frequently-asked-section .accordion {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 40px;
}

.booking-event-main-heading {
  min-height: 512px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.booking-event-main-heading h1 {
  color: white;
  font-weight: 700;
  font-size: 50px !important;
}
.booking-event-main-heading p {
  text-transform: none;
  font-size: 25px;
  line-height: 50px;
}
.booking-event-main-heading .header-explore {
  background-color: #F58F2D;
  color: white;
  padding: 20px 32px;
  border-radius: 9999px;
  border: none;
  outline: none;
  margin: 48px 0px 0px 0px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.event-booking-header h1 {
  font-size: 64px;
  text-align: center;
  padding: 50px 0;
}

.filter-accordian-left {
  background-color: #F5F5F5;
  border-radius: 24px;
  padding: 0px 10px 20px 10px;
  margin-bottom: 20px;
}
.filter-accordian-left label {
  color: #878787;
  white-space: nowrap;
  margin: 0;
}
.filter-accordian-left select {
  max-width: 125px;
  background-color: transparent;
  border: none;
  font-size: 18px;
}
.filter-accordian-left .form-select {
  --bs-form-select-bg-img: url("/themes/kso/assets/images/icons/sort-down-solid.svg");
}
.filter-accordian-left .Filtered-btn {
  font-size: 18px;
  color: white;
  background-color: rgb(245, 143, 45);
  padding: 10px 20px;
  border: none;
  outline: none;
  border-radius: 30px;
  width: 100%;
}

.filter-accord .accordion-body,
.filter-accord .accordion-button {
  background-color: #F5F5F5;
  box-shadow: none;
}
.filter-accord .accordion-button::after {
  background-image: url("/themes/kso/assets/images/icons/sort-down-solid.svg");
  background-size: contain;
}
.filter-accord .accordion-button {
  font-weight: 700;
  font-size: 24px;
  color: black;
}
.filter-accord .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-radius: 0px 0px 24px 24px;
}
.filter-accord .accordion-header {
  background-color: #f5f5f5;
}

.activity-type > *,
.category-list-container > * {
  margin-block-end: 10px;
}

.category-list-container {
  overflow: hidden;
  max-height: 140px;
  /* Adjust this based on the number of visible checkboxes */
  transition: 0.5s;
}

.category-list-container.expanded {
  max-height: 1000px;
  /* Adjust this to make sure all items are visible */
  transition: 0.5s;
}

.toggleHeight {
  color: #C07629;
  /* Matching 'See all' link style */
  cursor: pointer;
  display: block;
  margin-top: 10px;
}

.booking-navs .logo-left,
.booking-navs .logo-right {
  filter: brightness(0);
}
.booking-navs a {
  color: black;
}
.booking-navs .navbar-expand-lg .nav-link.active {
  background-color: #F58F2D;
}
.booking-navs .dropdown-toggle {
  color: black !important;
}
.booking-navs .dropdown-toggle img {
  filter: brightness(0);
}
.booking-navs .navbar-toggler {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: white;
}
.booking-navs .navbar-toggler i {
  color: black;
}
.booking-navs .fs-nav-right a {
  color: black !important;
  filter: brightness(0);
}
.booking-navs .fs-nav-right .dropdown-item:hover {
  filter: unset;
}

.event-booking-content > *,
.event-booking-content ul > * {
  margin-block-end: 15px;
}
.event-booking-content #ajax-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading-content #ajax-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.event-detail-section {
  background-color: #fffcf4;
  padding: 40px 0;
}

.event-locaton-section {
  padding: 40px 0;
}

.event-pakage-card {
  background-color: white;
  border: 1px solid #ededed;
  padding: 15px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.event-pakage-card img {
  width: 100px;
  height: 100px;
}
.event-pakage-card p {
  font-size: 16px;
}
.event-pakage-card .price {
  color: #F58F2D;
  font-weight: 700;
}
.event-pakage-card > div > * {
  margin-block-end: 10px;
}

.event-ticket-active {
  outline: 5px solid #f9b67d !important;
}

.event-pakage-card {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  outline: 5px solid rgba(245, 143, 45, 0.18);
}

.event-pakage-card input[type=radio]:checked {
  border-color: #007bff;
  /* Change to your desired selected color */
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
  /* Optional shadow effect */
}

.my-booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
.my-booking-header h1 {
  font-size: 48px;
  color: rgb(29, 29, 33);
}
.my-booking-header input {
  background-image: url("/themes/kso/assets/images/icons/search-black.png");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: 95% center;
  width: 519px;
  height: 56px;
  padding-right: 40px;
}
.my-booking-header .rtl input {
  direction: rtl;
  background-position: 5% center;
  /* Move icon to left */
  padding-right: 20px;
  /* Remove right padding */
}

.booking-tbl th {
  font-size: 18px;
  font-weight: 700;
  color: rgb(29, 29, 33);
}

.booking-event-image {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.status {
  max-width: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.success-status {
  border: 1px solid #008549;
  background-color: #f2ffed;
  color: #008549;
}

.cancel-status {
  border: 1px solid #850000;
  background-color: #ffeded;
  color: #850000;
}

.booking-tbl td,
.booking-tbl th {
  padding: 30px 20px;
}
.booking-tbl table {
  width: 100%;
  white-space: nowrap;
}
.booking-tbl table tr:nth-child(odd) {
  background-color: #FAFAFA;
}
.booking-tbl table tr:nth-child(odd):not(:nth-child(1)) {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.addToCartDrawer {
  max-width: 840px !important;
  background-color: white !important;
  color: black;
  overflow-y: auto;
  padding: 20px;
}
.addToCartDrawer .offcanvas-body {
  overflow-y: unset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.addToCartDrawer::-webkit-scrollbar {
  width: 5px;
}

.addToCartDrawer::-webkit-scrollbar-track {
  background: white !important;
  border-radius: 5px !important;
}

.addToCartDrawer::-webkit-scrollbar-thumb {
  background: #f58f2d !important;
  border-radius: 5px !important;
}

@supports not selector(::-webkit-scrollbar) {
  .addToCartDrawer {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.cart-item-container {
  overflow-y: auto;
}
.cart-item-container > * {
  margin-block-end: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-item > img {
  width: 100%;
  max-width: 123px;
  height: 123px;
}

.remove-item-icon {
  filter: brightness(0);
}

.cart-item-detail > * {
  margin-block-start: 20px;
}
.cart-item-detail p,
.cart-item-detail h6 {
  font-size: 24px;
}

.cart-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-btns .outlined-btn {
  background-color: transparent;
  border-radius: 50px;
  color: black;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid #D6D6D6;
  color: black;
}
.cart-btns .filled-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  width: 100%;
}
.cart-btns .filled-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
}
.checkout-header h1 {
  font-size: 48px !important;
  line-height: 48px;
  color: rgb(29, 29, 33);
}
.checkout-header p {
  font-size: 24px;
}

.checkout-form-section .checkout-card h2 {
  font-size: 32px;
  font-weight: 700;
  color: rgb(29, 29, 33);
}
.checkout-form-section .checkout-card .form-label {
  font-size: 18px;
  font-weight: 400;
  color: rgb(29, 29, 33);
}

.checkout-card {
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.checkout-card input,
.checkout-card select {
  height: 56px;
}
.checkout-card input[type=number] {
  text-align: left;
  font-size: 16px;
}
.checkout-card .dropdown-toggle {
  border: 1px solid #ddd;
  height: 56px;
}
.checkout-card p {
  font-size: 24px;
}
.checkout-card .cal-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-card .cal-btns .filled-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  width: 100%;
}
.checkout-card .cal-btns .filled-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}
.checkout-card .cal-btns .outlined-btn {
  background-color: transparent;
  border-radius: 50px;
  color: black;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid #D6D6D6;
}
.checkout-card .cal-btns .calender-btn {
  background-color: #F58F2D;
}
.checkout-card .cal-btns .calender-btn:hover {
  background-color: transparent;
  border: 1px solid #F58F2D;
  color: #F58F2D;
}

.checkout-item-container {
  max-height: 230px;
  overflow-y: auto;
  padding: 20px 0;
}

.checkout-item {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}

.checkout-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.checkout-btns .outlined-btn {
  background-color: transparent;
  border-radius: 50px;
  color: black;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid #D6D6D6;
  max-width: fit-content;
}
.checkout-btns .filled-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
}
.checkout-btns .filled-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}

.profile-container {
  text-align: center;
  margin-top: 50px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 2px solid #ddd;
  cursor: pointer;
  /* Make the image clickable */
}

.hidden-input {
  display: none;
  /* Hide the file input */
}

.account-uploader {
  color: #C07629;
  padding-top: 20px;
  cursor: pointer;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.account-card {
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.account-card h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  color: rgb(29, 29, 33);
}
.account-card .form-label {
  font-size: 18px;
  font-weight: 400;
  color: rgb(29, 29, 33);
}
.account-card input[type=number] {
  text-align: left;
  font-size: 16px;
}
.account-card input,
.account-card select {
  height: 56px;
}
.account-card .dropdown-toggle {
  border: 1px solid #ddd;
  height: 56px;
}

.account-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.account-btns .outlined-btn {
  background-color: transparent;
  border-radius: 50px;
  color: black;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid #D6D6D6;
  width: unset;
}
.account-btns .filled-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
}
.account-btns .filled-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}

.detail-crumbs {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
}

.booking-detail-left-card,
.booking-detail-right-card {
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.detail-event-right-btns {
  margin-top: 20px;
}
.detail-event-right-btns .filled-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  width: 100%;
}
.detail-event-right-btns .filled-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}
.detail-event-right-btns .outlined-btn {
  background-color: transparent;
  border-radius: 50px;
  color: black;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid #D6D6D6;
  max-width: 100%;
  background-color: black;
  color: white;
  margin-top: 10px;
}

.detail-event-item p,
.detail-event-item h6 {
  font-size: 16px;
}

.detail-modal-row {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.fs-about-content,
.vision-section .vision {
  padding: 50px 0;
  border-top: 1px solid #F58F2D;
  border-bottom: 1px solid #F58F2D;
}

.fs-inovation {
  background-color: #f9f4e4;
}
.fs-inovation h1 b {
  font-size: 64px;
  font-weight: 700;
  color: rgb(31, 31, 29);
  line-height: 76px;
}
.fs-inovation p {
  color: rgb(29, 29, 33);
}

.ce-card {
  border-radius: 24px;
  min-height: 470px;
  overflow: hidden;
}
.ce-card img {
  border-radius: 24px 24px 0 0px;
  transition: 0.3s ease-in-out;
}
.ce-card h1 {
  position: absolute;
  top: 56%;
  color: white;
  bottom: 0;
  right: 0;
  left: 50%;
  font-size: 23px;
  transform: translate(-50%, -50%);
}
.ce-card p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: rgb(29, 29, 33);
}

.ce-card:hover img {
  transform: scale(1.14);
}

.ce-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.38);
  /* Black overlay with 0.5 opacity */
  z-index: 1;
  border-radius: 24px 24px 0 0px;
}

.ce-img {
  overflow: hidden;
}
.ce-img img {
  position: relative;
  z-index: 0;
}
.ce-img h1 {
  z-index: 2;
  color: white;
}
.ce-img h1 p {
  color: white;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
}

.fs-about-footer {
  background-image: linear-gradient(#ffffff, rgba(149, 149, 148, 0), #1f1f1d), url("/themes/kso/assets/images/fs-about-foot.png");
  background-size: cover;
  background-position: center;
  min-height: 604px;
  display: flex;
  z-index: 1;
  position: relative;
}

.fs-footer-card {
  background-color: white;
  border-radius: 24px;
  max-width: 802px;
  margin: auto;
  color: black;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
}
.fs-footer-card h1 {
  font-size: 56px;
  color: rgb(29, 29, 33);
  font-weight: 400;
  font-family: "9LTAzaharDisplayAL-Regular";
}
.fs-footer-card p {
  padding: 24px 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: rgb(56, 56, 56);
}
.fs-footer-card button {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  padding: 24px 32px;
  max-width: 690px;
  width: 100%;
}
.fs-footer-card button:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}

.detail-modal-row {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.fs-pr-pills {
  gap: 20px;
}
.fs-pr-pills .nav-item .nav-link {
  font-weight: 700;
  background-color: transparent;
  border: 1px solid #101010;
  border-radius: 50px;
  padding: 10px 40px;
  font-size: 20px;
  color: black;
}
.fs-pr-pills .nav-item .nav-link.active {
  background-color: #F58F2D;
  color: white;
  border: none;
}

#preloader {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  transform: translate(42%, 30%);
}

.datepicker tbody tr td,
.datepicker tbody tr th {
  width: 40px !important;
  height: 40px !important;
}

.datepicker tbody tr td,
.datepicker tbody tr th {
  width: 40px !important;
  height: 40px !important;
  text-align: center !important;
  vertical-align: middle !important;
  line-height: 40px !important;
  /* Center the date text */
  padding: 0 !important;
  /* Remove extra padding */
}

.datepicker-inline {
  width: 100% !important;
}

.datepicker .table-condensed {
  width: 100% !important;
}

.datepicker table tr td.today,
.datepicker table tr td.active.active {
  background-color: #F58F2D !important;
  color: white !important;
}

.radio-time-btns .radio-card {
  display: inline-block;
  width: 100%;
  padding: 0px 5px;
  height: 50px;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  line-height: 50px;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  margin: 5px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}
.radio-time-btns input[type=radio] {
  display: none;
}
.radio-time-btns input[type=radio]:checked + label {
  background-color: #F58F2D;
  border-color: #F58F2D;
  color: white;
}
.radio-time-btns label {
  width: 100%;
  height: 100%;
  display: inline-block;
  line-height: 50px;
  font-weight: bold;
}
.radio-time-btns .radio-group {
  gap: 10px;
}
.radio-time-btns .radio-group > div {
  flex-grow: 1;
}

.counter-container {
  right: 15px;
  top: 10px;
  display: flex;
  gap: 10px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-btn:hover {
  background-color: #F5F5F5;
}

.fs-pr-pills {
  height: auto !important;
}

.second-nav-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 50%;
  font-size: 16px;
}

#mainNavbar {
  display: none;
  /* Initially hide the main navbar */
}

.owl-item > div {
  cursor: pointer;
  margin: 6% 8%;
  transition: all 0.4s ease;
  /* Apply transition to all properties */
  transform: scale(0.8);
  /* Make inactive cards smaller */
  opacity: 0.2;
  /* Reduce opacity for inactive cards */
}

.owl-item.center > div {
  cursor: auto;
  margin: 0;
  width: unset !important;
  transform: scale(1.05);
  /* Scale up the center card */
  opacity: 1;
  /* Full opacity for the active card */
}

.owl-item:not(.center) > div:hover {
  opacity: 0.85;
}

.owl-carousel.owl-drag .owl-item {
  max-width: 448px;
  /* You can adjust this as per your design */
  transition: all 0.3s ease;
}

.coming-soon-body {
  bottom: 40px !important;
  right: 0;
  left: 0;
}

.kso-index-btns > * {
  margin-block-start: 10px;
  height: 64px !important;
}
.kso-index-btns .outlined-btn {
  background-color: transparent;
  border-radius: 50px;
  color: black;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid #D6D6D6;
  background-color: black;
  color: white;
  border: none;
}
.kso-index-btns .filled-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  width: 100%;
}
.kso-index-btns .filled-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}

.fs-card {
  overflow: hidden;
}

.fs-card:hover .fs-card-body {
  bottom: 10px !important;
}

.kso-main-cards .card .fs-card-body {
  bottom: -160px;
  transition: bottom 0.2s ease-in-out;
}

.fs-calender-section .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: black;
}
.fs-calender-section .accordion-button {
  font-size: 32px;
  font-weight: 700;
  padding-inline: 0;
}
.fs-calender-section .accordion-body {
  padding: 30px 0 !important;
}

.fs-calender-card:hover .event-img {
  transform: scale(1.14);
}
.fs-calender-card .fs-card-header {
  overflow: hidden;
  border-radius: 20px;
}
.fs-calender-card .event-img {
  width: 100%;
  height: 336px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s ease-in-out;
}

.content-fixed {
  min-height: 270px;
}

.fs-booking-btn {
  width: 100%;
  border: 1px solid black;
  border-radius: 50px;
  color: black;
  padding: 13px 0px;
  font-size: 20px;
  margin-top: 15px;
}
.fs-booking-btn:hover {
  background-color: black;
  color: white;
}

.explore-more-experience-btn {
  border: 1px solid black;
  border-radius: 50px;
  color: black;
  padding: 13px 20px;
  font-size: 20px;
}
.explore-more-experience-btn:hover {
  background-color: black;
  color: white;
}

.fs-card-header {
  position: relative;
}
.fs-card-header .event {
  position: absolute;
  max-width: fit-content;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50px;
  top: 20px;
  left: 20px;
  width: 100%;
}

.experience-section {
  padding-top: 500px;
}
.experience-section h1 {
  font-size: 56px;
  line-height: 67px;
  color: rgb(29, 29, 33);
}
.experience-section p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: rgb(29, 29, 33);
}

.kso-slider-card .carousel-item {
  height: 376px;
}
.kso-slider-card .carousel-inner {
  border-radius: 24px;
}
.kso-slider-card .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.kso-slider-card .image-overlay-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.kso-slider-card .image-overlay-container img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 376px;
}
.kso-slider-card .image-overlay-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6980392157), rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0.6980392157));
  z-index: 1;
}

.shop-highlighted-section {
  background-color: #D1C7AC;
}

.shop-h-img-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.shop-h-img-container img {
  width: 100%;
  display: block;
}
.shop-h-img-container .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  /* Semi-transparent overlay */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.shop-h-img-container .premium-logo {
  max-width: 60px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.shop-title {
  text-align: center;
}
.shop-title h1 {
  font-size: 64px;
}
.shop-title p {
  font-size: 18px;
}

.sp-logo {
  position: absolute;
  max-width: 70px;
  top: 20px;
  left: 20px;
  min-height: auto !important;
}

.most-selling-section .filled-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
}
.most-selling-section .filled-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}
.most-selling-section .swiper-slide {
  width: 300px;
  transform: scale(0.85);
  transition: transform 0.3s ease-in-out;
}
.most-selling-section .swiper-slide-active {
  transform: scale(1.01) !important;
}
.most-selling-section .color-options {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.most-selling-section .color-options div {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
}
.most-selling-section .swiper-button-next,
.most-selling-section .swiper-button-prev {
  width: 64px;
  height: 64px;
  background: black;
  border-radius: 50%;
  position: absolute;
}
.most-selling-section .swiper-button-next::after,
.most-selling-section .swiper-button-prev::after {
  content: none;
}
.most-selling-section .swiper-button-next {
  right: 31% !important;
  top: 40% !important;
}
.most-selling-section .swiper-button-prev {
  left: 31% !important;
  top: 40% !important;
}

.counter {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.counter button {
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0 10px;
}
.counter button:focus {
  outline: none;
}
.counter h2 {
  margin: 0 10px;
}

.cat-img {
  height: 411px;
  object-fit: cover;
  width: 100%;
}

.thumbnail {
  display: inline-block;
  cursor: pointer;
}

.thumbnail img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

#grote_image {
  max-width: 519px;
  min-height: 622px;
  object-fit: cover;
  width: 100%;
}

.fs-product-detail-content h1 {
  font-size: 72px;
}
.fs-product-detail-content .filled-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
}
.fs-product-detail-content .filled-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}
.fs-product-detail-content .break-para ~ p {
  word-break: break-all;
}

.product-inner-detail > * {
  margin-block-end: 20px;
}

.pr-color-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
.modal-btn .filled-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
}
.modal-btn .filled-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}
.modal-btn .outlined-btn {
  border-radius: 50px;
  border-radius: 50px;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
  max-width: 100%;
  background-color: black;
  color: white;
}

.amenties-child {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline: 10px;
}
.amenties-child p {
  font-size: 15px;
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.amenties-child img {
  max-width: 22px;
}

.cowork-content-fixed {
  min-height: 170px;
}
.cowork-content-fixed h2 {
  font-size: 38px;
}

.cowork-feature-section {
  background-color: #FFF7E2;
}

.cowork-banner-desc {
  max-width: 68%;
  margin: auto;
}

.reserve-section {
  background-image: url("/themes/kso/assets/images/cowork-reserve.jpg");
  min-height: 460px;
  background-size: 100% 100%;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: multiply;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.reserve-section div > * {
  margin-block-end: 20px;
}
.reserve-section h1 {
  font-size: 56px;
}
.reserve-section .filled-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
}
.reserve-section .filled-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}

.experience-food-section h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 76px;
  color: rgb(29, 29, 33);
}
.experience-food-section p {
  font-size: 20px;
  font-weight: 400;
  color: rgb(96, 96, 96);
  line-height: 30px;
  max-width: 845px;
  margin: 24px 0px;
}

.available-btn {
  background-color: #c07629;
  color: white;
}
.available-btn:hover {
  border: 1px solid #c07629;
  color: #c07629;
}

#booking-calendar {
  border: 1px solid #eaecf0;
  border-radius: 10px;
  padding: 10px;
  margin-top: 15px !important;
}

.clock-icon-modal {
  background-color: #C07629;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#timeModal .modal-header {
  background-color: #f5f5f5;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  border: none;
}
#timeModal .modal-content {
  border-radius: 20px;
}
#timeModal .modal-dialog {
  max-width: 370px;
}
#timeModal .modal-body {
  overflow-y: auto;
  height: 470px;
}

.time-section-time {
  background-color: #f8f7fe;
  max-width: 111px;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-status-container {
  display: flex;
  border-bottom: 1px solid #ededed;
  padding: 10px 0px;
}
.event-status-container > * {
  flex: 1;
}
.event-status-container > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.time-section-time:not(:last-child) {
  margin-bottom: 10px;
}

.event-time-status {
  min-height: 180px;
  max-width: 176px;
  border-radius: 10px;
  padding: 15px;
}

.time-status-available {
  background-color: #faf6f9;
  border-top: 9px solid #afa2ac;
}

.time-status-booked {
  background-color: #faf7f6;
  border-top: 9px solid #9e4512;
}

.booking-navs .nav-right-items > button {
  filter: brightness(0);
}
.booking-navs .nav-right-items a {
  color: black !important;
}
.booking-navs .nav-right-items .dropdown-menu {
  background-color: rgb(214, 214, 214);
}
.booking-navs .navbar-expand-lg .second-nav-btn {
  background: rgb(250, 250, 250);
}
.booking-navs .navbar-expand-lg .second-nav-btn i {
  color: gray;
}
.booking-navs .booking-event-main-heading {
  display: none;
}
.booking-navs .navbar-expand-lg .nav-link:hover {
  background-color: black !important;
}
.booking-navs .splitter {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #494949, rgba(255, 255, 255, 0));
}

.color-selector {
  display: flex;
  align-items: center;
}

.color-selector label {
  margin: 0 10px;
  cursor: pointer;
}

.color-radio {
  display: none;
}

.color-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  display: inline-block;
}

/* Add color options */
.color-1 {
  background-color: #a89e83;
}

.color-2 {
  background-color: #d56a1b;
}

.color-3 {
  background-color: #356589;
}

/* When checked, add a border */
.color-radio:checked + .color-circle {
  outline: 3px solid rgba(180, 180, 180, 0.3);
}

.detail-product-btn {
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-product-btn:hover {
  background-color: #f5f5f5;
}

.pr-detail-divider {
  border-top: 1px solid #ededed;
  opacity: 1;
}

.detail-about-section {
  background-color: #d1c7ac;
}
.detail-about-section img {
  height: 620px;
  object-fit: cover;
}
.detail-about-section .media-2 {
  width: 100%;
}

.fs-calender-page .fs-calender-title h1 {
  font-size: 56px;
  line-height: 67px;
  font-weight: 700;
  color: rgb(29, 29, 33);
}

.arrive-section h1 {
  font-size: 56px;
  line-height: 67px;
  color: rgb(29, 29, 33);
  font-family: "29LTAzaharDisplayAL-Bold" !important;
}
.arrive-section h3 b {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: rgb(29, 29, 33);
}
.arrive-section p {
  font-size: 16px;
  line-height: 24px;
  color: rgb(56, 56, 56);
  width: 550px;
}

.map-section h1 {
  font-size: 56px;
  line-height: 67px;
  color: rgb(29, 29, 33);
}

.iti.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
  width: 100% !important;
}

.iti__search-input {
  padding-left: 10px;
}

.fs-contect-section-coworking .title-header h1 {
  font-size: 56px;
  color: rgb(29, 29, 33);
}
.fs-contect-section-coworking .title-header p {
  color: rgb(96, 96, 96);
  font-size: 18px;
  font-weight: 400;
}

.cowork-feature-section .title-header h1 {
  font-size: 56px;
  color: rgb(29, 29, 33);
}
.cowork-feature-section .title-header p {
  font-weight: 400;
  font-size: 18px;
  color: rgb(96, 96, 96);
  max-width: 519px;
}

.kso-new-header {
  background-image: url("/themes/kso/assets/images/kso-landing-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
}
.kso-new-header h1 {
  font-size: 85px;
  text-align: center;
  font-weight: 700;
}

.kso-new-card {
  border-radius: 8px;
  min-height: 400px;
  height: 100%;
}
.kso-new-card .fs-img {
  min-height: 280px;
  object-fit: cover;
  object-position: right;
}

.kso-card-logo-bg {
  background-color: #F58F2D;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
  padding: 20px 0;
}
.kso-card-logo-bg img {
  max-width: 170px;
  margin: auto;
}

.kso-new-main {
  padding: 50px 0;
}

.kso-soon-card1 {
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-transform: uppercase;
}
.kso-soon-card1 h1 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 38px;
}

.kso-soon-card2 {
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-transform: uppercase;
}
.kso-soon-card2 h1 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 38px;
}

.fs-banner-carosuel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border-top: 0;
  border-bottom: 0;
  opacity: 0.3;
}
.fs-banner-carosuel .carousel-indicators .active {
  width: 32px;
  opacity: 1;
  border-radius: 100px;
}
.fs-banner-carosuel .carousel-control-next,
.fs-banner-carosuel .carousel-control-prev {
  width: 64px;
  height: 64px;
  background-color: black;
  border-radius: 50%;
  margin: auto;
  opacity: 1;
}
.fs-banner-carosuel .carousel-control-next {
  margin-right: 100px;
}
.fs-banner-carosuel .carousel-control-prev {
  margin-left: 100px;
}
.fs-banner-carosuel .carousel-indicators {
  bottom: -70px;
}
.fs-banner-carosuel .carousel-inner {
  padding-left: 200px;
  padding-right: 200px;
}

.fs-banner-logo {
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.explore-more-btn {
  text-align: center;
  padding-top: 50px;
}
.explore-more-btn .explore-btn {
  background-color: #C07629;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px;
  text-transform: uppercase;
}
.explore-more-btn .explore-btn:hover {
  background-color: #C07629;
  color: white;
}

.cart-counter {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  bottom: 13px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.glide__slide {
  transition: 0.4s ease-in-out;
}

.glide__slide.glide__slide--active {
  transform: scale(1.08);
  transition: 0.4s ease-in-out;
}

.glide__arrow--left,
.glide__arrow--right {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: black;
  border: none;
}

.glide__arrow--right {
  right: 32%;
}

.glide__arrow--left {
  left: 32%;
}

.event-all-listing,
.coworking-all-listing,
.shop-all-listing {
  margin: 70px 0;
}

.size-select {
  width: 120px;
  border-radius: 8px !important;
}

.pr-attribute {
  color: #878787;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.whatson-year {
  background-color: #F5F5F5;
  border: 1px solid #ededed;
  height: 70px;
  display: flex;
  align-items: center;
  border-radius: 1000px;
  font-family: Inter;
  margin-left: auto;
  padding-inline: 40px;
  margin-bottom: 20px;
}

.whatson-year.active {
  background-color: #F58F2D;
  color: white;
}

.highlighted-heading {
  filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.54));
}

.event-card-v1 h1 {
  font-size: 48px !important;
  font-weight: 400 !important;
}

.kso-nav > * {
  text-align: center;
}

.fs-signup-modal .modal-header {
  border-bottom: none;
}
.fs-signup-modal .modal-header button {
  margin: 0;
  padding: 0;
}
.fs-signup-modal .modal-body {
  padding-inline: 125px;
  text-align: center;
}
.fs-signup-modal .modal-body > * {
  font-size: 22px;
  margin-block-end: 30px;
  font-weight: 600;
}
.fs-signup-modal .modal-body img {
  max-width: 250px;
}

.fs-signup-form > *:not(:last-child) {
  margin-block-end: 35px;
}
.fs-signup-form input {
  font-size: 22px;
}
.fs-signup-form button {
  background-color: #c07629;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 690px;
  width: 100%;
}
.fs-signup-form button:hover {
  background-color: #d27c26;
  color: white;
}
.fs-signup-form button:active {
  border-color: transparent !important;
}

.uf-cards {
  max-width: 846px;
  margin: auto;
  border-radius: 24px;
  position: relative;
}
.uf-cards img {
  border-radius: 24px 24px 0 0;
}
.uf-cards .inner-uf {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.apiary-bg {
  background-color: rgb(245, 143, 45);
  padding: 20px;
  border-radius: 0 0 24px 24px;
}

.ossis-bg {
  background-color: rgb(185, 172, 138);
  padding: 20px;
  border-radius: 0 0 24px 24px;
}

.bio-bg {
  background-color: rgb(159, 138, 203);
  padding: 20px;
  border-radius: 0 0 24px 24px;
}

.oases-about-map {
  width: 100%;
  border-radius: 15px;
}

.explore-right-cards {
  min-height: 380px;
}

.panel {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: white;
  overflow: hidden;
}
.panel p {
  text-transform: none;
  font-size: 25px;
  margin: auto !important;
  line-height: 50px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  /* Black shadow with 60% opacity */
  opacity: 0;
  /* Initially invisible */
  pointer-events: none;
  /* Allow clicks to pass through */
  transition: opacity 0.2s linear;
  /* Smooth transition for changes */
}

.kso-main-header {
  background-image: url(/themes/kso/assets/images/kso-landing-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  width: 100% !important;
  background-color: rgba(0, 0, 0, 0.42);
  background-blend-mode: multiply;
}
.kso-main-header h1 {
  font-size: 85px;
  text-align: center;
  font-weight: 700;
  text-transform: none;
}

.absolute-nav {
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  right: 0;
}

.fixed-nav {
  position: fixed;
  top: 0;
  z-index: 2;
  left: 0;
  right: 0;
}

.kso-description-section {
  background-image: url(/themes/kso/assets/images/kso-desc-img-1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  width: 100% !important;
  background-color: rgba(0, 0, 0, 0.42);
  background-blend-mode: multiply;
}

.visit-site-section {
  background-image: url(/themes/kso/assets/images/kso-new-card.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  position: relative;
  width: 100% !important;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2509803922);
  background-blend-mode: multiply;
}

.more-oasis-section {
  background-image: url(/themes/kso/assets/images/more-oasis.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  position: relative;
  width: 100% !important;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2509803922);
  background-blend-mode: multiply;
}
.more-oasis-section h1 {
  font-size: 85px;
  text-align: center;
  font-weight: 700;
  text-transform: none;
}
.more-oasis-section .kso-centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.newsletter-section {
  background-image: url(/themes/kso/assets/images/footer-bg-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  position: relative;
  width: 100% !important;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}
.newsletter-section .fs-land-footer-foodsphere {
  background-color: rgba(0, 0, 0, 0.4);
}

.kso-bottom-footer {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: block !important;
  z-index: 1;
}

.kso-visit-btn {
  background-color: #F58F2D;
  border-radius: 50px;
  color: white;
  padding: 10px 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  max-width: 390px;
  width: 100%;
  padding: 10px 50px;
  text-transform: unset;
}
.kso-visit-btn:hover {
  border: 1px solid #F58F2D;
  background-color: white;
  color: #F58F2D;
}

.kso-main-header h1,
.shop-all-listing h1,
.my-booking-header h1,
.checkout-header h1,
.coworking-all-listing h1,
.fs-inovation h1,
.reserve-section h1,
.event-detail-section h1,
.experience-section h1,
.event-all-listing h1,
.related-product h1,
.detail-about-section h1,
.fs-product-detail-content h1,
.shop-title h1,
.title-header h1,
.booking-event-main-heading h1,
.more-oasis-section h1,
.kso-about-header-content h1,
.kso-about-footer h1,
.contact-text h1,
.core-values-section h1,
.location-section h1,
.offer-section h1,
.target-section h1 {
  font-family: "Source-Serif-4";
}

.fs-banner-carosuel .carousel-inner h1 {
  font-family: "Source-Serif-4";
  font-weight: 700;
  text-align: center;
}

.explore-section .title-header h1 {
  font-family: "Source-Serif-4";
}

.fs-inovation h1 b {
  font-family: "Source-Serif-4";
}

.about-container .mission-section h1 b {
  font-family: "Source-Serif-4";
}

.whatson-page h1,
.arrive-section h1,
.map-section h1,
.distinct-map-section h1,
.event-booking-header h1 {
  font-family: "Source-Serif-4";
}

.discover-icon-on-mobile {
  display: none;
}

.kso-updated-footer {
  background-color: rgb(31, 31, 29);
  position: relative;
  z-index: 1;
}
.kso-updated-footer .updated-footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(56, 56, 56);
  max-width: 100%;
}
.kso-updated-footer .links-header {
  font-family: "Source-Serif-4";
}
.kso-updated-footer .kso-update-bottom p {
  font-family: "Source-Serif-4";
}
.kso-updated-footer a {
  max-width: fit-content;
}

.scrol-event {
  display: flex;
  flex-wrap: nowrap;
  /* Ensure events stay in a single row */
  overflow-x: auto;
  /* Enable horizontal scrolling */
  padding-bottom: 10px;
  /* Space for scrollbar */
}

.media-navs .logo-left {
  filter: brightness(0);
}
.media-navs .fs-nav-right a {
  color: black !important;
}
.media-navs .navbar-expand-lg a {
  color: #606060;
}
.media-navs .splitter {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #494949, rgba(255, 255, 255, 0));
}

.media-header-title {
  font-size: 96px;
  font-family: "Source-Serif-4";
}

.media-header-card img {
  height: 244px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
.media-header-card .media-description {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-header-card a {
  color: #212529;
}

.media-view-more {
  background-color: #F58F2D;
  color: white;
  border-radius: 1000px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 127px;
  margin: auto;
}
.media-view-more:hover {
  background-color: transparent;
  border: 2px solid #F58F2D;
  color: #F58F2D;
}

.media-moment-section {
  background-color: #f9f4e4;
  padding: 60px 0;
}
.media-moment-section h1 {
  font-size: 56px;
  font-family: "Source-Serif-4";
}
.media-moment-section p {
  color: #383838;
}

.media-moment-section-1 {
  background-color: #EDFAFF;
  padding: 60px 0;
}
.media-moment-section-1 h1 {
  font-family: "Source-Serif-4";
}
.media-moment-section-1 p {
  color: #383838;
}

.media-moment-section-2 {
  background-color: white;
  padding: 60px 0;
}
.media-moment-section-2 h1 {
  font-family: "Source-Serif-4";
}
.media-moment-section-2 p {
  color: #383838;
}

.media-gallery-section {
  padding: 80px 0;
}

.media-gallery img {
  max-width: 100%;
  width: 100%;
  max-height: 364px;
  object-fit: cover;
}

.media-news-section {
  padding: 80px 0;
  background-color: #f9f4e4;
}
.media-news-section h1 {
  font-family: "Source-Serif-4";
  font-size: 56px;
}

.media-news-card img {
  height: 280px;
  width: 100%;
}

.media-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-pagination .pagination {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  font-size: 14px;
  font-weight: 600;
  color: black;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.media-pagination .pagination.active {
  background-color: #f76800;
  color: white;
  outline: 5px solid rgba(247, 104, 0, 0.1490196078);
}

.media-navs .navbar-expand-lg {
  background-color: white !important;
}
.media-navs .navbar-expand-lg i {
  color: black !important;
}

.media-crumbs {
  display: flex;
  align-items: center;
  gap: 20px;
}
.media-crumbs .parent-crumb {
  color: #9b9da3;
}
.media-crumbs .current-crumb {
  color: #f76800;
}

.media-detail-header-content h1 {
  font-size: 72px;
  font-family: "Source-Serif-4";
}

.media-details {
  display: flex;
  align-items: center;
  gap: 10px;
}
.media-details p {
  color: #83879b;
}

.media-detail-img img {
  object-fit: cover;
  height: 563px;
  width: 100%;
  object-position: center;
}

.detail-inner-content p {
  color: #606060;
}
.detail-inner-content .plyr__control--overlaid {
  background: #f58f2d !important;
}
.detail-inner-content .plyr--video .plyr__control:hover {
  background: #f58f2d !important;
}
.detail-inner-content .plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background-image: linear-gradient(to right, #f58f2d var(--value, 0), rgba(0, 0, 0, 0) var(--value, 0));
}
.detail-inner-content .plyr--video {
  border-radius: 8px;
}

.detail-news-section {
  background-color: #f9f4e4;
}
.detail-news-section h1 {
  font-size: 56px;
  font-family: "Source-Serif-4";
}

.detail-news-section .media-header-card img {
  height: 380px;
}

.media-center-link {
  background-color: #fafafa;
  border: 1px solid #ededed;
  border-radius: 10px;
  padding: 20px;
}
.media-center-link .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.media-center-link .social-links a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #ededed;
  background-color: white;
  transition: 0.3s;
}
.media-center-link .social-links a i {
  font-size: 12px;
  color: #98a2b3;
  transition: 0.3s;
}
.media-center-link .social-links a:hover > i {
  color: black;
}

.media-navs .fs-nav-right a {
  filter: brightness(0);
}
.media-navs .dropdown-toggle img {
  filter: brightness(0);
}
.media-navs .dropdown-item:hover {
  filter: unset !important;
}

.media-gallery span {
  margin-top: 20px !important;
  display: inline-block;
  color: black;
}

.media-gallery-section .glide__slide {
  margin-bottom: 30px;
}

.whats-foodsphere-section {
  background-color: #D1C7AC;
  padding: 50px 0;
  font-family: "Source-Serif-4" !important;
}

.whats-foodsphere-title {
  text-align: center;
}

.whats-foodsphere-card {
  min-height: 580px;
  border-radius: 21px;
}
.whats-foodsphere-card .btn-book {
  padding: 10px 0;
  background-color: transparent;
  border: 2px solid white;
  margin-top: 20px;
  transition: ease 0.3s;
  color: white;
  width: 100%;
  max-width: 360px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
}
.whats-foodsphere-card .btn-book:hover {
  background-color: white;
  color: black;
}

.whats-foodsphere-card {
  background-position: center;
  background-size: cover;
  padding: 50px 50px 50px 20px;
  display: flex;
  align-items: end;
}

.whats-foodsphere-card.wf-card-1 {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%), url(/themes/kso/assets/images/wf-card-1.png);
}

.whats-foodsphere-card.wf-card-2 {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%), url(/themes/kso/assets/images/wf-card-2.jpeg);
}

.counter-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticket-counter {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: space-between;
  max-width: 159px;
  border-radius: 8px;
  border: 1px solid #D6D6D6;
  height: 64px;
  width: 100%;
  padding-inline: 12px;
}

.ticket-counter button {
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  background-color: #F5F5F5;
}

.ticket-counter input {
  width: 25px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
}

.ticket-counter input[readonly] {
  background-color: white;
}

.lang-link {
  font-family: "IBMPlexSansArabic-Medium" !important;
}

.text-orange {
  color: #F58F2D;
}

.updated-footer-logo {
  max-width: 250px;
  width: 100%;
}

.fs-term-page {
  text-align: justify;
}
.fs-term-page ol,
.fs-term-page ul {
  padding: 0 !important;
}

.discount-message-alert {
  background-color: #F58F2D;
  border-color: #F58F2D;
  color: white;
}

.payment-logo {
  margin-left: 68%;
}

.book-btn a {
  max-width: fit-content;
  margin: auto;
}

.swiper {
  width: 100%;
  overflow: visible !important;
  /* Allows next slide to be visible */
  padding-bottom: 50px;
}

.swiper-slide {
  background: transparent;
  border-radius: 15px;
  padding-left: 20px;
  transition: transform 0.3s ease-in-out;
}

.swiper-slide .swiper-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 30px 30px 0 0;
  background-color: #858585;
  background-blend-mode: multiply;
}

.swiper-pagination {
  bottom: 0px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: black !important;
  content: none;
}

.whats-foodsphere-section .swiper-card {
  background-color: white;
  border-radius: 30px;
  border: 1px solid #f1f1f1;
}
.whats-foodsphere-section .swiper-card .swiper-content {
  padding: 20px;
}
.whats-foodsphere-section .swiper-card .swiper-content .content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}
.whats-foodsphere-section .swiper-card .capsule {
  max-width: fit-content;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.whats-foodsphere-section .swiper-card .green-capsule {
  background: #E9F5DC;
  color: #91CE50;
}
.whats-foodsphere-section .swiper-card .blue-capsule {
  background: #EFE5FF;
  color: #824EF5;
}
.whats-foodsphere-section .swiper-card .swiper-btn {
  width: 100%;
  border-radius: 100px;
  background-color: #F58F2D;
  color: white;
  font-weight: 600;
  margin-top: 30px;
}
.whats-foodsphere-section .swiper-button-next {
  bottom: 0;
  top: unset;
  right: 79%;
}
.whats-foodsphere-section .swiper-button-prev {
  bottom: 0;
  top: unset;
  left: 6%;
}

.swiper-rtl .swiper-button-next:after {
  content: unset;
}

.swiper-rtl .swiper-button-prev:after {
  content: unset;
}

@media (max-width: 1450px) and (min-width: 992px) {
  .navbar-expand-lg .nav-link {
    font-size: 14px !important;
  }
  .logo-left {
    max-width: 80px;
  }
}
@media (min-width: 992px) {
  .fs-home-header,
  .event-home-header,
  .cowork-home-header,
  .shop-home-header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .event-home-header h1,
  .cowork-home-header h1 {
    padding: 130px 0;
  }
  .logo-left {
    max-width: 120px;
  }
  .fs-header-main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 576px) {
  .swiper.mySwiperCard {
    display: none;
  }
}
@media (max-width: 992px) and (min-width: 767px) {
  .contact-form-card {
    border-radius: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
  }
  .contact-form-card .contact-img {
    max-width: 100%;
    width: 100%;
    height: 1304px;
    object-fit: cover;
    border-radius: 50px 0 0 50px;
  }
  .fs-calender-page .fs-calender-title h1 {
    font-size: 41px;
  }
  .product-section .title-header h1 {
    font-size: 54px;
  }
  .entry-ticket-content .title-header h1 {
    font-size: 36px;
    line-height: 45px;
  }
  .entry-ticket-content .title-header h4 {
    font-size: 24px;
    line-height: 28px;
  }
  .explore-section .title-header h1 {
    font-size: 49px;
    line-height: 76px;
  }
  .fs-land-footer-foodsphere .title-header {
    padding: 0px 0px;
  }
  .fs-land-footer-foodsphere h1 {
    font-size: 56px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    line-height: 56px;
    margin-top: 30px;
  }
  .kso-main {
    height: 100%;
  }
}
@media (min-width: 1500px) {
  .kso-main-cards .card {
    max-width: 100%;
    max-height: 100%;
  }
}
@media (min-width: 1100px) {
  .int-pin-btn {
    display: none;
  }
  .fs-land-footer-foodsphere .title-header {
    padding: 0px 194px;
  }
}
@media (min-width: 768px) {
  .event-pk-mob {
    display: none;
  }
  .event-pk-desk {
    display: block;
  }
}
@media (max-width: 1400px) {
  .payment-logo {
    margin-left: 46%;
  }
}
@media (max-width: 1200px) {
  .payment-logo {
    margin-left: 22%;
  }
}
@media (max-width: 1100px) {
  .map-right,
  .map-left {
    display: none;
  }
  .fs-land-footer-foodsphere .title-header {
    padding: 0px 0px;
  }
}
@media (max-width: 1199px) {
  .most-selling-section .swiper-button-next {
    right: 23% !important;
  }
  .most-selling-section .swiper-button-prev {
    left: 23% !important;
  }
  .contact-form-card {
    border-radius: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
  }
  .contact-form-card .contact-img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px 0 0 50px;
  }
}
@media (max-width: 992px) {
  .fs-header-main-content h1 {
    text-align: center;
    max-width: 100%;
    padding: 100px 0;
    font-size: 60px !important;
  }
  .fs-header-main-content p {
    max-width: 100%;
  }
  .fs-header-main-content button {
    white-space: nowrap;
  }
  .fs-land-footer-foodsphere .title-header {
    padding: 0px 0px;
  }
  .feature-section .card-content {
    padding-left: 0;
  }
  .ex-right-all {
    padding-top: 20px;
  }
  .title-header h1 {
    font-size: 45px;
  }
  .product-tab {
    flex-wrap: wrap;
  }
  .product-tab > *:nth-child(1) {
    flex: 1;
  }
  .product-tab > *:nth-child(2) {
    padding-top: 20px;
  }
  .product-tab-btns > * {
    flex: 1;
    white-space: nowrap;
  }
  .footer-form {
    padding: 0px 20px;
  }
  .kso-about-header-content {
    min-height: 500px;
  }
  .kso-about-header-content p {
    font-size: 20px;
  }
  .kso-about-header-content h1 {
    font-size: 40px;
  }
  .contact-form-card .contact-img {
    max-height: 300px;
    border-radius: 50px 50px 0px 0px;
    object-fit: cover;
  }
  .tab-content {
    margin-top: 30px;
  }
  .nav-pills {
    height: 300px;
  }
  .nav-pills .nav-link {
    margin-block-end: 15px;
  }
  .fs-contact-header {
    min-height: 400px;
  }
  .fs-contact-header img {
    max-width: 400px;
  }
  .navbar-expand-lg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    border-radius: 50%;
    z-index: 100;
  }
  .navbar-toggler {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  .py-100 {
    padding: 50px 0;
  }
  #mainNavbar {
    display: block !important;
  }
  .process-card-container {
    position: static;
  }
  .booking-landing-footer .title-header {
    padding: 0;
  }
  .experience-section {
    padding-top: 50px;
  }
  .fs-booking-btn {
    max-width: 40%;
  }
  .event-booking-section {
    padding-top: 100px;
  }
  .kso-index {
    height: 100%;
  }
  .fs-64 {
    font-size: 50px;
  }
  .fs-banner-carosuel {
    padding: 40px 0;
  }
  .fs-banner-carosuel .carousel-inner h1 {
    font-size: 70px !important;
    margin: auto;
    padding: 10px 0;
  }
  .fs-banner-carosuel .carousel-inner .banner-btn {
    text-align: center;
  }
  .glide__arrow--right {
    right: 25%;
  }
  .glide__arrow--left {
    left: 25%;
  }
  .kso-new-header {
    background-size: cover;
    background-position: center;
  }
  .login-bg {
    background-size: cover;
  }
  .signup-bg {
    min-height: 260px;
    background-size: cover;
    background-position: center;
  }
  .fs-signup-modal .modal-body {
    padding-inline: 30px;
  }
  .discover-icon-on-mobile {
    display: block;
  }
  .discover-icon-on-desktop {
    display: none !important;
  }
  .panel {
    font-size: unset;
  }
  .media-header-title {
    font-size: 60px;
    max-width: 100%;
    text-align: center;
  }
  .media-moment-section h1 {
    max-width: 100%;
    font-size: 50px;
  }
  .media-moment-section p {
    max-width: 100%;
  }
  .media-navs .navbar-expand-lg {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  .media-detail-header-content h1 {
    font-size: 60px;
  }
  .detail-news-section h1 {
    font-size: 45px;
  }
  .booking-navs .navbar-expand-lg {
    background-color: transparent !important;
  }
  .relation-section h5.mx-50,
  .mission-section h5.mx-50,
  .location-section h5.mx-50,
  .offer-section h5.mx-50,
  .culture-section h5.mx-50,
  .target-section h5.mx-50,
  .core-values-section h5.mx-50,
  .innovation-section h5.mx-50 {
    max-width: 75%;
  }
  .payment-logo {
    margin-left: 0%;
  }
}
@media (max-width: 767px) {
  .cowork-banner-desc {
    max-width: 100%;
    margin: auto;
  }
  .booking-event-main-heading h1 {
    font-size: 31px !important;
  }
  .booking-event-main-heading p {
    text-transform: none;
    font-size: 20px;
    line-height: 25px;
  }
  .fs-land-footer-foodsphere .title-header {
    padding: 0px 0px;
  }
  .offcanvas {
    max-width: 220px;
  }
  .kso-main-cards .card {
    max-width: 360px;
  }
  .kso-main-cards .card .fs-card-body {
    bottom: -125px;
  }
  .kso-main-footer {
    gap: 20px;
  }
  .kso-main-footer h5 {
    font-size: 18px;
  }
  .kso-main-footer p {
    font-size: 15px;
  }
  .kso-main-footer > div:nth-child(2) {
    text-align: right;
    flex-direction: column;
    gap: 10px !important;
  }
  .offcanvas-body a,
  .offcanvas-footer a {
    font-size: 20px;
  }
  .fs-header-main-content h1 {
    font-size: 40px;
    padding: 50px 0;
  }
  .fs-header-bottom {
    flex-wrap: wrap;
    text-align: center;
  }
  .fs-header-bottom p {
    max-width: 100%;
    text-align: center !important;
    font-size: 18px;
  }
  .fs-header-bottom > *:nth-child(2) {
    flex: 1;
    margin-top: 20px;
  }
  .feature-section {
    padding: 50px 0;
  }
  .feature-section p {
    max-width: 100%;
  }
  .feature-section .title-header {
    flex-wrap: wrap;
    gap: 20px;
  }
  .feature-section .btn {
    width: 50px;
    height: 50px;
  }
  .feature-section .card {
    min-height: 430px;
    min-width: 330px;
    width: 330px;
    margin: 10px auto;
  }
  .feature-section .card .card-text h1 {
    font-size: 30px;
  }
  .title-header {
    padding: 0 50px;
  }
  .title-header h1 {
    font-size: 30px;
  }
  .title-header p {
    max-width: 100%;
  }
  .explore-section {
    padding: 50px 0;
  }
  .explore-more-text {
    padding: 0 45px;
  }
  .explore-right-content {
    padding-top: 0;
  }
  .ex-right-all > div {
    flex-wrap: wrap;
    justify-content: center;
  }
  .ex-right-all > div div {
    margin-block-end: 10px;
  }
  .product-section {
    padding: 50px 0;
  }
  .product-section .title-header h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    color: rgb(29, 29, 33);
  }
  .product-section .card {
    max-width: 100%;
    max-height: 100%;
  }
  .feature-pr-container {
    padding: 0 20px;
  }
  .product-tab-btns {
    flex-wrap: wrap;
  }
  .product-tab > *:nth-child(1) {
    flex-basis: 100%;
  }
  .fs-land-footer-foodsphere .title-header {
    padding: 0px 0px;
  }
  .fs-land-footer-foodsphere .title-header h1 {
    font-size: 36px;
    line-height: 36px;
    margin-top: 26px;
  }
  .fs-land-footer-foodsphere .title-header p {
    font-size: 16px;
    line-height: 25px;
  }
  .fs-land-footer .title-header {
    padding: 0px 0px;
  }
  .fs-land-footer .title-header h1 {
    font-size: 36px;
    line-height: 36px;
    margin-top: 56px;
  }
  .fs-land-footer .title-header p {
    font-size: 16px;
    line-height: 25px;
  }
  .kso-about-header-content {
    min-height: 300px;
  }
  .kso-about-header-content p {
    font-size: 18px;
  }
  .kso-about-header-content h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
  .relation-section,
  .mission-section,
  .location-section,
  .offer-section,
  .culture-section,
  .target-section,
  .innovation-section,
  .core-values-section,
  .kso-about-footer {
    padding: 40px 10px;
    margin: 0;
  }
  .relation-section p,
  .mission-section p,
  .location-section p,
  .offer-section p,
  .culture-section p,
  .target-section p,
  .innovation-section p,
  .core-values-section p,
  .kso-about-footer p {
    font-size: 18px;
  }
  .relation-section h2,
  .mission-section h2,
  .location-section h2,
  .offer-section h2,
  .culture-section h2,
  .target-section h2,
  .innovation-section h2,
  .core-values-section h2,
  .kso-about-footer h2 {
    font-size: 20px !important;
    line-height: 30px;
  }
  .mission-section,
  .location-section,
  .target-section,
  .culture-section {
    margin: 15px;
    padding-inline: 0;
  }
  .offer-section img {
    max-width: 100%;
  }
  .kso-about-footer h1 {
    font-size: 30px;
  }
  .fs-contact-header {
    min-height: 350px;
  }
  .fs-contact-header img {
    max-width: 300px;
  }
  .contact-form-card > *:nth-child(2) {
    padding: 20px;
  }
  .contact-text h1 {
    font-size: 40px;
  }
  .contact-text p {
    font-size: 16px;
  }
  .map-title {
    font-size: 30px;
    padding: 15px 0;
  }
  .dist-map-title {
    padding: 10px 0;
  }
  .dist-map-title h3 {
    font-size: 22px;
  }
  .dist-map-title h5 {
    font-size: 18px;
    padding-top: 0px;
  }
  .int-pin-btn {
    width: 30px;
    height: 30px;
  }
  .dist-sec-bottom * {
    font-size: 18px !important;
  }
  .py-100 {
    padding: 30px 0;
  }
  .auth-left {
    background: white;
    padding: 20px 30px;
    order: 2;
    display: block;
  }
  .login-bg {
    min-height: 200px;
  }
  .auth-form-container h1 {
    font-size: 22px;
    font-weight: 700;
  }
  .auth-form-container p,
  .auth-form-container label {
    font-size: 16px;
  }
  .auth-form-container form > * {
    margin-block-end: 20px;
  }
  .auth-form-container button {
    font-size: 18px;
  }
  .addToCartDrawer {
    max-width: 450px !important;
  }
  .cart-item > img {
    max-width: 80px;
    height: 80px;
  }
  .cart-item h3 {
    font-size: 20px;
  }
  .cart-item p {
    font-size: 18px;
  }
  .cart-item .remove-item-icon {
    max-width: 15px;
  }
  .cart-item-container {
    padding: 10px;
  }
  .cart-item-detail p,
  .cart-item-detail h6 {
    font-size: 18px;
  }
  .cart-btns button {
    font-size: 16px !important;
  }
  .fs-pr-pills {
    justify-content: center;
    height: auto;
    margin: 10px;
    gap: 10px;
  }
  .fs-pr-pills > * {
    flex-basis: 100%;
  }
  .fs-pr-pills .nav-item .nav-link {
    font-size: 15px;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-block-end: 0px;
  }
  .px-100 {
    padding: 0 40px;
  }
  .product-img img {
    height: auto;
  }
  .product-section .tab-content {
    margin-top: 0;
  }
  .frequently-asked-section .accordion-button {
    font-size: 25px;
  }
  .process-card-container .card h3 {
    font-size: 25px;
  }
  .process-card-container .card p {
    font-size: 16px;
  }
  .process-card-container .card > * {
    gap: 20px !important;
  }
  .process-card-container .card > * img {
    max-width: 60px !important;
  }
  .fs-56 {
    font-size: 30px;
  }
  .fs-booking-btn {
    max-width: 100%;
    padding: 10px 0;
  }
  .feature-btn {
    padding: 12px 25px;
    max-width: 264px;
  }
  .footer-form button {
    padding: 12px;
    max-width: 100%;
  }
  .kso-index-btns > * {
    height: 48px !important;
    font-size: 16px !important;
  }
  .shop-landing-header h1 {
    font-size: 55px !important;
    padding: 50px 0;
  }
  .most-selling-section .swiper-button-next {
    right: 2% !important;
  }
  .most-selling-section .swiper-button-prev {
    left: 2% !important;
  }
  .shop-title h1 {
    font-size: 30px;
  }
  .cat-img {
    width: 100%;
  }
  .fs-64 {
    font-size: 35px;
  }
  .fs-48 {
    font-size: 30px;
  }
  .fs-footer-card {
    min-height: auto;
  }
  .fs-footer-card h1 {
    font-size: 30px;
  }
  .fs-footer-card p {
    max-width: 100% !important;
  }
  .cowork-content-fixed {
    min-height: 150px;
  }
  .fs-product-detail-content h1 {
    font-size: 40px;
    padding-top: 10px;
  }
  .kso-new-header {
    min-height: 250px;
  }
  .kso-new-header h1 {
    font-size: 30px;
  }
  .kso-new-main {
    padding: 0;
  }
  .fs-banner-logo {
    display: none;
  }
  .fs-banner-carosuel .carousel-inner h1 {
    font-size: 35px !important;
  }
  .fs-banner-carosuel .carousel-indicators {
    bottom: 0;
  }
  .fs-banner-carosuel .carousel-control-next {
    margin-right: 30px;
  }
  .fs-banner-carosuel .carousel-control-prev {
    margin-left: 30px;
  }
  .fs-banner-carosuel .carousel-control-next,
  .fs-banner-carosuel .carousel-control-prev {
    width: 45px;
    height: 45px;
  }
  .fs-banner-carosuel .carousel-control-next img,
  .fs-banner-carosuel .carousel-control-prev img {
    max-width: 20px !important;
  }
  .fs-header-main-content .header-explore {
    padding: 12px 20px;
    font-size: 16px;
  }
  .detail-about-section img {
    height: 100%;
    width: 100%;
  }
  .glide__slide.glide__slide--active {
    transform: scale(1);
  }
  .glide__arrow--left,
  .glide__arrow--right {
    width: 45px;
    height: 45px;
  }
  .glide__arrow--left img,
  .glide__arrow--right img {
    max-width: 20px;
  }
  .glide__arrow--right {
    right: 5%;
  }
  .glide__arrow--left {
    left: 5%;
  }
  .toggle-password {
    top: 39px;
  }
  .fs-banner-carosuel .carousel-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .core-values-section,
  .fs-about-content {
    padding: 30px 0;
  }
  .dimensions-container .tab-pane img {
    height: 100%;
  }
  .whatson-page > h1 {
    text-align: center;
  }
  .whatson-year {
    margin-left: unset;
    max-width: 150px;
    height: 40px;
  }
  .whatson-year h5 {
    font-size: 16px !important;
  }
  .offer-btm-img img:nth-child(2) {
    max-width: 250px !important;
  }
  .reserve-section {
    background-size: cover;
    background-position: center;
  }
  .auth-form-container .form-control {
    height: auto;
  }
  .addToCartDrawer {
    padding: 0;
  }
  .cart-btns {
    flex-wrap: wrap;
  }
  .cart-btns .outlined-btn {
    font-size: 14px;
  }
  .cart-btns .filled-btn {
    font-size: 14px;
  }
  .cart-item > img {
    max-width: 50px;
    height: 50px;
  }
  .cart-item h4 {
    font-size: 18px;
  }
  .cart-item h3 {
    font-size: 16px;
  }
  .cart-item .btn.text-danger {
    font-size: 16px;
  }
  .ce-card {
    min-height: auto;
  }
  .contact-form-card {
    border-radius: 10px;
  }
  .fs-small-header {
    height: 25vh;
    position: relative;
  }
  .fs-small-header #small-banner-img {
    max-width: 45%;
  }
  .fs-small-header .navbar-expand-lg {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: white !important;
  }
  .fs-small-header .navbar-expand-lg i {
    color: black !important;
  }
  .kso-about-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
  }
  .booking-event-main-heading {
    min-height: 10vh;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
  }
  .coworking-space {
    position: absolute !important;
    left: 0% !important;
    top: 0% !important;
    transform: translate(0%, 0%) !important;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 96px 0px 60px 0px !important;
  }
  .mob-height {
    min-height: 10vh !important;
    display: grid;
  }
  .fs-signup-modal .modal-body > * {
    font-size: 16px;
    margin-block-end: 20px;
  }
  .uf-cards .inner-uf {
    top: 33%;
  }
  .kso-about-header {
    position: relative;
    min-height: 400px !important;
  }
  .ex-right-all img {
    width: 100%;
    height: 260px;
  }
  .oases-about-map {
    height: 300px;
    clip-path: inset(0 round 15px);
    object-fit: contain;
  }
  .explore-right-cards {
    min-height: auto;
  }
  .visit-site-section .kso-paralax-logo {
    max-width: 50% !important;
  }
  .visit-site-section .kso-visit-btn {
    max-width: 100%;
    width: unset;
  }
  .kso-main-header h1,
  .more-oasis-section h1 {
    font-size: 48px;
    max-width: 100%;
  }
  .kso-description-section p {
    font-size: 20px;
  }
  .kso-updated-footer .updated-footer-logo {
    max-width: 160px;
  }
  .kso-updated-footer .kso-update-bottom {
    align-items: center;
    flex: 1;
    justify-content: space-between;
  }
  .kso-updated-footer .kso-update-bottom img {
    max-width: 95px !important;
  }
  .media-header-title {
    font-size: 45px;
  }
  .media-detail-header-content h1 {
    font-size: 45px;
    max-width: 100%;
  }
  .media-crumbs p {
    font-size: 12px;
  }
  .media-detail-img img {
    max-height: 300px;
  }
  .fs-header-bottom p {
    text-align: center !important;
  }
  .relation-section h5.mx-50,
  .mission-section h5.mx-50,
  .location-section h5.mx-50,
  .offer-section h5.mx-50,
  .culture-section h5.mx-50,
  .target-section h5.mx-50,
  .core-values-section h5.mx-50,
  .innovation-section h5.mx-50 {
    max-width: 100%;
  }
  .updated-footer-logo {
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .event-pk-mob {
    display: block;
  }
  .event-pk-desk {
    display: none;
  }
}
@media (max-width: 576px) {
  .fs-footer-rights p {
    order: 2;
    margin-top: 20px;
  }
}
@media (max-width: 550px) {
  .contact-form-card > div:nth-child(1) {
    padding: 47px;
  }
  .fs-about-footer {
    min-height: 100%;
  }
  .fs-newsletter {
    min-height: auto !important;
  }
  .whats-foodsphere-card {
    min-height: 0px;
  }
  .social-btns button {
    background-color: #F58F2D;
    border-radius: 50px;
    color: white;
    padding: 10px 20px;
    font-size: 20px !important;
    text-transform: uppercase;
    width: 100%;
    justify-content: center;
    text-transform: lowercase;
    display: flex;
    align-items: center;
  }
  .social-btns button:hover {
    border: 1px solid #F58F2D;
    background-color: white;
    color: #F58F2D;
  }
  .kso-visit-btn {
    font-size: 16px !important;
  }
  .location-section p {
    margin: 0px 0px;
  }
  .fs-inovation {
    background-color: #f9f4e4;
  }
  .fs-inovation h1 b {
    font-size: 31px;
    line-height: 30px;
  }
  .fs-footer-card {
    max-width: 100%;
    padding: 20px;
  }
  .fs-footer-card h1 {
    font-size: 30px;
    line-height: 41px;
  }
  .fs-footer-card button {
    width: 100%;
    padding: 12px;
  }
  .distinct-map-section h1 {
    font-size: 27px;
    line-height: 43px;
  }
  .map-section h1 {
    font-size: 40px;
    line-height: 56px;
  }
  .arrive-section h1 {
    font-size: 40px;
    line-height: 60px;
  }
  .arrive-section h3 b {
    font-size: 20px;
    line-height: 26px;
  }
  .arrive-section p {
    width: 100%;
  }
  .entry-ticket-content .title-header h1 {
    font-size: 36px;
    line-height: 45px;
  }
  .entry-ticket-content .title-header p {
    font-size: 22px;
    line-height: 33px;
  }
  .entry-ticket-content .title-header h4 {
    font-size: 24px;
    line-height: 28px;
  }
  .experience-food-section h1 {
    font-size: 31px;
    line-height: 44px;
  }
  .explore-section .title-header h1 {
    font-size: 30px;
    line-height: 35px;
  }
  .explore-section .title-header p {
    font-size: 16px;
    line-height: 26px;
  }
  .feature-section h1 {
    font-size: 28px;
    line-height: 35px;
  }
  .fs-land-footer-foodsphere .title-header {
    padding: 0px 0px;
  }
  .fs-landing-header,
  .event-header-image,
  .booking-landing-header,
  .fs-home-header,
  .new-cowork-background,
  .shop-landing-header {
    height: 100vh;
    position: relative;
  }
  .event-header-image {
    height: 25vh !important;
    position: relative;
  }
  .fs-contact-header {
    padding-top: 250px;
  }
  .fs-header-main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
  }
  .fs-header-main-content h1 {
    font-size: 35px !important;
    width: 100%;
    line-height: 39px;
    padding: 20px 0;
  }
  .fs-header-main-content button {
    padding: 13px 18px;
    font-size: 15px;
    line-height: 22px;
    margin-top: 20px;
  }
  .fs-header-bottom > *:nth-child(2) {
    flex: 0;
    margin: 20px auto;
  }
  .my-booking-section {
    padding: 35px;
  }
  .my-booking-header h1 {
    margin-bottom: 23px;
  }
  .my-booking-header input {
    background-size: 20px;
    max-width: 175px;
    min-height: 45px;
  }
  .addToCartDrawer {
    max-width: 360px !important;
    padding: 0;
  }
  .cart-item-container {
    padding: 0;
  }
  .cart-item {
    gap: 10px;
  }
  .cart-item p {
    font-size: 14px;
  }
  .cart-btns button {
    font-size: 14px !important;
    white-space: nowrap;
  }
  .checkout-header {
    padding-inline: 35px;
  }
  .account-card {
    margin: 20px;
  }
  .checkout-header {
    padding-bottom: 25px;
  }
  .px-100 {
    padding: 0 30px;
  }
  .product-section .nav-pills {
    height: auto;
  }
  .fs-calender-page {
    padding: 20px;
  }
  .fs-calender-page .fs-calender-title h1 {
    font-size: 28px;
    line-height: 45px;
  }
  .fs-calender-title {
    flex-wrap: wrap;
  }
  .fs-calender-title h1 {
    font-size: 40px;
  }
  .fs-calender-title > *:nth-child(2) {
    flex: 1;
    margin-top: 10px;
  }
  .fs-calender-section .accordion-button {
    font-size: 28px;
  }
  .shop-title {
    text-align: center !important;
  }
  .fs-land-footer-foodsphere {
    width: 100%;
    height: 530px;
  }
  .fs-land-footer-foodsphere .title-header {
    padding: 0px 0px;
  }
  .fs-contect-section-coworking .title-header h1 {
    font-size: 49px;
  }
  .frequently-asked-section .title-header h1 {
    font-size: 30px;
    line-height: 36px;
  }
  .frequently-asked-section .title-header p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: rgb(96, 96, 96);
  }
  .event-booking-header h1 {
    font-size: 37px;
  }
  .booking-fs-section {
    background-color: white;
  }
  .booking-fs-section h1 {
    font-size: 35px;
    line-height: 60px;
  }
  .entry-process-section {
    background-color: #FFF7E2;
    position: relative;
    min-height: 700px;
  }
  .entry-process-section .title-header h1 {
    font-size: 48px;
    line-height: 50px;
  }
  .experience-section h1 {
    font-size: 30px;
    line-height: 45px;
  }
  .fs-header-bottom p {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .process-card-container .card {
    margin: 0px 20px;
  }
  .kso-new-header h1 {
    font-size: 28px;
  }
  .fs-banner-carosuel .carousel-indicators {
    bottom: -50px;
  }
  .shop-landing-header h1 {
    padding: 20px 0;
    font-weight: 700;
    font-size: 35px !important;
  }
  .feature-section .card {
    min-width: 100%;
    width: 100%;
  }
  .feature-section .card .card-text h1 {
    font-size: 25px;
  }
  .feature-section .card .card-location span {
    font-size: 16px;
  }
  .feature-section .card .event {
    padding: 5px 10px;
  }
  .feature-section .card .event p {
    font-size: 12px !important;
  }
  .feature-section .btn-book {
    padding: 8px 0;
    font-size: 14px;
  }
  .glide__arrow--right {
    right: -7% !important;
  }
  .glide__arrow--left {
    left: -7% !important;
  }
  .booking-event-main-heading h1 {
    font-size: 35px;
  }
  .event-booking-content {
    max-width: 100% !important;
  }
  .mx-sm-100 {
    max-width: 100% !important;
  }
  .about-container h2 {
    font-size: 16px !important;
  }
  .dist-sec-bottom h3 {
    font-size: 14px !important;
  }
  .kso-new-card,
  .kso-soon-card1,
  .kso-soon-card2 {
    min-height: 300px;
  }
  .reserve-section {
    min-height: 250px;
  }
  .reserve-section h1 {
    font-size: 22px;
    font-weight: 700;
  }
  .core-values-section img {
    max-width: 70px !important;
  }
  .core-values-section .col div {
    min-height: 90px;
  }
  .fs-core-value img {
    max-width: 100% !important;
  }
  .core-values-section .col {
    flex-basis: 100%;
  }
  .kso-about-link-section img {
    max-width: 25px;
  }
  .kso-about-link-section a {
    font-size: 20px !important;
  }
  .kso-mid-logo img {
    max-width: 100px;
  }
  .uf-cards .inner-uf {
    top: 28%;
  }
  .uf-cards p {
    font-size: 16px;
  }
  .innovation-section p {
    max-width: 100%;
  }
  .fs-nav-right a {
    font-size: 20px !important;
  }
  .fs-banner-carosuel .carousel-inner h1 {
    font-size: 36px !important;
    font-weight: 700;
    line-height: 50px;
  }
  .ko-logo {
    max-width: 27px;
  }
  .kso-main-header h1,
  .more-oasis-section h1 {
    font-size: 35px;
  }
  .kso-visit-btn {
    padding: 10px 30px;
  }
  .kso-description-section p {
    font-size: 18px;
  }
  .media-header-title {
    font-size: 35px;
    padding-inline: 20px;
  }
  .media-detail-header-content h1 {
    font-size: 30px;
  }
  .detail-news-section h1 {
    font-size: 30px;
  }
  .media-gallery-section .glide__arrow--right {
    right: 5% !important;
  }
  .media-gallery-section .glide__arrow--left {
    left: 5% !important;
  }
  .more-oasis-section .title-header {
    max-width: 100% !important;
  }
}
@media (max-width: 500px) {
  .kso-about-header-content h1 {
    font-size: 25px;
    max-width: 100% !important;
  }
  .relation-section h5,
  .mission-section h5,
  .location-section h5,
  .offer-section h5,
  .culture-section h5,
  .target-section h5,
  .core-values-section h5,
  .innovation-section h5 {
    font-size: 16px !important;
  }
  .ce-card h1 {
    top: 54%;
  }
}
@media (max-width: 450px) {
  #navbar h4 {
    font-size: 18px !important;
  }
  .kso-soon-card1 h1,
  .kso-soon-card2 h1 {
    font-size: 30px;
  }
  .nav-container .logo-left {
    max-width: 80px !important;
  }
  .nav-container .logo-right {
    max-width: 24px;
  }
  footer {
    padding: 10px;
  }
  .kso-main-footer {
    padding: 10px;
  }
  .kso-main-footer h5 {
    font-size: 14px;
  }
  .kso-main-footer p {
    font-size: 14px;
  }
  .kso-main-footer img {
    max-width: 100px !important;
  }
  .offer-btm-img img:nth-child(2) {
    max-width: 200px !important;
  }
  .product-img img:not(.sp-logo) {
    min-height: 300px !important;
  }
  .px-100 {
    padding: 0 10px;
  }
  .fs-land-footer-foodsphere {
    height: auto;
  }
  .explore-more-btn button {
    font-size: 14px;
  }
  .entry-ticket-content .btn {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .feature-btn {
    font-size: 14px;
  }
  .explore-more-btn .explore-btn {
    font-size: 14px;
  }
  .filled-btn {
    font-size: 14px !important;
  }
  #grote_image {
    min-height: 350px;
  }
  .most-selling-section .filled-btn {
    font-size: 14px;
  }
  .footer-form input {
    padding: 10px;
    max-width: 100%;
  }
  .checkout-card {
    padding: 10px;
  }
  .checkout-card h4 {
    font-size: 18px;
  }
}

/*# sourceMappingURL=style.css.map */
