* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --blue: #4074d9;
  --zBlue: #214ab2;
  --green: #73d2ba;
  --zGreen: #45a182;
  --lGreen: #8ce3d1;
  --lGreen2: #e0f5ef;
  --lGreen3: #f2fbf8;
  --red: #f56e8f;
  --lRed: #ffd1dc;
  --yellow: #fbc003;
  --purple: #af89ff;
  --white: #ffffff;
  --black: #020101;
  --zBlack: #000;
  --text: #444444;
  --offWhite: #f2f2f2;
  --offBlue: #cedbf5;
}

@font-face {
  font-family: "Raleway";
  src:
    local("Raleway"),
    url("../fonts/raleway.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Amatics";
  src:
    local("Amatics"),
    url("../fonts/amatics.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Baloochettan";
  src:
    local("Baloochettan"),
    url("../fonts/baloochettan.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Heebo";
  src:
    local("Heebo"),
    url("../fonts/heebo.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

body,
html {
  color: var(--text);
  font-family: "Raleway";
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  overflow: hidden;
  overflow-y: auto;
}

body.noScroll,
html:has(.noScroll) {
  overflow: hidden !important;
}

a,
button,
input {
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

h1 {
  font-family: "Baloochettan" !important;
  font-weight: 400 !important;
  color: var(--black);
  font-size: 47px;
  line-height: 54px;
}

h2 {
  font-family: "Baloochettan" !important;
  font-weight: 400 !important;
  color: var(--black);
  font-size: 47px;
  line-height: 54px;
}

h3 {
  font-family: "Amatics";
  font-weight: 400 !important;
  color: #444;
  font-size: 23px;
  line-height: 30px;
}

h4 {
  font-family: "Baloochettan" !important;
  font-size: 27px;
  font-weight: 700;
  line-height: 30px;
}

h5,
h6 {
  font-family: "Baloochettan" !important;
  font-weight: 400 !important;
}

/*--header--*/
.top-navbar {
  background-color: var(--lGreen2);
  border-color: var(--lGreen);
  border-bottom: 2px dotted var(--lGreen);
  padding: 5px 34px;
  position: relative;
}

.top-navbar .row-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-navbar .left-text-box p {
  font-size: 14px;
  margin: 0;
}

.top-navbar .right-address-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.top-navbar .right-address-box a {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}

.top-navbar .right-address-box a span.icon {
  position: relative;
  width: 20px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-navbar .right-address-box a span.icon span.svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}

.top-navbar .right-address-box a span.icon span.svg-bg svg {
  width: 100%;
  height: auto;
}

.top-navbar .right-address-box a span.icon span.svg-bg svg path {
  fill: #c0392b;
}

.top-navbar .right-address-box a span.icon span.svg-icon {
  position: relative;
  z-index: 1;
  display: flex;
}

.top-navbar .right-address-box a:nth-child(2) span.icon span.svg-bg svg path {
  fill: #1a9e74;
}

.main-header {
  background-color: var(--lGreen2);
}

.main-header .container-fluid {
  padding: 0 34px;
}

.main-header .row-box {
  display: flex;
  justify-content: space-between;
}

.main-header .logo-box a {
  display: flex;
  align-items: center;
}

.main-header .logo-box {
  display: flex;
}

.main-header .row-box .logo-box img {
  width: auto;
  max-width: 100%;
  height: 86px;
}

.menu-column-box {
  display: flex;
  gap: 20px;
}

.menu-column-box .menu-box {
  display: flex;
  gap: 16px;
}

.dsektop-menu ul {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}

.dsektop-menu ul>li {
  margin: 0 23px;
  position: relative;
  display: block;
  padding: 40px 0px;
}

.dsektop-menu>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-family: "Baloochettan";
  font-weight: 400;
  color: var(--text);
  line-height: 20px;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
}

.dsektop-menu>ul>li>a:after,
.dsektop-menu>ul>li.active>a:after,
.dsektop-menu>ul>li.active>.if-sub-menu a:after,
.dsektop-menu>ul>li>.if-sub-menu a:after {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1) rotate(20deg);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 x=%220px%22 y=%220px%22  width=%2238px%22 height=%2238px%22 viewBox=%220 0 102 102%22 xml:space=%22preserve%22%3E%3Cpath fill=%22%23ffd7cd%22 d=%22M72.434,95.811c0,0,41.985-13.987,20.969-67.473c-21.017-53.486-52.713-10.31-64.487-15.001 C7.479,4.795-1.051,55.257,4.631,67.678C11.792,83.332,15.192,111.994,72.434,95.811z%22/%3E%3C/svg%3E") no-repeat center;
  transition: 0.3s cubic-bezier(0.43, 0.41, 0.36, 0.9);
  z-index: -1;
}

.dsektop-menu>ul>li.active>a:after,
.dsektop-menu>ul>li:hover>a:after,
.dsektop-menu>ul>li:hover>.if-sub-menu a:after,
.dsektop-menu>ul>li.active>.if-sub-menu a:after {
  opacity: 1;
  visibility: visible;
  z-index: -1;
}

.dsektop-menu>ul>li>a span {
  position: relative;
  z-index: 2;
}

ul.sub-menu {
  position: absolute;
  left: 0;
  width: 240px;
  margin: 0;
  padding: 25px 15px 41px;
  background: var(--lGreen2) url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 x=%220px%22 y=%220px%22 width=%22224px%22 height=%2237px%22 viewBox=%220 0 223.667 37%22 enable-background=%22new 0 0 223.667 37%22 xml:space=%22preserve%22%3E%3Cpath fill=%22%238dc8ae%22 d=%22M223.01,37V1c-7.894,0.24-17.928,9.408-30.346,36H223.01z%22/%3E%3Cpath fill=%22%238dc8ae%22 d=%22M60.587,37c-3.161-12.248-14.219-44.089-35.892,0H60.587z%22/%3E%3Cpath fill=%22%238dc8ae%22 d=%22M26.183,37c-1.868-7.879-9.68-34.341-25.481-7.604V37H26.183z%22/%3E%3Cpath fill=%22%238dc8ae%22 d=%22M201.838,37c-3.083-12.085-14.181-44.743-36.085,0H201.838z%22/%3E%3Cpath fill=%22%238dc8ae%22 d=%22M162.898,37c-3.106-12.138-14.193-44.544-36.015,0H162.898z%22/%3E%3Cpath fill=%22%238dc8ae%22 d=%22M143.936,37c-2.734-12.365-18.787-74.042-53.443,0H143.936z%22/%3E%3Cpath fill=%22%238dc8ae%22 d=%22M93.705,37C90.56,24.786,79.486-7.24,57.756,37H93.705z%22/%3E%3C/svg%3E") repeat-x 1px 100%;
  background-size: contain;
  border-radius: 7px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 5px 25px 0 rgba(4, 4, 4, 0.05);
  height: auto;
  top: calc(100% + 60px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.dsektop-menu>ul>li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 9;
}

.dsektop-menu ul li.menu-items-has-children>ul.sub-menu a {
  text-decoration: none;
  color: var(--text);
  font-family: "Baloochettan";
}

.dsektop-menu ul li.menu-items-has-children>ul.sub-menu li {
  margin: 0;
  padding: 5px 10px;
}

.dsektop-menu ul li.menu-items-has-children>ul.sub-menu {
  display: block;
}

.menu-column-box .menu-box .login-btn {
  display: flex;
  align-items: center;
}

.menu-column-box .menu-box .login-btn a {
  text-decoration: none;
  font-family: "Baloochettan";
  color: var(--zBlue);
  text-transform: uppercase;
}

.sidebar-opner div#sidebar-opner {
  display: flex;
  gap: 5px;
  padding: 20px 5px;
  cursor: pointer;
}

.sidebar-opner div#sidebar-opner span {
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background-color: #1a9e74;
  position: relative;
}

.menu-column-box .sidebar-opner {
  display: flex;
  align-items: center;
}

div#sidebar-opner:hover span {
  animation: qodef-dot-jump 0.35s forwards cubic-bezier(0.43, 0.41, 0.36, 0.9);
}

@keyframes qodef-dot-jump {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--header-end--*/

/*--hero-sec--*/
.hero-slider .hero-slide {
  padding: 0 20px;
  position: relative;
  height: 620px;
}

.hero-slider .hero-slide img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .hero-slide:before {
  content: "";
  width: calc(100% - 40px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 20px;
  background: var(--black);
  opacity: 0.5;
  z-index: 1;
  border-radius: 12px;
}

.hero-slider-content {
  left: 0 !important;
  right: 0 !important;
  margin: auto !important;
}

.hero-slide-content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 0 80px;
}

.hero-slide-content .text-box {
  text-align: center;
  width: 100%;
  max-width: 550px;
}

.hero-slide-content .text-box h1 {
  color: #fff;
}

.hero-slide-content .text-box p {
  color: #fff;
}

.hero-slide-content .text-box .btn-box {
  padding: 30px 0 0;
}

.hero-slide-content .text-box .btn-box a {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--white);
  border: var(--white) 2px solid;
  border-radius: 8px;
  background-color: #ffffff40;
  padding: 12px 24px;
  display: inline-block;
}

.hero-slide-content .text-box .btn-box a:hover {
  background-color: var(--white);
  color: var(--text);
}

.controls button {
  position: absolute;
  background-image: none !important;
  background-color: transparent !important;
  width: 77px !important;
  height: 77px !important;
  margin: 0 !important;
  color: #fff;
  text-align: center;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 37px);
  border: none;
}

.controls button:before {
  content: "";
  position: absolute;
  display: block;
  width: 75px;
  height: 77px;
  background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 x=%220px%22 y=%220px%22     width=%2277px%22 height=%2277px%22 viewBox=%220 0 102 102%22 xml:space=%22preserve%22%3E%3Cpath fill=%22%23ffd7cd%22 d=%22M72.434,95.811c0,0,41.985-13.987,20.969-67.473c-21.017-53.486-52.713-10.31-64.487-15.001 C7.479,4.795-1.051,55.257,4.631,67.678C11.792,83.332,15.192,111.994,72.434,95.811z%22/%3E%3C/svg%3E") no-repeat center;
  transition: 0.3s cubic-bezier(0.43, 0.41, 0.36, 0.9);
  will-change: transform;
  backface-visibility: hidden;
}

.controls button svg {
  transform: rotate(180deg);
  transform-origin: center center;
  will-change: transform;
  width: 45px;
  height: 42px;
}

.controls button svg img {
  transform: translateX(-280%) scale(0.8);
  will-change: transform;
  backface-visibility: hidden;
}

.controls button.prev-btn svg img {
  transform: translateY(-50%) translateX(-280%) scale(0.8);
}

.controls button.next-btn svg img {
  transform: translateX(-280%) scale(0.8);
}

.controls button.next-btn {
  right: 195px !important;
  transform: rotate(180deg);
  left: inherit;
}

.controls button.prev-btn {
  left: 195px !important;
}

.controls button.prev-btn:hover:before {
  transform: scale(1.1) rotate(20deg);
}

.controls button.next-btn:hover:before {
  transform: scale(1.1) rotate(20deg);
}

.controls button.prev-btn:hover svg .qodef-pattern {
  animation: qodef-move-pattern-left 10s infinite linear;
}

.controls button.next-btn:hover svg .qodef-pattern {
  animation: qodef-move-pattern-right 10s infinite linear;
}

@keyframes qodef-move-pattern-right {
  0% {
    transform: translateX(-280%) scale(0.8);
  }

  100% {
    transform: translateX(0) scale(0.8);
  }
}

@keyframes qodef-move-pattern-left {
  0% {
    transform: translateX(-280%) translateY(-50%) scale(0.8);
  }

  100% {
    transform: translateX(0) translateY(-50%) scale(0.8);
  }
}

/*--hero-sec-end--*/

/*--helicopter-slider--*/
.heli-slider {
  width: auto;
  min-width: 940px;
  animation: 2s qodef-flight infinite ease-in-out;
}

.heli-slider svg.qodef-m-image>path {
  transform: rotateZ(0);
  transform-origin: 7% 39%;
  animation: qodef-propeler 0.4s infinite linear;
}

@keyframes qodef-propeler {
  0% {
    transform: rotateZ(0);
  }

  25% {
    transform: rotateZ(90deg);
  }

  50% {
    transform: rotateZ(180deg);
  }

  75% {
    transform: rotateZ(270deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes qodef-flight {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(24px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes scrollLeft {
  to {
    left: -950px;
  }
}

.heli-slider .e-con-inner {
  position: absolute;
  animation-timing-function: linear;
  animation-duration: 22s;
  animation-iteration-count: infinite;
}

.heli-slider .e-con-inner {
  left: max(calc(950px), 100%);
  animation-name: scrollLeft;
}

/*--helicopter-slider-end--*/

/*--testionials-slider-sec--*/
.testimonails-slider .qodef-e-inner {
  padding-bottom: 48px;
}

.testimonails-slider .qodef-e-content {
  text-align: center;
  cursor: grab;
}

.testimonails-slider .qodef-e-text {
  margin: 0px 0px 28px;
  padding: 0px 20%;
}

.testimonails-slider .qodef-e-author {
  font-family: "Baloochettan";
  font-weight: 400;
  color: rgb(68, 68, 68);
  font-size: 17px;
  line-height: 1.294em;
  overflow-wrap: break-word;
  margin: 0px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.testimonails-slider .qodef-e-author-image {
  margin-right: 5px;
  display: flex;
}

.testimonails-slider .qodef-e-author-image img {
  width: auto;
  border-radius: 100%;
}

ul.slick-dots {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 13px;
}

ul.slick-dots li {
  display: block;
}

ul.slick-dots li button {
  width: 16px;
  height: 15px;
  top: 0px;
  position: relative;
  opacity: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2215.907%22 height=%2215.035%22%3E%3Cpath fill=%22none%22 stroke=%22%23353535%22 stroke-miterlimit=%2210%22 d=%22M4.337 2.909c3.15-2.368 7.294-2.161 9.252.437 1.975 2.614 1.032 6.668-2.11 9.028-3.138 2.381-7.275 2.178-9.255-.439-1.968-2.607-1.012-6.65 2.113-9.026z%22/%3E%3C/svg%3E") no-repeat center !important;
  border-radius: 100%;
  margin: 0px 13px 0px 0px !important;
  border: none;
  padding: 0;
  font-size: 0;
}

ul.slick-dots li button:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: -3px;
  left: -3px;
  opacity: 0;
  background-color: rgb(255, 215, 205);
  z-index: 0;
  border-radius: 100%;
  transition: opacity 0.3s ease-out;
}

ul.slick-dots li.slick-active button:after,
ul.slick-dots li:hover button:after {
  opacity: 1;
}

ul.slick-dots li.slick-active button:after,
ul.slick-dots li:hover button {
  opacity: 1;
}

/*--testionials-slider-sec-end--*/

/*--plan-sec--*/
.popular-paln {
  right: 0 !important;
  left: 0 !important;
  margin: auto !important;
  width: 160px !important;
}

/*--plan-sec-end--*/

/*--video-sec--*/
.video-box img {
  height: auto !important;
  object-fit: inherit !important;
  width: 100% !important;
  max-width: inherit !important;
  aspect-ratio: auto !important;
}

/*--video-sec-end--*/

/*--event-sec--*/
.event-box {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--lGreen2);
  display: block;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

.event-box .event-box-img {
  height: 215px;
  position: relative;
  overflow: hidden;
}

.event-box .event-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in;
}

.event-slide {
  padding: 0 15px 60px;
}

.event-box-content {
  padding: 25px;
}

.event-box-content-features li:not(:last-child) {
  margin-bottom: 10px;
}

.event-box-content-features li {
  position: relative;
  padding-left: 30px;
  display: block;
  color: var(--text);
  white-space: nowrap;
}

.event-box-content-features li span.event-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 x=%220px%22 y=%220px%22  width=%221.4667em%22 height=%221.4667em%22 viewBox=%220 0 102 102%22 xml:space=%22preserve%22%3E%3Cg transform=%22rotate(180 50 50)%22%3E%3Cpath fill=%22%23fff%22 d=%22M72.434,95.811c0,0,41.985-13.987,20.969-67.473c-21.017-53.486-52.713-10.31-64.487-15.001 C7.479,4.795-1.051,55.257,4.631,67.678C11.792,83.332,15.192,111.994,72.434,95.811z%22/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  width: 22px;
  height: 22px;
  line-height: 1.4667em;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
}

.event-box .event-box-img .event-date {
  position: absolute;
  right: 15px;
  top: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 x=%220px%22 y=%220px%22  width=%221.4667em%22 height=%221.4667em%22 viewBox=%220 0 102 102%22 xml:space=%22preserve%22%3E%3Cg transform=%22rotate(180 50 50)%22%3E%3Cpath fill=%22%23fff%22 d=%22M72.434,95.811c0,0,41.985-13.987,20.969-67.473c-21.017-53.486-52.713-10.31-64.487-15.001 C7.479,4.795-1.051,55.257,4.631,67.678C11.792,83.332,15.192,111.994,72.434,95.811z%22/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  text-align: center;
  width: 80px;
  height: 80px;
  background-size: contain;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  display: none !important;
}

.event-box .event-box-img .event-date span {
  display: block;
  font-family: "Baloochettan";
  font-size: 40px;
  line-height: 40px;
  color: #c0392b;
  padding: 5px 0 0;
}

.event-box-content h4 {
  margin: 0 0 20px;
}

.event-box:hover .event-box-img img {
  transform: scale(1.2) rotate(5deg);
}

.events-sec .controls button.prev-btn {
  left: -20px !important;
}

.events-sec .controls button.next-btn {
  right: -20px !important;
}

.events-sec .controls button.prev-btn,
.events-sec .controls button.next-btn {
  top: calc(50% - 50px);
}

/*--event-sec-end--*/

/*--blog-sec--*/
.blog-box {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--lGreen2);
  display: block;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

.blog-box .blog-box-img {
  height: 420px;
  position: relative;
  overflow: hidden;
}

.blog-box .blog-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in;
}

.blog-slide {
  padding: 0 15px 60px;
}

.blog-box .blog-box-img .blog-date span {
  display: block;
  font-family: "Baloochettan";
  font-size: 40px;
  line-height: 40px;
  color: #c0392b;
  padding: 5px 0 0;
}

.blog-box:hover .blog-box-img img {
  transform: scale(1.2) rotate(5deg);
}

.blogs-sec .controls button.prev-btn {
  left: -20px !important;
}

.blogs-sec .controls button.next-btn {
  right: -20px !important;
}

.blogs-sec .controls button.prev-btn,
.blogs-sec .controls button.next-btn {
  top: calc(50% - 50px);
}

.blog-box .blog-box-img .blog-date {
  position: absolute;
  right: 15px;
  top: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 x=%220px%22 y=%220px%22  width=%221.4667em%22 height=%221.4667em%22 viewBox=%220 0 102 102%22 xml:space=%22preserve%22%3E%3Cg transform=%22rotate(180 50 50)%22%3E%3Cpath fill=%22%23fff%22 d=%22M72.434,95.811c0,0,41.985-13.987,20.969-67.473c-21.017-53.486-52.713-10.31-64.487-15.001 C7.479,4.795-1.051,55.257,4.631,67.678C11.792,83.332,15.192,111.994,72.434,95.811z%22/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  text-align: center;
  width: 80px;
  height: 80px;
  background-size: contain;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
}

.blog-box-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  border-radius: 12px;
  width: calc(100% - 30px);
  padding: 15px;
  background: hsl(0deg 0% 100% / 90%);
}

.blog-box-content h4 {
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-box-content .line-btn {
  padding: 10px 0 0;
}

.blog-box-content .line-btn span {
  border-bottom: var(--zGreen) 1px solid;
  padding: 0 0 2px;
  display: inline-block;
  color: var(--zGreen);
  font-weight: 700;
}

/*--blog-sec-end--*/

/*--newsletter-sec--*/
.newsletter-form {
  /* position: relative;
  padding-right: 150px; */
}

.newsletter-form .input-box {
  width: 100%;
}

.newsletter-form .input-box input {
  /* border: #fff 2px solid;
  border-radius: 8px 0 0 8px;
  width: 100%;
  box-sizing: border-box; */
}

.newsletter-form .submit-box {
  /* position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 150px; */
}

.newsletter-form .submit-box span.wpcf7-spinner {
  display: none;
}

.newsletter-form .submit-box input {
  background-color: #1a9e74;
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 0 8px 8px 0;
  color: var(--white);
  font-family: "Baloochettan";
}

.newsletter-form .submit-box p {
  height: 100%;
}

.newsletter-form .input-box input:focus-visible {
  outline: none;
}

.newsletter-form span.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-response-output {
  text-align: center !important;
  color: #fff;
}

.newsletter-form .submit-box input:hover {
  background-color: var(--text);
}

/*--newsletter-sec-end--*/

/*--sidebar--*/
.backdrop-box {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  transition: all 0.3s ease;
}

.backdrop-box.active {
  right: 0;
  opacity: 0.5;
  visibility: visible;
}

.backdrop-box {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.5;
  z-index: 999;
  /* visibility: hidden; */
}

.sidebar-box {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  max-width: 300px;
  background-color: var(--lGreen3);
  height: 100%;
  z-index: 999;
  padding: 0;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-box.active {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.sidebar-mainmenu ul li,
.sidebar-menu ul li {
  display: block;
}

.sidebar-mainmenu ul li a,
.sidebar-menu ul li a {
  display: block;
  position: relative;
  padding-left: 30px;
  font-family: "Baloochettan";
  color: var(--text);
}

.sidebar-mainmenu ul li a:before,
.sidebar-menu ul li a:before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #c0392b;
  border-radius: 100px;
}

.sidebar-mainmenu ul li:not(:last-child),
.sidebar-menu ul li:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar-menu ul li a {
  color: var(--text);
  opacity: 0.7;
}

.sidebar-menu ul li a:before {
  background-color: var(--blue);
}

.sidebar-menu {
  padding: 25px;
}

.sidebar-mainmenu {
  padding: 25px;
  background-color: var(--lGreen2);
}

.sidebar-close {
  position: fixed;
  top: 20px;
  z-index: 9999;
  backdrop-filter: blur(2px);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  border: var(--white) 1px solid;
  right: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff73;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transform: scale(0);
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.sidebar-close svg {
  width: 26px;
  height: 26px;
}

.sidebar-close.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/*--sidebar-end--*/

/*--footer-sec--*/
.footer-sec .footer-main {
  background-color: var(--lGreen2);
}

.footer-main .row-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-main .logo-box img {
  width: 100%;
  max-width: 212px;
}

.footer-main .logo-text {
  padding: 5px 0 0;
}

.f-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0 0;
}

.f-social-links a {
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-main .row-box .f-col {
  padding: 60px 0;
}

.footer-main h3 {
  font-family: "Baloochettan" !important;
  font-size: 23px;
  line-height: 30px;
  margin: 0;
}

.footer-main ul {
  padding: 20px 0 0 0;
}

.footer-main ul li {
  display: block;
}

.footer-main ul li a {
  font-family: "Raleway";
  color: var(--text);
  font-size: 14px;
  line-height: 20px;
}

.footer-main ul li a span.post-date {
  display: block;
}

.footer-main ul li a span.post-name {
  display: block;
  font-family: "Baloochettan";
  font-size: 17px;
  line-height: 22px;
}

.footer-main ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-main ul.footer-menu a {
  position: relative;
  padding-left: 16px;
}

.footer-main ul.footer-menu a:before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 6px;
  background: #1a9e74;
  border-radius: 100px;
}

.footer-main ul.contact-info a {
  position: relative;
  padding-left: 30px;
}

.footer-main ul.contact-info a span {
  background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 x=%220px%22 y=%220px%22  width=%221.4667em%22 height=%221.4667em%22 viewBox=%220 0 102 102%22 xml:space=%22preserve%22%3E%3Cg transform=%22rotate(180 50 50)%22%3E%3Cpath fill=%22%23fff%22 d=%22M72.434,95.811c0,0,41.985-13.987,20.969-67.473c-21.017-53.486-52.713-10.31-64.487-15.001 C7.479,4.795-1.051,55.257,4.631,67.678C11.792,83.332,15.192,111.994,72.434,95.811z%22/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  width: 22px;
  height: 22px;
  line-height: 1.4667em;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
}

.footer-main ul li a:hover {
  color: var(--zGreen);
}

.copyright-box {
  background-color: var(--lGreen3);
  padding: 15px;
  justify-content: center !important;
}

.copyright-box p {
  font-size: 15px;
  line-height: 24px;
  font-family: "Raleway";
  text-align: center;
  margin: 0 !important;
}

.copyright-box p span {
  font-family: "Baloochettan";
  color: #c0392b;
  font-size: 16px;
}

/*--footer-sec-end--*/

/*--welcome-popup--*/
.welcome-popup {
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}

.welcome-popup-body-main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
}

.welcome-popup-content {
  position: relative;
}

.popup-close {
  position: absolute;
  top: 0px !important;
  right: 0;
  z-index: 1;
  cursor: pointer;
  display: flex;
  background: #73d2ba;
}

.popup-close svg path {
  fill: #fff;
}

.welcome-popup-content {
  display: flex;
  background-color: var(--lGreen2);
  border-radius: 12px;
  overflow: hidden;
  padding: 16px;
}

.welcome-popup-body {
  width: 100%;
  max-width: 800px;
  position: relative;
}

.welcome-popup-content .welcome-popup-text {
  width: 50%;
  padding: 0 30px 0 10px;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.welcome-popup-content .welcome-popup-image {
  width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.welcome-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-popup-content p {
  padding: 0 0 20px;
}

.welcome-popup-text .newsletter-form {
  padding: 0;
}

.welcome-popup-text .newsletter-form p {
  padding: 0;
}

.welcome-popup-text .newsletter-form .submit-box {
  position: relative;
  padding: 10px 0 0;
  width: 100%;
}

.welcome-popup-text .newsletter-form .submit-box input {
  border-radius: 8px;
}

.welcome-popup-text .newsletter-form input {
  border-radius: 8px;
}

.welcome-popup-content p strong {
  color: #c0392b;
}

.welcome-popup-content .welcome-popup-text h2 {
  color: var(--blue);
}

.popup-close svg {
  width: 30px;
  height: 30px;
}

/*--welcome-popup-end--*/

/*--about-page----------------------------------*/
.up-down-anim-img {
  animation: 4s qodef-float infinite ease-in-out;
}

@keyframes qodef-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(16px);
  }

  100% {
    transform: translateY(0);
  }
}

#up-down-anim-img2 {
  animation-delay: 2s;
}

.faq-list summary.e-n-accordion-item-title:hover span.e-closed svg#Layer_2,
.faq-list summary.e-n-accordion-item-title span.e-closed path.cls-1 {
  transition: all 0.3s ease-in;
}

.faq-list span.e-opened path.cls-1 {
  fill: var(--white) !important;
}

.faq-list summary.e-n-accordion-item-title:hover span.e-closed svg#Layer_2 {
  background-color: var(--zGreen) !important;
  border-radius: 100px;
}

.faq-list summary.e-n-accordion-item-title:hover span.e-closed path.cls-1 {
  fill: #fff !important;
}

/*--about-page-end------------------------------*/

/*--contact-page--------------------------------*/
.icon-list li.elementor-icon-list-item span.elementor-icon-list-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 x=%220px%22 y=%220px%22     width=%2277px%22 height=%2277px%22 viewBox=%220 0 102 102%22 xml:space=%22preserve%22%3E%3Cpath fill=%22%23ffd7cd%22 d=%22M72.434,95.811c0,0,41.985-13.987,20.969-67.473c-21.017-53.486-52.713-10.31-64.487-15.001 C7.479,4.795-1.051,55.257,4.631,67.678C11.792,83.332,15.192,111.994,72.434,95.811z%22/%3E%3C/svg%3E") no-repeat center;
  width: 22px;
  height: 22px;
  line-height: 1.4667em;
  display: flex;
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  background-size: contain;
}

