:root {
  --ColorBackground: #f2ef94;
  --ColorbackgroundAlt: #f2f0ae;
  --ColorText: #212004;
  --ColorWhite: #fff;
  --WidthContainer: 1200px;
  --PaddingInlineContainer: 0;
}

@media screen and (max-width: 1200px) {
  :root {
    --WidthContainer: 100%;
    --PaddingInlineContainer: 30px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --PaddingInlineContainer: 20px;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_24pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_24pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_24pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  overflow-x: hidden;
  min-width: 376px;
  background-color: var(--ColorBackground);
  font-family: "Inter", serif;
  scroll-behavior: smooth;
}
body * {
  color: var(--text);
  transition: 0.5s ease all;
}

.button {
  padding: 24px 28px;
  background-color: var(--ColorText);
  color: var(--ColorBackground);
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.button:hover {
  background-color: #1a1901;
}
.button.white {
  background-color: var(--ColorWhite);
  color: #020202;
}
.button.white:hover {
  opacity: 0.9;
}
.button.light {
  background-color: var(--ColorBackground);
  color: var(--ColorText);
}
.button.light:hover {
  background-color: var(--ColorbackgroundAlt);
}

.siteLogo {
  width: 30px;
  height: 20px;
  display: block;
}
.siteLogo svg {
  width: 100%;
}

.header {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  padding-block: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .menuContainer {
  display: flex;
  gap: 50px;
}
.header .menuContainer .link {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  position: relative;
}
.header .menuContainer .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--ColorText);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header .menuContainer .link.active::after, .header .menuContainer .link:hover::after {
  transform: scaleX(1);
}
.header .burgerToggler {
  display: none;
}

@media screen and (max-width: 1200px) {
  .header .menuContainer {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .header.mobileMenuActive:after {
    content: "";
    width: 100dvw;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--ColorText);
    opacity: 0.3;
    position: absolute;
    z-index: 99;
  }
  .header.mobileMenuActive .menuContainer {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .header.mobileMenuActive .burgerToggler .line {
    opacity: 0;
  }
  .header.mobileMenuActive .burgerToggler::after {
    transform: translateY(10px) rotate(45deg);
  }
  .header.mobileMenuActive .burgerToggler::before {
    transform: translateY(-10px) rotate(-45deg);
  }
  .header .menuContainer {
    position: fixed;
    top: 0;
    right: 0;
    width: 70dvw;
    height: 100dvh;
    background-color: var(--ColorBackground);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    align-items: end;
    padding-right: 22px;
  }
  .header .menuContainer .link {
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
  }
  .header .burgerToggler {
    display: flex;
    width: 32px;
    height: 21px;
    align-items: center;
    position: relative;
    z-index: 101;
  }
  .header .burgerToggler .line {
    background-color: #130601;
    width: 100%;
    height: 1px;
    opacity: 1;
  }
  .header .burgerToggler::after, .header .burgerToggler::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #130601;
    bottom: 0;
    left: 0;
    transform-origin: center;
    transform: translateY(0) rotate(0);
    transition: 0.5s ease all;
  }
  .header .burgerToggler::after {
    bottom: auto;
    top: 0;
  }
}
.eventsShowcase {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  padding-top: 150px;
}
.eventsShowcase h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 120px;
  width: 95%;
}
.eventsShowcase .eventsHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ColorText);
  margin-bottom: 110px;
  position: relative;
}
.eventsShowcase .eventsHeader .typesContainer {
  display: flex;
  gap: 40px;
}
.eventsShowcase .eventsHeader .typesContainer .category {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  opacity: 0.4;
}
.eventsShowcase .eventsHeader .typesContainer .category.active, .eventsShowcase .eventsHeader .typesContainer .category:hover {
  opacity: 1;
}
.eventsShowcase .eventsHeader .dateButton {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
}
.eventsShowcase .eventsHeader .dateButton.active svg {
  transform: rotate(180deg);
}
.eventsShowcase .cardsContainer {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.eventsShowcase .cardsContainer.active {
  max-height: 10000px;
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 1200px) {
  .eventsShowcase h2 {
    margin-bottom: 80px;
    font-size: 70px;
  }
  .eventsShowcase .eventsHeader {
    margin-bottom: 100px;
  }
  .eventsShowcase .eventsHeader .typesContainer .category {
    font-size: 18px;
  }
  .eventsShowcase .cardsContainer {
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .eventsShowcase {
    padding-top: 115px;
  }
  .eventsShowcase h2 {
    font-size: 40px;
    margin-bottom: 80px;
  }
  .eventsShowcase .eventsHeader {
    padding-bottom: 30px;
    margin-bottom: 80px;
  }
  .eventsShowcase .eventsHeader .typesContainer {
    gap: 30px;
  }
  .eventsShowcase .eventsHeader .typesContainer .category {
    font-size: 16px;
  }
  .eventsShowcase .eventsHeader .dateButton {
    font-size: 16px;
    gap: 12px;
  }
  .eventsShowcase .cardsContainer {
    gap: 70px;
  }
}
.eventCard {
  display: flex;
  gap: 69px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--ColorText);
}
.eventCard:nth-last-of-type(1) {
  border-color: transparent;
}
.eventCard .mainContent {
  display: flex;
  gap: 151px;
}
.eventCard .dateContainer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.eventCard .dateContainer .month {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
.eventCard .dateContainer .date {
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  font-size: 70px;
}
.eventCard .dateContainer .year {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  opacity: 0.4;
}
.eventCard .dateContainer .mobileDate {
  display: none;
}
.eventCard .content h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 32px;
}
.eventCard .content > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 50px;
}
.eventCard .content .additionalInfo {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 70px;
}
.eventCard .content .additionalInfo .row {
  width: calc(50% - 20px);
}
.eventCard .content .additionalInfo .row h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 20px;
}
.eventCard .content .additionalInfo .row p {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}
.eventCard .imageContainwer {
  padding: 60px 80px;
  background-color: #f4f2b1;
  width: 479px;
  flex-grow: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
  .eventCard {
    gap: 80px;
    padding-bottom: 80px;
    flex-direction: column-reverse;
  }
  .eventCard .mainContent {
    gap: 70px;
  }
  .eventCard .dateContainer {
    gap: 8px;
  }
  .eventCard .dateContainer .month {
    font-size: 9px;
    letter-spacing: -0.18px;
  }
  .eventCard .dateContainer .date {
    font-size: 40px;
  }
  .eventCard .dateContainer .year {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    opacity: 0.4;
  }
  .eventCard .content h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 40px;
  }
  .eventCard .content > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 60px;
  }
  .eventCard .content .additionalInfo .row h4 {
    margin-bottom: 18px;
  }
  .eventCard .content .additionalInfo .row p {
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
  }
  .eventCard .imageContainwer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px;
  }
  .eventCard .imageContainwer img {
    height: 400px;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .eventCard {
    gap: 70px;
    padding-bottom: 70px;
  }
  .eventCard .mainContent {
    gap: 35px;
    flex-direction: column;
  }
  .eventCard .dateContainer {
    gap: 12px;
  }
  .eventCard .dateContainer .month,
  .eventCard .dateContainer .year,
  .eventCard .dateContainer .date {
    display: none;
  }
  .eventCard .dateContainer .mobileDate {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
  }
  .eventCard .content h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .eventCard .content > p {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .eventCard .content .additionalInfo {
    margin-bottom: 60px;
  }
  .eventCard .content .additionalInfo .row h4 {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .eventCard .content .additionalInfo .row p {
    font-size: 15px;
  }
  .eventCard .imageContainwer {
    padding: 70px;
  }
  .eventCard .imageContainwer img {
    width: 100%;
    height: auto;
  }
}
.supportSection {
  background: url("../img/membershipHero.webp") no-repeat center center/cover;
  background-size: cover;
  width: 100%;
  height: 675px;
  display: flex;
  align-items: center;
  position: relative;
}
.supportSection::after {
  background: linear-gradient(270deg, rgba(7, 7, 7, 0) 0%, #070707 100%);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.supportSection .content {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  color: var(--ColorWhite);
  position: relative;
  z-index: 1;
}
.supportSection .content h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 40px;
  width: 536px;
}
.supportSection .content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 60px;
  width: 405px;
}

@media screen and (max-width: 1200px) {
  .supportSection {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #070707;
    background: none;
  }
  .supportSection::after {
    display: none;
  }
  .supportSection::before {
    flex-shrink: 0;
    content: "";
    display: block;
    width: 100%;
    height: 672px;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0) 56.19%, #070707 100%), url("../img/membershipHero.webp") no-repeat center top/cover;
  }
  .supportSection .content {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #060606 0%, #060606 100%);
    padding-bottom: 120px;
    flex-shrink: 0;
  }
  .supportSection .content h2 {
    width: 555px;
    font-size: 50px;
  }
  .supportSection .content p {
    width: 555px;
  }
}
@media screen and (max-width: 767px) {
  .supportSection::before {
    height: 335px;
  }
  .supportSection .content {
    padding-bottom: 100px;
  }
  .supportSection .content h2 {
    width: 100%;
    font-size: 40px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 35px;
  }
  .supportSection .content p {
    width: 100%;
    font-size: 15px;
    margin-bottom: 55px;
  }
}
.aboutUsSmall {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  padding-top: 202px;
}
.aboutUsSmall h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 100px;
  width: 519px;
}
.aboutUsSmall .content {
  display: flex;
  gap: 217px;
}
.aboutUsSmall .content .bigLinks {
  display: flex;
  gap: 20px;
}
.aboutUsSmall .content .bigLinks .bigLink {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
.aboutUsSmall .content .bigLinks .bigLink span {
  font-size: 25px;
  font-weight: 600;
  line-height: 100%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-decoration: underline;
  margin-bottom: 40px;
}
.aboutUsSmall .content .bigLinks .bigLink .imageContainwer {
  width: 100%;
  height: auto;
  aspect-ratio: 464/537;
}
.aboutUsSmall .content .bigLinks .bigLink .imageContainwer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .aboutUsSmall {
    position: relative;
    padding-top: 677px;
  }
  .aboutUsSmall h2 {
    font-size: 50px;
    margin-bottom: 80px;
  }
  .aboutUsSmall .content {
    gap: 0;
  }
  .aboutUsSmall .content .siteLogo {
    position: absolute;
    top: 577px;
  }
  .aboutUsSmall .content .bigLinks {
    display: flex;
    gap: 20px;
  }
  .aboutUsSmall .content .bigLinks .bigLink {
    flex-direction: column-reverse;
  }
  .aboutUsSmall .content .bigLinks .bigLink span {
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .aboutUsSmall {
    padding-top: 240px;
  }
  .aboutUsSmall h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 60px;
    width: 100%;
  }
  .aboutUsSmall .content .siteLogo {
    top: 160px;
  }
  .aboutUsSmall .content .bigLinks {
    gap: 60px;
    flex-direction: column;
  }
  .aboutUsSmall .content .bigLinks .bigLink {
    width: 100%;
  }
  .aboutUsSmall .content .bigLinks .bigLink span {
    margin-top: 30px;
  }
}
.footer {
  padding-top: 200px;
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
}
.footer .footerHeader {
  padding-bottom: 100px;
  border-bottom: 1px solid var(--ColorText);
  margin-bottom: 100px;
}
.footer .footerHeader h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 40px;
}
.footer .footerHeader a {
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.footer .footerFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 100px;
}
.footer .footerFooter .footerMenu {
  display: flex;
  align-items: center;
  gap: 50px;
}
.footer .footerFooter .footerMenu .footerLink {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  position: relative;
}
.footer .footerFooter .footerMenu .footerLink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--ColorText);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer .footerFooter .footerMenu .footerLink.active::after, .footer .footerFooter .footerMenu .footerLink:hover::after {
  transform: scaleX(1);
}

