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

body {
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

html {
  scroll-behavior: smooth;
}

a {
  color: #000;
  text-decoration: none;
  display: inline-block;
}

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

.container-fluid {
  max-width: 100%;
  padding: 0px 40px;
}

/*.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.col-6 {
  width: calc(50% - 15px);
} */

img {
  max-width: 100%;
  width: auto;
  display: inline-block;
}
/* .align-center {
  align-items: center;
} */

::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  border-radius: 10px;
  background-color: #fff;
}

::-webkit-scrollbar {
  width: 2px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: none;
  background-color: #393323;
}

/* reset */

.homePImage {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #f2f4f7;
}

.homePImage .bgImg {
  height: 100vh;
  object-fit: cover;
  width: 100%;
  animation: slowZoomIn 3s ease-out;
}

.homePImage .bgOverlay {
  height: 100vh;
  object-fit: cover;
  width: 100%;
  position: absolute;
  z-index: 1;
}

@keyframes slowZoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Header CSS */
#header {
  padding: 10px 0px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 999;
}

.logo {
  display: block;
  width: max-content;
}
.logo img {
  height: 100px;
  display: block;
}

.logoOtherPages {
  display: block;
  width: max-content;
  position: fixed;
  z-index: 9;
  left: 38px;
  top: 10px;
}
.logoOtherPages img {
  height: 100px;
  display: block;
}

.mainMenu {
  position: relative;
  display: block;
  margin-left: auto;
  width: max-content;
}

.mainMenu img {
  width: 24px;
}

#menuButton {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 9999;
  padding: 10px;
}

#menuButton span {
  width: 20px;
  height: 2px;
  background: #000;
  display: block;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}

#menuButton span:nth-child(2) {
  width: 24px;
}

#menuButton span:nth-child(3) {
  width: 15px;
}

.mainMenu.show #menuButton span {
  display: none;
}

.mainMenu.show #menuButton {
  gap: 0px;
  height: 24px;
}

.mainMenu.show #menuButton :nth-child(2) {
  display: block;
  width: 24px;
  transform: rotate(45deg);
}

.mainMenu.show #menuButton :nth-child(3) {
  display: block;
  width: 24px;
  transform: rotate(-45deg) translate(1px, -1px);
}

.headerDropMenu {
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgb(255 255 255 / 85%);
  list-style: none;
  padding: 0;
  margin: 0px 0 0 0;
  box-shadow: none;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform: translateX(300px);
  opacity: 100;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  height: 100vh;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0px;
}

.mainMenu.show .headerDropMenu {
  transform: translateX(0px);
  opacity: 1;
  pointer-events: auto;
}

.headerDropMenu li {
  width: calc(100% - 60px);
  margin: 0px 30px;
  border-bottom: 1px solid #dddddd;
  text-align: center;
}

.headerDropMenu li li {
  border-bottom: none;
  margin: 0px 0px;
  width: calc(100% - 0px);
}

.headerDropMenu li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 10px;
  text-align: center;
}

.headerDropMenu li li a {
  position: relative;
  width: max-content;
  margin: auto;
  font-size: 16px;
}

.headerDropMenu li li a:before {
  content: "";
  height: 2px;
  width: 10px;
  background: #c8b278;
  display: block;
  position: absolute;
  left: -10px;
  top: 22px;
}

.headerDropMenu li li a:after {
  content: "";
  height: 2px;
  width: 10px;
  background: #c8b278;
  display: block;
  position: absolute;
  right: -10px;
  top: 22px;
}

.headerDropMenu li a:hover {
  color: #c8b278;
}

#header.headerInnerPages {
  padding: 10px 0px;
  position: fixed;
  top: 0px;
  right: 0px;
  width: calc(100% - 490px);
  z-index: 999;
}

#header.headerInnerPages #menuButton {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  z-index: 9999;
  top: -55px;
  right: 70px;
  height: 44px;
}

#header.headerInnerPages .mainMenu.show #menuButton :nth-child(3) {
  display: block;
  width: 24px;
  transform: rotate(-45deg) translate(4px, -4px);
}

#header.headerInnerPages .backButton img {
  width: 24px;
}

#header.headerInnerPages h1 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 0px;
}