.contact-form .input-box {
  padding: 10px 0;
}

.contact-form .input-box input,
.contact-form .input-box textarea {
  border: #bab9b9 1px solid;
  border-radius: 8px;
  padding: 10px 15px;
}

.contact-form .input-box textarea {
  height: 120px;
}

.contact-form .submit-box input {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--white);
  border: #c0392b 2px solid;
  border-radius: 8px;
  background-color: #c0392b;
  padding: 12px 24px;
  display: inline-block;
  min-width: 160px;
}

.contact-form .submit-box input:hover {
  background-color: var(--white);
  color: var(--text);
}

.contact-page-form form.invalid .wpcf7-response-output {
  color: var(--text);
}

.contact-page-form form.sent .wpcf7-response-output {
  color: var(--zGreen);
}

.divider {
  padding: 15px 0px;
  margin-bottom: 0px !important;
}

.pl-0 a {
  padding-left: 0px !important;
}

.divider div {
  border: 1px dashed #45a18238;
}

/*--contact-page-end----------------------------*/

/*--blog-page-----------------------------------*/
.inner-hero-sec {
  position: relative;
}

.inner-hero-sec-content {
  background-color: var(--lGreen2);
  padding: 60px 0 120px;
}

.inner-hero-sec-content .text-box {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 15px;
}