@media screen and (max-width: 1200px) {
  .footer {
    padding-top: 180px;
  }
  .footer .footerHeader {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
  .footer .footerHeader h2 {
    margin-bottom: 50px;
  }
  .footer .footerHeader a {
    font-size: 60px;
    font-weight: 600;
    line-height: 100%;
  }
  .footer .footerFooter {
    justify-content: start;
    gap: 50px;
    padding-bottom: 80px;
    flex-direction: column;
    align-items: start;
  }
  .page-template-aboutUs .footer,
  .page-template-location .footer {
    padding-top: 480px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 183px;
  }
  .footer .footerHeader {
    padding-bottom: 70px;
    margin-bottom: 70px;
  }
  .footer .footerHeader h2 {
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-transform: none;
  }
  .footer .footerHeader a {
    font-size: 30px;
  }
  .footer .footerFooter {
    padding-bottom: 70px;
  }
  .footer .footerFooter .footerMenu {
    flex-wrap: wrap;
    gap: 40px;
  }
  .page-template-aboutUs .footer,
  .page-template-location .footer {
    padding-top: 183px;
  }
}
.ourTeamSection {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  padding-bottom: 200px;
}
.ourTeamSection h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 40px;
}
.ourTeamSection h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
.ourTeamSection .imageContainer {
  margin-top: 80px;
  margin-bottom: 40px;
  width: 100%;
  height: auto;
  aspect-ratio: 1200/500;
}
.ourTeamSection .imageContainer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .ourTeamSection {
    padding-bottom: 160px;
  }
  .ourTeamSection h2 {
    font-size: 50px;
  }
  .ourTeamSection .imageContainer {
    aspect-ratio: 728/500;
  }
}
@media screen and (max-width: 767px) {
  .ourTeamSection {
    padding-bottom: 160px;
  }
  .ourTeamSection h2 {
    font-size: 40px;
  }
  .ourTeamSection .imageContainer {
    aspect-ratio: 336/340;
  }
}
.aboutUsMain {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  padding-top: 155px;
}
.aboutUsMain.small {
  padding-top: 0;
  padding-bottom: 200px;
}
.aboutUsMain .aboutusHeader {
  padding-bottom: 80px;
  margin-bottom: 120px;
  border-bottom: 1px solid var(--ColorText);
}
.aboutUsMain .aboutusHeader h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.aboutUsMain .content {
  display: flex;
  gap: 72px;
}
.aboutUsMain .content h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 80px;
}
.aboutUsMain .content .aside {
  width: calc(50% - 72px);
  flex-shrink: 0;
  flex-grow: 0;
}
.aboutUsMain .content .main .text {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.aboutUsMain .content .main .text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.page-template-location .aboutUsMain .content h3 {
  line-height: 1.1;
}

@media screen and (max-width: 1200px) {
  .aboutUsMain.small {
    padding-top: 0;
    padding-bottom: 180px;
  }
  .aboutUsMain .aboutusHeader h2 {
    font-size: 70px;
  }
  .aboutUsMain .content {
    gap: 60px;
    flex-direction: column;
  }
  .aboutUsMain .content h3 {
    line-height: 110%;
    margin-bottom: 0;
  }
  .aboutUsMain .content .aside {
    width: 100%;
  }
  .aboutUsMain .content .main .text {
    margin-top: 80px;
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .aboutUsMain {
    padding-top: 115px;
  }
  .aboutUsMain.small {
    padding-top: 0;
    padding-bottom: 115px;
  }
  .aboutUsMain .aboutusHeader {
    padding-bottom: 60px;
    margin-bottom: 80px;
  }
  .aboutUsMain .aboutusHeader h2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 100%;
  }
  .aboutUsMain .content {
    gap: 50px;
  }
  .aboutUsMain .content h3 {
    font-size: 25px;
    font-weight: 600;
    line-height: 110%;
  }
  .aboutUsMain .content .main .text {
    margin-top: 60px;
  }
  .aboutUsMain .content .main .text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
  }
}
.memberShipHero {
  padding-bottom: 200px;
  padding-top: 145px;
}
.memberShipHero h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  margin-bottom: 50px;
}
.memberShipHero .textContainer {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
}
.memberShipHero p {
  margin-bottom: 100px;
  width: 387px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}