#header.headerInnerPages .headerWrap {
  padding: 15px 30px;
  border-radius: 50px;
  background-color: #fff4;
  backdrop-filter: blur(20px);
}

/* Footer */

#footer {
  position: fixed;
  width: 100%;
  bottom: 0px;
  padding: 15px 0px;
  z-index: 5;
}

#footer ul {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

#footer ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}
#footer ul li a img {
  width: 16px;
}
#footer p {
  margin-left: auto;
  text-align: right;
  font-size: 12px;
  width: max-content;
  margin-bottom: 0px;
  padding-right: 20px;
  /* padding: 10px 40px;
  border-radius: 50px;
  background-color: #ffffff;
  backdrop-filter: blur(10px); */
}

/* homepage */
.homeSlider {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.homeSlider video {
  object-fit: cover;
  height: 100dvh !important;
  width: 100dvw !important;
}

/* historyPage */

.bodyWrap {
  overflow: hidden;
  background: #f2f4f7;
}

.bodyRow {
  display: flex;
}

.bodyRow .bodyLeft {
  /* width: calc(40% - 40px); */
  width: 500px;
  min-width: 500px;
  background: #f2f4f7;
  animation: rightIn2 0.5s ease-out;
  position: fixed;
  top: 0px;
  height: 100vh;
}

.otherPImage {
  overflow: hidden;
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.otherPImage .ratLogo {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 350px;
}

.otherPImage .bgImg {
  height: 100%;
  object-fit: cover;
  width: auto;
  /* animation: slowZoomIn 3s ease-out; */
}
.rightDataWrap {
  flex: 1;
  background: #f2f4f7;
  padding: 0px 40px;
  position: relative;
  overflow: auto;
  scroll-behavior: smooth;
  margin-left: 480px;
  animation: rightIn 0.5s ease-out;
  opacity: 0;
  animation-delay: 0.5s;
  /* animation-fill-mode: both; */
  animation-fill-mode: forwards;
  padding-top: 140px;
  min-height: 100vh;
}

@keyframes rightIn {
  0% {
    transform: translateX(300px);
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

/* .rightDataWrap {
  flex: 1;
  background: #f2f4f7;
  padding: 0px 40px;
  position: relative;
  overflow: auto;
  scroll-behavior: smooth;
  margin-left: 480px;

  opacity: 0;
  transition: opacity 1s ease;
}

.rightDataWrap.visible {
  opacity: 1;
} */

@keyframes rightIn2 {
  0% {
    transform: translateX(300px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

/*  */

#navbar {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  background: none;
  padding: 0px 0px;
  display: flex;
  gap: 20px;
  z-index: 1000;
}

.nav-link {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.nav-link.active {
  color: #e00d0d;
  border-bottom: 2px solid #e00d0d;
}

.section {
  height: 100vh;
  padding-top: 60px;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ccc;
}
.rightDataWrap .sectionWrap {
  position: relative;
}

.tabFixed {
  position: fixed;
  top: 100px;
  /* width: calc(60% - 60px); */
  z-index: 99;
  gap: 20px;
  left: 530px;
}

.tabFixed ul {
  display: flex;
  gap: 10px;
  background: #fff6ec80;
  padding: 0px 20px;
  background-color: #fff4;
  backdrop-filter: blur(20px);
  border-radius: 30px;
}

.tabFixed .nav-link {
  font-weight: 500;

  border-radius: 0px;
  padding: 6px 10px;
  color: #000;
  border-bottom: none;
}

.tabFixed .nav-link {
  font-weight: 500;

  border-radius: 0px;
  padding: 6px 10px;
  color: #000;
  border-bottom: 2px solid transparent;
}

.tabFixed .nav-link.active {
  color: #c8b278;
  background: none;
  border-bottom-color: #c8b278;
}

.tabFixed .nav-link:hover {
  border-bottom: 2px solid #c8b278;
  color: #c8b278;
}

.rightDataWrap .scrollspy-example {
  margin-top: 0px;
  position: relative;
}

.spySection {
  /* min-height: 100vh; */
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  padding: 30px 30px;
  scroll-margin-top: 140px;
  /* click पर सही offset */
}

.spySection:last-child {
  min-height: 80vh;
}
.spySection small {
  text-align: left;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  display: block;
}
.spySection .spySection {
  padding-left: 0px;
  padding-right: 0px;
}

.spySection p {
  font-size: 16px;
  text-align: left;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: justify;
  margin-bottom: 15px;
}

.spySection li p {
  text-align: left;
}

.spySection p b {
  font-weight: 600;
}

.spySection p:last-child {
  margin-bottom: 0px;
}

.spySection p br {
  display: none;
}

.spySection a {
  font-size: 16px;
  text-align: left;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.spySection h3 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #000;
}
.spySection h4 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #000;
  margin-top: 30px;
}
.spySection h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.spySection ul {
  margin-bottom: 30px;
}
.spySection ul li {
  font-family: "Montserrat", sans-serif;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 400;
}
.spySection ul li:before {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #000;
  display: block;
  position: absolute;
  left: 0px;
  top: 10px;
}

.backToHome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #c8b278;
  padding: 0px 30px;
  border-radius: 30px;
  height: 41px;
  margin-left: auto;
  transition: all 0.2s ease-in-out;
  border: 1px solid #c8b278;
}

.backToHome i {
  font-size: 24px;
  transition: all 0.2s ease-in-out;
  color: #fff;
}
a.backToHome {
  display: none;
}

.backToHome:hover {
  background-color: #fff;
}

.backToHome:hover i {
  color: #c8b278;
}

.faqs .accordion-item {
  border: none;
  background: none;
  margin-bottom: 10px;
}
.faqs .accordion-button:not(.collapsed) {
  background: #393323;
  color: #fff;
}
.faqs .accordion-button:not(.collapsed):after {
  filter: invert(1);
}
.faqs .accordion-button:not(.collapsed) a {
  color: #fff;
}
.faqs .accordion-button {
  border-radius: 50px !important;
}
.faqs .accordion-body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}
.accordion-button:focus {
  box-shadow: none;
}

/*  */
/* .underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: #002f6c;
  transition: 0.3s ease all;
  border-radius: 4px;
} */

.contactForm label,
.contactForm input,
.contactForm textarea {
  display: block;
  width: 100%;
}

.contactForm input:focus,
.contactForm textarea:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #ccc;
}

.contactForm input {
  border: 1px solid #ccc;
  padding: 4px 12px;
  background: #fff;
  color: #000;
  border-radius: 4px;
}

.contactForm textarea {
  border: 1px solid #ccc;
  padding: 4px 12px;
  background: #fff;
  color: #000;
  border-radius: 4px;
  height: 100px;
}

.contactForm input[type="submit"] {
  width: max-content;
  padding: 4px 20px;
  background: #c8b278;
  color: #ffffff;
  border: none;
  font-weight: 500;
  border-radius: 4px;
}
.contactForm .wpcf7 form .wpcf7-response-output {
  margin: 0px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  border: 1px solid #c8b278 !important;
  border-radius: 4px;
}
.contactForm .wpcf7-not-valid-tip {
  font-size: 14px;
}

.imagesClub {
}

.imagesClub a {
  display: block;
}

.imagesClub p {
  margin-top: 5px;
}

.imagesClub a img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.tribe-events-c-subscribe-dropdown__container {
  display: none !important;
}
.tribe-events .tribe-events-l-container {
  padding-top: 10%;
}

/* Events */

.eventBannerSec {
  margin-top: 120px;
  height: calc(100vh - 200px);
  position: relative;
}

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

.eventBannerSec .overlayBanner {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  background: rgba(0, 0, 0, 0.5);
}

.eventBannerSec .overlayBanner .borderImg {
  height: 20px;
  width: auto;
}

.eventBannerSec .overlayBanner h2 {
  color: #fff;
  font-size: 46px;
  margin-bottom: 0px;
  text-align: center;
}

.eventBannerSec .overlayBanner p {
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.eventPageContactInfo {
  padding: 30px 0px;
  background: #dcceaa30;
}
.eventPageContactInfo a {
  display: block;
}
.eventPageContactInfo img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.eventPageContactInfo .eventPageContactInfoData {
  padding: 15px 0px;
  text-align: center;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.eventPageContactInfo .eventPageContactInfoData h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.eventPageContactInfo .eventPageContactInfoData ul li {
  font-size: 18px;
  text-align: center;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.eventPageContactInfo .eventPageContactInfoData ul li span {
  font-weight: 500;
}

#header.hFix {
  background: #fff;
}
#header.headerInnerPages.hFix {
  background: none;
}

/* Private Event */
.eventPrivatePage {
  padding: 30px 0px;
  background: #c8b27820;
}
.eventPrivatePage .eventPageContactInfoData {
  text-align: center;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0px;
}
.eventPrivatePage img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}

.eventTile {
  margin-bottom: 8px;
}

.eventTile .eventPageContactInfoData .eventContent {
  padding: 25px 15px;
  flex: 1;
}
.eventTile .eventPageContactInfoData .eventContent p,
.eventTile .eventPageContactInfoData .eventContent ul li {
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.eventTile .eventPageContactInfoData .inquiryButton {
  background-color: #c8b278;
  color: #000;
  width: 100%;
  padding: 10px 0px;
  text-transform: uppercase;
  font-size: 18px;
}

/* Member Event */

.controls button img {
  height: 30px;
}

.privateSlider-container .sliderOverLay {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0px;
  background: rgba(0, 0, 0, 0.5);
}

.privateSlider-container .sliderOverLay h2 {
  color: #fff;
  font-size: 46px;
  margin-bottom: 0px;
  text-align: center;
}

.privateSlider-container .sliderOverLay ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.privateSlider-container .sliderOverLay ul li {
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.privateSlider-container .bottomContent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  bottom: 80px;
  left: 0px;
  right: 0px;
  margin: auto;
}

.privateSlider-container .bottomContent .borderImg {
  height: 10px;
  width: auto;
}

.privateSlider-container .bottomContent a {
  color: #fff;
  margin-top: 10px;
}

/*  */
.privateSlider-container .item {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;

  position: relative;
  width: 100%;
  margin-top: 120px;
  height: calc(100vh - 150px);
  border-radius: 0px;
  box-shadow: none;
}

.item .content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item.active .content {
  opacity: 1;
  transform: translateY(0);
}

.controls {
  text-align: center;
  margin-top: 0;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 50px;
  z-index: 99;
}

.controls button {
  padding: 0px;
  margin: 0 5px;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

/*  */

.eventMemberPage {
  padding: 30px 0px;
  background: #c8b27820;
}

.eventMemberPage .memberEventTile {
  background: #fff;
  height: 100%;
}

.eventMemberPage .memberEventTile .tileDateInfo {
  background: #c8b278;
}
.eventMemberPage .memberEventTile .tileDateInfo ul {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 5px;
}
.eventMemberPage .memberEventTile .tileDateInfo ul li {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.eventMemberPage .memberEventTile .tileDateInfo ul li img {
  height: 20px;
  margin-right: 5px;
}
.eventMemberPage .memberEventTile .tileDateInfo ul li.spacialField {
  text-transform: uppercase;
  font-weight: 600;
  margin-left: auto;
}
.eventMemberPage .memberEventTile .tileImageWrap img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}
.eventMemberPage .memberEventTile .tileContentWrap {
  text-align: center;
  padding: 15px;
}
.eventMemberPage .memberEventTile .tileContentWrap h2 {
  font-size: 26px;
}
.eventMemberPage .memberEventTile:hover .tileContentWrap h2 {
  text-decoration: underline;
}
.eventMemberPage .memberEventTile .tileContentWrap p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.eventMemberPage .memberEventTile .tileContentWrap ul li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.relatedEvent {
  padding-top: 50px;
}

/* Inquire Form */
.InquireFormPage {
  padding-top: 100px;
  background: #c8b27820;
}
.InquireFormWrap {
  max-width: 720px;
  background: #fff;
  padding: 30px;
  margin: auto;
}
.InquireFormWrap .InquireFormWrapBorder {
  max-width: 100%;
  border: 4px double #333;
  background: #fff;
  padding: 30px 0px;
}
.InquireFormWrap h2 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}
.InquireFormWrap form {
  padding: 20px;
}
.InquireFormWrap input,
.InquireFormWrap select,
.InquireFormWrap textarea {
  width: 100%;
  border: 1px solid #333;
  border-radius: 0px !important;
  font-family: "Montserrat", sans-serif;
  color: #000;
  padding: 4px 6px;
  height: auto !important;
  font-size: 14px !important;
}
.InquireFormWrap textarea {
  height: 100px !important;
}
.InquireFormWrap input:focus,
.InquireFormWrap select:focus,
.InquireFormWrap textarea:focus {
  width: 100%;
  border: 1px solid #333;
  border-radius: 4px;
  box-shadow: none;
  outline: none;
}
.InquireFormWrap p {
  margin-bottom: 0px !important;
}
.InquireFormWrap span {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
.InquireFormWrap label {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  width: 100%;
}
.InquireFormWrap .wpcf7-radio label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.InquireFormWrap .wpcf7-radio .wpcf7-list-item.first,
.InquireFormWrap .wpcf7-radio.wpcf7-list-item.last {
  margin-left: 0px !important;
  margin-right: 15px !important;
}

.InquireFormWrap input[type="submit"] {
  background: #c8b278;
  border: none;
  padding: 8px 0px;
  font-size: 16px !important;
  text-transform: uppercase;
  font-weight: 500;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0px !important;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

/*  */

.date-range-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0px 20px 0px;
  border-radius: 8px;
  width: fit-content;
  position: relative;
}

.date-range-header button {
  background: none;
  border: 1px solid #ccc;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
}

.date-range-header button.roundButton {
  border-radius: 50%;
  height: 38px;
  width: 38px;
  padding: 0px;
  border: none;
}

.date-range-header button.roundButton img {
  width: 38px;
}

.date-display {
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.date-display::after {
  content: "▼";
  margin-left: 8px;
  font-size: 14px;
}

#datePicker {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.flatpickr-calendar,
.flatpickr-calendar select,
.flatpickr-calendar input {
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px !important;
}

.flatpickr-calendar.open {
  top: 50px !important;
  left: inherit !important;
  right: 0px !important;
}

/* Event Detail Page */
.eventDetailPageWrap {
  margin-top: 120px;
}
.eventDetailPageWrap .topInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 30px;
}
.eventDetailPageWrap .topInfo .evsp {
  font-size: 14px;
}
.eventDetailPageWrap .topInfo ul {
  display: flex;
  align-items: center;
  gap: 15px;
}
.eventDetailPageWrap .topInfo ul img {
  height: 24px;
}
.eventDetailPageWrap .detailContent {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}
.eventDetailPageWrap h2 {
  font-size: 30px;
  font-family: "Cinzel", serif;
}
.eventDetailPageWrap h5 {
  font-size: 16px;
  font-family: "Cinzel", serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.eventDetailPageWrap ul {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.eventDetailPageWrap ul li {
  padding-bottom: 5px;
}
.eventDetailPageWrap a.pleaseLogin {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.eventDetailPageWrap p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.eventDetailPageWrap p.important {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #c70303;
}

.eventDetailPageWrap .memberEventTile .tileDateInfo {
  background: #c8b278;
}

.eventDetailPageWrap .memberEventTile .tileDateInfo ul {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 5px;
  margin-bottom: 0px;
}

.eventDetailPageWrap .memberEventTile .tileDateInfo ul li {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.eventDetailPageWrap .memberEventTile .tileDateInfo ul li img {
  height: 20px;
  margin-right: 5px;
}

.eventDetailPageWrap .memberEventTile .tileDateInfo ul li.spacialField {
  text-transform: uppercase;
  font-weight: 600;
  margin-left: auto;
}

.eventDetailPageWrap .memberEventTile .tileImageWrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.eventDetailPageWrap .memberEventTile .tileContentWrap {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

.eventDetailPageWrap .memberEventTile .tileContentWrap {
  text-align: center;
  padding: 15px;
}

.eventDetailPageWrap .memberEventTile .tileContentWrap h2 {
  font-size: 26px;
  text-align: center;
}

.eventDetailPageWrap .memberEventTile:hover .tileContentWrap h2 {
  text-decoration: underline;
}

.eventDetailPageWrap .memberEventTile:hover .tileContentWrap li li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/*  */
.instactorGuid {
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid #333;
}

.instactorGuid h3 {
  font-size: 18px;
  font-family: "Cinzel", serif;
  font-weight: 400;
  margin-bottom: 20px;
}

.no_event {
  padding: 50px;
  background: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif !important;
}

.bgImgMobile {
  display: none;
}

/* Date old */
.dateFilter {
  padding-bottom: 20px;
  font-family: "Montserrat", sans-serif !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dateFilter a img {
  width: 36px;
}

/*  */

.rathskellerInfo p {
  margin-bottom: 20px;
}

.clubPageData {
  font-size: 16px;
  text-align: left;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.clubPageData h3 {
  font-family: "Cinzel", serif;
  font-size: 42px;
  margin-bottom: 10px;
  color: #000;
}

.clubPageData ul {
  margin-bottom: 0px;
  margin-top: 0px;
}

.clubPageData > b {
  margin-bottom: 0px;
  margin-top: 20px;
  font-weight: 600 !important;
}

.clubButtonWrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0px;
  position: absolute;
  top: 75px;
  right: 40px;
}

.clubButtonWrap a {
  font-weight: 500;
  border-radius: 50px;
  padding: 6px 15px;
  color: #fff;
  background: #c8b278;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.clubButtonWrap a.applyNow {
  font-weight: 500;
  border-radius: 50px;
  padding: 6px 15px;
  color: #c8b278;
  background: none;
  border: 1px solid #c8b278;
}

.clubPDF {
  font-weight: 600 !important;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #c8b278;
}

.clubPDF:before {
  content: "";
  height: 24px;
  width: 24px;
  background: url(https://themontanaclub.com/wp-content/uploads/2025/08/pdf.png)
    no-repeat center;
  background-size: contain;
  display: inline-block;
}

.rathskellerMenuCarousel .owl-nav .owl-prev {
  position: absolute;
  left: -20px;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff !important;
  background-image: url(https://themontanaclub.com/wp-content/uploads/2025/08/arrow.png) !important;
  background-size: 20px !important;
  margin: 0px;
  border-radius: 50%;
  font-size: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.rathskellerMenuCarousel .owl-nav .owl-next {
  position: absolute;
  right: -20px;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: #fff !important;
  background-image: url(https://themontanaclub.com/wp-content/uploads/2025/08/right.png) !important;
  background-size: 20px !important;
  margin: 0px !important;
  border-radius: 50%;
  font-size: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.rathskellerMenuCarousel .owl-nav .owl-next span {
  display: none;
}

.rathskellerMenuCarousel .owl-item p {
  font-weight: 500 !important;
  margin-bottom: 10px;
  color: #c8b278;
  margin-bottom: 15px;
}

.eventPageData {
  font-size: 16px;
  text-align: left;
  margin-bottom: 0px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.ePCBTN {
  font-weight: 500 !important;
}

.ePCBTN b {
  font-weight: 500 !important;
}

.ePCBTN:before {
  content: "";
  height: 18px;
  width: 18px;
  background: url(https://themontanaclub.com/wp-content/uploads/2025/08/external-link.png)
    no-repeat center;
  background-size: contain;
  display: inline-block;
}

#eventcalender p {
  margin-bottom: 30px;
}

#eventcalender p br {
  display: none;
}

/*  */

body.page-template-club-php .headerDropMenu > li:first-child > a {
  color: #c8b278;
}

body.page-template-rathskeller-php .headerDropMenu > li:nth-child(2) > a {
  color: #c8b278;
}

body.page-template-events-php .headerDropMenu > li:nth-child(3) > a {
  color: #c8b278;
}

body.page-template-history-php .headerDropMenu li:nth-child(1) > a {
  color: #c8b278;
}

body.page-template-club-php
  .headerDropMenu
  li:nth-child(1)
  li:nth-child(2)
  > a {
  color: #c8b278;
}
body.page-template-events-php #header.headerInnerPages h1 {
  display: none;
}

.page-template-about_us-php .spySection h4 strong {
  font-weight: 500 !important;
}

.page-template-about_us-php .spySection h4 {
  margin-top: 10px !important;
}

.menuP {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: justify;
  margin-bottom: 15px;
}

.page-template-events-php .spySection {
  padding-top: 0px;
  padding-bottom: 40px;
}

.clubButtonWrap.rathPage a {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c8b278 !important;
}

.clubButtonWrap.rathPage img {
  height: 24px;
  width: 24px;
}

.spySection.career {
  padding-top: 0px;
}