.inner-hero-sec-content .text-box h3 {
  margin: 0;
}

.inner-hero-sec-content .text-box h1 {
  margin: 0;
  text-align: center;
  font-size: 57px;
}

.inner-hero-sec .elementor-shape.elementor-shape-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  transform: rotate(180deg);
}

.inner-hero-sec .elementor-shape.elementor-shape-bottom svg {
  height: 30px;
  width: calc(100% + 1.3px);
}

.inner-hero-sec .elementor-shape.elementor-shape-bottom svg path {
  fill: var(--white);
}

.blog-page-listing,
.blog-category-content {
  padding: 80px 0;
}

.blogs-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/*--blog-page-end-------------------------------*/

/*--single-blog---------------------------------*/
.post-content figure.post-featured {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}

.post-content figure.post-featured img {
  width: 100%;
  height: auto;
}

.post-content {
  padding: 60px 0;
}

nav.post-navigation {
  border-top: var(--offWhite) 1px solid;
  padding: 40px 0 80px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

footer.post-footer {
  padding: 10px 0;
}

nav.post-navigation a {
  border-bottom: #c0392b 1px solid;
  color: #c0392b;
  padding: 0 0 5px;
  display: inline-block;
}

.single section#comments {
  display: none;
}

.related-posts-sec {
  background-color: var(--lGreen3);
  padding: 80px 0;
  position: relative;
}

.related-posts-sec .title-box {
  text-align: center;
  padding: 0 0 30px;
}

.related-posts-sec .elementor-shape.elementor-shape-bottom {
  position: absolute;
  top: -1px;
  left: 0;
}

.related-posts-sec .elementor-shape.elementor-shape-bottom svg {
  height: 30px;
  width: calc(100% + 1.3px);
}

.related-posts-sec .elementor-shape.elementor-shape-bottom svg path {
  fill: var(--white);
}

nav.post-meta-top a {
  color: #c0392b;
}

/*--single-blog-end-----------------------------*/

/*--events-page---------------------------------*/
.event-page-content {
  padding: 80px 0;
}

.events-search-sec {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 0 0 40px;
}

.events-search-sec .events-name-box {
  width: 50%;
  position: relative;
}

.events-search-sec .events-category-box {
  width: 20%;
  position: relative;
}

.events-search-sec .events-location-box {
  width: 20%;
  position: relative;
}

.events-search-sec .events-btn-box {
  width: 10%;
  position: relative;
}

.events-search-sec label {
  font-size: 14px;
  color: var(--text);
  display: block;
  padding: 0 0 10px;
}

.events-search-sec input,
.events-search-sec select {
  border: #acacac 1px solid !important;
  border-radius: 8px !important;
  height: 50px !important;
  padding: 10px 12px !important;
  -webkit-appearance: none;
}

.events-search-sec .events-name-box:after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(/wp-content/uploads/2025/11/search.png);
  position: absolute;
  top: 35px;
  left: 10px;
  background-size: contain;
}

.events-category-box:after,
.events-location-box:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 10px;
  top: 40px;
  background-image: url(/wp-content/uploads/2025/11/down-arrow.png);
  background-size: contain;
  pointer-events: none;
  opacity: 0.6;
}

.events-search-sec .events-name-box input {
  padding-left: 45px !important;
}

.events-btn-box .search-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--white);
  border: #c0392b 2px solid;
  border-radius: 8px;
  background-color: #c0392b;
  padding: 12px;
  display: block;
  width: 100%;
  text-align: center;
}

.events-btn-box .search-btn:hover {
  background-color: var(--white);
  color: var(--text);
}

.blogs-listing.list-style {
  grid-template-columns: repeat(1, 1fr);
}

.blogs-listing.list-style a.event-box {
  display: flex;
}

.blogs-listing.list-style .event-box .event-box-img {
  width: 300px;
  height: auto;
  min-height: 260px;
}

.blogs-listing.list-style .event-box .event-box-content {
  flex: 1;
}

.event-filter {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 0 30px;
}

.event-filter .event-style {
  display: flex;
  align-items: center;
  gap: 15px;
}

.event-filter .event-style .grid-style,
.event-filter .event-style .list-style {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: transparent;
  padding: 5px;
  cursor: pointer;
}

.event-filter .event-style .grid-style svg,
.event-filter .event-style .list-style svg {
  width: 100%;
  height: 100%;
}

.event-filter .event-style .grid-style.active,
.event-filter .event-style .list-style.active,
.event-filter .event-style .grid-style:hover,
.event-filter .event-style .list-style:hover {
  background-color: var(--lGreen2);
}

/*--events-page-end-----------------------------*/

/*--find-parks-page---------------------------------*/
.findParks-page-content {
  padding: 80px 0;
}

.findParks-page-content .row-box {
  /* display: flex; */
}

.findParks-page-content .row-box .findParks-search-sec {
  width: 100%;
  display: flex;
  /* flex-flow: column; */
  gap: 15px;
  align-items: end;
}

.findParks-page-content .row-box .parks-sec {
  flex: 1;
  /* padding-left: 40px; */
}

.findParks-search-sec label {
  font-size: 14px;
  color: var(--text);
  display: block;
  padding: 0 0 10px;
}

.findParks-category-box {
  position: relative;
  width: 100%;
  min-height: 100px;
}

.findParks-location-box {
  position: relative;
  width: 100%;
  min-height: 100px;
}

.findParks-btn-box {
  width: 100%;
  min-height: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.findParks-search-sec input,
.findParks-search-sec select {
  border: #acacac 1px solid !important;
  border-radius: 8px !important;
  height: 50px !important;
  padding: 10px 12px !important;
  -webkit-appearance: none;
}

.findParks-search-sec .findParks-name-box:after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(/wp-content/uploads/2025/11/search.png);
  position: absolute;
  bottom: 34px;
  left: 10px;
  background-size: contain;
}

.findParks-search-sec small {
  font-size: 11px;
  font-style: italic;
}

.findParks-category-box:after,
.findParks-location-box:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 10px;
  top: 40px;
  background-image: url(/wp-content/uploads/2025/11/down-arrow.png);
  background-size: contain;
  pointer-events: none;
  opacity: 0.6;
}

.findParks-name-box {
  position: relative;
  width: 100%;
  min-height: 100px;
}

.parks-sec .event-filter {
  justify-content: flex-start;
  margin-top: 2rem;
}

.findParks-search-sec .findParks-name-box input {
  padding-left: 45px !important;
}

.findParks-btn-box .search-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--white);
  border: #c0392b 2px solid;
  border-radius: 8px;
  background-color: #c0392b;
  padding: 12px;
  display: block;
  width: 100%;
  text-align: center;
}

.findParks-btn-box .search-btn:hover {
  background-color: var(--white);
  color: var(--text);
}

.parks-sec .blogs-listing {
  grid-template-columns: repeat(2, 1fr);
}

.parks-sec .blogs-listing.list-style {
  grid-template-columns: repeat(1, 1fr);
}

.findParks-filter-opener {
  display: none;
}

/*--find-parks-page-end-----------------------------*/

/*--login-page--------------------------------------*/
.login-panel {
  padding: 80px 0;
  background-color: var(--lGreen3);
}

.login-panel .row-box {
  display: flex;
  align-items: center;
}

.login-panel .left-login-panel {
  width: 50%;
  text-align: center;
  padding: 0 30px 0 0;
}

.login-panel .right-login-panel {
  padding: 0 0 0 30px;
  width: 50%;
}

.login-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}

.login-box h3 {
  text-align: center;
  margin: 0;
  padding: 15px 0;
}

.login-with-apple-btn {
  padding: 30px 0 0;
}

.login-with-apple-btn button {
  background: var(--black) url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzEiIGhlaWdodD0iNDQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjMDAwIiBkPSJNMCAwaDMxdjQ0SDB6Ii8+PHBhdGggZD0iTTE1LjcxIDE0Ljg4NWMuODU4IDAgMS45MzMtLjU4IDIuNTczLTEuMzUzLjU4LS43IDEuMDAyLTEuNjggMS4wMDItMi42NThhMiAyIDAgMCAwLS4wMzYtLjM3NGMtLjk1NC4wMzYtMi4xMDIuNjQtMi43OSAxLjQ1LS41NDQuNjE1LTEuMDM5IDEuNTgyLTEuMDM5IDIuNTcyIDAgLjE0NS4wMjQuMjkuMDM2LjMzOGExLjMgMS4zIDAgMCAwIC4yNTQuMDI1TTEyLjY5IDI5LjVjMS4xNzIgMCAxLjY5MS0uNzg1IDMuMTUzLS43ODUgMS40ODYgMCAxLjgxMi43NiAzLjExNi43NiAxLjI4IDAgMi4xMzgtMS4xODMgMi45NDctMi4zNDIuOTA2LTEuMzMgMS4yOC0yLjYzNCAxLjMwNS0yLjY5NC0uMDg1LS4wMjQtMi41MzctMS4wMjctMi41MzctMy44NDEgMC0yLjQ0IDEuOTMzLTMuNTQgMi4wNDItMy42MjQtMS4yOC0xLjgzNi0zLjIyNS0xLjg4NC0zLjc1Ny0xLjg4NC0xLjQzNyAwLTIuNjA5Ljg3LTMuMzQ2Ljg3LS43OTcgMC0xLjg0OC0uODIyLTMuMDkyLS44MjItMi4zNjcgMC00Ljc3MSAxLjk1Ny00Ljc3MSA1LjY1MyAwIDIuMjk1Ljg5NCA0LjcyMyAxLjk5MyA2LjI5My45NDIgMS4zMjkgMS43NjQgMi40MTYgMi45NDcgMi40MTYiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0ibm9uemVybyIvPjwvZz48L3N2Zz4=) 17px 2px no-repeat !important;
  background-size: 31px 44px;
  border-color: var(--black);
  color: #fff;
  padding: 10px 15px;
  width: 100%;
  padding-left: 50px;
  border-radius: 8px;
  border: var(--black) 2px solid;
  font-size: 16px;
  font-weight: 500;
}

.login-with-google-btn {
  padding: 10px 0 0;
}

.login-with-google-btn button {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PHBhdGggZmlsbD0iI0VBNDMzNSIgZD0iTTI0IDkuNWMzLjU0IDAgNi43MSAxLjIyIDkuMjEgMy42bDYuODUtNi44NUMzNS45IDIuMzggMzAuNDcgMCAyNCAwIDE0LjYyIDAgNi41MSA1LjM4IDIuNTYgMTMuMjJsNy45OCA2LjE5QzEyLjQzIDEzLjcyIDE3Ljc0IDkuNSAyNCA5LjUiLz48cGF0aCBmaWxsPSIjNDI4NUY0IiBkPSJNNDYuOTggMjQuNTVjMC0xLjU3LS4xNS0zLjA5LS4zOC00LjU1SDI0djkuMDJoMTIuOTRjLS41OCAyLjk2LTIuMjYgNS40OC00Ljc4IDcuMThsNy43MyA2YzQuNTEtNC4xOCA3LjA5LTEwLjM2IDcuMDktMTcuNjUiLz48cGF0aCBmaWxsPSIjRkJCQzA1IiBkPSJNMTAuNTMgMjguNTljLS40OC0xLjQ1LS43Ni0yLjk5LS43Ni00LjU5cy4yNy0zLjE0Ljc2LTQuNTlsLTcuOTgtNi4xOUMuOTIgMTYuNDYgMCAyMC4xMiAwIDI0cy45MiA3LjU0IDIuNTYgMTAuNzh6Ii8+PHBhdGggZmlsbD0iIzM0QTg1MyIgZD0iTTI0IDQ4YzYuNDggMCAxMS45My0yLjEzIDE1Ljg5LTUuODFsLTcuNzMtNmMtMi4xNSAxLjQ1LTQuOTIgMi4zLTguMTYgMi4zLTYuMjYgMC0xMS41Ny00LjIyLTEzLjQ3LTkuOTFsLTcuOTggNi4xOUM2LjUxIDQyLjYyIDE0LjYyIDQ4IDI0IDQ4Ii8+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGg0OHY0OEgweiIvPjwvc3ZnPg==) 24px 8px no-repeat;
  background-size: 17px 30px;
  border-color: var(--black);
  color: var(--black);
  padding: 10px 15px;
  width: 100%;
  padding-left: 48px;
  border-radius: 8px;
  border: var(--black) 2px solid;
  font-size: 16px;
  font-weight: 500;
}