.memberShipHero .imageContainer {
  width: 100%;
  height: auto;
  aspect-ratio: 1440/550;
  height: 550px;
}
.memberShipHero .imageContainer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .memberShipHero h2 {
    font-size: 70px;
    margin-bottom: 40px;
  }
  .memberShipHero p {
    margin-bottom: 80px;
    width: 329px;
  }
  .memberShipHero .imageContainer {
    aspect-ratio: 768/675;
  }
}
@media screen and (max-width: 767px) {
  .memberShipHero {
    padding-top: 120px;
    padding-bottom: 160px;
  }
  .memberShipHero h2 {
    font-size: 40px;
    margin-bottom: 35px;
  }
  .memberShipHero p {
    margin-bottom: 70px;
    font-size: 15px;
  }
  .memberShipHero .imageContainer {
    aspect-ratio: 376/317;
  }
}
.membershipTextSection {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  display: flex;
  flex-wrap: wrap;
}
.membershipTextSection h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 100%;
  line-height: 1.1;
  margin-bottom: 100px;
  width: 100%;
  padding-right: 50%;
}
.membershipTextSection > * {
  width: 50%;
  flex-shrink: 0;
  flex-grow: 0;
}
.membershipTextSection .sidebar h3 {
  padding-right: 164px;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  line-height: 1.3;
}
.membershipTextSection .main {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.membershipTextSection .main p {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.page-template-location .membershipTextSection {
  margin-bottom: 180px;
}

@media screen and (max-width: 1200px) {
  .membershipTextSection h2 {
    width: 100%;
    padding-right: 0;
    margin-bottom: 80px;
  }
  .membershipTextSection > * {
    width: 100%;
  }
  .membershipTextSection .sidebar h3 {
    padding-right: 0;
    margin-bottom: 80px;
  }
  .membershipTextSection .main {
    gap: 50px;
  }
  .membershipTextSection .main p {
    width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .membershipTextSection h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 60px;
  }
  .membershipTextSection .sidebar h3 {
    font-size: 16px;
    margin-bottom: 60px;
  }
  .membershipTextSection .main {
    gap: 40px;
  }
  .membershipTextSection .main p {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    width: 100%;
  }
}
.membershipCards {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  padding-top: 200px;
}
.membershipCards h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 100px;
  width: 600px;
}
.membershipCards .cardsContainer {
  display: flex;
  gap: 20px;
}
.membershipCards .cardsContainer .card {
  width: calc(50% - 10px);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 590/500;
  background-color: var(--ColorbackgroundAlt);
  padding-bottom: 80px;
}
.membershipCards .cardsContainer .card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  text-transform: none;
}
.membershipCards .cardsContainer .card .cardFooter h4 {
  font-size: 40px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 32px;
}
.membershipCards .cardsContainer .card .cardFooter p {
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

@media screen and (max-width: 1200px) {
  .membershipCards {
    padding-top: 180px;
  }
  .membershipCards h2 {
    font-size: 50px;
    margin-bottom: 80px;
    width: 100%;
  }
  .membershipCards .cardsContainer {
    flex-direction: column;
  }
  .membershipCards .cardsContainer .card {
    width: 100%;
    aspect-ratio: 708/500;
  }
}
@media screen and (max-width: 767px) {
  .membershipCards {
    padding-top: 160px;
  }
  .membershipCards h2 {
    font-size: 40px;
    margin-bottom: 80px;
  }
  .membershipCards .cardsContainer .card {
    padding: 50px 40px;
    aspect-ratio: 336/420;
    padding-bottom: 70px;
  }
  .membershipCards .cardsContainer .card .cardFooter h4 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .membershipCards .cardsContainer .card .cardFooter p {
    margin-bottom: 50px;
    font-size: 15px;
  }
}
.locationPhoroContainer {
  width: 100%;
  aspect-ratio: 1440/647;
  overflow: hidden;
  margin-top: 144px;
  margin-bottom: 200px;
}
.locationPhoroContainer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .locationPhoroContainer {
    aspect-ratio: 768/675;
    margin-top: 180px;
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 767px) {
  .locationPhoroContainer {
    aspect-ratio: 376/530;
    margin-top: 160px;
    margin-bottom: 160px;
  }
}
.mailCollectorSection {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  display: flex;
  gap: 210px;
  padding-bottom: 200px;
  padding-top: 90px;
}
.mailCollectorSection .mainContent {
  width: 100%;
  flex-grow: 1;
}
.mailCollectorSection .mainContent h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 40px;
  width: 696px;
}
.mailCollectorSection .mainContent h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 80px;
  width: 424px;
}
.mailCollectorSection .mainContent .formContainer {
  padding: 60px;
  background-color: var(--ColorbackgroundAlt);
}
.mailCollectorSection .mainContent .formContainer h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 40px;
}
.mailCollectorSection .mainContent .formContainer .tnp-subscription {
  margin: 0;
  max-width: none;
}
.mailCollectorSection .mainContent .formContainer .tnp-subscription form {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.mailCollectorSection .mainContent .formContainer .tnp-subscription form .tnp-field {
  width: calc(50% - 20px);
}
.mailCollectorSection .mainContent .formContainer .tnp-subscription form .tnp-field input {
  background-color: transparent;
  padding: 0;
  border-bottom: 1px solid var(--ColorText);
}
.mailCollectorSection .mainContent .formContainer .tnp-subscription form .tnp-field label {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
.mailCollectorSection .mainContent .formContainer .tnp-subscription form .tnp-field-button .tnp-submit {
  padding: 24px 28px;
  background-color: var(--ColorText);
  color: var(--ColorBackground);
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.mailCollectorSection .mainContent .formContainer .tnp-subscription form .tnp-field-button .tnp-submit:hover {
  background-color: #1a1901;
}

@media screen and (max-width: 1200px) {
  .mailCollectorSection {
    flex-direction: column;
    gap: 80px;
    padding-bottom: 180px;
  }
  .mailCollectorSection .mainContent h2 {
    width: 708px;
    margin-bottom: 30px;
  }
  .mailCollectorSection .mainContent h3 {
    width: 424px;
  }
  .mailCollectorSection .mainContent .formContainer h4 {
    width: 356px;
  }
  .mailCollectorSection .mainContent .formContainer .tnp-subscription form .tnp-field {
    width: 100%;
    margin-bottom: 0;
  }
  .mailCollectorSection .mainContent .formContainer .tnp-subscription form .tnp-field label {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .mailCollectorSection {
    gap: 60px;
    padding-bottom: 160px;
  }
  .mailCollectorSection .mainContent h2 {
    font-size: 40px;
    margin-bottom: 35px;
    width: 100%;
  }
  .mailCollectorSection .mainContent h3 {
    margin-bottom: 60px;
    width: 100%;
  }
  .mailCollectorSection .mainContent .formContainer {
    padding: 60px 40px;
  }
  .mailCollectorSection .mainContent .formContainer h4 {
    font-size: 18px;
    width: 100%;
  }
}
.page-id-37 .sidePageSection h1 {
  display: none;
}

.successSubscribe {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.successSubscribe h3 {
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.successSubscribe p {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}

.sidePageSection {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  padding-top: 160px;
}
.sidePageSection .page-title {
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 80px;
}
.sidePageSection p {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.flatpickr-calendar {
  padding: 34px 42px 54px 42px;
  width: auto;
  background-color: var(--ColorText);
}
.flatpickr-calendar::before, .flatpickr-calendar::after {
  display: none;
}
.flatpickr-calendar .flatpickr-day,
.flatpickr-calendar .flatpickr-weekday,
.flatpickr-calendar .flatpickr-monthDropdown-month,
.flatpickr-calendar .numInput,
.flatpickr-calendar .flatpickr-monthDropdown-months,
.flatpickr-calendar .cur-month {
  color: var(--ColorBackground) !important;
}
.flatpickr-calendar .cur-month,
.flatpickr-calendar .numInputWrapper {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}
.flatpickr-calendar .flatpickr-weekdays {
  display: none;
}
.flatpickr-calendar .flatpickr-months {
  margin-bottom: 32px;
}
.flatpickr-calendar .flatpickr-day {
  font-size: 14px;
  font-weight: 600;
}
.flatpickr-calendar .flatpickr-day.today {
  border-color: var(--ColorBackground);
}
.flatpickr-calendar .flatpickr-day:hover {
  background-color: var(--ColorBackground);
  color: var(--ColorText) !important;
}
.flatpickr-calendar .flatpickr-day.selected.startRange, .flatpickr-calendar .flatpickr-day.selected.endRange {
  background-color: var(--ColorBackground);
  color: var(--ColorText) !important;
  border: none;
}
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange,
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected.inRange,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange.inRange,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange.inRange,
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected:focus,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange:focus,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange:focus,
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected:hover,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange:hover,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange:hover,
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected.prevMonthDay,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange.prevMonthDay,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange.prevMonthDay,
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected.nextMonthDay,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange.nextMonthDay,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange.nextMonthDay {
  border-color: var(--ColorBackground) !important;
}
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange,
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected.inRange,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange.inRange,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange.inRange,
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected:focus,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange:focus,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange:focus,
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected:hover,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange:hover,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange:hover,
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected.prevMonthDay,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange.prevMonthDay,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange.prevMonthDay,
.flatpickr-calendar .flatpickr-day .flatpickr-day.selected.nextMonthDay,
.flatpickr-calendar .flatpickr-day .flatpickr-day.startRange.nextMonthDay,
.flatpickr-calendar .flatpickr-day .flatpickr-day.endRange.nextMonthDay {
  border-color: var(--ColorBackground) !important;
  background-color: var(--ColorBackground);
}
.flatpickr-calendar .flatpickr-day.inRange {
  background-color: #333214;
  box-shadow: -5px 0 0 #333214, 5px 0 0 #333214;
  border: none;
}
.flatpickr-calendar .flatpickr-day.inRange:hover {
  color: var(--ColorBackground) !important;
}
.flatpickr-calendar .flatpickr-innerContainer {
  margin-bottom: 32px;
}
.flatpickr-calendar .flatpickr-monthDropdown-months option {
  background-color: var(--ColorText);
  border: none;
  outline: none;
  border-radius: 10px;
  padding: 23px 16px;
  color: var(--ColorBackground);
}
.flatpickr-calendar .flatpickr-prev-month {
  top: 20px;
  left: 17px !important;
}
.flatpickr-calendar .flatpickr-prev-month path {
  fill: var(--ColorBackground) !important;
}
.flatpickr-calendar .flatpickr-next-month {
  top: 20px;
  right: 17px !important;
}
.flatpickr-calendar .flatpickr-next-month path {
  fill: var(--ColorBackground) !important;
}
.flatpickr-calendar .flatpickr-footer {
  display: flex;
  justify-content: space-around;
}
.flatpickr-calendar .flatpickr-footer .button {
  padding: 24px 16px;
}

.archiveCategoryEmpty,
.actualCategoryEmpty {
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  display: none;
}
.archiveCategoryEmpty.active,
.actualCategoryEmpty.active {
  display: block;
}

.section-404 {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
}
.section-404 h1 {
  font-size: 50px;
  margin-bottom: 60px;
}
.section-404 p {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.modalContainer {
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  display: flex;
  align-items: center;
}
.modalContainer.active {
  pointer-events: all;
  opacity: 1;
}
.modalContainer .modalInner {
  width: var(--WidthContainer);
  margin-inline: auto;
  padding-inline: var(--PaddingInlineContainer);
  background-color: var(--ColorBackground);
  position: relative;
  padding-block: 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 200;
}
.modalContainer .modalInner .closePopup {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%) translateY(-50%);
  background-color: var(--ColorText);
  padding: 17px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.modalContainer .modalInner h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 40px;
  text-align: center;
  width: 623px;
}
.modalContainer .modalInner h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 55px;
  text-align: center;
  width: 623px;
  font-weight: 600;
}
.modalContainer .modalInner h3 a {
  text-align: center;
  width: 623px;
  position: relative;
  padding-bottom: 10px;
}
.modalContainer .modalInner h3 a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--ColorText);
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 1200px) {
  .modalContainer {
    padding-inline: 30px;
  }
  .modalContainer .modalInner {
    height: 80%;
  }
  .modalContainer .modalInner .closePopup {
    transform: translateX(-50%) translateY(50%);
  }
}
@media screen and (max-width: 767px) {
  .modalContainer {
    padding-inline: 20px;
  }
  .modalContainer .modalInner {
    height: 95%;
    padding-inline: 20px;
  }
  .modalContainer .modalInner h2 {
    width: auto;
  }
  .modalContainer .modalInner h3 {
    width: auto;
    font-size: 25px;
    font-weight: 600;
    line-height: 110%;
  }
}/*# sourceMappingURL=styles.css.map */