@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans55Reg-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans55Reg-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans65Med-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans65Med-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
.session-list-block {
  position: relative;
  padding: 50px 0;
}
.session-list-block .session-list__header-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.session-list-block .session-list__tabs-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}
.session-list-block .session-list__tabs-nav .session-tab-trigger {
  background: none;
  border: none;
  color: #fedacb;
  font-family: "Pontano Sans", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.3s ease;
  padding-bottom: 10px;
}
.session-list-block .session-list__tabs-nav .session-tab-trigger.active {
  opacity: 1;
  color: #82AAF7;
  position: relative;
}
.session-list-block .session-list__tabs-nav .session-tab-trigger.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: radial-gradient(circle, #82aaf7 0%, rgba(34, 52, 102, 0) 100%);
  filter: blur(1px);
}
.session-list-block .session-list__tabs-nav .session-tab-trigger:hover {
  opacity: 1;
}
.session-list-block .session-tab-pane {
  display: none;
}
.session-list-block .session-tab-pane.active {
  display: block;
}
.session-list-block .session-tab-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
}
@media (max-width: 1024px) {
  .session-list-block .session-tab-inner {
    grid-template-columns: 1fr;
  }
}
.session-list-block .session-list-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.session-list-block .session-list-image {
  position: relative;
  max-height: 100vh;
}
.session-list-block .session-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 900px) {
  .session-list-block .session-list-image {
    min-height: 300px;
    max-height: none;
  }
  .session-list-block .session-list-image img {
    position: relative;
    height: 300px;
  }
}
@media (max-width: 1024px) {
  .session-list-block .session-list-image {
    display: none;
  }
}
.session-list-block .session-group {
  position: relative;
}
.session-list-block .session-group:nth-of-type(n+2):nth-of-type(odd):after {
  content: "";
  display: inline-block;
  width: 100vw;
  position: absolute;
  inset: 0;
  height: calc(100% + 40px);
  z-index: -1;
  left: -20vw;
  top: -30px;
  background: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1024px) {
  .session-list-block .session-group:nth-of-type(n+2):nth-of-type(odd):after {
    left: 0;
  }
}
.session-list-block .session-group .session-group__header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 700px) {
  .session-list-block .session-group .session-group__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.session-list-block .session-group .session-group__header .caps-heading {
  color: #C37554;
}
.session-list-block .session-group .session-group__header .secondary-heading {
  margin: 0 0 15px 0;
  color: #fedacb;
}
.session-list-block .session-group .session-group__header p {
  color: rgba(254, 218, 203, 0.8);
  line-height: 1.6;
  max-width: 400px;
}
.session-list-block .session-group .session-group__header p:last-child {
  margin-bottom: 0;
}
.session-list-block .session-group .session-group__header .custom-link {
  display: inline-block;
  margin-top: 10px;
}
.session-list-block .session-group .session-group__title {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(254, 218, 203, 0.1);
}
.session-list-block .session-group .session-group__title {
  text-align: left;
}
.session-list-block .session-group .session-group__title .caps-heading {
  color: #C37554;
  margin-top: 0;
}
.session-list-block .session-group .session-group__cards {
  display: flex;
  flex-direction: column;
}
@media (min-width: 901px) {
  .session-list-block .session-group .dropdowns {
    display: none;
  }
}

.session-card {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-bottom: 40px;
  padding-top: 40px;
  border-bottom: 1px solid rgba(254, 218, 203, 0.1);
  text-decoration: none;
  transition: all 400ms ease;
  position: relative;
}
.session-card:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -50%;
  right: 0;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: -1;
}
.session-card:last-child {
  border-bottom: none;
}
.session-card .session-card__image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  transition: all 300ms ease;
}
@media only screen and (max-width: 1024px) {
  .session-card .session-card__image {
    height: 100%;
  }
}
.session-card .session-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.session-card .session-card__content {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 900px) {
  .session-card .session-card__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.session-card .session-card__main .session-card__title {
  font-family: "Contax Sans", Helvetica, Roboto, sans-serif;
  font-size: 25px;
  color: #fedacb;
  margin: 0 0 10px 0;
  font-weight: 400;
  transition: all 300ms ease;
}
.session-card .session-card__main .session-card__meta {
  display: flex;
  gap: 20px;
  opacity: 0.8;
  font-size: 13px;
  font-family: "Pontano Sans", sans-serif;
}
.session-card .session-card__main .session-card__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.session-card .session-card__main .session-card__meta .meta-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.session-card:hover:after {
  background: rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 1024px) {
  .session-card:hover:after {
    background: transparent;
  }
}
.session-card:hover .session-card__title {
  color: #EBA689;
}
.session-card:hover .session-card__image {
  transform: scale(1.03);
}
.session-card .session-card__ranges {
  display: flex;
  gap: 20px;
}
.session-card .session-card__ranges .range-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 0;
}
.session-card .session-card__ranges .range-item .range-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fedacb;
  font-family: "Pontano Sans", sans-serif;
  margin-bottom: 5px;
}
.session-card .session-card__ranges .range-item .range-dots {
  display: flex;
  gap: 3px;
}
.session-card .session-card__ranges .range-item .range-dots .dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid #C37554;
}
.session-card .session-card__ranges .range-item .range-dots .dot.filled {
  background-color: #C37554;
}
@media only screen and (max-width: 1024px) {
  .session-card {
    width: 100%;
    display: flex;
    align-items: center;
  }
}