.login-with-google-btn button:hover {
  background-color: var(--white);
  color: var(--black);
}

.or-box {
  margin: 30px 0;
  text-align: center;
  position: relative;
}

.or-box:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--text);
  position: absolute;
  left: 0;
  top: 52%;
  opacity: 0.3;
}

.or-box span {
  background-color: var(--white);
  z-index: 1;
  position: relative;
  padding: 0 10px;
}

.login-form .input-box {
  padding: 0 0 20px;
}

.login-form .input-box input {
  border: #bab9b9 1px solid;
  border-radius: 8px;
  padding: 10px 15px;
}

.login-form .input-box label {
  color: var(--text);
  padding: 0 0 10px;
  display: block;
}

.login-form .submit-box {
  padding: 10px 0 30px;
}

.login-form .submit-box button {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--white);
  border: #c0392b 2px solid;
  border-radius: 8px;
  background-color: #c0392b;
  padding: 12px 24px;
  display: inline-block;
  width: 100%;
}

.login-form .submit-box button:hover {
  background-color: var(--white);
  color: var(--black);
}

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

.forgot-password a {
  color: var(--blue);
  font-weight: 500;
}

.login-panel .left-login-panel .btn-box {
  padding: 30px 0 0;
}

.login-panel .left-login-panel .btn-box a {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--white);
  border: #c0392b 2px solid;
  border-radius: 8px;
  background-color: #c0392b;
  padding: 12px 24px;
  display: inline-block;
}

.login-panel .left-login-panel .btn-box a:hover {
  background-color: var(--white);
  color: var(--text);
}

/*--login-page-end----------------------------------*/

/*--park-details-page-------------------------------*/
.park-details-content {
  padding: 80px 0;
}

.park-details-content .row {
  display: flex;
  gap: 30px;
}

.park-social-links {
  background-color: var(--lGreen2);
  padding: 20px;
  border-radius: 10px;
}

.park-details-content-right {
  width: 40%;
  display: flex;
  flex-flow: column;
  gap: 30px;
}

.park-details-content-left {
  flex: 1;
  width: 60%;
}

.park-social-links ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.park-social-links ul li {
  display: block;
}

.park-social-links ul a {
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.park-social-links ul a svg {
  width: 16px;
  height: 16px;
}

.park-social-links ul a svg path {
  fill: #c0392b;
}

.park-address {
  background-color: var(--lGreen2);
  padding: 20px;
  border-radius: 10px;
}

.park-details-content-right h4 {
  margin: 0 0 15px;
  border-bottom: var(--zGreen) 1px solid;
  padding-bottom: 10px;
}

.park-contact-info {
  background-color: var(--lGreen2);
  padding: 20px;
  border-radius: 10px;
}

.park-contact-info li {
  display: block;
}

.park-contact-info li a {
  font-family: "Raleway";
  color: var(--text);
  font-size: 14px;
  line-height: 20px;
  position: relative;
  padding-left: 30px;
}

.park-contact-info li span {
  background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 x=%220px%22 y=%220px%22  width=%221.4667em%22 height=%221.4667em%22 viewBox=%220 0 102 102%22 xml:space=%22preserve%22%3E%3Cg transform=%22rotate(180 50 50)%22%3E%3Cpath fill=%22%23fff%22 d=%22M72.434,95.811c0,0,41.985-13.987,20.969-67.473c-21.017-53.486-52.713-10.31-64.487-15.001 C7.479,4.795-1.051,55.257,4.631,67.678C11.792,83.332,15.192,111.994,72.434,95.811z%22/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  width: 22px;
  height: 22px;
  line-height: 1.4667em;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
}

.park-contact-info li:not(:last-child) {
  margin-bottom: 10px;
}

.park-details-content-right h5 {
  margin: 0 0 10px;
}

.park-contact-info ul:not(:last-child) {
  padding-bottom: 20px;
}

.park-details-content-left-in {
  border-radius: 10px;
  padding: 35px;
  background-color: var(--lGreen2);
}

/*.park-fetaured-image {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}*/
.park-fetaured-image {
  position: relative;
}

.park-imageSlide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.park-fetaured-image .park-image-slider {
  padding-bottom: 40px;
}

.park-image-slider .slick-track {
  display: flex;
}

.park-image-slider .slick-slide {
  height: inherit;
}

.park-image-slider .slick-slide div {
  height: 100%;
}

.about-park {
  padding: 20px 0 0;
}

.park-rules h3 {
  padding: 20px 0 20px;
  display: block;
  margin: 0;
  font-family: "Baloochettan" !important;
}

.park-rules li:not(:last-child) {
  margin-bottom: 10px;
}

.park-rules ul {
  padding-left: 15px;
}

.park-map {
  border-radius: 10px;
  padding: 35px;
  background-color: var(--lGreen2);
  margin: 30px 0 0;
}

.park-map iframe {
  border-radius: 10px;
  overflow: hidden;
  border: var(--white) 1px solid !important;
  max-width: 100%;
}

.review-single {
  padding: 20px;
  margin: 15px 0 0;
  background-color: var(--lGreen2);
}

/*--park-details-page-end---------------------------*/

/*--dashboard-page----------------------------------*/
.account-dahsboard {
  padding: 80px 0;
}

.account-dahsboard .row-box {
  display: flex;
  gap: 40px;
}

.dashboard-navigation {
  width: 280px;
}

.dashboard-content {
  flex: 1;
}

.dashboard-navigation-in {
  background-color: var(--lGreen2);
  padding: 15px;
  border-radius: 10px;
}

.dashboard-navigation-in h4 {
  margin: 0 0 20px;
  font-family: "Raleway" !important;
  font-weight: 700;
}

.dashboard-navigation-in a {
  display: block;
  position: relative;
  padding: 10px 10px 10px 45px;
  border-radius: 8px;
  color: var(--text);
  margin: 5px 0;
}

.dashboard-navigation-in a span.d-icon {
  position: absolute;
  left: 10px;
  top: 11px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-navigation-in a span.d-icon svg {
  width: 16px;
  height: 16px;
}

.dashboard-navigation-in a.active,
.dashboard-navigation-in a:hover {
  background-color: var(--lGreen);
}

.dashboard-content-in {
  padding: 25px;
  background-color: var(--offWhite);
  border-radius: 10px;
  min-height: 100%;
}

.dashboard-content-title h4 {
  font-family: "Raleway" !important;
  margin: 0;
}

.dashboard-content-title {
  border-bottom: #cacaca 1px solid;
  padding: 0 0 10px;
  margin-bottom: 20px;
}

/*--dashboard-page-end------------------------------*/

/* Membership-css */
.sec_padding {
  margin: 0 !important;
  padding: 60px 0;
}

.pmpro_card {
  background: #e0f5ef !important;
  border: 1px solid #83ebcd !important;
}

.pmpro_level_name_text {
  margin: 0 !important;
}

.pmpro_card_content a {
  text-decoration: none;
  font-weight: 600;
}

.pmpro_btn {
  background-color: #f56e8f !important;
  border: 1px solid #f56e8f !important;
}

.pmpro_btn:hover {
  background-color: transparent !important;
  color: #f56e8f !important;
}

.pmpro_section {
  margin-bottom: 32px !important;
}

.pmpro_table thead th {
  border-top: 0 !important;
}

.pmpro_actions_nav a {
  text-decoration: none;
  font-weight: 600;
}

/* Membership-css-END */

/* ********Order-Recived******** */

.woocommerce-order-received .page-content {
  padding-top: 120px;
}

.woocommerce-order-received .page-content pre:first-child {
  display: none;
}

.woocommerce-order-received .page-content .wp-block-preformatted .woocommerce .woocommerce-order {
  height: unset;
  min-height: unset;
  max-height: unset;
  display: flex;
  flex-direction: column;
}

.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  white-space: normal;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
  gap: 16px;
  margin-bottom: 0;
  margin-top: 40px;
  background: #f2fbf8;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #7ad8bf;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.woocommerce-thankyou-order-details:before,
.woocommerce-thankyou-order-details:after {
  display: none !important;
}

.woocommerce-thankyou-order-details li,
.woocommerce ul.order_details li:last-of-type {
  float: unset !important;
  width: 100%;
  border-right: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  line-height: normal !important;
  flex-direction: column;
  gap: 12px;
  color: #505050;
  font-size: 18px !important;
  background: #e0f5ef;
  border-top: 2px solid #1b8164 !important;
  border-radius: 10px;
  vertical-align: unset !important;
  padding: 14px !important;
  white-space: normal;
  font-weight: 900;
}

.woocommerce-thankyou-order-details li strong {
  font-size: 16px !important;
  font-weight: 500;
  font-family: system-ui !important;
}

.woocommerce-order-details {
  background: #f2fbf8;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #7ad8bf;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0 !important;
}

.woocommerce-order-received .page-content table td,
.woocommerce-order-received .page-content table th,
table woocommerce-order-received .page-content thead:first-child tr:first-child th {
  border: 1px solid #a6e9d5 !important;
  line-height: 1.5;
  padding: 15px;
  vertical-align: top;
  font-family: system-ui !important;
}

table tbody>tr:nth-child(odd)>td,
table tbody>tr:nth-child(odd)>th {
  background-color: rgb(166 233 213 / 32%);
}

.woocommerce-order-received h2 {
  border-bottom: 1px solid #a6e9d5;
  padding-bottom: 15px;
  margin-bottom: 28px;
  color: #1c5349;
}

section.woocommerce-customer-details {
  background: #f2fbf8;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #7ad8bf;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.woocommerce .woocommerce-customer-details address {
  background: #fff;
  border: 1px solid #a6e9d5 !important;
  padding: 26px !important;
  white-space: normal;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
}

.__web-inspector-hide-shortcut__,
.__web-inspector-hide-shortcut__ * {
  visibility: visible !important;
}

.booking-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.participant-details {
  padding: 16px;
  background: #e0f5ef;
  border: 1px solid #7ad8bf !important;
  border-radius: 7px;
}

.participant-details h4 {
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 5px;
  color: #1c5349;
}

.participant-details p {
  font-family: system-ui;
  margin-bottom: 0;
}

.participant-details p {
  font-family: system-ui;
}

.woocommerce-customer-details--phone {
  margin-top: 12px;
}

.button.invoice {
  background: #f56e8f !important;
  color: #fff !important;
}

.button.invoice:hover {
  background: #3e72d8 !important;
  color: #fff !important;
}

/* ********Order-Recived-END******** */

.park-imageSlide {
  height: 430px !important;
  overflow: hidden;
}

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

.wc-acb-select {
  font-size: 12px !important;
}

.wc-acb-summary-label {
  font-size: 14px;
}

.woocommerce-info {
  white-space: normal;
  font-family: sans-serif;
  font-weight: 600;
}

.wc-acb-date-note {
  display: none;
}

dl,
dt,
dd {
  font-style: normal !important;
}

/* ================== */
/* ================== */
.xoo-wsc-sml-qty {
  font-weight: 500;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn,
.xoo-wsc-container .xoo-wsc-btn {
  background: #f56e8f;
  transition: 0.5s;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover,
.xoo-wsc-container .xoo-wsc-btn:hover {
  color: #f56e8f;
  border-color: #f56e8f;
}

a.xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-ft-btn-cart {
  display: none;
}

.pricing-list ul {
  position: relative;
  max-height: 280px;
  /* collapsed height */
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.pricing-list.expanded ul {
  max-height: 2000px;
  /* expanded height */
}

.read_more a {
  padding: 0;
  border: none !important;
  display: inline-block;
  margin-top: 0;
  background: none !important;
}

.read_more a:hover,
.read_more a:focus {
  background: none !important;
  color: unset !important;
}

/* .pricing-item {
    height: fit-content !important;
} */

.blogs-listing.list-style a.event-box {
  flex-wrap: nowrap;
  flex-direction: row;
}

.blogs-listing.list-style .event-box .event-box-content {
  flex: 0 0 auto;
  width: calc(100% - 170px);
}

.event-v .blogs-listing.list-style .event-box-content-features ul li.event-date {
  min-width: 300px;
  width: fit-content;
}

.event-v .blogs-listing.list-style .event-box-content-features ul .product-price-list {
  width: 80%;
}

.event-v .blogs-listing.list-style .event-box-content-features ul li.event-date {
  display: block;
}

.close-icon {
  display: none;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 31px;
  background: #f56e8f;
  font-size: 16px;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 23px;
}

.event-box-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inner-hero-sec-content .text-box h3 {
  display: none;
}

.blog-content-v p {
  margin-bottom: 26px;
}

.blog-content-v .e-con-inner {
  padding-top: 0;
}

.blog-content-v {
  margin-top: 62px;
  max-width: 90%;
  font-family: "Raleway";
}

.blog-content-v li p {
  margin: 0;
}

.blog-content-v li {
  margin-bottom: 10px;
}

.blog-content-v .e-con-inner {
  padding-top: 0;
}

.wrapper-event-price .product-price del {
  font-size: 15px;
  opacity: 1;
  color: #0000;
  font-weight: 600;
}

.event-box-content-features li span.event-add {
  font-size: 13px;
}

.wrapper-event-price .product-price del:before {
  content: "Required coins:";
  opacity: 1;
  color: #00000096;
}

.wrapper-event-price .product-price del span {
  display: none;
}

.wrapper-event-price {
  /* flex-wrap: wrap; */
  /* gap: 10px; */
}

.wrapper-event-price .product-price {
  width: 100%;
  display: none;
}

.wrapper-event-price ins bdi span {
  display: none;
}

.form-group2 {
  display: flex;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 9px;
}

.form-group2 input {
  appearance: none;
  border: none !important;
  outline: none;
}

.form-group2 button {
  background: #f56e8f;
  color: #fff;
  border-color: #f56e8f;
  padding: 0 35px;
}

.coins-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.coin-status-wrapper .btn-primary {
  background: #f56e8f;
  border: 1px solid #f56e8f;
}

.coin-status-wrapper .btn-primary:hover {
  border: 1px solid #f56e8f;
  background: #0000;
  color: #f56e8f;
}

.coin-status-wrapper.success .coin-status-card h1 {
  color: #45a182;
}

.coin-status-wrapper.failed .coin-status-card h1 {
  color: #f00;
}

.page-id-1087 a.woocommerce-Button.wc-forward.button {
  display: none;
}

body.woocommerce-account main#content .page-content .woocommerce nav.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--how-it-works a:before {
  background: url(/wp-content/uploads/2025/12/akar-icons-question.svg);
  left: 10px;
  top: 10px;
  background-size: contain;
}

/* How it works sec */
.process-video-sec iframe {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 20px 0 #00000033;
}

.how-it-works-content {
  margin-top: 30px;
  border-top: 1px solid #0000003b;
  border-bottom: 1px solid #0000003b;
  padding-top: 8px;
}

.event-box-content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-box.event-venue {
  grid-column: span 2 / span 2;
}

.user-icon-2 {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  text-align: left !important;
  color: #000000b3;
  font-size: 11px;
  margin: 0;
  margin-top: 13px;
  padding: 4px 8px;
  background: #d0f1e7;
  height: auto;
  line-height: 1.5;
}

body .wpcf7-form.invalid .wpcf7-response-output {
  border: none;
  text-align: left !important;
  color: #f00;
  font-size: 11px;
  margin: 0;
  margin-top: 13px;
  padding: 4px 8px;
  background: #ffe0e0;
  height: auto;
  line-height: 1.5;
}

.footer-main p {
  font-family: "Raleway";
}

.blog-content-v h2 {
  font-size: 32px !important;
  line-height: normal !important;
}

.blog-content-v p {
  font-size: 16px !important;
}

.blog-content-v h3 {
  font-family: "Baloochettan" !important;
  font-size: 23px !important;
  margin: 16px 0 10px 0 !important;
}

.blog-content-v h3 strong {
  font-weight: normal !important;
}

.blog-content-v ul {
  padding: 0 0 0 33px;
  margin: 8px 0;
}

.myaccount-nav-wrapper {
  position: relative;
  /* margin-bottom: 16px; */
}

/* Toggle button */
.myaccount-dropdown-toggle[type="button"] {
  display: none;
  width: 100%;
  padding: 8px 8px;
  background: #8ce3d1;
  border-radius: 6px;
  border: none;
  font-size: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #333 !important;
  font-weight: 600;
}

.myaccount-dropdown-toggle[type="button"]:hover,
.myaccount-dropdown-toggle[type="button"]:focus {
  background: #8ce3d1 !important;
}

.myaccount-dropdown-toggle .arrow {
  transition: transform 0.3s ease;
}

.myaccount-nav-wrapper.open .arrow {
  transform: rotate(180deg);
}

body.woocommerce-account main#content .page-content .woocommerce nav.woocommerce-MyAccount-navigation {
  width: 100%;
  height: 100%;
}

.link-to-dashboard a {
  display: flex;
  width: 100%;
  margin-top: 24px;
  color: var(--white);
  border: #c0392b 2px solid;
  border-radius: 8px;
  background-color: #c0392b;
  height: 50px;
  padding: 10px 18px;
  -webkit-appearance: none;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: auto;
  text-decoration: none !important;
}

.link-to-dashboard a:hover {
  background: #fff;
  color: #c0392b;
}

p.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 !important;
}

.comment-form-cookies-consent label {
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .myaccount-dropdown-toggle[type="button"] {
    display: flex;
  }

  .woocommerce-MyAccount-navigation {
    display: none;
    background: #8ce3d1;
    border-radius: 16px;
    margin-top: 8px;
    padding: 8px;
  }

  .myaccount-nav-wrapper.open .woocommerce-MyAccount-navigation {
    display: block;
  }

  .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
  }

  .woocommerce-MyAccount-navigation li {
    margin-bottom: 6px;
  }

  .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    color: #000;
  }

  .woocommerce-MyAccount-navigation li.is-active a {
    background: #ffffff;
  }
}

/* Desktop – normal sidebar */
@media (min-width: 768px) {
  .myaccount-dropdown-toggle[type="button"] {
    display: none;
  }

  .myaccount-nav-wrapper {
    max-width: 280px;
    position: relative;
    /* margin-bottom: 16px; */
    float: none;
    width: 100%;
  }
}

.load-more-container {
  text-align: center;
}

button.load-more-btn {
  display: flex;
  margin-top: 24px;
  color: var(--white);
  border: #c0392b 2px solid;
  border-radius: 8px;
  background-color: #c0392b;
  height: 50px !important;
  padding: 10px 12px !important;
  -webkit-appearance: none;
  align-items: center;
  width: fit-content;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.cart-discount a {
  display: none;
}

.cart-discount td,
.cart-discount th {
  padding-bottom: 10px;
}

.event-v .findParks-btn-box button {
  max-width: unset !important;
}

.simple-wc-register {
  background: #e0f5ef !important;
  border: 1px solid #83ebcd !important;
  padding: var(--pmpro--base--spacing--large);
  border-radius: 8px;
}

.simple-wc-register button[type="submit"] {
  background-color: var(--pmpro--color--accent);
  border: 1px solid var(--pmpro--color--accent);
  border-radius: var(--pmpro--base--border-radius);
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  color: var(--pmpro--color--base);
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
  min-height: 40px;
  outline: 0;
  padding: var(--pmpro--base--spacing--small) var(--pmpro--base--spacing--medium);
  text-align: center;
  text-decoration: none;
  text-rendering: geometricprecision;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  transition:
    background-color 0.2s,
    color 0.2s;
  width: 100%;
}

.simple-wc-register button[type="submit"]:hover {
  background: #0000;
  color: var(--pmpro--color--accent);
}

/* How it works sec */
.dsektop-menu>ul>li ul.sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-family: "Baloochettan";
  font-weight: 400;
  color: var(--text);
  line-height: 20px;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
}

/* ================== */
/* ================== */
@media (max-width: 1536px) {
  .hero-slider .hero-slide {
    height: 528px;
  }

  .hero-slide-content .text-box h1 {
    color: #fff;
    font-size: 46px;
    line-height: 50px;
  }
}

@media (max-width: 1250px) {
  .hero-slider .hero-slide {
    height: 390px;
  }

  .hero-slide-content .text-box h1 {
    font-size: 30px;
    line-height: 34px;
  }

  .top-navbar {
    padding: 5px 15px;
  }

  .main-header .container-fluid {
    padding: 0 15px;
  }

  .dsektop-menu ul>li {
    margin: 0 10px;
  }

  .dsektop-menu>ul>li>a,
  .dsektop-menu>ul>li>.if-sub-menu a,
  .dsektop-menu>ul>li>.if-sub-menu,
  .dsektop-menu>ul>li ul.sub-menu li a {
    font-size: 15px;
  }

  .main-header .row-box .logo-box img {
    height: 76px;
  }

  .controls button {
    width: 60px !important;
    height: 60px !important;
  }

  .controls button svg {
    width: 28px;
    height: 25px;
  }

  .controls button:before {
    width: 55px;
    height: 55px;
    background-size: contain;
  }

  .events-sec .controls button.prev-btn {
    left: -10px !important;
  }

  .events-sec .controls button.next-btn {
    right: -10px !important;
  }

  .event-slide {
    padding: 0 10px 60px;
  }

  .blog-slide {
    padding: 0 10px 60px;
  }

  #slider-content-main .controls button.prev-btn {
    left: 80px !important;
  }

  #slider-content-main .controls button.next-btn {
    right: 80px !important;
  }
}

@media (max-width: 1199px) {
  .woocommerce-order-received main#content {
    max-width: 100%;
    padding: 0 2%;
  }

  .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .controls button.next-btn {
    right: 120px !important;
  }

  .controls button.prev-btn {
    left: 120px !important;
  }
}

@media (max-width: 991px) {
  .dsektop-menu {
    display: none;
  }

  .main-header {
    padding: 10px 0;
  }

  .menu-column-box .menu-box {
    display: none;
  }

  .hero-slider .hero-slide {
    padding: 0 10px;
  }

  .hero-slider .hero-slide:before {
    width: calc(100% - 20px);
    left: 10px;
  }

  .controls button.prev-btn {
    left: 50px !important;
  }

  .controls button.next-btn {
    right: 50px !important;
  }

  #slider-content-main {
    position: relative !important;
  }

  .footer-main .row-box {
    display: flex;
    flex-flow: wrap;
    gap: 0;
  }

  .footer-main .row-box .f-col.f-col1 {
    width: 100%;
    text-align: center;
    padding: 20px 15px;
  }

  .f-social-links {
    justify-content: center;
  }

  .footer-main .row-box .f-col {
    width: calc(100% / 3);
    padding: 20px 15px;
  }

  .footer-main .row-box {
    margin: 0 -15px;
  }

  .footer-sec .footer-main {
    padding: 30px 0;
  }

  .inner-hero-sec-content {
    padding: 80px 0 100px;
  }

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

  .events-search-sec .events-name-box {
    width: 40%;
  }

  .events-search-sec .events-category-box {
    width: 23%;
  }

  .events-search-sec .events-location-box {
    width: 22%;
  }

  .events-search-sec .events-btn-box {
    width: 15%;
  }

  .findParks-page-content .row-box {
    display: block;
  }

  .findParks-page-content .row-box .findParks-search-sec {
    width: 300px;
    padding: 15px;
    background-color: var(--white);
    backdrop-filter: blur(2px);
    position: fixed;
    right: -301px;
    top: 0;
    height: 100%;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
  }

  .findParks-page-content .row-box .findParks-search-sec.active {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .parks-sec .event-filter {
    justify-content: space-between;
    align-items: center;
  }

  .findParks-page-content .row-box .parks-sec {
    padding-left: 0;
  }

  .findParks-filter-opener {
    background-color: var(--offWhite);
    border-radius: 7px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--text);
  }

  .findParks-filter-opener span.filter-icon {
    display: flex;
  }

  .login-panel {
    padding: 40px 0;
  }

  .login-panel .right-login-panel {
    padding: 0;
  }

  .park-details-content-left-in {
    padding: 15px;
  }

  .park-map {
    padding: 15px;
    margin: 15px 0 0;
  }

  .park-details-content .row,
  .park-details-content-right {
    gap: 15px;
  }

  .park-social-links,
  .park-address,
  .park-contact-info {
    padding: 15px;
  }

  .park-details-content {
    padding: 40px 0;
  }

  .sec_padding {
    margin: 0 !important;
    padding: 40px 0;
  }

  .pmpro_card_content {
    padding: 20px !important;
  }

  .pmpro_card_title {
    padding: 20px !important;
    padding-bottom: 0 !important;
  }

  .findParks-page-content .row-box .findParks-search-sec {
    width: 80%;
    max-width: 390px;
  }

  .findParks-page-content.event-v .row-box .findParks-search-sec,
  .findParks-page-content .row-box .findParks-search-sec,
  .findParks-page-content .row-box .findParks-search-sec.active {
    flex-direction: column !important;
  }

  .event-v .findParks-btn-box button {
    max-width: 100%;
  }

  .sidebar-opner div#sidebar-opner span {
    width: 23px;
    height: 2px;
  }

  .sidebar-opner div#sidebar-opner {
    flex-direction: column;
  }

  .close-icon {
    display: inline-flex;
  }

  .menu-column-box .menu-box .login-btn .login-profile-show .login-profile-nav {
    left: 0;
  }

  .login-btn .login-profile-show .login-profile-nav::before {
    /* right: unset !important;
        left: 7px; */
  }

  .user-icon-2 {
    display: block;
  }

  .user-icon-2 .login-btn {
    display: flex;
  }

  .wc-acb-summary-details .wc-acb-summary-row {
    border-bottom: 1px solid #8ce3d1;
    gap: 20px;
  }

  .user-icon-2 .login-btn .login-profile-show p {
    font-weight: 700;
    color: #fff !important;
    background: linear-gradient(151deg,
        rgba(32, 197, 240, 1) 0%,
        rgba(32, 100, 191, 1) 50%,
        rgba(32, 85, 184, 1) 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 4px;
    margin-bottom: 0px !important;
  }

  .user-icon-2 .login-btn .login-profile-show img {
    display: none;
  }

  .user-icon-2 .login-btn .login-profile-show .login-profile-nav {
    background: #e0f8f2 !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 17%) !important;
    padding: 10px 0px;
    position: absolute;
    right: 0px;
    top: 107%;
    min-width: 130px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  .login-btn .login-profile-show .login-profile-nav::before {
    border-bottom: 10px solid #e0f8f2;
  }

  .user-icon-2 .login-btn a {
    color: #45a182 !important;
  }

  .user-icon-2 .login-btn .login-profile-show .login-profile-nav li a {
    padding: 5px 0px;
  }

  .user-icon-2 .login-btn.login-profile-show .login-profile-nav li:not(:last-child) a {
    border-bottom: 1px solid #8ce3d1;
  }

  .user-icon-2 .login-btn .login-profile-show .login-profile-nav li {
    list-style: none;
  }

  .mobile-menu-icon {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-direction: row-reverse;
    position: relative;
  }

  .user-icon-2 .login-btn .login-profile-show .login-profile-nav li:not(:last-child) a {
    border-bottom: 1px solid #8ce3d1;
  }

  .user-icon-2 .login-btn .login-profile-show .login-profile-nav li a {
    text-align: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
    padding: 5px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    color: #45a182;
  }

  .user-icon-2 .login-btn .login-profile-show .login-profile-nav::before {
    content: "";
    position: absolute;
    right: 11px;
    top: -10px;
    border-bottom: 10px solid #e0f8f2;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    transition: all 0.3s ease-in-out;
  }

  .user-icon-2 .login-btn .login-profile-show:hover .login-profile-nav {
    opacity: 1;
    visibility: visible;
  }

  .menu-column-box .menu-box .login-btn {
    display: none;
  }

  body .menu-column-box .menu-box .dsektop-menu ul li {
    width: 100%;
  }

  body .menu-column-box .menu-box .dsektop-menu ul li>div {
    width: 100%;
    justify-content: space-between;
  }

  body .menu-column-box .menu-box .dsektop-menu ul.sub-menu {
    position: unset;
    transform: none;
    visibility: visible;
    opacity: 1;
  }

  .if-sub-menu.open .icon-plus {
    transform: rotate(45deg);
    transition: 0.3s;
  }

  .sub-menu-div-main {
    display: none;
  }

  .dsektop-menu>ul>li>a:after,
  .dsektop-menu>ul>li.active>a:after,
  .dsektop-menu>ul>li.active>.if-sub-menu a:after,
  .dsektop-menu>ul>li>.if-sub-menu a:after {
    display: none;
  }
}

@media (max-width: 767px) {
  .findParks-search-sec {
    padding-top: 4rem;
  }

  .findParks-page-content .row-box .findParks-search-sec {
    flex-direction: column;
  }

  .top-navbar .left-text-box {
    display: none;
  }

  .top-navbar .right-address-box {
    justify-content: space-between;
    gap: 15px;
    width: 100%;
  }

  .main-header .row-box .logo-box img {
    height: 56px;
  }

  .main-header {
    padding: 5px 0;
  }

  .welcome-popup-content {
    flex-flow: column-reverse;
    padding: 0;
  }

  .welcome-popup-content .welcome-popup-image {
    width: 100%;
    display: flex;
    height: 250px;
    border-radius: 0;
  }

  .welcome-popup-content .welcome-popup-image img {
    object-position: top center;
  }

  .welcome-popup-content .welcome-popup-text {
    width: 100%;
    padding: 5px 15px 20px;
  }

  .welcome-popup-content .welcome-popup-text h2 {
    margin-bottom: 5px;
  }

  .popup-close svg {
    width: 30px;
    height: 30px;
  }

  .popup-close {
    top: -35px;
    display: flex;
  }

  .hero-sec .controls {
    display: none;
  }

  .hero-slider .hero-slide {
    padding: 0 5px;
  }

  .hero-slider .hero-slide:before {
    width: calc(100% - 10px);
    left: 5px;
  }

  .hero-slide-content {
    padding: 15px 30px;
  }

  .hero-slider .hero-slide img {
    height: 400px;
    object-fit: cover;
  }

  .heli-slider .e-con-inner {
    left: max(calc(485px), 100%);
  }

  .footer-main .row-box .f-col {
    width: calc(100% / 2);
  }

  #slider-content-main .controls button.next-btn {
    right: 0 !important;
  }

  #slider-content-main .controls button.prev-btn {
    left: 0 !important;
  }

  .inner-hero-sec-content {
    padding: 40px 0 60px;
  }

  .blogs-listing {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .parks-sec .blogs-listing {
    grid-template-columns: repeat(1, 1fr);
  }

  .blog-page-listing,
  .blog-category-content,
  .event-page-content,
  .findParks-page-content {
    padding: 40px 0 50px;
  }

  .events-search-sec {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
  }

  .events-search-sec .events-name-box {
    width: 100%;
  }

  .events-search-sec .events-category-box {
    width: 100%;
  }

  .events-search-sec .events-location-box {
    width: 100%;
  }

  .events-search-sec .events-btn-box {
    width: 100%;
  }

  .event-filter {
    display: none;
  }

  .parks-sec .event-filter {
    display: flex;
  }

  .event-filter .event-style {
    display: none;
  }

  .login-panel .row-box {
    flex-flow: column-reverse;
  }

  .login-panel .right-login-panel {
    width: 100%;
  }

  .login-box {
    padding: 20px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .login-box h3 {
    padding: 0;
  }

  Dismiss .login-with-apple-btn {
    padding: 20px 0 0;
  }

  .login-panel .left-login-panel {
    width: 100%;
    text-align: center;
    padding: 30px 0 0;
  }

  .park-details-content .row {
    flex-flow: column;
  }

  .park-details-content-left {
    width: 100%;
    flex: inherit;
  }

  .park-details-content-right {
    width: 100%;
  }

  .park-map iframe {
    height: 250px;
    width: 100%;
  }

  .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-details {
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
  }

  .park-imageSlide {
    height: 374px !important;
  }

  .pricing-list ul {
    max-height: unset;
  }

  .read_more a {
    display: none;
  }

  .event-v .blogs-listing.list-style .event-box-content-features ul .product-price-list {
    width: fit-content;
  }

  .event-v .blogs-listing.list-style .event-box-content-features ul li.event-date {
    width: 100%;
    display: flex;
  }

  .coins-details {
    font-size: 13px;
  }

  .woocommerce table.my_account_orders tr td:nth-child(even) {
    background-color: #00000026 !important;
  }

  .woocommerce-account a.woocommerce-button.button.view,
  .woocommerce-account a.woocommerce-button.button.invoice {
    width: fit-content !important;
    margin-right: 7px;
    padding: 10px 18px !important;
    height: auto;
    min-height: auto;
    max-height: unset;
    border: none !important;
  }

  .event-box.event-venue {
    grid-column: span 1 / span 1;
  }

  p.comment-form-cookies-consent {
    align-items: flex-start;
  }

  p.comment-form-cookies-consent input {
    margin-top: 3px;
  }
}

@media (max-width: 480px) {
  .top-navbar .right-address-box a:first-child {
    display: none;
  }

  .top-navbar .right-address-box {
    justify-content: center;
  }

  .footer-main .row-box .f-col {
    width: 100%;
    padding: 15px;
  }

  .newsletter-form .submit-box {
    position: relative;
    width: 100%;
  }

  .newsletter-form {
    padding: 0;
  }

  .newsletter-form .input-box input {
    border-radius: 8px;
  }

  .newsletter-form .submit-box input {
    border-radius: 8px;
  }

  .newsletter-form .submit-box {
    padding: 10px 0 0;
  }

  .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    grid-template-columns: repeat(1, 1fr);
  }

  .park-imageSlide {
    height: unset !important;
  }

  .event-v .event-box-content-features ul li.event-date {
    display: block;
  }
}