.session-list-block--expanded .session-list__tabs-nav {
  display: none;
}
.session-list-block--expanded .session-list__tabs-content--expanded {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.session-list-block--expanded .session-tab-pane {
  display: block !important;
  opacity: 1 !important;
}
.session-list-block--expanded .session-list-image {
  display: block !important;
}
@media only screen and (max-width: 1024px) {
  .session-list-block--expanded .session-list-image {
    display: none !important;
  }
}

.sessions-navigation-block {
  padding: 60px 0;
  position: relative;
}
.sessions-navigation-block .sessions-navigation__header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.sessions-navigation-block .sessions-navigation__header .caps-heading {
  margin: 0 0 10px 0;
  color: #C37554;
}
.sessions-navigation-block .sessions-navigation__header .secondary-heading {
  margin: 0;
  color: #fedacb;
  background: linear-gradient(90deg, #C37554 0%, #240800 50%, #223466 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sessions-navigation-block .sessions-navigation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .sessions-navigation-block .sessions-navigation__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .sessions-navigation-block .sessions-navigation__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.sessions-navigation-block .sessions-navigation__card {
  position: relative;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sessions-navigation-block .sessions-navigation__card:first-of-type {
  background-position: 100% 24%;
}
.sessions-navigation-block .sessions-navigation__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
  z-index: 1;
}
.sessions-navigation-block .sessions-navigation__card:hover {
  transform: scale(1.03);
}
.sessions-navigation-block .sessions-navigation__card:hover::before {
  background: rgba(0, 0, 0, 0.3);
}
.sessions-navigation-block .sessions-navigation__card:active {
  transform: scale(0.98);
}
.sessions-navigation-block .sessions-navigation__card-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.sessions-navigation-block .sessions-navigation__card-title {
  margin: 0;
  font-family: "Pontano Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  color: #fedacb;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.sessions-navigation-block .sessions-navigation__card-link {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  width: 100%;
  bottom: -10px;
  text-align: center;
}
@media (max-width: 768px) {
  .sessions-navigation-block .sessions-navigation__card-link {
    opacity: 1;
    pointer-events: auto;
    position: static;
  }
}
.sessions-navigation-block .sessions-navigation__card:hover .sessions-navigation__card-title {
  transform: translateY(-10px);
}
@media (max-width: 768px) {
  .sessions-navigation-block .sessions-navigation__card:hover .sessions-navigation__card-title {
    transform: none;
  }
}
.sessions-navigation-block .sessions-navigation__card:hover .sessions-navigation__card-link {
  opacity: 1;
  pointer-events: auto;
}

@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans55Reg-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans55Reg-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans65Med-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans65Med-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
.kolm-cta-block {
  position: relative;
  overflow: hidden;
}
.kolm-cta-block .cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.kolm-cta-block .kolm-cta__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: transform 0.8s ease;
}
.kolm-cta-block .kolm-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.kolm-cta-block .kolm-cta__content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 200px 20px;
  min-height: 500px;
}
@media only screen and (max-width: 768px) {
  .kolm-cta-block .kolm-cta__content {
    min-height: 550px;
    justify-content: center;
  }
}
.kolm-cta-block .newsletter {
  width: 100%;
  padding: 17px 0;
  background: #240800;
  z-index: 5;
  display: block;
  position: relative;
}
.kolm-cta-block .newsletter .container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.kolm-cta-block .newsletter .container * {
  margin: 0;
}
.kolm-cta-block .newsletter .container .newsletter-text {
  color: #fedacb;
}
.kolm-cta-block .newsletter .container #bb_form {
  min-width: 300px;
  max-width: 400px;
  position: relative;
}
.kolm-cta-block .newsletter .container #bb_form #bb_submit {
  display: none !important;
}
.kolm-cta-block .newsletter .container #bb_form label {
  display: none !important;
}
.kolm-cta-block .newsletter .container #bb_form input {
  background: none;
  border: none;
  outline: none !important;
  border-bottom: 1px solid #fedacb !important;
  border-radius: 0;
}
.kolm-cta-block .newsletter .container #bb_form .form-group {
  margin-bottom: 0 !important;
}
.kolm-cta-block .newsletter .container #bb_form #alert {
  position: absolute !important;
}
.kolm-cta-block.warm-bg-cold-text .kolm-cta__overlay {
  background: linear-gradient(180deg, rgba(36, 8, 0, 0) 0%, rgba(36, 8, 0, 0.67) 46.15%, #240800 100%);
}
.kolm-cta-block.warm-bg-cold-text .secondary-heading {
  color: #BFD5F8;
}
.kolm-cta-block.warm-bg-warm-text .kolm-cta__overlay {
  background: linear-gradient(180deg, rgba(36, 8, 0, 0) 0%, rgba(36, 8, 0, 0.67) 46.15%, #240800 100%);
}
.kolm-cta-block.warm-bg-warm-text .secondary-heading {
  color: #EBA689;
}
.kolm-cta-block.cold-bg-warm-text .kolm-cta__overlay {
  background: linear-gradient(180deg, rgba(34, 52, 102, 0) 0%, rgba(34, 52, 102, 0.6) 51.92%, #223466, #223466 100%);
}
.kolm-cta-block.cold-bg-warm-text .secondary-heading {
  color: #EBA689;
}
.kolm-cta-block.cold-bg-cold-text .kolm-cta__overlay {
  background: linear-gradient(180deg, rgba(34, 52, 102, 0) 0%, rgba(34, 52, 102, 0.6) 51.92%, #223466, #223466 100%);
}
.kolm-cta-block.cold-bg-cold-text .secondary-heading {
  color: #BFD5F8;
}
@media (max-width: 768px) {
  .kolm-cta-block .kolm-cta__content {
    padding: 60px 20px;
    gap: 15px;
  }
}

@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans55Reg-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans55Reg-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans65Med-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans65Med-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
.quote-image-block {
  position: relative;
  min-height: 600px;
  height: 80vh;
  max-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .quote-image-block {
    height: 100vh;
    max-height: 100vh;
  }
}
.quote-image-block .quote-image__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.quote-image-block .quote-image__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: opacity 0.3s ease;
}
.quote-image-block .quote-image__content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 100px 20px;
  width: 100%;
  max-width: 100%;
}
.quote-image-block .quote-image__quote {
  margin: 0;
  max-width: 900px;
}
.quote-image-block .quote-image__quote p {
  font-family: "Contax Sans", Helvetica, Roboto, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}
.quote-image-block .quote-image__attribution {
  font-family: "Pontano Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.quote-image-block.text-warm .quote-image__quote p, .quote-image-block.text-warm .quote-image__quote .secondary-heading {
  color: #EBA689;
}
.quote-image-block.text-warm .quote-image__attribution {
  color: #EBA689;
}
.quote-image-block.text-cold .quote-image__quote p, .quote-image-block.text-cold .quote-image__quote .secondary-heading {
  color: #BFD5F8;
}
.quote-image-block.text-cold .quote-image__attribution {
  color: #BFD5F8;
}
.quote-image-block.quote-image--center {
  align-items: center;
  justify-content: center;
}
.quote-image-block.quote-image--center .quote-image__content {
  text-align: center;
  align-items: center;
  padding: 100px 20px;
  max-width: 900px;
}
.quote-image-block.quote-image--center .quote-image__quote p {
  text-align: center;
}
.quote-image-block.quote-image--center .quote-image__attribution {
  text-align: center;
}
.quote-image-block.quote-image--top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.quote-image-block.quote-image--top-left .quote-image__content {
  text-align: left;
  align-items: flex-start;
  padding: 5%;
  max-width: 750px;
  margin: 0;
}
.quote-image-block.quote-image--top-left .quote-image__quote p {
  text-align: left;
}
.quote-image-block.quote-image--top-left .quote-image__attribution {
  text-align: left;
}
.quote-image-block.quote-image--top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.quote-image-block.quote-image--top-right .quote-image__content {
  text-align: right;
  align-items: flex-end;
  padding: 5%;
  max-width: 750px;
  margin: 0;
}
.quote-image-block.quote-image--top-right .quote-image__quote p {
  text-align: right;
}
.quote-image-block.quote-image--top-right .quote-image__attribution {
  text-align: right;
}
.quote-image-block.quote-image--bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.quote-image-block.quote-image--bottom-left .quote-image__content {
  text-align: left;
  align-items: flex-start;
  padding: 5%;
  max-width: 750px;
  margin: 0;
}
.quote-image-block.quote-image--bottom-left .quote-image__quote p {
  text-align: left;
}
.quote-image-block.quote-image--bottom-left .quote-image__attribution {
  text-align: left;
}
.quote-image-block.quote-image--bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.quote-image-block.quote-image--bottom-right .quote-image__content {
  text-align: right;
  align-items: flex-end;
  padding: 5%;
  max-width: 750px;
  margin: 0;
}
.quote-image-block.quote-image--bottom-right .quote-image__quote p {
  text-align: right;
}
.quote-image-block.quote-image--bottom-right .quote-image__attribution {
  text-align: right;
}
.quote-image-block.quote-image--height-small {
  min-height: 540px;
}
.quote-image-block.quote-image--height-medium {
  min-height: 650px;
}
.quote-image-block.quote-image--height-large {
  min-height: 780px;
}
@media (max-width: 768px) {
  .quote-image-block {
    min-height: 500px;
    max-height: 700px;
  }
  .quote-image-block .quote-image__content {
    padding: 80px 20px;
  }
  .quote-image-block .quote-image__quote p {
    font-size: 24px;
  }
  .quote-image-block .quote-image__attribution {
    font-size: 11px;
  }
}

@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans55Reg-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans55Reg-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans65Med-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans65Med-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
.faq-list-full-block {
  padding: 80px 0;
}
.faq-list-full-block .faq-list-full__content {
  display: flex;
  flex-direction: column;
}
.faq-list-full-block .faq-category-row {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 50px 0;
}
@media (max-width: 1024px) {
  .faq-list-full-block .faq-category-row {
    flex-direction: column;
    gap: 30px;
  }
}
.faq-list-full-block .faq-category-sidebar {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  top: 100px;
  height: auto;
  text-align: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .faq-list-full-block .faq-category-sidebar {
    position: relative;
    top: 0;
    flex: 0 0 auto;
  }
}
.faq-list-full-block .category-title {
  font-family: "Pontano Sans", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fedacb;
  margin: 0;
  font-weight: 400;
  margin-bottom: 20px;
}
.faq-list-full-block .category-line {
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1411764706), rgba(255, 255, 255, 0));
  min-height: 200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .faq-list-full-block .category-line {
    display: none;
  }
}
.faq-list-full-block .faq-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .faq-list-full-block .faq-grid {
    grid-template-columns: 1fr;
  }
}
.faq-list-full-block .faq-item {
  background: rgba(254, 218, 203, 0.03);
  border: 1px solid rgba(254, 218, 203, 0.1);
  border-radius: 4px;
  min-height: 200px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.faq-list-full-block .faq-item:hover, .faq-list-full-block .faq-item.active {
  border-color: rgba(195, 117, 84, 0.3);
}
.faq-list-full-block .faq-item:hover .faq-item__question, .faq-list-full-block .faq-item.active .faq-item__question {
  opacity: 0;
}
.faq-list-full-block .faq-item:hover .faq-item__answer, .faq-list-full-block .faq-item.active .faq-item__answer {
  opacity: 1;
  visibility: visible;
}
.faq-list-full-block .faq-item:hover ~ .faq-item, .faq-list-full-block .faq-item.active ~ .faq-item {
  opacity: 0.5;
}
@media (max-width: 600px) {
  .faq-list-full-block .faq-item:hover ~ .faq-item, .faq-list-full-block .faq-item.active ~ .faq-item {
    opacity: 1;
  }
}
.faq-list-full-block .faq-item__inner {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 200px;
  position: relative;
}
.faq-list-full-block .faq-item__question {
  transition: transform 0.4s ease;
}
.faq-list-full-block .faq-item__question h4 {
  font-family: "Contax Sans", Helvetica, Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fedacb;
  margin: 0;
  line-height: 1.4;
  transition: all 300ms ease;
}
.faq-list-full-block .faq-item__answer {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.faq-list-full-block .faq-item__answer p {
  font-family: "Pontano Sans", sans-serif;
  font-size: 14px;
  color: #EBA689;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: calc(1024px + 1px)) {
  .faq-list-full-block .faq-grid:hover .faq-item:not(:hover):not(.active) {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .faq-list-full-block {
    padding: 60px 0;
  }
  .faq-list-full-block .faq-list-full__heading {
    margin-bottom: 40px;
  }
  .faq-list-full-block .faq-item__inner {
    min-height: 180px;
    padding: 25px;
  }
  .faq-list-full-block .faq-item__question h4 {
    font-size: 16px;
  }
  .faq-list-full-block .faq-item__answer p {
    font-size: 13px;
  }
}

@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans55Reg-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans55Reg-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans65Med-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans65Med-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
.blog-list-full-block {
  padding: 80px 0;
}
.blog-list-full-block .blog-list-full__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .blog-list-full-block .blog-list-full__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.blog-list-full-block .blog-list-full__empty {
  text-align: center;
  color: #fedacb;
  opacity: 0.6;
  padding: 60px 20px;
  font-family: "Pontano Sans", sans-serif;
}
.blog-list-full-block .blog-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.blog-list-full-block .blog-card:hover {
  transform: translateY(-4px);
}
.blog-list-full-block .blog-card:hover .blog-card__background {
  transform: scale(1.05);
}
.blog-list-full-block .blog-card:hover .custom-link {
  opacity: 1;
}
.blog-list-full-block .blog-card--featured {
  grid-column: 1/-1;
  min-height: 550px;
}
@media (max-width: 768px) {
  .blog-list-full-block .blog-card--featured {
    min-height: 450px;
  }
}
.blog-list-full-block .blog-card__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog-list-full-block .blog-card__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
  z-index: 1;
}
.blog-list-full-block .blog-card__background--placeholder {
  background: linear-gradient(135deg, #050A2D 0%, #712403 100%);
}
.blog-list-full-block .blog-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.blog-list-full-block .blog-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  flex: 1;
  gap: 15px;
}
.blog-list-full-block .blog-card__date {
  margin: 0;
  font-size: 12px;
}
.blog-list-full-block .blog-card__title {
  margin: 0;
}
.blog-list-full-block .blog-card__excerpt {
  font-family: "Pontano Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #fedacb;
  margin: 0;
  max-width: 500px;
}
.blog-list-full-block .blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (max-width: 768px) {
  .blog-list-full-block {
    padding: 60px 0;
  }
  .blog-list-full-block .blog-card {
    min-height: 350px;
  }
  .blog-list-full-block .blog-card__content {
    padding: 30px 20px;
    gap: 10px;
  }
  .blog-list-full-block .blog-card__title {
    font-size: 24px;
  }
  .blog-list-full-block .blog-card__excerpt {
    font-size: 13px;
  }
}

.image-slideshow-block {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.image-slideshow-block .swiper {
  width: 100%;
  height: 100%;
}
.image-slideshow-block .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.image-slideshow-block .swiper-slide .slide-image-container {
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
@media (max-width: 900px) {
  .image-slideshow-block .swiper-slide .slide-image-container {
    height: 50vh;
  }
}
.image-slideshow-block .swiper-slide .slide-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-slideshow-block .swiper-slide .slide-caption {
  margin-top: 20px;
  text-align: center;
  display: block;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.image-slideshow-block .swiper-button-next,
.image-slideshow-block .swiper-button-prev {
  color: #fedacb;
  transition: opacity 0.3s ease;
}
.image-slideshow-block .swiper-button-next:hover,
.image-slideshow-block .swiper-button-prev:hover {
  opacity: 0.7;
}
.image-slideshow-block .swiper-button-next::after,
.image-slideshow-block .swiper-button-prev::after {
  font-size: 2rem;
}
.image-slideshow-block .swiper-pagination {
  position: relative;
  bottom: 0px !important;
}
.image-slideshow-block .swiper-pagination-bullet {
  background: #fedacb;
  opacity: 0.5;
}
.image-slideshow-block .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.video-slideshow-block {
  padding: 80px 0;
  position: relative;
  overflow-x: clip;
}
.video-slideshow-block .vs-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}
.video-slideshow-block .video-slideshow-swiper {
  overflow: visible;
}
.video-slideshow-block .video-slideshow-swiper .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  box-sizing: content-box;
  align-items: center;
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide {
  cursor: pointer;
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
  text-decoration: none;
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide .slide-inner {
  position: relative;
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide .slide-image-wrapper {
  position: relative;
  aspect-ratio: 9/10;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide .slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide .slide-image-wrapper .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide .slide-image-wrapper .play-overlay .play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fedacb;
  transition: transform 0.3s ease, background 0.3s ease;
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide .slide-image-wrapper .play-overlay .play-button svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide:hover .slide-image-wrapper img {
  transform: scale(1.05);
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide:hover .slide-image-wrapper .play-overlay {
  background: rgba(0, 0, 0, 0.4);
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide:hover .slide-image-wrapper .play-overlay .play-button {
  transform: scale(1.1);
  background: #C37554;
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide .slide-content {
  text-align: left;
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide .slide-content .caps-heading.sm {
  margin-bottom: 10px;
  opacity: 0.8;
}
.video-slideshow-block .video-slideshow-swiper .swiper-slide .slide-content .tertiary-heading {
  margin: 0;
}
.video-slideshow-block .video-slideshow-swiper .swiper-pagination-bullet {
  background: #fedacb;
  opacity: 0.3;
}
.video-slideshow-block .video-slideshow-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #C37554;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.video-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.video-modal.active .video-modal-container, .video-modal.active .video-modal-content {
  opacity: 1;
  visibility: visible;
}
.video-modal .video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}
.video-modal .video-modal-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0.1s, visibility 0.3s ease 0.1s;
}
.video-modal .video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #fedacb;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
  font-size: 30px;
  line-height: 1;
}
.video-modal .video-modal-close:hover {
  transform: rotate(90deg);
  color: #C37554;
}
.video-modal .video-modal-content {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0.1s, visibility 0.3s ease 0.1s;
}
.video-modal .video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans55Reg-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans55Reg-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Contax Sans";
  src: url("../../fonts/ContaxSans65Med-webfont.woff2") format("woff2"), url("../../fonts/ContaxSans65Med-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
.contact-page-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .contact-page-section {
    flex-direction: column;
    min-height: auto;
  }
}
.contact-page-section .cps-map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #180c08;
}
.contact-page-section .cps-map-container::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, #150A07 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 900px) {
  .contact-page-section .cps-map-container {
    position: relative;
    width: 100%;
    height: 600px;
  }
  .contact-page-section .cps-map-container::before {
    display: none;
  }
}
.contact-page-section .cps-content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  pointer-events: none;
}
@media (max-width: 900px) {
  .contact-page-section .cps-content-wrapper {
    padding: 40px 20px;
    order: -1;
  }
}
.contact-page-section .cps-link-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-decoration: none;
}
@media (max-width: 900px) {
  .contact-page-section .cps-link-bar {
    position: relative;
    bottom: auto;
  }
}
.contact-page-section .cps-content-box {
  width: 40%;
  min-width: 400px;
  background-color: #240800;
  background-size: 180%;
  background-repeat: no-repeat;
  background-position: center;
  color: #fedacb;
  padding: 60px;
  position: relative;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .contact-page-section .cps-content-box {
    width: 100%;
    min-width: 0;
    padding: 40px;
  }
}
.contact-page-section .cps-content-box .cps-content-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 50px;
}
.contact-page-section .cps-content-box .contact-logo {
  width: 130px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 30px;
}
.contact-page-section .cps-content-box .cps-description {
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}
.contact-page-section .cps-content-box .cps-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.contact-page-section .cps-content-box .cps-details * {
  text-align: left;
}
.contact-page-section .cps-content-box .cps-details .cps-detail-item .caps-heading {
  font-size: 0.8rem;
  margin-bottom: 10px;
  opacity: 0.7;
  color: #C37554;
}
.contact-page-section .cps-content-box .cps-details .cps-detail-item .detail-text {
  font-family: "Pontano Sans", Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #fedacb;
  text-decoration: none;
  line-height: 1.4;
}
.contact-page-section .cps-content-box .cps-details .cps-detail-item a {
  transition: all 0.3s ease;
}
.contact-page-section .cps-content-box .cps-details .cps-detail-item a:hover {
  color: #C37554;
}
.contact-page-section .cps-content-box .cps-details .cps-detail-item .cps-socials {
  display: flex;
  gap: 15px;
}
.contact-page-section .cps-content-box .cps-details .cps-detail-item .cps-socials .social-icon {
  width: 24px;
  height: 24px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.contact-page-section .cps-content-box .cps-details .cps-detail-item .cps-socials .social-icon:hover {
  opacity: 0.7;
}
.contact-page-section .cps-content-box .cps-details .cps-detail-item .cps-socials .social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===================================================
   Dropdowns and Image Block
   =================================================== */
.dropdowns-and-image {
  padding: 6rem 0;
  position: relative;
}

/* Header Section */
.dropdowns-and-image__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .dropdowns-and-image__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.dropdowns-and-image__content {
  flex: 0 0 48%;
  max-width: 48%;
}
@media (max-width: 1024px) {
  .dropdowns-and-image__content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Left Column: Content & Dropdowns */
.dropdowns-and-image__header-left {
  flex: 1;
  max-width: 600px;
}

.dropdowns-and-image__subheading {
  margin-bottom: 1rem;
}

.dropdowns-and-image__heading {
  margin-bottom: 1.5rem;
}

.dropdowns-and-image__description {
  line-height: 1.6;
  margin-bottom: 0px;
}

.dropdowns-and-image__header-right {
  flex-shrink: 0;
}

/* Right Column: Image */
.dropdowns-and-image__image-wrapper {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: auto;
}
@media (max-width: 1024px) {
  .dropdowns-and-image__image-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .dropdowns-and-image__image-wrapper {
    height: 300px;
  }
}

.dropdowns-and-image__inner .columns {
  justify-content: space-between;
}

.dropdowns-and-image__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.dropdowns-and-image__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
@media (max-width: 1024px) {
  .dropdowns-and-image__image-placeholder {
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .dropdowns-and-image__image-placeholder {
    min-height: 300px;
  }
}

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

/**
 * Text Area Block Styles
 */
.text-area-block {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .text-area-block {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.text-area__container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.text-area__icon img {
  width: auto;
  height: auto;
  display: block;
}

.text-area__text p {
  margin-bottom: 1em;
}
.text-area__text p:last-child {
  margin-bottom: 0;
}
.text-area__text h1, .text-area__text h2, .text-area__text h3, .text-area__text h4, .text-area__text h5, .text-area__text h6 {
  margin-bottom: 0.5em;
}
.text-area__text ul, .text-area__text ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

.text-area__button {
  margin-top: 10px;
}

.text-area-block--center .text-area__container {
  align-items: center;
  text-align: center;
}

.text-area-block--left .text-area__container {
  align-items: flex-start;
  text-align: left;
}

.text-area-block--cold .text-area__text {
  color: #BFD5F8;
}

.text-area-block--warm .text-area__text {
  color: #EBA689;
}

.mariana-tek-embed {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}
.mariana-tek-embed__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media only screen and (max-width: 1024px) {
  .mariana-tek-embed__wrapper {
    padding: 0;
  }
}

.mariana-tek-embed__header {
  width: 100%;
  padding: 40px 5%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.mariana-tek-embed__header h2 {
  width: 55vw;
  max-width: 800px;
  min-width: 500px;
  margin: 0;
  padding-right: 5%;
}
@media only screen and (max-width: 800px) {
  .mariana-tek-embed__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .mariana-tek-embed__header h2 {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    margin-bottom: 40px;
    padding-right: 0;
  }
}

.mariana-tek-embed--cold {
  background: linear-gradient(194deg, #01051C 20.1%, #0E1A3C 80.01%);
}
.mariana-tek-embed--cold .mariana-tek-embed__header {
  background: #050A2D;
  color: #82AAF7;
}

.mariana-tek-embed--warm {
  background: linear-gradient(194deg, #240800 20.1%, #712403 80.01%);
}
.mariana-tek-embed--warm .mariana-tek-embed__header {
  background: #240800;
  color: #C37554;
}

.mariana-tek-embed--blank {
  background: none;
  background-color: transparent;
}
.mariana-tek-embed--blank .mariana-tek-embed__header {
  background: none;
  background-color: transparent;
}

.mariana-tek-embed:has(.mariana-tek-embed__header) {
  padding-top: 0;
}
.mariana-tek-embed:has(.mariana-tek-embed__header) .mariana-tek-embed__wrapper {
  padding-top: 2rem;
}

.mariana-tek-embed__wrapper {
  background: white;
}

/**
 * Find Kolm Block Styles
 */
.find-kolm {
  padding: 80px 0;
  background-color: var(--color-dark);
  color: var(--color-light);
  position: relative;
}
@media (max-width: 768px) {
  .find-kolm {
    padding: 60px 0;
  }
}

.find-kolm-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1024px) {
  .find-kolm-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .find-kolm-header {
    margin-bottom: 40px;
  }
}

.find-kolm-heading-image {
  max-width: 350px;
  min-width: 160px;
}

.text-col {
  width: 40%;
  padding-right: 10%;
}
@media only screen and (max-width: 1024px) {
  .text-col {
    width: 100%;
    padding-right: 0;
  }
}
.text-col p {
  margin-bottom: 0;
}

.find-kolm-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  width: 60%;
}
.find-kolm-contact-grid .contact-item {
  flex: 1 1 20%;
}
.find-kolm-contact-grid .contact-item:first-child {
  flex: 2 1 40%;
}
@media only screen and (max-width: 1024px) {
  .find-kolm-contact-grid {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .find-kolm-contact-grid .contact-item {
    flex: 1 1 100%;
  }
}

.contact-item .caps-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #C37554;
}
.contact-item p {
  margin: 0;
  line-height: 1.6;
}
.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-item a:hover {
  color: #C37554;
}

@media (max-width: 968px) {
  .find-kolm-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.find-kolm-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.find-kolm-media video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.find-kolm-map {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .find-kolm-map {
    height: 450px;
  }
}

/**
 * Science Blocks Styles
 */
.science-blocks {
  position: relative;
}

.science-blocks__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  min-height: 700px;
  gap: 15px;
  padding: 15px;
}
@media (max-width: 968px) {
  .science-blocks__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.science-blocks__block {
  position: relative;
  padding: 80px 15px 15px 15px;
  display: flex;
  flex-direction: column;
  min-height: 700px;
}
@media (max-width: 968px) {
  .science-blocks__block {
    padding: 60px 40px;
    min-height: 600px;
  }
}
@media (max-width: 768px) {
  .science-blocks__block {
    padding: 50px 30px;
    min-height: 500px;
  }
}
.science-blocks__block--warm {
  background: #712403;
}
.science-blocks__block--cold {
  background: #050A2D;
}

.science-blocks__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.02;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: luminosity;
}

.science-blocks__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(195, 117, 84, 0);
  border-radius: 1px;
}
.science-blocks__overlay--warm {
  background: rgba(21, 10, 7, 0.75);
}
.science-blocks__overlay--cold {
  background: rgba(5, 10, 45, 0.75);
  border-color: #223466;
}

.science-blocks__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.science-blocks__content p {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.science-blocks__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .science-blocks__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
  }
}
.science-blocks__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.science-blocks__heading {
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -0.72px;
}
@media (max-width: 768px) {
  .science-blocks__heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.science-blocks__heading--warm {
  color: #C37554;
}
.science-blocks__heading--cold {
  color: #BFD5F8;
}

.science-block-desc {
  margin-bottom: 20px;
}

.science-blocks__description {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .science-blocks__description {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 30px;
  }
}
.science-blocks__description--warm {
  color: #C37554;
}
.science-blocks__description--cold {
  color: #BFD5F8;
}
.science-blocks__description p {
  margin-bottom: 1em;
}
.science-blocks__description p:last-child {
  margin-bottom: 0;
}
.science-blocks__description a {
  text-decoration: underline;
  color: inherit;
  transition: opacity 0.3s ease;
}
.science-blocks__description a:hover {
  opacity: 0.7;
}

.science-blocks__block .dropdowns {
  margin-top: 0;
}
.science-blocks__block .accordion {
  backdrop-filter: blur(5.85px);
}
.science-blocks__block .accordion .accordion-content-inner p {
  margin-left: 0;
  margin-top: 15px;
}
.science-blocks__block .accordion .accordion-content {
  text-align: left;
}
.science-blocks__block .accordion .accordion-content p {
  text-align: left;
}
.science-blocks__block--warm .accordion .accordion-header .caps-heading {
  color: #C37554;
}
.science-blocks__block--warm .accordion .accordion-content {
  color: #C37554;
}
.science-blocks__block--cold .accordion .accordion-header .caps-heading {
  color: #BFD5F8;
}
.science-blocks__block--cold .accordion .accordion-content {
  color: #BFD5F8;
}

.tabbed-columns {
  position: relative;
  padding: 6rem 0;
  background: #150A07;
}
.tabbed-columns__tabs-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(254, 218, 203, 0.1);
  padding-bottom: 1rem;
}
@media screen and (max-width: 900px) {
  .tabbed-columns__tabs-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.tabbed-columns__tab-button {
  background: none;
  border: none;
  color: #fedacb;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1rem 2rem;
  cursor: pointer;
  position: relative;
  transition: all 300ms ease;
  opacity: 0.5;
}
.tabbed-columns__tab-button::after {
  content: "";
  position: absolute;
  bottom: -1.1rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 300ms ease;
}
.tabbed-columns__tab-button:hover {
  opacity: 0.8;
}
.tabbed-columns__tab-button.active {
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .tabbed-columns__tab-button {
    padding: 0.75rem 1rem;
    font-size: 14px;
  }
}
.tabbed-columns--warm .tabbed-columns__tab-button.active::after {
  background: linear-gradient(90deg, #EBA689 0%, #712403 50%, #240800 100%);
}
.tabbed-columns--cold .tabbed-columns__tab-button.active::after {
  background: linear-gradient(90deg, #BFD5F8 0%, #223466 50%, #050A2D 100%);
}
.tabbed-columns__content {
  position: relative;
}
.tabbed-columns__tab-pane {
  display: none;
}
.tabbed-columns__tab-pane.active {
  display: block;
}
.tabbed-columns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .tabbed-columns__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .tabbed-columns__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.tabbed-columns__column {
  text-align: center;
}
.tabbed-columns__image {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 4px;
}
.tabbed-columns__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.tabbed-columns__image:hover img {
  transform: scale(1.05);
}
.tabbed-columns__title {
  color: #fedacb;
  margin-bottom: 1rem;
}
.tabbed-columns__description {
  color: #fedacb;
  opacity: 0.8;
  line-height: 1.6;
}
.tabbed-columns__button {
  display: block;
  width: 100%;
  margin-top: 4rem;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Pontano Sans", Helvetica, sans-serif;
  color: #fedacb;
  position: relative;
  overflow: hidden;
  transition: all 400ms ease;
}
.tabbed-columns__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 1;
  transition: opacity 400ms ease;
}
.tabbed-columns__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.tabbed-columns__button:hover::before {
  opacity: 0.9;
}
.tabbed-columns__button.warm::before {
  background: linear-gradient(135deg, #EBA689 0%, #712403 50%, #240800 100%);
}
.tabbed-columns__button.cold::before {
  background: linear-gradient(135deg, #BFD5F8 0%, #223466 50%, #050A2D 100%);
}
@media screen and (max-width: 900px) {
  .tabbed-columns__button {
    padding: 1.5rem;
    font-size: 16px;
  }
}

.careers-listings {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 768px) {
  .careers-listings {
    padding: 80px 0;
  }
}
.careers-listings.has-clipped-glow {
  overflow: hidden;
}
.careers-listings__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .careers-listings__header {
    margin-bottom: 40px;
  }
}
.careers-listings__description {
  margin: 0;
  opacity: 0.8;
  line-height: 1.6;
}
.careers-listings__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.careers-listings__item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(237, 213, 206, 0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .careers-listings__item {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
  }
}
.careers-listings__item:last-of-type {
  border: none;
}
.careers-listings__item:hover {
  opacity: 0.7;
}
.careers-listings__item-header .secondary-heading {
  margin-bottom: 15px;
}
.careers-listings__item-content {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.careers-listings__item-description {
  margin: 0;
  color: #fedacb;
  opacity: 0.8;
  line-height: 1.6;
  max-width: 500px;
}
.careers-listings__meta {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .careers-listings__meta {
    gap: 30px;
  }
}
.careers-listings__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.careers-listings__meta-label {
  font-size: 10.652px;
  letter-spacing: 0.85px;
  margin: 0;
}
.careers-listings__meta-value {
  color: #fedacb;
  font-size: 15px;
  line-height: 22px;
}
.careers-listings__bottom {
  margin-top: 0px;
  padding-top: 40px;
  border-top: 1px solid rgba(237, 213, 206, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .careers-listings__bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
    padding-top: 30px;
  }
}
.careers-listings__bottom-text {
  margin: 0;
  opacity: 0.5;
  line-height: 1.6;
  max-width: 630px;
  flex: 1;
}
.careers-listings__bottom-link {
  flex-shrink: 0;
}
.careers-listings__empty {
  text-align: center;
  opacity: 0.5;
  padding: 60px 20px;
}

/**
 * Kolm Perks Block Styles
 */
.kolm-perks {
  position: relative;
}
.kolm-perks__image {
  position: relative;
  height: auto;
  min-height: 600px;
}
.kolm-perks__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .kolm-perks__image {
    min-height: 400px;
  }
}
.kolm-perks__perks-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.kolm-perks__perks {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.kolm-perks__perk {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 400ms ease;
}
.kolm-perks__perk:hover {
  background-color: rgba(255, 255, 255, 0.03);
}
.kolm-perks__perk.is-expanded {
  width: 100%;
}
.kolm-perks__perk--header {
  padding: 2rem;
}
.kolm-perks__perk--header:hover {
  background: transparent;
}
@media screen and (max-width: 900px) {
  .kolm-perks__perk {
    width: 50%;
  }
}
.kolm-perks__header-image {
  height: auto;
  width: auto;
  max-width: 120px;
  min-width: 99px;
}
.kolm-perks__perk-icon {
  margin-bottom: 1.25rem;
}
.kolm-perks__perk-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(64%) sepia(45%) saturate(678%) hue-rotate(189deg) brightness(101%) contrast(93%);
}
.kolm-perks__perk-title {
  color: #82AAF7;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  max-width: 180px;
}

@media screen and (max-width: 1024px) {
  .kolm-perks .columns.half-cols {
    flex-direction: column;
  }
  .kolm-perks .columns.half-cols .col {
    width: 100% !important;
  }
}
/**
 * Instagram Feed Styles
 */
.instagram-feed-slider {
  padding: 80px 0;
  position: relative;
  background: #150A07;
}
@media (max-width: 768px) {
  .instagram-feed-slider {
    padding: 60px 0;
  }
}

.instagram-feed-slider__header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .instagram-feed-slider__header {
    margin-bottom: 40px;
  }
}

.instagram-feed-slider__subheading {
  margin-bottom: 20px;
  color: #C37554;
}

.instagram-feed-slider__heading {
  color: #fedacb;
  margin-bottom: 0;
}

.instagram-feed-slider__error {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.instagram-feed-slider__error p {
  color: #fedacb;
  opacity: 0.7;
  margin: 0;
}

.instagram-feed-slider__embed iframe {
  max-width: 100%;
  border: none;
}

body {
  background: #140A06;
  color: #fedacb;
  overflow-x: hidden;
}

#top-bar {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #712403, #223466);
  transition: all 4s ease;
  background-size: 200% 200%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  animation: gradient-swap 4s ease infinite;
}
@keyframes gradient-swap {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/*captcha*/
.grecaptcha-badge, .rc-anchor, .rc-anchor-invisible {
  display: none !important;
}

.bg-texture {
  background-image: url("/wp-content/themes/Kolm/img/kolm-texture.png");
  background-size: 200px;
  background-repeat: repeat;
  z-index: -1;
  width: 100%;
  height: 100vh;
  position: fixed;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  top: 0;
  left: 0;
  opacity: 0.35;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

ul {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}

.page {
  margin: 0;
}

.container {
  width: 100%;
  max-width: calc(1800px + 3%);
  padding: 0 3%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 2%;
  }
}

.container-sm, .container.sm {
  max-width: calc(1200px + 5rem);
  padding: 0 5rem;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .container-sm, .container.sm {
    padding: 0 3%;
  }
}

.section-spacing {
  padding: 7rem 0;
}
@media screen and (max-width: 1024px) {
  .section-spacing {
    padding: 4rem 0;
  }
}

.rounded {
  border-radius: 15px;
}

.fade {
  opacity: 0;
}

.relative {
  position: relative;
}

.center {
  text-align: center;
}

.center * {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: black;
  opacity: 0.5;
}

.columns {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.columns.no-gap {
  gap: 0;
}

.columns .col.image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.columns .col.text {
  padding: 5rem;
}

.columns.half-cols.stretch {
  align-items: stretch;
}

.columns-half-cols.stretch .col.image {
  height: auto;
}

.columns.half-cols .col {
  width: calc(50% - 1rem);
}

.columns.half-cols.reverse {
  flex-direction: row-reverse;
}

.columns.third-cols .col {
  width: calc(33.33% - 1rem);
}

.columns.third-cols .col.is-expanded {
  width: 100% !important;
}

.columns.quarter-cols .col {
  width: calc(25% - 1rem);
}

.columns.no-gap.half-cols .col {
  width: 50%;
}

@media only screen and (max-width: 1024px) {
  .columns.half-cols {
    flex-direction: column;
  }
  .columns.half-cols .col,
  .columns.third-cols .col,
  .columns.quarter-cols .col {
    width: 100% !important;
  }
}
.entry-content {
  margin-top: 0;
}

.example-secure-field {
  background-color: #f0f0f0;
  padding: 20px;
  border: 1px solid #ccc;
}
.example-secure-field__text {
  color: #333;
  font-weight: bold;
}

.homepage-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media only screen and (max-width: 900px) {
  .homepage-hero {
    height: 90vh;
    max-height: 900px;
    padding-bottom: 50px;
  }
}
.homepage-hero__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.homepage-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.homepage-hero__content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5% 5% 10% 5%;
  max-width: 1100px;
}
.homepage-hero__content-wrapper h1 {
  max-width: 44vw;
}
@media only screen and (max-width: 900px) {
  .homepage-hero__content-wrapper h1 {
    max-width: 100%;
  }
}
.homepage-hero__content {
  color: #fedacb;
}
.homepage-hero__buttons {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 900px) {
  .homepage-hero__buttons {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 600px) {
  .homepage-hero__buttons {
    flex-direction: column;
  }
  .homepage-hero__buttons .btn {
    width: auto;
    display: inline-block;
  }
}
.homepage-hero__featured {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  z-index: 3;
  overflow: hidden;
}
.homepage-hero__featured:before {
  content: "";
  display: inline-block;
  width: 25%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to right, black, transparent);
  z-index: 2;
  pointer-events: none;
}
.homepage-hero__featured:after {
  content: "";
  display: inline-block;
  width: 25%;
  height: 100%;
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(to left, black, transparent);
  z-index: 2;
}
.homepage-hero__featured-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.homepage-hero__featured-track {
  display: flex;
  gap: 10%;
  align-items: center;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
  position: relative;
  top: 3px;
}
.homepage-hero__featured-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.homepage-hero__featured-item:hover {
  opacity: 1;
}
.homepage-hero__featured-item img {
  height: 30px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%) brightness(2);
  transition: filter 0.3s ease;
}
.homepage-hero__featured-item a:hover img {
  filter: grayscale(0%) brightness(1);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 6px 17px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.badge .caps-heading {
  margin: 0;
  font-size: 11px;
}

.badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.text-with-columns {
  color: #fedacb;
  position: relative;
}
.text-with-columns__header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 1rem;
  justify-content: space-between;
}
.text-with-columns__header--left {
  align-items: flex-end;
  text-align: left;
}
@media only screen and (max-width: 900px) {
  .text-with-columns__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.text-with-columns__header--center {
  align-items: center;
  text-align: center;
}
.text-with-columns__header--center .text-with-columns__header-content {
  margin-left: auto;
  margin-right: auto;
}
.text-with-columns__header--right {
  align-items: flex-end;
  text-align: right;
}
.text-with-columns__header--right .text-with-columns__header-content {
  margin-left: auto;
}
.text-with-columns__header-content {
  max-width: 700px;
}
.text-with-columns__header-content--narrow {
  max-width: 500px;
}
.text-with-columns__header-content--wide {
  max-width: 1000px;
}
.text-with-columns__header-content--full {
  max-width: 100%;
}
.text-with-columns__subheading {
  color: #C37554;
  margin-bottom: 1rem;
}
.text-with-columns__header-description {
  margin-top: 1rem;
}
.text-with-columns__header-description p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.85;
}
.text-with-columns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.text-with-columns__grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.text-with-columns__grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.text-with-columns__grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.text-with-columns__grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1024px) {
  .text-with-columns__grid.cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .text-with-columns__grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .text-with-columns__grid {
    grid-template-columns: 1fr !important;
  }
}
.text-with-columns--no-gap .text-with-columns__grid {
  gap: 0;
}
.text-with-columns--small-gap .text-with-columns__grid {
  gap: 1rem;
}
.text-with-columns--large-gap .text-with-columns__grid {
  gap: 2rem;
}
.text-with-columns__col {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.65s ease;
}
.text-with-columns__grid:hover .text-with-columns__col:not(:hover) {
  opacity: 0.2;
}
.text-with-columns__image-wrapper {
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  position: relative;
  height: 0;
  padding-top: 130%;
}
.text-with-columns__image-wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.text-with-columns__image-wrapper:hover {
  opacity: 1;
}
.text-with-columns__image {
  width: 100%;
  height: 100%;
}
.text-with-columns__col-content {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5%;
}
.text-with-columns__col-content * {
  text-align: center;
}
.text-with-columns__col-title {
  margin-bottom: 1rem;
  /*.text-with-columns__col:nth-child(1) & { color: #EBA689; }
  .text-with-columns__col:nth-child(2) & { color: #BFD5F8; }
  .text-with-columns__col:nth-child(3) & { color: $light; }
  .text-with-columns__col:nth-child(4) & { color: #EBA689; }
  .text-with-columns__col:nth-child(5) & { color: #BFD5F8; }*/
}
.text-with-columns__col-desc {
  max-width: 350px;
  margin: 0 auto;
}
@media only screen and (max-width: 900px) {
  .text-with-columns .text-with-columns__grid .text-with-columns__col {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 8px 0;
  }
  .text-with-columns .text-with-columns__grid .text-with-columns__col .text-with-columns__image-wrapper {
    width: 40%;
    padding-top: 50%;
  }
  .text-with-columns .text-with-columns__grid .text-with-columns__col .text-with-columns__col-content {
    position: relative;
    width: 60%;
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
.text-with-columns--text-below .text-with-columns__col-content {
  position: static;
  inset: auto;
  padding: 1.5rem 0 0 0;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  height: auto;
}
.text-with-columns--text-below .text-with-columns__col-content * {
  text-align: left;
}
.text-with-columns--text-below .text-with-columns__image-wrapper {
  opacity: 1;
  margin-bottom: 0;
  height: 0;
  padding-top: 130%;
}
.text-with-columns--text-below .text-with-columns__image-wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.text-with-columns--text-below .text-with-columns__col-desc {
  margin: 0;
  max-width: 100%;
}
.text-with-columns--text-top-left .text-with-columns__col-content {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem;
}
.text-with-columns--text-top-left .text-with-columns__col-content * {
  text-align: left;
}
.text-with-columns--text-top-left .text-with-columns__col-desc {
  margin: 0;
}
.text-with-columns__bottom-link-wrapper {
  margin-top: 2rem;
}
.text-with-columns--no-gap .text-with-columns__bottom-link-wrapper {
  margin-top: 0;
}
.text-with-columns--small-gap .text-with-columns__bottom-link-wrapper {
  margin-top: 1rem;
}
.text-with-columns__bottom-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.text-with-columns__bottom-link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.text-with-columns__bottom-link:hover::before {
  opacity: 0.1;
}
.text-with-columns--warm .text-with-columns__bottom-link {
  background: linear-gradient(63deg, #0f0300 4.56%, #270c01 89.24%);
  color: #C37554;
  transition: all 400ms ease;
}
.text-with-columns--warm .text-with-columns__bottom-link:hover {
  opacity: 0.8;
  color: #EBA689;
}
.text-with-columns--warm .text-with-columns__bottom-link::before {
  background: #240800;
}
.text-with-columns--cold .text-with-columns__bottom-link {
  background: linear-gradient(63deg, #050A2D 4.56%, #223466 89.24%);
  color: #82AAF7;
}
.text-with-columns--cold .text-with-columns__bottom-link::before {
  background: #050A2D;
}

.wp-block {
  max-width: 100%;
}

.light-bar-banner {
  position: relative;
  padding: 8rem 0;
  background: #150A07;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  overflow: visible;
}
.light-bar-banner__light-container {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.light-bar-banner__light-wrapper {
  position: absolute;
  top: 73px;
  display: flex;
  width: 100%;
  flex: 1;
  align-items: flex-start;
  justify-content: center;
  isolation: isolate;
  height: 100vh;
}
.light-bar-banner__cone-left {
  position: absolute;
  right: 50%;
  height: 100vh;
  width: 70%;
  opacity: 1;
  top: 0;
}
.light-bar-banner__cone-left::before, .light-bar-banner__cone-left::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 2s ease-in-out;
}
.light-bar-banner__cone-left::before {
  opacity: 1;
}
.light-bar-banner__cone-left::after {
  opacity: 0;
}
.light-bar-banner__cone-right {
  position: absolute;
  left: 50%;
  height: 100vh;
  width: 70%;
  opacity: 1;
  top: 0;
}
.light-bar-banner__cone-right::before, .light-bar-banner__cone-right::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 2s ease-in-out;
}
.light-bar-banner__cone-right::before {
  opacity: 1;
}
.light-bar-banner__cone-right::after {
  opacity: 0;
}
.light-bar-banner__mask-top {
  position: absolute;
  width: 100%;
  height: 100vh;
  bottom: 0;
  background: #150A07;
  z-index: 20;
  mask-image: linear-gradient(to top, white, transparent);
  -webkit-mask-image: linear-gradient(to top, white, transparent);
}
.light-bar-banner__mask-left {
  position: absolute;
  width: 10rem;
  height: 100%;
  left: 0;
  bottom: 0;
  background: #150A07;
  z-index: 20;
  mask-image: linear-gradient(to right, white, transparent);
  -webkit-mask-image: linear-gradient(to right, white, transparent);
}
.light-bar-banner__mask-right {
  position: absolute;
  width: 10rem;
  height: 100%;
  right: 0;
  bottom: 0;
  background: #150A07;
  z-index: 20;
  mask-image: linear-gradient(to left, white, transparent);
  -webkit-mask-image: linear-gradient(to left, white, transparent);
}
.light-bar-banner__blur-base {
  position: absolute;
  top: 50%;
  height: 12rem;
  width: 100%;
  transform: translateY(3rem) scaleX(1.5);
  background: #150A07;
  filter: blur(2.5rem);
  display: none;
}
.light-bar-banner__backdrop-layer {
  position: absolute;
  top: 50%;
  z-index: 50;
  height: 12rem;
  width: 100%;
  background: transparent;
  opacity: 0.1;
  backdrop-filter: blur(0.375rem);
  -webkit-backdrop-filter: blur(0.375rem);
  display: none;
}
.light-bar-banner__glow-large {
  position: absolute;
  z-index: 50;
  height: 9rem;
  width: 66%;
  transform: translateY(-50%);
  border-radius: 9999px;
  opacity: 0.5;
  filter: blur(3rem);
  transition: background 2s ease-in-out;
}
.light-bar-banner__glow-medium {
  position: absolute;
  z-index: 30;
  height: 9rem;
  width: 66%;
  transform: translateY(-6rem);
  border-radius: 9999px;
  filter: blur(2rem);
  transition: background 2s ease-in-out;
}
.light-bar-banner__light-beam {
  position: absolute;
  z-index: 50;
  height: 0.125rem;
  width: 70%;
  transform: translateY(-7rem);
  transition: background 2s ease-in-out;
}
.light-bar-banner__top-mask {
  position: absolute;
  z-index: 40;
  height: 11rem;
  width: 100%;
  transform: translateY(-12.5rem);
  background: #150A07;
  display: none;
}
.light-bar-banner--warm .light-bar-banner__cone-left::before {
  background: conic-gradient(from 70deg at center top, #712403, transparent, transparent);
}
.light-bar-banner--warm .light-bar-banner__cone-right::before {
  background: conic-gradient(from 290deg at center top, transparent, transparent, #712403);
}
.light-bar-banner--warm .light-bar-banner__glow-large {
  background: #712403;
}
.light-bar-banner--warm .light-bar-banner__glow-medium {
  background: #C37554;
}
.light-bar-banner--warm .light-bar-banner__light-beam {
  background: #C37554;
}
.light-bar-banner--cold .light-bar-banner__cone-left::before {
  background: conic-gradient(from 70deg at center top, #223466, transparent, transparent);
}
.light-bar-banner--cold .light-bar-banner__cone-right::before {
  background: conic-gradient(from 290deg at center top, transparent, transparent, #223466);
}
.light-bar-banner--cold .light-bar-banner__glow-large {
  background: #223466;
}
.light-bar-banner--cold .light-bar-banner__glow-medium {
  background: #82AAF7;
}
.light-bar-banner--cold .light-bar-banner__light-beam {
  background: #82AAF7;
}
.light-bar-banner--animated .light-bar-banner__cone-left::before {
  background: conic-gradient(from 70deg at center top, #712403, transparent, transparent);
  animation: coneOpacityShift 8s ease-in-out infinite;
}
.light-bar-banner--animated .light-bar-banner__cone-left::after {
  background: conic-gradient(from 70deg at center top, #223466, transparent, transparent);
  animation: coneOpacityShiftReverse 8s ease-in-out infinite;
}
.light-bar-banner--animated .light-bar-banner__cone-right::before {
  background: conic-gradient(from 290deg at center top, transparent, transparent, #712403);
  animation: coneOpacityShift 8s ease-in-out infinite;
}
.light-bar-banner--animated .light-bar-banner__cone-right::after {
  background: conic-gradient(from 290deg at center top, transparent, transparent, #223466);
  animation: coneOpacityShiftReverse 8s ease-in-out infinite;
}
.light-bar-banner--animated .light-bar-banner__glow-large {
  animation: glowLargeColorShift 8s ease-in-out infinite;
}
.light-bar-banner--animated .light-bar-banner__glow-medium {
  animation: glowMediumColorShift 8s ease-in-out infinite;
}
.light-bar-banner--animated .light-bar-banner__light-beam {
  animation: beamColorShift 8s ease-in-out infinite;
}
.light-bar-banner__content {
  position: relative;
  z-index: 50;
  text-align: center;
  max-width: 1100px;
}
.light-bar-banner__heading {
  color: #fedacb;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 4rem);
}
.light-bar-banner__description {
  color: #fedacb;
  opacity: 0.85;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.light-bar-banner__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.light-bar-banner__button {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.light-bar-banner__button:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 900px) {
  .light-bar-banner {
    padding: 5rem 0;
    min-height: 50vh;
  }
  .light-bar-banner__light {
    width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 600px) {
  .light-bar-banner {
    padding: 4rem 0;
  }
  .light-bar-banner__light {
    width: 300px;
    height: 300px;
  }
  .light-bar-banner__buttons {
    flex-direction: column;
    align-items: center;
  }
  .light-bar-banner__button {
    width: 100%;
    max-width: 300px;
  }
}

body.wp-admin .light-bar-banner {
  overflow: hidden !important;
}

@keyframes coneOpacityShift {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes coneOpacityShiftReverse {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes glowLargeColorShift {
  0%, 100% {
    background: #712403;
  }
  50% {
    background: #223466;
  }
}
@keyframes glowMediumColorShift {
  0%, 100% {
    background: #C37554;
  }
  50% {
    background: #82AAF7;
  }
}
@keyframes beamColorShift {
  0%, 100% {
    background: #C37554;
  }
  50% {
    background: #82AAF7;
  }
}
.page-banner {
  position: relative;
  min-height: 650px;
  height: 65vh;
  display: flex;
  align-items: center;
  background: #150A07;
  overflow: hidden;
}
.page-banner .page-banner-inner {
  height: 100%;
}
.page-banner__texture {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  mix-blend-mode: color-dodge;
  z-index: 1;
}
.page-banner__gradient {
  position: absolute;
  bottom: -50%;
  right: -50;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(113, 36, 3, 0.4) 0%, transparent 70%);
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}
.page-banner .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.page-banner__content {
  width: 50%;
  padding: 8% 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-banner__content * {
  text-align: center;
}
.page-banner__content p, .page-banner__content h1, .page-banner__content .button, .page-banner__content a, .page-banner__content span {
  z-index: 5;
}
.page-banner__content p {
  max-width: 500px;
  margin: 0 auto;
}
.page-banner__image {
  position: relative;
  height: 100%;
  min-height: 400px;
  width: 50%;
  overflow: hidden;
}
.page-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 1024px) {
  .page-banner {
    height: auto;
    min-height: auto;
  }
  .page-banner__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .page-banner__content {
    max-width: 100%;
    height: 100%;
    padding: 15rem 3% 9rem 3%;
  }
  .page-banner__image {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .page-banner {
    min-height: 500px;
  }
  .page-banner__inner {
    padding: 3rem 5%;
  }
  .page-banner__image {
    min-height: 300px;
  }
  .page-banner__heading {
    font-size: 1.75rem;
  }
}

.full-width-page-banner {
  position: relative;
  height: 85vh;
  max-height: 950px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #150A07;
  overflow: hidden;
  padding: 8rem 0;
}
.full-width-page-banner__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.full-width-page-banner__background-image, .full-width-page-banner__background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.full-width-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: #150A07;
  z-index: 2;
  pointer-events: none;
}
.full-width-page-banner .container {
  position: relative;
  z-index: 3;
}
.full-width-page-banner__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 100px;
}
.full-width-page-banner__subheading {
  margin: 0 !important;
  color: #EBA689 !important;
}
.full-width-page-banner__heading {
  color: #fedacb;
  margin-bottom: 1.5rem;
}
.full-width-page-banner__description {
  color: #EBA689;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.full-width-page-banner__button {
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .full-width-page-banner {
    min-height: 60vh;
    padding: 6rem 0;
  }
}
@media screen and (max-width: 600px) {
  .full-width-page-banner {
    height: 65vh;
    min-height: 500px;
    max-height: 900px;
    padding: 4rem 0;
  }
  .full-width-page-banner__heading {
    font-size: 2rem;
  }
  .full-width-page-banner__content {
    margin-top: 50px;
  }
  .full-width-page-banner__description {
    font-size: 1rem;
  }
}

.all-guides-grid {
  position: relative;
  padding: 6rem 0;
}
.all-guides-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .all-guides-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .all-guides-grid__grid {
    grid-template-columns: 1fr;
  }
}

.guide-item {
  position: relative;
  height: 0px;
  padding-top: 120%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.guide-item__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.guide-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 600ms ease;
}
.guide-item[data-image-alignment=top] .guide-item__image, .guide-item[data-image-alignment=top] .guide-item__hover-video {
  object-position: center top;
}
.guide-item[data-image-alignment=bottom] .guide-item__image, .guide-item[data-image-alignment=bottom] .guide-item__hover-video {
  object-position: center bottom;
}
.guide-item__hover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.guide-item:hover .guide-item__hover-video {
  opacity: 1;
}
.guide-item:has(.guide-item__hover-video):hover .guide-item__image {
  opacity: 0;
}
.guide-item__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, rgba(21, 10, 7, 0) 0%, rgba(9, 9, 9, 0.74) 50%, #150A07 100%);
}
.guide-item__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
  z-index: 2;
  width: 100%;
}
.guide-item__content .guide-item__socials {
  font-size: 0;
  display: none;
}
.guide-item__title {
  color: #fedacb;
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, #EBA689 0%, #C37554 50%, #712403 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.guide-item__bio-short p {
  line-height: 1.5;
  color: #fedacb;
  margin-bottom: 1.25rem;
}
.guide-item__bio-full, .guide-item__instagram, .guide-item__embed {
  display: none;
}
.guide-item__link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.67px;
  color: #C37554;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.guide-item__link .arrow-icon {
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}
.guide-item__link:hover {
  color: #EBA689;
}
.guide-item__link:hover .arrow-icon {
  transform: rotate(-90deg) translateX(3px);
}
.guide-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.guide-item:hover .guide-item__image {
  transform: scale(1.03) !important;
}
.guide-item:hover .custom-link {
  transform: translateX(4px);
}
@media screen and (max-width: 1024px) {
  .guide-item {
    height: 500px;
  }
}
@media screen and (max-width: 600px) {
  .guide-item {
    height: 450px;
  }
}

.guide-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  box-sizing: border-box;
  overflow-y: auto;
}
@media (max-width: 600px) {
  .guide-modal-overlay {
    padding: 60px 0 0 0;
  }
}
.guide-modal-overlay.is-active {
  display: flex;
}

.guide-modal {
  position: relative;
  width: calc(100% - 10px);
  max-width: 1400px;
  height: auto;
  background: linear-gradient(63deg, #0f0300 4.56%, #270c01 89.24%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  margin: auto 5px;
}
@media (max-width: 600px) {
  .guide-modal {
    width: 100vw;
    max-width: 100vw;
    max-height: none;
    margin: auto;
  }
}
.guide-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  aspect-ratio: 1;
  padding: 0;
  background: rgba(254, 218, 203, 0.1);
  border: 1px solid rgba(254, 218, 203, 0.2);
  border-radius: 50%;
  color: #fedacb;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}
.guide-modal__close:hover {
  background: rgba(254, 218, 203, 0.2);
  transform: rotate(90deg);
}
.guide-modal__content {
  width: 100%;
}
.guide-modal__layout {
  display: flex;
  height: auto;
}
@media (max-width: 1024px) {
  .guide-modal__layout {
    flex-direction: column;
    min-height: auto;
  }
}
.guide-modal__image-container {
  width: 50%;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
@media (max-width: 1024px) {
  .guide-modal__image-container {
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 600px) {
  .guide-modal__image-container {
    display: none;
  }
}
.guide-modal__image-container[data-image-alignment=top] .guide-modal__image {
  object-position: center top;
}
.guide-modal__image-container[data-image-alignment=bottom] .guide-modal__image {
  object-position: center bottom;
}
.guide-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}
.guide-modal__info {
  width: 50%;
  padding: 4rem;
  overflow-y: auto;
  max-height: calc(100vh - 4rem);
}
@media (max-width: 1024px) {
  .guide-modal__info {
    width: 100%;
    padding: 3rem 2rem;
    max-height: none;
  }
}
@media (max-width: 600px) {
  .guide-modal__info {
    width: 100%;
    padding: 2rem 1.5rem;
    max-height: calc(100vh - 60px);
  }
}
.guide-modal__title {
  color: #fedacb;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #EBA689 0%, #C37554 50%, #712403 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2rem, 3vw, 3rem);
}
.guide-modal__socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.guide-modal__instagram, .guide-modal__spotify {
  font-size: 16px;
  color: #C37554;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}
.guide-modal__instagram img, .guide-modal__spotify img {
  width: 25px;
}
.guide-modal__instagram:hover, .guide-modal__spotify:hover {
  color: #EBA689;
}
.guide-modal__bio {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(254, 218, 203, 0.9);
  margin-bottom: 2rem;
}
.guide-modal__bio p {
  margin-bottom: 1rem;
}
.guide-modal__view-classes {
  display: inline-block;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.guide-modal__view-classes:hover {
  transform: translateX(5px);
}
.guide-modal__embed {
  display: block;
  margin-top: 2rem;
  width: 100%;
  overflow: hidden;
}
.guide-modal__embed iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  display: block;
}
.guide-modal__embed > * {
  width: 100%;
}

.text-dropdown-image-feature {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow-x: clip;
}
.text-dropdown-image-feature .columns {
  align-items: stretch;
}
.text-dropdown-image-feature .col {
  display: flex;
  flex-direction: column;
}
.text-dropdown-image-feature .bg-texture {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.text-dropdown-image-feature .col.content .caps-heading {
  margin-bottom: 0;
  display: block;
}
.text-dropdown-image-feature .col.content .secondary-heading {
  margin-bottom: 30px;
}
.text-dropdown-image-feature .col.content .tdif-description {
  max-width: 450px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.text-dropdown-image-feature .col.content .custom-link {
  margin-bottom: 20px;
  display: inline-block;
}
.text-dropdown-image-feature .tdif-media {
  position: relative;
  object-fit: cover;
  height: auto;
  max-height: 100%;
}
.text-dropdown-image-feature .tdif-media .tdif-video-container,
.text-dropdown-image-feature .tdif-media .tdif-single-image,
.text-dropdown-image-feature .tdif-media .tdif-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  inset: 0;
  z-index: 5;
}
.text-dropdown-image-feature .tdif-media .tdif-video-container img, .text-dropdown-image-feature .tdif-media .tdif-video-container video,
.text-dropdown-image-feature .tdif-media .tdif-single-image img,
.text-dropdown-image-feature .tdif-media .tdif-single-image video,
.text-dropdown-image-feature .tdif-media .tdif-swiper img,
.text-dropdown-image-feature .tdif-media .tdif-swiper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-dropdown-image-feature .tdif-media .swiper, .text-dropdown-image-feature .tdif-media .swiper-wrapper, .text-dropdown-image-feature .tdif-media .swiper-slide {
  height: 100%;
}
.text-dropdown-image-feature .tdif-media .swiper-slide {
  aspect-ratio: 16/9;
}
.text-dropdown-image-feature .tdif-media .swiper-slide img, .text-dropdown-image-feature .tdif-media .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.text-dropdown-image-feature .tdif-media .swiper-pagination {
  display: none;
}
.text-dropdown-image-feature .tdif-media .bottom-link {
  position: absolute;
  bottom: -40px;
  right: 0;
  z-index: 10;
  text-align: right;
}
.text-dropdown-image-feature.section-cold {
  background: #150A07;
}
.text-dropdown-image-feature.section-warm {
  background: #150A07;
}
.text-dropdown-image-feature .bg-glow {
  z-index: 1 !important;
}
@media screen and (max-width: 900px) {
  .text-dropdown-image-feature.hide-media-mobile .tdif-media {
    display: none;
  }
  .text-dropdown-image-feature.media-above-mobile .tdif-media {
    order: -1;
    min-height: 400px !important;
  }
}
.text-dropdown-image-feature {
  overflow: hidden;
  position: relative;
  margin: 80px 0;
}
.text-dropdown-image-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.text-dropdown-image-feature .primary-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.single-blog-article .container.blog-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.single-blog-article .container.blog-wrap .blog-sidebar {
  width: 15%;
}
.single-blog-article .container.blog-wrap .blog-sidebar.share ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.single-blog-article .container.blog-wrap .blog-body {
  width: 70%;
  padding: 5%;
  padding-top: 0;
  border-left: 1px solid rgba(254, 218, 203, 0.03);
  border-right: 1px solid rgba(254, 218, 203, 0.03);
  margin-bottom: 50px;
}
.single-blog-article .container.blog-wrap .blog-body .entry-footer {
  display: none;
}
.single-blog-article .container.blog-wrap .blog-body.event-body {
  border-right: none;
}
@media only screen and (max-width: 1105px) {
  .single-blog-article .container.blog-wrap {
    flex-direction: column;
    justify-content: flex-start;
  }
  .single-blog-article .container.blog-wrap .blog-body {
    width: 100%;
    border: none;
    order: 1;
    padding-left: 0;
    padding-right: 0;
  }
  .single-blog-article .container.blog-wrap .blog-sidebar {
    width: 100%;
    margin-bottom: 50px;
    order: 2;
  }
  .single-blog-article .container.blog-wrap .blog-sidebar.event-info {
    order: 0;
  }
  .single-blog-article .container.blog-wrap .blog-sidebar.share {
    order: 2;
  }
  .single-blog-article .container.blog-wrap .blog-sidebar.related {
    display: none;
  }
}
.single-blog-article .blog-sidebar.related {
  padding-left: 20px;
}
.single-blog-article .blog-sidebar.event-info .info-item {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(63deg, #0f0300 4.56%, #270c01 89.24%);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 5px;
}
.single-blog-article .blog-sidebar.event-info .info-item .caps-heading {
  opacity: 0.6;
  margin-bottom: 0px;
  margin-top: 0;
}
.single-blog-article .blog-sidebar.event-info .info-item p {
  margin-bottom: 0;
  margin-top: 10px;
}
.single-blog-article .blog-sidebar.event-info .info-item.book {
  padding-top: 25px;
  padding-bottom: 25px;
}
.single-blog-article .related-posts {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.single-blog-article .related-posts .caps-heading {
  margin-bottom: 20px;
}
.single-blog-article .related-posts li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(254, 218, 203, 0.03);
}
.single-blog-article .related-posts li:last-of-type {
  border-bottom: none;
}
.single-blog-article .related-posts li a {
  text-decoration: none;
  color: #C37554;
}

.google-reviews-slider {
  padding: 7rem 0;
  position: relative;
  text-align: center;
  overflow-x: clip;
}
.google-reviews-slider .container {
  text-align: center;
  position: relative;
  z-index: 2;
}
.google-reviews-slider .badge {
  margin: 0 auto;
  margin-bottom: 15px;
}
.google-reviews-slider__subheading {
  margin-bottom: 2rem;
  color: #fedacb;
}
.google-reviews-slider__heading {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 35px !important;
}
.google-reviews-slider__marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 4rem;
}
.google-reviews-slider__marquee-container::before, .google-reviews-slider__marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 3;
  pointer-events: none;
}
.google-reviews-slider__marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #150A07 0%, rgba(21, 10, 7, 0) 100%);
}
.google-reviews-slider__marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #150A07 0%, rgba(21, 10, 7, 0) 100%);
}
.google-reviews-slider__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
}
.google-reviews-slider__marquee:last-child {
  margin-bottom: 0;
}
.google-reviews-slider__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
.google-reviews-slider__track--ltr {
  animation: marqueeScrollLTR 60s linear infinite;
}
.google-reviews-slider__track--rtl {
  animation: marqueeScrollRTL 60s linear infinite;
}
.google-reviews-slider__card {
  flex-shrink: 0;
  width: 423px;
  min-height: 251px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #712403;
  border-radius: 1px;
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.google-reviews-slider__card .google-reviews-slider__author {
  color: #C37554;
}
.google-reviews-slider__card .google-reviews-slider__read-more {
  color: #C37554;
}
.google-reviews-slider__card .google-reviews-slider__star--filled {
  color: #C37554;
}
.google-reviews-slider__card:hover {
  background: rgba(255, 255, 255, 0.04);
}
.google-reviews-slider__card:nth-of-type(even) {
  border-color: #223466;
}
.google-reviews-slider__card:nth-of-type(even) .google-reviews-slider__author {
  color: #BFD5F8;
}
.google-reviews-slider__card:nth-of-type(even) .google-reviews-slider__read-more {
  color: #82AAF7;
}
.google-reviews-slider__card:nth-of-type(even) .google-reviews-slider__star--filled {
  color: #82AAF7;
}
.google-reviews-slider__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.google-reviews-slider__stars {
  display: flex;
  gap: 0.25rem;
}
.google-reviews-slider__star {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.2);
}
.google-reviews-slider__star--filled {
  color: #C37554;
}
.google-reviews-slider__author {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  margin: 0 0 1rem 0;
  line-height: 32px;
}
.google-reviews-slider__text {
  font-size: 15px;
  line-height: 25px;
  color: #fedacb;
  margin: 0 0 1rem 0;
  flex-grow: 1;
}
.google-reviews-slider__bottom-link {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 1024px) {
  .google-reviews-slider {
    padding: 5rem 0;
  }
  .google-reviews-slider__card {
    width: 350px;
    min-height: 220px;
  }
}
@media screen and (max-width: 900px) {
  .google-reviews-slider {
    padding: 4rem 0;
  }
  .google-reviews-slider__card {
    width: 300px;
    min-height: 200px;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 700px) {
  .google-reviews-slider__marquee-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .google-reviews-slider__marquee-container::-webkit-scrollbar {
    display: none;
  }
  .google-reviews-slider__marquee-container::before, .google-reviews-slider__marquee-container::after {
    display: none;
  }
  .google-reviews-slider__marquee:nth-child(2) {
    display: none;
  }
  .google-reviews-slider__marquee {
    overflow: visible;
  }
  .google-reviews-slider__track {
    animation: none !important;
    gap: 1rem;
    padding: 0 1rem;
  }
  .google-reviews-slider__track .google-reviews-slider__card {
    scroll-snap-align: center;
    flex-shrink: 0;
  }
  .google-reviews-slider__card {
    width: 85vw;
    max-width: 320px;
  }
}

@keyframes marqueeScrollLTR {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marqueeScrollRTL {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.guides-overview-section {
  padding: 6rem 0;
  position: relative;
}

.guides-overview-section__inner {
  display: flex;
  gap: 5%;
  align-items: center;
}
@media (max-width: 1024px) {
  .guides-overview-section__inner {
    flex-direction: column;
    gap: 3rem;
  }
}

/* Left Column: Content */
.guides-overview-section__content {
  flex: 0 0 35%;
  max-width: 35%;
}
@media (max-width: 1024px) {
  .guides-overview-section__content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.guides-overview-section__subheading {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.guides-overview-section__heading {
  margin-bottom: 1.5rem;
}

.guides-overview-section__text {
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.85;
}

.guides-overview-section__button {
  display: inline-block;
}

/* Right Column: Guides Grid */
.guides-overview-section__grid {
  max-width: 65%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
}
@media (max-width: 1400px) {
  .guides-overview-section__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .guides-overview-section__grid {
    flex: 0 0 100%;
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual Guide Item */
.guides-overview-section__guide-item {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /*&:hover {
  	transform: translateY(-4px);
  	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);

  	.guides-overview-section__guide-overlay {
  		background: linear-gradient(
  			to top,
  			rgba(0, 0, 0, 0.85) 0%,
  			rgba(0, 0, 0, 0.4) 50%,
  			rgba(0, 0, 0, 0) 100%
  		);
  	}
  }*/
}

/* Guide Image Background */
.guides-overview-section__guide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Gradient Overlay */
.guides-overview-section__guide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, #150A07 0%, rgba(21, 10, 7, 0) 100%);
  transition: background 0.3s ease;
  pointer-events: none;
}

/* Guide Name */
.guides-overview-section__guide-name {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  z-index: 2;
  transition: transform 0.3s ease;
  width: calc(100% - 2rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/*Global Accordions*/
.dropdowns {
  margin-top: 35px;
}
.dropdowns * {
  text-align: left;
}
.dropdowns .accordion {
  border: 1px solid rgba(154, 154, 154, 0.0901960784);
  opacity: 1;
  padding: 15px 20px;
  background: rgba(250, 250, 250, 0.04);
  margin-bottom: 5px;
  backdrop-filter: blur(15px);
  transition: background 200ms ease;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: none; /* For Safari */
  -ms-user-select: none; /* For IE 10 and 11 */
  user-select: none; /* Standard syntax */
}
.dropdowns .accordion:last-of-type {
  margin-bottom: 0;
}
.dropdowns .accordion .accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.dropdowns .accordion .accordion-header .caps-heading {
  color: currentColor;
  margin: 0;
}
.dropdowns .accordion .accordion-header .accordion-icon {
  font-size: 35px;
  font-family: serif;
  font-weight: 100;
  transition: transform 0.4s ease;
  line-height: 0px;
}
.dropdowns .accordion .accordion-header a {
  color: currentColor;
}
.dropdowns .accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #fedacb;
  text-align: left;
}
.dropdowns .accordion .accordion-content a {
  color: currentColor;
}
.dropdowns .accordion .accordion-content .accordion-content-inner {
  padding-bottom: 20px;
  opacity: 0.9;
}
.dropdowns .accordion:hover {
  background: rgba(250, 250, 250, 0.055);
  border-color: rgba(255, 255, 255, 0.168627451);
}
.dropdowns .accordion.active {
  background: rgba(250, 250, 250, 0.055);
  border-color: rgba(255, 255, 255, 0.168627451);
}
.dropdowns .accordion.active .accordion-icon {
  transform: rotate(45deg);
}
.dropdowns .accordion.active .accordion-content {
  max-height: 1000px;
}
.dropdowns.warm .accordion {
  border-color: rgba(255, 255, 255, 0.1);
}
.dropdowns.warm .accordion .accordion-header .caps-heading {
  color: #EBA689;
}
.dropdowns.warm .accordion .accordion-header .accordion-icon {
  color: #EBA689;
}
.dropdowns.cold .accordion {
  border-color: rgba(255, 255, 255, 0.1);
}
.dropdowns.cold .accordion .accordion-header .caps-heading {
  color: #BFD5F8;
}
.dropdowns.cold .accordion .accordion-header .accordion-icon {
  color: #BFD5F8;
}

/**
 * Text and Image Block Styles
 */
.text-and-image-block {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 768px) {
  .text-and-image-block {
    padding: 60px 0;
  }
}
@media screen and (max-width: 900px) {
  .text-and-image-block.hide-media-mobile .text-and-image__image {
    display: none;
  }
  .text-and-image-block.media-above-mobile .text-and-image__image {
    order: -1;
    min-height: 400px;
    height: auto;
  }
}

.text-and-image__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  margin-bottom: 0;
}
.text-and-image__grid .secondary-heading {
  margin-bottom: 10px;
}
.text-and-image__grid .btn {
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .text-and-image__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.text-and-image__text p {
  margin-bottom: 1em;
}
.text-and-image__text p:last-child {
  margin-bottom: 0;
}

.text-and-image__dropdowns {
  margin-top: 10px;
}

.text-and-image__button-wrap {
  margin-top: 20px;
}

.text-and-image__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
@media (max-width: 768px) {
  .text-and-image__image {
    min-height: 300px;
  }
}
.text-and-image__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

@media (min-width: 769px) {
  .text-and-image-block--reversed .text-and-image__grid .text-and-image__content {
    order: 2;
  }
  .text-and-image-block--reversed .text-and-image__grid .text-and-image__image {
    order: 1;
  }
}

.bg-glow {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  opacity: 0.5;
  background: radial-gradient(50% 50% at 50% 50%, #813721 0%, rgba(129, 55, 33, 0) 100%);
}
.bg-glow.cold {
  background: radial-gradient(50% 50% at 50% 50%, var(--Mid-Blue, #223466) 0%, rgba(34, 52, 102, 0) 100%);
}
.bg-glow.top-left {
  top: -40%;
  left: -40%;
}
.bg-glow.top-center {
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
}
.bg-glow.top-right {
  top: -40%;
  right: -40%;
}
.bg-glow.center-left {
  top: 50%;
  left: -40%;
  transform: translateY(-50%);
}
.bg-glow.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bg-glow.center-right {
  top: 50%;
  right: -40%;
  transform: translateY(-50%);
}
.bg-glow.bottom-left {
  bottom: -40%;
  left: -40%;
}
.bg-glow.bottom-center {
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
}
.bg-glow.bottom-right {
  bottom: -40%;
  right: -40%;
}
@media screen and (min-width: 1024px) {
  .bg-glow.top-left {
    top: -60%;
    left: -60%;
  }
  .bg-glow.top-center {
    top: -60%;
  }
  .bg-glow.top-right {
    top: -60%;
    right: -60%;
  }
  .bg-glow.center-left {
    left: -60%;
  }
  .bg-glow.center-right {
    right: -60%;
  }
  .bg-glow.bottom-left {
    bottom: -60%;
    left: -60%;
  }
  .bg-glow.bottom-center {
    bottom: -60%;
  }
  .bg-glow.bottom-right {
    bottom: -60%;
    right: -60%;
  }
}

.has-clipped-glow {
  overflow: hidden;
}

/* Editor Styles - Make reveal elements visible in WordPress editor */
/* Global override for any editor context */
.swiper {
  position: relative;
}
.swiper .swiper-nav {
  position: absolute;
  z-index: 5;
  bottom: 0px;
  left: 0px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0;
  width: 125px;
  height: 70px;
}
.swiper .swiper-nav.center {
  justify-content: center;
  width: 100%;
  position: relative;
}
.swiper .swiper-nav .button-next, .swiper .swiper-nav .button-prev {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.3s ease;
}
.swiper .swiper-nav .button-next::after, .swiper .swiper-nav .button-prev::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: inline-block;
  font-size: 20px;
  color: white;
  background: url("/wp-content/themes/Kolm/img/chev-back.svg");
  background-size: 13px;
  background-position: center center;
  background-repeat: no-repeat;
}
.swiper .swiper-nav .button-next:hover, .swiper .swiper-nav .button-prev:hover {
  background: rgba(0, 0, 0, 0.7);
}
.swiper .swiper-nav .button-next::after {
  font-size: 20px;
  color: white;
  background: url("/wp-content/themes/Kolm/img/chev-forward.svg");
  background-size: 13px;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Marquee Image Slider Block*/
.marquee-image-gallery {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.marquee-image-gallery__swiper-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-image-gallery__swiper {
  width: 100%;
  overflow: hidden;
  /* Override swiper to show multiple slides */
}
.marquee-image-gallery__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.marquee-image-gallery__item {
  aspect-ratio: 16/10;
}

.marquee-image-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Background glow */
.marquee-image-gallery.has-clipped-glow {
  clip-path: inset(0);
}

.marquee-image-gallery.has-clipped-glow .marquee-image-gallery__item {
  border-radius: 8px;
}
.marquee-image-gallery.has-clipped-glow .marquee-image-gallery__swiper {
  border-radius: 8px;
}

@media only screen and (max-width: 1024px) {
  .marquee-image-gallery__item {
    flex: 0 0 calc(40% - 18px); /* For 2.5 items visible */
    min-width: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .marquee-image-gallery__item {
    flex: 0 0 calc(40% - 18px); /* For 2.5 items visible */
    min-width: 200px;
  }
}
.events-slider {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .events-slider {
    padding: 60px 0;
  }
}
.events-slider .container {
  width: 100%;
}

.events-slider__header {
  margin-bottom: 60px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .events-slider__header {
    margin-bottom: 40px;
  }
}
.events-slider__header .secondary-heading {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.events-slider__wrapper {
  position: relative;
}
.events-slider__wrapper .swiper-nav {
  position: relative;
  margin: 0 auto;
  gap: 0 15px;
  align-items: flex-start;
  margin-top: 20px;
}
.events-slider__wrapper .swiper-nav .button-prev,
.events-slider__wrapper .swiper-nav .button-next {
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .events-slider__wrapper .swiper-nav .button-prev,
  .events-slider__wrapper .swiper-nav .button-next {
    bottom: 0;
  }
  .events-slider__wrapper .swiper-nav .button-prev {
    right: 45px;
  }
}

.events-slider__swiper {
  overflow: visible;
  padding-bottom: 0;
}

.events-slider__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  .events-slider__card {
    min-height: 450px;
  }
}
.events-slider__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.events-slider__card:hover .events-slider__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.events-slider__card:hover .events-slider__content {
  transform: translateY(0);
}

.events-slider__date-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  text-align: center;
  min-width: 70px;
}

.events-slider__date-day {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fedacb;
  margin-bottom: 5px;
}

.events-slider__date-month {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fedacb;
}

.events-slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: all 0.4s ease;
  z-index: 1;
}

.events-slider__content {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  padding: 40px 30px 80px;
  color: white;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .events-slider__content {
    padding: 30px 20px 80px;
  }
}

.events-slider__categories {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #C37554;
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.events-slider__category {
  display: inline;
}

.events-slider__category-separator {
  font-size: 8px;
  opacity: 0.6;
}

.events-slider__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.events-slider__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .events-slider__bottom-bar {
    padding: 12px 20px;
  }
}
.events-slider__bottom-bar:hover {
  background: rgba(0, 0, 0, 0.85);
}

.events-slider__no-events {
  text-align: center;
  padding: 60px 30px;
}
.events-slider__no-events p {
  font-size: 18px;
  color: #712403;
}

.all-events-list {
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .all-events-list {
    padding: 60px 0;
  }
}
.all-events-list .container {
  width: 100%;
}

.all-events-list__header {
  margin-bottom: 60px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .all-events-list__header {
    margin-bottom: 40px;
  }
}
.all-events-list__header .secondary-heading {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.all-events-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .all-events-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .all-events-list__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.all-events-list__item {
  display: flex;
  height: 100%;
}

.all-events-list__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  min-height: 500px;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 768px) {
  .all-events-list__card {
    min-height: 350px;
  }
}
.all-events-list__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.all-events-list__card:hover .all-events-list__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.all-events-list__card:hover .all-events-list__content {
  transform: translateY(0);
}

.all-events-list__date-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  text-align: center;
  min-width: 70px;
}

.all-events-list__date-day {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fedacb;
  margin-bottom: 5px;
}

.all-events-list__date-month {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fedacb;
}

.all-events-list__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  transition: all 0.4s ease;
  z-index: 1;
}

.all-events-list__content {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  padding: 40px 30px 80px;
  color: white;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .all-events-list__content {
    padding: 30px 20px 80px;
  }
}

.all-events-list__categories {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #C37554;
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.all-events-list__category {
  display: inline;
}

.all-events-list__category-separator {
  font-size: 8px;
  opacity: 0.6;
}

.all-events-list__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.all-events-list__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .all-events-list__bottom-bar {
    padding: 12px 20px;
  }
}
.all-events-list__bottom-bar:hover {
  background: rgba(0, 0, 0, 0.85);
}

.all-events-list__pagination {
  text-align: center;
  padding: 30px 0;
}
.all-events-list__pagination a,
.all-events-list__pagination span {
  display: inline-block;
  padding: 10px 12px;
  margin: 0 5px;
  border: 1px solid #EBA689;
  text-decoration: none;
  color: #C37554;
  transition: all 0.3s ease;
}
.all-events-list__pagination a:hover:not(.page-numbers.current),
.all-events-list__pagination span:hover:not(.page-numbers.current) {
  background-color: #C37554;
  color: white;
}
.all-events-list__pagination .page-numbers.current {
  background-color: #C37554;
  color: #fedacb;
  border-color: transparent;
}

.all-events-list__no-events {
  text-align: center;
  padding: 60px 30px;
}
.all-events-list__no-events p {
  font-size: 18px;
  color: #712403;
}

.related-blog-posts {
  align-items: stretch;
  margin-bottom: 50px;
}
.related-blog-posts .col {
  height: auto;
  min-height: 450px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  text-decoration: none;
  transition: all 400ms ease;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.related-blog-posts .col .col-content {
  padding: 25px;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
}
.related-blog-posts .col:hover {
  opacity: 0.7;
}

.error-404-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  margin-top: 100px;
  position: relative;
  background-image: url("/wp-content/themes/Kolm/img/textures/wood-1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.error-404-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(63deg, #0f0300 4.56%, #270c01 89.24%);
  opacity: 0.97;
  z-index: 1;
}
.error-404-page .error-404-content {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.error-404-page .error-404-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.error-404-page .error-404-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  font-family: "Contax Sans", Helvetica, Roboto, sans-serif;
  color: #C37554 !important;
}
.error-404-page .error-404-title.lightbrown-txt {
  color: #C37554 !important;
}
.error-404-page .error-404-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .error-404-page .error-404-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

.newsletter .newsletter-text .loader-container {
  filter: blur(50px);
}
.newsletter .newsletter-text .loader-status {
  font-size: 18px !important;
}
.newsletter .newsletter-text .loader-status * {
  font-size: 18px !important;
}

.contact-form-block {
  padding: 4rem 0;
}
@media (max-width: 900px) {
  .contact-form-block {
    padding: 3rem 0;
  }
}
@media (max-width: 600px) {
  .contact-form-block {
    padding: 2rem 0;
  }
}
.contact-form-block .contact-form__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .contact-form-block .contact-form__header {
    margin-bottom: 2rem;
  }
}
.contact-form-block .contact-form__header .caps-heading {
  margin-bottom: 1rem;
}
.contact-form-block .contact-form__header .secondary-heading {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form-block .contact-form__wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield {
  flex: 0 0 calc(50% - 0.75rem);
}
@media (max-width: 600px) {
  .contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield {
    flex: 0 0 100%;
  }
}
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield.gfield_textarea {
  flex: 0 0 100%;
}
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=number],
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=url],
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield select,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield textarea {
  width: 100%;
  background: transparent;
  color: #C37554;
  border: 2px solid transparent;
  border-bottom: 2px solid #C37554;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-family: inherit;
  transition: all 300ms ease;
}
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=text]::placeholder,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=email]::placeholder,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=tel]::placeholder,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=number]::placeholder,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=url]::placeholder,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield select::placeholder,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield textarea::placeholder {
  color: rgba(195, 117, 84, 0.6);
}
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=text]:focus,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=email]:focus,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=tel]:focus,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=number]:focus,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield input[type=url]:focus,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield select:focus,
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield textarea:focus {
  outline: none;
  border-bottom-color: #C37554;
  background: transparent;
  color: #C37554;
}
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields .gfield textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_body .gform_fields #field_1_5 {
  flex: 100%;
  width: 100%;
}
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_footer {
  margin-top: 2rem;
  text-align: center;
}
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_footer input[type=submit] {
  width: 100% !important;
  padding: 1rem 2rem !important;
  background-color: #712403 !important;
  color: #fedacb !important;
  border: 2px solid #712403 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 300ms ease !important;
}
.contact-form-block .contact-form__wrapper .gform_wrapper .gform_footer input[type=submit]:hover {
  background-color: rgb(63.3189655172, 20.1724137931, 1.6810344828) !important;
  border-color: rgb(63.3189655172, 20.1724137931, 1.6810344828) !important;
}
@media (max-width: 600px) {
  .contact-form-block .contact-form__wrapper .gform_wrapper .gform_footer input[type=submit] {
    width: 100% !important;
  }
}

.wp-singular .blog-featured-image {
  width: 100%;
  height: 600px;
  margin-bottom: 40px;
  position: relative;
}
.wp-singular .blog-featured-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 900px) {
  .wp-singular .blog-featured-image {
    height: 450px;
  }
}

.wp-singular .blog-intro {
  padding: 150px 0 50px 0;
}

.mobile-only {
  display: none;
}
@media screen and (max-width: 900px) {
  .mobile-only {
    display: block;
  }
}/*# sourceMappingURL=layout.css.map */