/* event page css============================= */
.event-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 2rem;
}

.event-box {
  background: #0000;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.event-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.event-start {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.event-organiser {
  background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
}

.event-venue {
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.event-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.event-info {
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.6;
}

.event-info p {
  margin-bottom: 8px;
}

.event-info p:last-child {
  margin-bottom: 0;
}

.page-template-qr-scanner-php header+div {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
  padding: 20px;
  border-radius: 12px;
  background: #f2fbf8;
  border: 2px solid #7ad8be;
}

.page-template-qr-scanner-php header+div video {
  width: 100%;
  max-width: 100%;
}

.page-template-qr-scanner-php header+div h2 {
  color: #45a182;
}

button#manualScanBtn,
.reset-btn {
  background: #f56e8f;
  color: #fff;
  font-weight: 700;
  border-color: #f56e8f;
  border-radius: 8px;
}

button#manualScanBtn:hover,
.reset-btn:hover {
  background: transparent;
  color: #f56e8f;
}

.event-box {
  display: flex;
  flex-direction: column;
}

.event-box-content {
  flex: 1;
}

.pmpro_btn-password-toggle {
  border: none !important;
}

.dialog-type-lightbox {
  z-index: 999999999999999 !important;
}

input:focus {
  box-shadow: none !important;
  border-color: var(--pmpro--color--border) !important;
}

/* .wc-acb-field-card.wc-acb-booking-type-card {
        display: none;
    } */

.woocommerce table.my_account_orders td,
.woocommerce table.my_account_orders th {
  flex-direction: column;
}

/* =======Customizer=============== */
/* =======Customizer=============== */
.footer-main ul li a {
  text-decoration: none;
}

.footer-main ul.contact-info a {
  display: flex;
}

.variation-BookingDate p {
  text-wrap: nowrap !important;
}

.dsektop-menu>ul>li>a {
  z-index: 999999999;
}

.dsektop-menu>ul>li>a:after {
  z-index: -99999;
}

ul.category-filter-list {
  display: flex;
  gap: 10px;
  list-style: none;
  width: 100%;
  max-width: 1130px;
  margin: 40px auto 0px;
  padding: 0px 15px;
}

ul.category-filter-list a {
  background: #f56e8f;
  color: #fff;
  min-width: 100px;
  display: inline-block;
  text-align: center;
  padding: 8px 26px;
  border-radius: 100px;
}

.blog-sec .pagination {
  justify-content: center;
  gap: 10px;
}

.blog-sec .pagination .page-numbers {
  background: transparent;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-sec .pagination a.next.page-numbers {
  width: auto;
  height: auto;
}

.blog-sec .pagination .page-numbers.current {
  background: #f56e8f;
  color: #fff;
}

.blog-sec .pagination a.prev.page-numbers {
  width: auto;
  height: auto;
}

.sidebar-box.active {
  z-index: 99999999999;
}

.menu-column-box .sidebar-opner {
  display: none;
}

.dashboard-navigation-in a span.d-icon img {
  width: 24px;
}

.dashboard-navigation-in a span.d-icon {
  background: transparent;
}

.sidebar-close {
  left: 320px;
}

.sidebar-box {
  left: -100%;
  right: auto;
  width: 80%;
  display: none !important;
}

.sidebar-box.active {
  left: 0px;
  right: auto;
}

.sidebar-mainmenu,
.sidebar-box-in,
.sidebar-body {
  height: 100%;
}

.sidebar-mainmenu #menu-sidebar-mainmenu {
  padding-left: 0px;
}

.sidebar-close {
  display: none !important;
}

.menu-column-box .menu-box .logo-box {
  display: none;
}

body .menu-column-box .menu-box .close-header {
  display: none;
}

body {
  margin-top: 100px !important;
}

body .header-sec {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 99999;
  box-shadow: 0px 0px 10px transparent;
  transition: all 0.3s ease-in-out;
}

body.scrolled .header-sec {
  animation-duration: 0.8s;
  animation-name: animated;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 15%);
}

body.scrolled .header-sec .top-navbar {
  display: none;
}

body .header-sec .overlay {
  display: none;
}

.welcome-popup-body {
  max-height: 80vh;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: auto;
}

.popup-close {
  top: -10px;
}

.welcome-popup-content {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 17%);
}

.welcome-popup-body-main {
  background: rgba(0, 0, 0, 50%);
}

.top-navbar .right-address-box a,
.top-navbar .left-text-box p {
  font-weight: 600;
}

body .wpcf7-form.invalid .wpcf7-response-output {
  color: #f00;
  border-color: #f00 !important;
}

body .header-sec .top-navbar {
  display: none;
}

.copyright-box a {
  font-family: "Baloochettan";
  text-decoration: underline;
}

.menu-column-box .menu-box .login-btn a,
.menu-column-box .menu-box .login-btn .login-profile-show {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.menu-column-box .menu-box .login-btn .login-profile-show img {
  width: 30px;
}

.menu-column-box .menu-box .login-btn .login-profile-show p {
  font-weight: 700;
  color: #214ab2;
}

.menu-column-box .menu-box .login-btn .login-profile-show .login-profile-nav {
  position: absolute;
  background: #fff;
  padding: 20px 10px;
  right: 0px;
  top: 130%;
  min-width: 130px;
  border-radius: 5px 0 5px 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 17%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}

.menu-column-box .menu-box .login-btn .login-profile-show .login-profile-nav li {
  list-style: none;
}

.menu-column-box .menu-box .login-btn .login-profile-show .login-profile-nav li a {
  text-align: center;
  justify-content: center;
  width: 100%;
  font-size: 14px;
}

.login-btn .login-profile-show .login-profile-nav::before {
  content: "";
  position: absolute;
  right: 0;
  top: -10px;
  border-bottom: 10px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.login-btn .login-profile-show:hover .login-profile-nav::before,
.menu-column-box .menu-box .login-btn .login-profile-show:hover .login-profile-nav {
  opacity: 1;
  visibility: visible;
}

.menu-column-box .menu-box .login-btn .login-profile-show {
  cursor: pointer;
}

.menu-column-box .menu-box .login-btn .login-profile-show {
  display: none;
}

@keyframes animated {
  0% {
    top: -100px;
  }

  100% {
    top: 0;
  }
}

.inner-hero-sec-content .text-box h3 {
  font-family: "Amatic SC", sans-serif;
}

.copyright-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.copyright-box .copyright-bottom-links ul {
  display: flex;
  list-style-position: inside;
  gap: 16px;
}

.copyright-box .copyright-bottom-links ul li a {
  color: #444;
}

@media screen and (max-width: 1024px) {
  body {
    margin-top: 100px !important;
  }
}

@media (max-width: 1199px) {

  .dsektop-menu>ul>li>a,
  .dsektop-menu>ul>li>.if-sub-menu a,
  .dsektop-menu>ul>li>.if-sub-menu,
  .dsektop-menu>ul>li ul.sub-menu li a {
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {
  .menu-column-box .sidebar-opner {
    display: flex;
  }

  body .menu-column-box .menu-box .dsektop-menu {
    display: block;
  }

  body .menu-column-box .menu-box .dsektop-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  body .menu-column-box .menu-box .dsektop-menu ul li {
    padding: 0px;
    margin: 0px;
  }

  body .menu-column-box .menu-box {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: -100%;
    top: 0px;
    background: #e0f5ef;
    height: 100%;
    width: 100%;
    max-width: 320px;
    z-index: 999999;
    padding: 20px;
    transition: all 0.3s ease-in-out;
  }

  body .menu-column-box .menu-box.active {
    left: 0px;
  }

  body.active .overlay::before {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0px;
    height: 100dvh;
    content: "";
    background: rgba(0, 0, 0, 50%);
    z-index: 999;
  }

  body.active .overlay::before {
    width: 100vw;
  }

  .menu-column-box .menu-box .logo-box {
    display: flex;
  }

  .menu-column-box .menu-box .logo-box img {
    height: 70px;
  }

  body .menu-column-box .menu-box .close-header {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    background: #214ab2;
    border-radius: 50px;
  }

  body .menu-column-box .menu-box .close-header::before,
  body .menu-column-box .menu-box .close-header::after {
    content: "";
    left: 5px;
    position: absolute;
    top: 14px;
    width: 20px;
    background: #fff;
    height: 2px;
    transform: rotate(45deg);
  }

  body .menu-column-box .menu-box .close-header::after {
    transform: rotate(-45deg);
  }

  body {
    margin-top: 96px !important;
  }

  body .header-sec .overlay {
    display: block;
  }

  body.active {
    overflow: hidden !important;
  }

  body,
  body.noScroll,
  html:has(.noScroll) {
    overflow: auto !important;
  }
}

@media screen and (max-width: 767px) {
  body {
    margin-top: 66px !important;
  }

  .popup-close svg {
    height: 50px;
  }

  .copyright-box {
    flex-direction: column;
    align-items: center;
  }

  .copyright-box .copyright-bottom-links ul {
    flex-wrap: wrap;
  }

  .woolentor-step--info {
    margin-top: 0px !important;
  }

  .woolentor-checkout__logo img {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 480px) {
  ul.category-filter-list a {
    padding: 6px 16px;
  }

  ul.category-filter-list {
    flex-wrap: wrap;
    gap: 5px;
    padding: 0px 10px;
  }

  .sidebar-close {
    left: calc(80% + 15px);
  }
}

.woolentor-checkout__logo img {
  max-width: 200px;
  margin-bottom: 1rem;
}

.woocommerce-checkout {
  margin-top: 0px !important;
}

.adult-info-group .form-row label,
.child-info-group .form-row label {
  position: unset !important;
  display: block;
}

.adult-info-group .form-row input,
.child-info-group .form-row input,
.adult-info-group .form-row select,
.child-info-group .form-row select {
  width: 100%;
  padding: 8px 10px;
  margin-top: 0.5rem;
  border-radius: 4px;
  border: 1px solid #cecece;
}

.wc-acb-checkout-fields {
  border: 1px solid #7bd8c0 !important;
  background: #7bd8c014 !important;
}

.woolentor-checkout__right-sidebar {
  background: #f56e8f21 !important;
}

.woolentor-checkout__container {
  margin-bottom: 5rem;
}

.woolentor-checkout__box .input-text {
  border: 1px solid #7bd8c078 !important;
}

.adult-info-group,
.child-info-group {
  border: 1px solid #7bd8c078 !important;
}

.woolentor-checkout__right-sidebar {
  border: 1px solid #7bd8c0 !important;
  background: #f5fcfa !important;
}

.woolentor-checkout__button {
  background: #4174d9 !important;
}

.woolentor-checkout__product-left {
  align-items: start !important;
}

.woolentor-checkout__product-name a {
  font-size: 18px;
  color: #000;
}

.woolentor-checkout__product-description .variation {
  margin-top: 0.5rem !important;
}

.woolentor-checkout__product {
  align-items: start !important;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #7bd8c0;
  margin-bottom: 2rem;
}

.woolentor-checkout__order-summary-section {
  border-top: none !important;
  padding-top: 0em !important;
  padding-bottom: 1.5em;
}

.woolentor-checkout__box .woocommerce-checkout-review-order-table .cart-subtotal,
.woolentor-checkout__box .woocommerce-checkout-review-order-table .order-total {
  border-top: 1px solid #7bd8c0 !important;
}

.woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce-checkout-review-order-table .order-total th {
  font-weight: 700;
  color: #16604d !important;
}

.woolentor-checkout__product-description .variation dt,
.woolentor-checkout__product-description .variation dd p {
  font-size: 14px;
  line-height: unset !important;
  font-size: 14px;
  line-height: unset !important;
  margin-bottom: 8px !important;
}

.woolentor-checkout__policy-list li a {
  text-decoration: underline;
  font-size: 16px !important;
  color: #000 !important;
  text-underline-offset: 4px;
}

.woolentor-checkout__left-sidebar {
  margin-top: 20px !important;
}

.woocommerce-checkout-review-order-table th {
  color: #1e1e1e !important;
}

.wp-block-woocommerce-cart.alignwide {
  margin-inline: 0px !important;
}

.wc-acb-checkout-fields {
  padding: 20px !important;
}

.adult-info-group,
.child-info-group {
  padding: 20px !important;
  margin-bottom: 1rem !important;
}

/* checkout Page */
.wc-block-components-totals-coupon__button {
  color: #ffffff;
  background: #1e6e5e;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.3s ease-in-out !important;
}

.wc-block-cart__submit-button {
  background: #8ce3d1;
  text-decoration: none !important;
  font-size: 20px;
  border-radius: 10px;
  color: #1e6e5e;
  font-weight: 600;
  transition: all 0.3s linear !important;
}

.wc-block-cart__submit-button:hover {
  background: #2d7062;
  color: #fff;
}

.woocommerce-cart .wc-block-cart .wc-block-components-sidebar,
.wp-block-woocommerce-checkout-order-summary-block {
  padding: 24px;
  background-color: #e0f5ee;
  width: unset;
  flex: 1;
  height: fit-content;
  border-radius: 16px;
}

.page-id-1085 #content {
  padding: 60px 0;
}

.wc-block-cart {
  margin-bottom: 0;
}

tr.wc-block-cart-items__header th {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
  color: #1e6e5e;
}

.wc-block-cart-item__image a img {
  border-radius: 12px;
  border: #e7e7e7;
}

.wc-block-components-quantity-selector {
  border-radius: 100px !important;
  overflow: hidden;
  border: 1px solid #ccc;
}

h2.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title,
.wc-block-components-checkout-order-summary__title-text,
.wc-block-components-product-name {
  font-size: 24px !important;
  font-weight: 500;
  text-transform: capitalize;
  padding-bottom: 16px;
  color: #1e6e5e;
  text-decoration: none !important;
}

.wc-block-components-product-name {
  padding: 0;
}

.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__input {
  flex: 1 !important;
  min-width: 100%;
}

.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="number"],
.wc-block-components-form .wc-block-components-text-input input[type="password"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="url"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="number"],
.wc-block-components-text-input input[type="password"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="url"] {
  background-color: #c9f0e6 !important;
  border: 1px solid #8ce3d1 !important;
  border-radius: 4px;
  box-sizing: border-box;
  color: #2b2d2f;
  font-family: inherit;
  font-size: 1em;
  height: 3.125em;
  line-height: 1em;
  margin: 0;
  min-height: 0;
  padding: 1em 0.5em;
  width: 100%;
}

.wc-block-components-totals-coupon__button[style="pointer-events: none;"] {
  background: #ddd;
  border: none;
  border-radius: 100px !important;
}

.wc-block-components-totals-coupon__button {
  background: #ffc107;
  border: none;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  border: 1px solid #ddd !important;
  border-bottom: none !important;
  border-top: none !important;
}

.wc-block-components-product-price {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
  color: #1e6e5e;
}

.wc-block-components-product-metadata__description p {
  font-size: 14px;
  margin-bottom: 16px !important;
}

.wc-block-components-product-metadata__description p {
  font-size: 14px;
  margin-bottom: 16px !important;
}

.wc-block-components-product-details li {
  font-size: 14px;
}

.wc-block-components-product-details {
  display: flex;
  gap: 20px;
}

.wc-block-components-product-details li span.wc-block-components-product-details__value {
  color: #1e6e5e;
  font-weight: 500;
}

button.wc-block-cart-item__remove-link {
  font-size: 14px !important;
  color: #095445 !important;
}

/* tr.wc-block-cart-items__row {
    background: #8ce3d147 !important;
    border: 1px solid #8ce3d1 !important;
    margin-top: 16px !important;
}
 */

.wc-block-components-quantity-selector:after {
  display: none;
}

button:focus-visible,
input:focus-visible,
optgroup:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}

.page-id-1085 .wp-block-woocommerce-product-new,
.page-id-1085 hr~h2 {
  display: none;
}

.wc-block-cart__empty-cart__title.with-empty-cart-icon:before {
  background-color: #f06e91;
}

.wc-block-cart__empty-cart__title {
  font-size: 32px;
}

.woolentor-checkout__button {
  background: #f56e8f !important;
  font-weight: 700;
  height: unset !important;
  transition: all 0.3s linear;
}

.woolentor-checkout__button:hover {
  background: #b72d4f !important;
}

.pmpro_form_field-password-toggle .pmpro_btn {
  background-color: transparent !important;
}

@media (max-width: 1199px) {
  .page-id-1085 #content {
    padding: 40px 3%;
    max-width: 100% !important;
  }
}

@media (max-width: 991px) {
  .page-id-1085 #content .wc-block-components-sidebar-layout .wc-block-components-main {
    box-sizing: border-box;
    margin: 0;
    padding-right: 0 !important;
    width: 100% !important;
  }

  .wc-block-cart .wc-block-components-sidebar .wc-block-cart__totals-title {
    display: block !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {

  h2.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title,
  .wc-block-components-checkout-order-summary__title-text,
  .wc-block-components-product-name {
    font-size: 18px !important;
    line-height: 26px !important;
  }

  .wp-block-woocommerce-cart-order-summary-block h2 {
    font-size: 24px !important;
    margin-bottom: 0;
  }
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn,
.xoo-wsc-container .xoo-wsc-btn {
  background: #f56e8f;
  transition: 0.5s;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover,
.xoo-wsc-container .xoo-wsc-btn:hover {
  color: #f56e8f;
  border-color: #f56e8f;
}

a.xoo-wsc-ft-btn.xoo-wsc-btn.xoo-wsc-ft-btn-cart {
  display: none;
}

.xoo-wsc-items-count,
.xoo-wsch-items-count {
  background: #f56e8f;
}

.xoo-wsc-product dl.variation dd,
.xoo-wsc-product dl.variation dt {
  font-size: 13px;
  font-style: normal;
}

.xoo-wsc-sml-qty {
  font-weight: 600;
}

section#pmpro_login .pmpro_card_actions a {
  display: inline-block;
  background: #f56f8f;
  color: #fff;
  padding: 12px 35px;
  border-radius: 6px;
}

.xoo-wsc-container .xoo-wsc-ft-btn-continue {
  display: none;
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover,
.xoo-wsc-container .xoo-wsc-btn:hover {
  color: #fff;
}

.star-review-wrap {
  color: #ffca3a;
  display: flex;
  gap: 7px;
  margin-bottom: 30px;
}

.review-slider-inner ul.slick-dots {
  position: unset;
}

.review-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 13px;
  color: #212121;
}

/* =======Customizer=============== */
/* =======Customizer=============== */

@media (max-width: 768px) {
  .event-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-box {
    padding: 24px 20px;
  }

  .event-title {
    font-size: 20px;
  }

  .event-info {
    font-size: 15px;
  }

  .page-template-qr-scanner-php header+div {
    max-width: 388px !important;
  }

  .testimonails-slider~.controls button {
    position: unset;
  }

  .testimonails-slider~.controls {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  .event-box {
    padding: 20px 16px;
  }

  .event-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .event-info {
    font-size: 14px;
  }
}

.wc-acb-checkout-fields .form-row input,
.wc-acb-checkout-fields .form-row select {
  color: #333333;
  border: 1px solid #d9d9d9;
  background-clip: padding-box;
  border-radius: 5px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 26px 15px 8px 15px;
  word-break: normal;
  line-height: inherit;
  height: inherit !important;
  font-size: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  box-shadow: none;
}

.blog-sec .controls button.prev-btn {
  left: 0 !important;
}

.blog-sec .controls button.next-btn {
  right: 0 !important;
}

.event-slide.slick-slide {
  box-shadow: 0 0 20px 0 #00000014;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.events-slider .slick-track {
  padding: 50px 0;
}

.event-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background-color: var(--lRed);
}

.find-partner-park-list-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 13px;
}

.find-partner-park-list {
  /* display: flex; */
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 20px 0 #00000026;
  border-radius: 7px;
  margin-bottom: 32px;
}

.find-partner-park-list:last-child {
  margin-bottom: 0px;
}

.find-partner-park-connect-with {
  border-top: 2px solid #e6e6e6;
}

.find-partner-park-img {
  padding: 5px;
  background: #f56e8f14;
  border: 1px solid #e2e2e2;
}

.find-partner-park-img img {
  display: block;
}

.find-partner-park-connect-with ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 13px;
}

.find-partner-park-connect-with ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 35px;
  background: #f56e8f;
  border-radius: 26px 7px 18px 9px;
}

.find-partner-park-connect-with ul li a svg path {
  fill: #fff;
}

.find-partner-park-connect-with ul li a svg {
  width: 20px;
  height: 20px;
}

.find-partner-park-sec {
  margin-top: 51px;
}

div#reviews {
  border: 1px solid #ddd;
  padding: 28px;
  margin-top: 30px;
  border-radius: 12px;
}

div#comments h2 {
  margin-bottom: 4px;
  font-size: 24px;
  margin-bottom: 26px;
  color: #45a182;
}

#comments p {
  color: #646464;
  margin-bottom: 0;
}

span#reply-title {
  color: #646464;
  margin-bottom: 18px !important;
  display: block;
  font-weight: 500;
}

div#review_form form label {
  color: #646464;
  font-weight: 600;
  margin-bottom: 11px;
}

div#review_form form {
  border-top: 1px solid #ddd;
  padding-top: 22px;
}

.comment-form-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 14px;
}

p.stars {
  display: inline-block;
}

.stars span {
  display: flex;
  gap: 6px;
}

textarea#comment {
  padding: 16px 18px 8px;
  font-size: 14px;
  color: #232721;
  line-height: 1.7;
  outline: none;
  resize: none;
  display: block;
  border-radius: 16px;
  border: 1.5px solid #45a182;
  background: rgb(224 245 239 / 18%);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 28px;
  min-height: 118px;
}

.stars span a {
  color: #ffbf00;
}

#review_form form #submit {
  background: #45a182 !important;
  color: #fff !important;
  border-radius: 6px !important;
}

.commentlist {
  padding: 0;
}

.commentlist .review .comment_container img {
  border-radius: 100px;
}

.commentlist .review .comment_container .star-rating {
  color: #ffbf00;
}

.comment_container {
  display: flex;
  flex-direction: column;
}

.comment_container img {
  position: unset !important;
}

.comment_container .comment-text {
  margin-left: 0 !important;
  width: 100%;
  padding: 0 !important;
  border: none !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review {
  /* padding-bottom: 20px !important; */
  border-bottom: 1px solid #ddd !important;
}

.comment-text .description p {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 1250px) and (max-width: 1400px) {
  .dsektop-menu ul>li {
    margin: 0;
    margin-right: 24px;
  }
}

/*================== CSS-2026 ==================*/

.woocommerce-MyAccount-navigation ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

body.woocommerce-account main#content .page-content .woocommerce nav.woocommerce-MyAccount-navigation li a {
  background: #9df3e1;
  margin: 0 !important;
}

.woocommerce-MyAccount-content>p {
  margin-bottom: 0 !important;
}

.woocommerce-MyAccount-content>p .order-status {
  background: #fff4ca !important;
  font-weight: 500;
  border-radius: 100px;
  padding: 4px 18px;
  line-height: 26px;
  display: inline-block;
  color: #ff9b00 !important;
  border: 1px solid #ffca00;
}

.woocommerce-order-details .woocommerce-order-details__title {
  margin-top: 0;
  margin-bottom: 16px;
  color: #2c2c2c;
}

.woocommerce table.shop_table {
  background: #fff !important;
  width: 100%;
  border-radius: 14px !important;
  overflow: hidden;
}

.woocommerce-table__line-item.order_item td {
  background: #f8fffe;
}

.woocommerce-table--order-details tfoot tr th,
.woocommerce-table--order-details tfoot tr td {
  background: #f8fffe !important;
  border-color: #8ce3d1 !important;
}

.woocommerce table.shop_table {
  border: 1px solid #8ce3d1 !important;
}

.woocommerce table.shop_table td,
table td,
table th,
table thead:first-child tr:first-child th {
  border: none;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  border-left: 0;
}

table .amount bdi {
  font-weight: 700;
  font-size: 14px;
}

.woocommerce-Price-amount bdi {
  text-wrap-mode: nowrap;
}

td.woocommerce-table__product-total.product-total span {
  text-align: left;
  display: flex;
  align-items: center;
}

td.woocommerce-table__product-total.product-total span bdi {
  display: flex;
}

.woocommerce-checkout .amount bdi {
  display: inline-flex;
  gap: 4px;
}

.woocommerce-table__product-name ul {
  padding-left: 0;
}

.search-directory {
  width: 100%;
}

/* ─── STEPPER ─── */
.stepper-wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 8px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Baloochettan", cursive;
  font-size: 18px;
  border: 3px solid #c2ead9;
  background: #fff;
  color: #aabcb3;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-circle.active {
  background: #1a9e74;
  border-color: #1a9e74;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(26, 158, 116, 0.15);
  transform: scale(1.08);
}

.step-circle.done {
  background: #e1f5ee;
  border-color: #1a9e74;
  color: #0f6e56;
}

.step-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #aabcb3;
  transition: color 0.3s;
}

.step-label.active {
  color: #1a9e74;
}

.step-label.done {
  color: #0f6e56;
}

.step-line {
  flex: 1;
  height: 3px;
  background: #c2ead9;
  margin-bottom: 30px;
  max-width: 80px;
  border-radius: 99px;
  transition: background 0.4s;
}

.step-line.done {
  background: #1a9e74;
}

/* ─── MAIN CARD AREA ─── */
.content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0px;
}

/* ─── PANELS ─── */
.panel {
  display: none;
  animation: fadeSlideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.panel.active {
  display: block;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── CARD ─── */
.card {
  background: #fff;
  border-radius: 22px;
  border: 1.5px solid #c2ead9;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(15, 110, 86, 0.08);
}

.card+.card {
  margin-top: 16px;
}

.card-title {
  font-family: "Baloochettan", cursive;
  font-size: 20px;
  color: #1a9e74;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-title-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #e1f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── BOOKING SUMMARY ─── */
.booking-venue {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1.5px dashed #c2ead9;
  margin-bottom: 16px;
}

.venue-thumb {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e1f5ee, #a8ead0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
}

.venue-name {
  font-family: "Baloochettan", cursive;
  font-size: 16px;
  color: #085041;
  margin-bottom: 3px;
}

.venue-loc {
  font-size: 12px;
  color: #7a8f86;
  font-weight: 600;
}

.info-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed #c2ead9;
  font-size: 14px;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: #7a8f86;
  font-weight: 700;
  font-size: 13px;
}

.info-value {
  font-weight: 800;
  color: #1e2a24;
  text-align: right;
}

.info-value.green {
  color: #1a9e74;
}

.info-value.amber {
  color: #c35a15;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e1f5ee;
  color: #0f6e56;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 20px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a9e74;
}

/* ─── WARNING BOX ─── */
.warn-box {
  background: #fff8f0;
  border: 2px solid #f4c88a;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
}

.warn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fde8d4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warn-title {
  font-family: "Baloochettan", cursive;
  font-size: 15px;
  color: #c35a15;
  margin-bottom: 4px;
}

.warn-text {
  font-size: 13px;
  color: #7a5020;
  font-weight: 600;
  line-height: 1.6;
}

.policy-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e1f5ee;
  color: #0f6e56;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  margin-top: 12px;
  border: 1.5px solid #a8ead0;
}

/* ─── REASON CHIPS ─── */
.reason-grid {
  /*   display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; */
  margin-bottom: 18px;
}

.chip {
  border: 2px solid #c2ead9;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #4a5e54;
  cursor: pointer;
  text-align: center;
  background: #fff;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
  line-height: 1.4;
}

.chip:hover {
  border-color: #1a9e74;
  color: #1a9e74;
  background: #f0faf6;
  transform: translateY(-2px);
}

.chip.selected {
  border-color: #1a9e74;
  color: #085041;
  background: #e1f5ee;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 158, 116, 0.15);
}

.chip-icon {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
}

/* ─── TEXTAREA ─── */
.note-label {
  font-size: 13px;
  font-weight: 800;
  color: #7a8f86;
  margin-bottom: 8px;
  display: block;
}

textarea {
  width: 100%;
  border: 2px solid #c2ead9 !important;
  border-radius: 18px;
  padding: 14px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: #1e2a24;
  resize: vertical;
  min-height: 90px;
  outline: none;
  background: #f0faf6;
  transition: border-color 0.2s;
}

textarea:focus {
  border-color: #1a9e74;
  background: #fff;
  outline: 1px solid #1a9e74 !important;
}

textarea::placeholder {
  color: #aabcb3;
}

/* ─── CONFIRM STEP ─── */
.refund-banner {
  background: #e1f5ee;
  border: 2px solid #a8ead0;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}

.refund-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1a9e74;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.refund-strong {
  font-family: "Baloochettan", cursive;
  font-size: 17px;
  color: #085041;
  display: block;
  margin-bottom: 2px;
}

.refund-sub {
  font-size: 12px;
  color: #7a8f86;
  font-weight: 600;
}

/* ─── CHECKBOX ─── */
.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #fffaf6;
  border-radius: 18px;
  border: 1.5px solid #f4c88a;
  margin-bottom: 22px;
}

.agree-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #1a9e74;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
}

.agree-row label {
  font-size: 13px;
  color: #4a5e54;
  font-weight: 600;
  line-height: 1.6;
  cursor: pointer;
}

.agree-row label a {
  color: #1a9e74;
  font-weight: 800;
  text-decoration: underline;
}

/* ─── SUCCESS SCREEN ─── */
.success-hero {
  text-align: center;
  padding: 8px 0 28px;
}

.success-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #e1f5ee;
  border: 4px solid #a8ead0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-family: "Baloochettan", cursive;
  font-size: 26px;
  color: #085041;
  margin-bottom: 8px;
}

.success-sub {
  font-size: 14px;
  color: #7a8f86;
  font-weight: 600;
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto 28px;
}

.cancel-data-grid {
  display: grid;
  /*   grid-template-columns: 1fr 1fr; */
  gap: 12px;
  margin: 0 0 24px;
}

.data-tile {
  background: #f0faf6;
  border-radius: 18px;
  padding: 14px 16px;
  border: 1.5px solid #c2ead9;
  text-align: left;
}

.data-tile.full {
  grid-column: 1 / -1;
}

.data-tile-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #aabcb3;
  margin-bottom: 5px;
}

.data-tile-value {
  font-size: 15px;
  font-weight: 800;
  color: #085041;
}

.data-tile-value.green {
  color: #1a9e74;
}

.email-note {
  font-size: 12px;
  color: #aabcb3;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

/* ─── BUTTONS ─── */
.btn {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 18px;
  font-family: "Baloochettan", cursive;
  font-size: 18px;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: none;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  text-decoration: none;
}

.btn+.btn,
.btn+.btn-link {
  margin-top: 10px;
}

.btn-green {
  background: #1a9e74;
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 158, 116, 0.3);
}

.btn-green:hover:not(:disabled) {
  background: #0f6e56;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 158, 116, 0.35);
}

.btn-green:active:not(:disabled) {
  transform: scale(0.98);
}

.btn-green:disabled {
  background: #c2ead9;
  color: #aabcb3;
  box-shadow: none;
  cursor: not-allowed;
}

.btn-red {
  background: #fff;
  color: #c0392b;
  border: 2px solid var(--red-border);
}

.btn-red:hover:not(:disabled) {
  background: #c0392b;
  border-color: #c0392b;
  transform: translateY(-2px);
}

.btn-red:active:not(:disabled) {
  transform: scale(0.98);
}

.btn-red:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-outline {
  background: #fff;
  color: #1a9e74;
  border: 2px solid #1a9e74;
}

.btn-outline:hover {
  background: #e1f5ee;
  transform: translateY(-2px);
}

.btn-link {
  display: block;
  background: none;
  border: none;
  color: #1a9e74;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-link:hover {
  color: #085041;
  background: transparent;
}

/* ─── DIVIDER ─── */
.divider {
  border: none;
  border-top: 1.5px dashed #45a18238;
  margin: 20px 0;
}

.info-rows ul,
.reason-grid ul {
  padding-left: 20px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Sub menu */
.dsektop-menu>ul>li ul.sub-menu {
  flex-direction: column;
  align-items: baseline;
}

.dsektop-menu>ul>li ul.sub-menu li {
  padding: 0;
  margin: 0;
  text-align: left;
  justify-content: flex-start;
  display: block;
  margin-bottom: 16px;
}

.dsektop-menu>ul>li ul.sub-menu li:last-child {
  margin-bottom: 0;
}

.if-sub-menu a {
  position: relative;
  display: flex;
  align-items: center;
  /* height: 100%; */
  font-family: "Baloochettan";
  font-weight: 400;
  color: var(--text);
  line-height: 20px;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 9;
}

.dsektop-menu>ul>li>.if-sub-menu a {
  z-index: 99999 !important;
}

.if-sub-menu {
  display: flex;
  align-items: center;
  font-family: "Baloochettan";
  font-weight: 400;
  color: var(--text);
  line-height: 20px;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  gap: 8px;
}

/* Sub menu */

main.post-1044 .pmpro {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}

.theme-color {
  color: var(--e-global-color-dd3363f);
}

.becoming-partner-form p {
  /* display: inline-flex;
  width: fit-content;
  justify-content: center;
  padding: 6px 9px;
  background: #fff;
  border-radius: 10px;
  align-items: center;
  width: 100%;
  justify-content: space-between; */
  margin-bottom: 10px;
}

.input-box {
  margin-bottom: 15px;
}
.becoming-partner-form p label {
  display: block;
}

.becoming-partner-form p span {
    width: 100%;
}

.becoming-partner-form p span input, .newsletter-form .input-box input  {
     border: 1px solid #00000014;
    border-radius: 30px;
    
}

.becoming-partner-form {
     border-radius: 10px;
    text-align: center;
    padding: 20px;
    background: #fff;
}

.becoming-partner-form p span.wpcf7-spinner {
  display: none;
}

.becoming-partner-form p input[type="email"] {
  /* border-radius: 100px; */
  /* border: none; */
}

.becoming-partner-form p input[type="submit"] {
  border-radius: 10px;
  line-height: normal;
  background-color: var(--e-global-color-dd3363f);
  font-family: var(--e-global-typography-5a4ec9b-font-family), Sans-serif;
  font-size: var(--e-global-typography-5a4ec9b-font-size);
  font-weight: var(--e-global-typography-5a4ec9b-font-weight);
  line-height: var(--e-global-typography-5a4ec9b-line-height);
  fill: var(--e-global-color-006cc88);
  color: var(--e-global-color-006cc88);
  border-style: solid;
  border-color: var(--e-global-color-dd3363f);
  padding: 11px 51px;
}

.park-map-text {
  border: 1px solid #ddd;
  padding: 28px;
  margin-top: 30px;
  border-radius: 12px;
  background: var(--lGreen2);
  color: #333333;
  font-size: 18px;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 768px) {
  .find-partner-park-list-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-label {
    display: none;
  }

  .step-line {
    margin-bottom: 0;
  }

  .stepper {
    margin-bottom: 26px;
  }

  .park-details-content-left-in {
    overflow: hidden;
  }

  .becoming-partner-form p input[type="submit"] {
    padding: 10px 15px;
    width: 100%;
  }

  .becoming-partner-form p {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0 16px;
  }

  .card {
    padding: 20px 16px;
  }

  .reason-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cancel-data-grid {
    grid-template-columns: 1fr;
  }

  .data-tile.full {
    grid-column: 1;
  }
}

.becoming-partner-form p {
    display: flex;
    align-items: center;
}

.becoming-partner-form p label {
}

.becoming-partner-form p span input {
    border: navajowhite;
}

.becoming-partner-form {
    padding: 7px;
}