* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

html {
  font: 400 16px/1.5 "Roboto", sans-serif;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #0f0801;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  body.is-overflow-locked {
    overflow: hidden;
  }
}

#main {
  flex: 1 0 auto;
  margin-top: 60px;
}
@media screen and (min-width: 1025px) {
  #main {
    margin-top: 80px;
  }
}
#main > *:not(#search-modal) {
  margin-bottom: 80px;
}
@media screen and (min-width: 1025px) {
  #main > *:not(#search-modal) {
    margin-bottom: 120px;
  }
}

.container {
  width: 1140px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) and (min-width: 481px) {
  .container {
    max-width: calc(100% - 78px);
  }
}
@media screen and (min-width: 1025px) {
  .container {
    max-width: calc(100% - 144px);
  }
}
@media screen and (min-width: 1025px) {
  .container.container-md {
    width: 1440px;
  }
}
@media screen and (min-width: 1600px) {
  .container.container-lg {
    width: 1600px;
  }
}

article,
aside,
figure,
footer,
header,
nav,
section {
  display: block;
}

button {
  font: inherit;
  background: rgba(255, 255, 255, 0);
  border: medium none;
  cursor: pointer;
}

strong,
b {
  font-weight: 700;
}

table {
  border-spacing: 0;
}

td {
  vertical-align: middle;
}

ul {
  list-style: none;
}

img {
  height: auto;
  display: block;
  max-width: 100%;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: currentcolor;
  vertical-align: -0.125em;
  overflow: visible;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
input,
textarea,
select,
.button {
  transition: all 0.3s ease;
}

small {
  font-size: calc(16px * 0.875);
}

sup,
sub {
  font-size: 0.8em;
}

figure a {
  display: block;
}
figure a:active {
  opacity: 0.75;
}
@media screen and (min-width: 1025px) {
  figure a:hover {
    opacity: 0.75;
  }
}

figcaption {
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
}

hr {
  border-top: none;
  border-bottom: 2px solid #0f0801;
  margin-bottom: 30px;
}

input:not([type=submit], [type=button], [type=radio], [type=checkbox]),
select,
textarea {
  width: 100%;
  border-radius: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
}
input:not([type=submit], [type=button], [type=radio], [type=checkbox]):-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-text-fill-color: #0f0801 !important;
  -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}

input[type=submit],
input[type=button] {
  width: auto;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: #0f0801;
  opacity: 1;
}

:focus:not(:focus-visible) {
  outline: 0 none;
}

:focus-visible {
  transition: none;
  outline: 2px dashed #4f3bd4;
  outline-offset: 2px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0 none;
  box-shadow: none;
}

.is-keyboard-navigation input:focus,
.is-keyboard-navigation select:focus,
.is-keyboard-navigation textarea:focus {
  transition: none;
  border-color: #4f3bd4;
  outline: 2px dashed #4f3bd4;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(79, 59, 212, 0.18);
}

input:is([type=text], [type=email], [type=tel], [type=url], [type=search]):not(.wpcf7 input),
select:not(.wpcf7 select),
textarea:not(.wpcf7 textarea) {
  display: block;
  height: 40px;
  font: 400 16px "Roboto", sans-serif;
  color: #0f0801;
  padding: 0 15px;
  border: 1px solid #0f0801;
  background-color: #fff;
}
input:is([type=text], [type=email], [type=tel], [type=url], [type=search]):not(.wpcf7 input)::placeholder,
select:not(.wpcf7 select)::placeholder,
textarea:not(.wpcf7 textarea)::placeholder {
  color: #0f0801;
  opacity: 1;
}
input:is([type=text], [type=email], [type=tel], [type=url], [type=search]):not(.wpcf7 input):hover, input:is([type=text], [type=email], [type=tel], [type=url], [type=search]):not(.wpcf7 input):active,
select:not(.wpcf7 select):hover,
select:not(.wpcf7 select):active,
textarea:not(.wpcf7 textarea):hover,
textarea:not(.wpcf7 textarea):active {
  border-color: #4f3bd4;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
}

.button,
.wp-block-button__link,
.wp-block-file__button {
  display: inline-flex;
  align-items: center;
  font: 400 16px/24px "Roboto", sans-serif;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 20px;
  background-color: #0f0801;
  cursor: pointer;
  user-select: none;
  border-radius: 0 !important;
}
.button.is_full,
.wp-block-button__link.is_full,
.wp-block-file__button.is_full {
  width: 100%;
}
.button:active,
.wp-block-button__link:active,
.wp-block-file__button:active {
  background-color: #4f3bd4;
}
@media screen and (min-width: 1025px) {
  .button:hover,
  .wp-block-button__link:hover,
  .wp-block-file__button:hover {
    background-color: #4f3bd4;
  }
}

.wp-block-button {
  display: inline-block;
}
.wp-block-button.is_full .wp-block-button__link {
  width: 100%;
}

.wp-block-buttons.is-content-justification-center {
  text-align: center;
}
.wp-block-buttons.is-content-justification-right {
  text-align: right;
}

.button-group,
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.link, .content p a:not(.button),
.content li a:not(.button) {
  color: inherit;
  text-decoration: underline;
}
.link:active, .content p a:active:not(.button),
.content li a:active:not(.button) {
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .link:hover, .content p a:hover:not(.button),
  .content li a:hover:not(.button) {
    text-decoration: none;
  }
}

h1,
.h1 {
  font-family: "Playfair Display", sans-serif;
  font-weight: 700;
}
h1 a,
.h1 a {
  color: inherit;
}
h1 a:active,
.h1 a:active {
  color: #4f3bd4;
}
@media screen and (min-width: 1025px) {
  h1 a:hover,
  .h1 a:hover {
    color: #4f3bd4;
  }
}

h2,
.h2 {
  font-family: "Playfair Display", sans-serif;
  font-weight: 700;
}
h2 a,
.h2 a {
  color: inherit;
}
h2 a:active,
.h2 a:active {
  color: #4f3bd4;
}
@media screen and (min-width: 1025px) {
  h2 a:hover,
  .h2 a:hover {
    color: #4f3bd4;
  }
}

h3,
.h3 {
  font-family: "Playfair Display", sans-serif;
  font-weight: 700;
}
h3 a,
.h3 a {
  color: inherit;
}
h3 a:active,
.h3 a:active {
  color: #4f3bd4;
}
@media screen and (min-width: 1025px) {
  h3 a:hover,
  .h3 a:hover {
    color: #4f3bd4;
  }
}

h4,
.h4 {
  font-family: "Playfair Display", sans-serif;
  font-weight: 700;
}
h4 a,
.h4 a {
  color: inherit;
}
h4 a:active,
.h4 a:active {
  color: #4f3bd4;
}
@media screen and (min-width: 1025px) {
  h4 a:hover,
  .h4 a:hover {
    color: #4f3bd4;
  }
}

h1,
.h1 {
  font-size: 51px;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 28px;
}

h3,
.h3 {
  font-size: 21px;
}

h4,
.h4 {
  font-size: 18px;
}

h5,
.h5 {
  font-size: 16px;
}

span.responsive-frame {
  margin-bottom: 32px;
}

blockquote.wp-block-quote {
  font: 700 28px/1.3 "Playfair Display", sans-serif;
  margin-bottom: 32px;
  padding: 16px 0 16px 30px;
  position: relative;
}
blockquote.wp-block-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: #0f0801;
}

.content h1:not(:last-child, .wp-block-accordion-heading) {
  margin-bottom: 24px;
}
.content h2:not(:last-child, .wp-block-accordion-heading) {
  margin-bottom: 24px;
}
.content h3:not(:last-child, .wp-block-accordion-heading) {
  margin-bottom: 24px;
}
.content h4:not(:last-child, .wp-block-accordion-heading) {
  margin-bottom: 24px;
}
.content h5:not(:last-child, .wp-block-accordion-heading) {
  margin-bottom: 24px;
}
.content h6:not(:last-child, .wp-block-accordion-heading) {
  margin-bottom: 24px;
}
.content p:not(:last-child) {
  margin-bottom: 24px;
}
.content p:not(:last-child).responsive-frame {
  margin-bottom: 32px;
}
.content p.is-empty {
  line-height: 0;
}
.content ul:not(.blocks-gallery-grid, .wp-block-social-links) {
  margin-bottom: 32px;
}
.content ul:not(.blocks-gallery-grid, .wp-block-social-links) li {
  padding-left: 18px;
  position: relative;
}
.content ul:not(.blocks-gallery-grid, .wp-block-social-links) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0f0801;
}
.content ul:not(.blocks-gallery-grid, .wp-block-social-links) li > ul {
  padding: 16px 0 0 32px;
}
.content ol {
  list-style-type: none !important;
  counter-reset: decimal_counter;
  margin-bottom: 32px;
}
.content ol li {
  counter-increment: decimal_counter;
}
.content ol li::before {
  content: counter(decimal_counter) ". ";
  font-weight: inherit;
}
.content ol li > ol {
  counter-reset: alpha_counter;
  padding: 16px 0 0 32px;
}
.content ol li > ol li {
  counter-increment: alpha_counter;
}
.content ol li > ol li::before {
  content: counter(alpha_counter, lower-alpha) ". ";
}
.content ol li > ol li > ol {
  counter-reset: roman_counter;
}
.content ol li > ol li > ol li {
  counter-increment: roman_counter;
}
.content ol li > ol li > ol li::before {
  content: counter(roman_counter, lower-roman) ". ";
}
.content img.alignnone {
  margin: 0 0 24px;
}
.content img.aligncenter {
  margin: 0 auto 24px;
}
.content img.alignleft {
  float: left;
  margin: 0 24px 24px 0;
}
.content img.alignright {
  float: right;
  margin: 0 0 24px 24px;
}

.wp-block-table table {
  min-width: 640px;
}

.responsive-frame,
.is-type-video .wp-block-embed__wrapper,
.wp-block-embed-soundcloud .wp-block-embed__wrapper {
  height: 0;
  margin: 0;
  overflow: hidden;
  padding-bottom: 56.5%;
  position: relative;
  z-index: 0;
}
.responsive-frame iframe,
.responsive-frame object,
.responsive-frame embed,
.is-type-video .wp-block-embed__wrapper iframe,
.is-type-video .wp-block-embed__wrapper object,
.is-type-video .wp-block-embed__wrapper embed,
.wp-block-embed-soundcloud .wp-block-embed__wrapper iframe,
.wp-block-embed-soundcloud .wp-block-embed__wrapper object,
.wp-block-embed-soundcloud .wp-block-embed__wrapper embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .flex__rwd {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .flex__mob {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.flex_start {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .flex_start__rwd {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .flex_start__mob {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .flex_center__rwd {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .flex_center__mob {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

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

.last-no-spacing > *:last-child:not(.button, .responsive-frame, blockquote), blockquote.wp-block-quote > *:last-child:not(.button, .responsive-frame, blockquote) {
  margin-bottom: 0;
  padding-bottom: 0;
}

@media screen and (min-width: 1025px) {
  .rwd_show {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .rwd_hide {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .mob_show {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .mob_hide {
    display: none !important;
  }
}

.is_visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 1025px) {
  .container_grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    width: 100%;
  }
}

.start_1_cols_1 {
  grid-column: 1/span 1 !important;
}

.start_1_cols_2 {
  grid-column: 1/span 2 !important;
}

.start_1_cols_3 {
  grid-column: 1/span 3 !important;
}

.start_1_cols_4 {
  grid-column: 1/span 4 !important;
}

.start_1_cols_5 {
  grid-column: 1/span 5 !important;
}

.start_1_cols_6 {
  grid-column: 1/span 6 !important;
}

.start_1_cols_7 {
  grid-column: 1/span 7 !important;
}

.start_1_cols_8 {
  grid-column: 1/span 8 !important;
}

.start_1_cols_9 {
  grid-column: 1/span 9 !important;
}

.start_1_cols_10 {
  grid-column: 1/span 10 !important;
}

.start_1_cols_11 {
  grid-column: 1/span 11 !important;
}

.start_1_cols_12 {
  grid-column: 1/span 12 !important;
}

.start_2_cols_1 {
  grid-column: 2/span 1 !important;
}

.start_2_cols_2 {
  grid-column: 2/span 2 !important;
}

.start_2_cols_3 {
  grid-column: 2/span 3 !important;
}

.start_2_cols_4 {
  grid-column: 2/span 4 !important;
}

.start_2_cols_5 {
  grid-column: 2/span 5 !important;
}

.start_2_cols_6 {
  grid-column: 2/span 6 !important;
}

.start_2_cols_7 {
  grid-column: 2/span 7 !important;
}

.start_2_cols_8 {
  grid-column: 2/span 8 !important;
}

.start_2_cols_9 {
  grid-column: 2/span 9 !important;
}

.start_2_cols_10 {
  grid-column: 2/span 10 !important;
}

.start_2_cols_11 {
  grid-column: 2/span 11 !important;
}

.start_3_cols_1 {
  grid-column: 3/span 1 !important;
}

.start_3_cols_2 {
  grid-column: 3/span 2 !important;
}

.start_3_cols_3 {
  grid-column: 3/span 3 !important;
}

.start_3_cols_4 {
  grid-column: 3/span 4 !important;
}

.start_3_cols_5 {
  grid-column: 3/span 5 !important;
}

.start_3_cols_6 {
  grid-column: 3/span 6 !important;
}

.start_3_cols_7 {
  grid-column: 3/span 7 !important;
}

.start_3_cols_8 {
  grid-column: 3/span 8 !important;
}

.start_3_cols_9 {
  grid-column: 3/span 9 !important;
}

.start_3_cols_10 {
  grid-column: 3/span 10 !important;
}

.start_4_cols_1 {
  grid-column: 4/span 1 !important;
}

.start_4_cols_2 {
  grid-column: 4/span 2 !important;
}

.start_4_cols_3 {
  grid-column: 4/span 3 !important;
}

.start_4_cols_4 {
  grid-column: 4/span 4 !important;
}

.start_4_cols_5 {
  grid-column: 4/span 5 !important;
}

.start_4_cols_6 {
  grid-column: 4/span 6 !important;
}

.start_4_cols_7 {
  grid-column: 4/span 7 !important;
}

.start_4_cols_8 {
  grid-column: 4/span 8 !important;
}

.start_4_cols_9 {
  grid-column: 4/span 9 !important;
}

.start_5_cols_1 {
  grid-column: 5/span 1 !important;
}

.start_5_cols_2 {
  grid-column: 5/span 2 !important;
}

.start_5_cols_3 {
  grid-column: 5/span 3 !important;
}

.start_5_cols_4 {
  grid-column: 5/span 4 !important;
}

.start_5_cols_5 {
  grid-column: 5/span 5 !important;
}

.start_5_cols_6 {
  grid-column: 5/span 6 !important;
}

.start_5_cols_7 {
  grid-column: 5/span 7 !important;
}

.start_5_cols_8 {
  grid-column: 5/span 8 !important;
}

.start_6_cols_1 {
  grid-column: 6/span 1 !important;
}

.start_6_cols_2 {
  grid-column: 6/span 2 !important;
}

.start_6_cols_3 {
  grid-column: 6/span 3 !important;
}

.start_6_cols_4 {
  grid-column: 6/span 4 !important;
}

.start_6_cols_5 {
  grid-column: 6/span 5 !important;
}

.start_6_cols_6 {
  grid-column: 6/span 6 !important;
}

.start_6_cols_7 {
  grid-column: 6/span 7 !important;
}

.start_7_cols_1 {
  grid-column: 7/span 1 !important;
}

.start_7_cols_2 {
  grid-column: 7/span 2 !important;
}

.start_7_cols_3 {
  grid-column: 7/span 3 !important;
}

.start_7_cols_4 {
  grid-column: 7/span 4 !important;
}

.start_7_cols_5 {
  grid-column: 7/span 5 !important;
}

.start_7_cols_6 {
  grid-column: 7/span 6 !important;
}

.start_8_cols_1 {
  grid-column: 8/span 1 !important;
}

.start_8_cols_2 {
  grid-column: 8/span 2 !important;
}

.start_8_cols_3 {
  grid-column: 8/span 3 !important;
}

.start_8_cols_4 {
  grid-column: 8/span 4 !important;
}

.start_8_cols_5 {
  grid-column: 8/span 5 !important;
}

.start_9_cols_1 {
  grid-column: 9/span 1 !important;
}

.start_9_cols_2 {
  grid-column: 9/span 2 !important;
}

.start_9_cols_3 {
  grid-column: 9/span 3 !important;
}

.start_9_cols_4 {
  grid-column: 9/span 4 !important;
}

.start_10_cols_1 {
  grid-column: 10/span 1 !important;
}

.start_10_cols_2 {
  grid-column: 10/span 2 !important;
}

.start_10_cols_3 {
  grid-column: 10/span 3 !important;
}

.start_11_cols_1 {
  grid-column: 11/span 1 !important;
}

.start_11_cols_2 {
  grid-column: 11/span 2 !important;
}

.start_12_cols_1 {
  grid-column: 12/span 1 !important;
}

.alignwide,
.alignfull {
  max-width: none;
}

.alignwide {
  width: min(1440px, 100vw - 48px);
  margin-left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) and (min-width: 481px) {
  .alignwide {
    width: calc(100vw - 78px);
  }
}
@media screen and (min-width: 1025px) {
  .alignwide {
    width: min(1440px, 100vw - 144px);
  }
}

.alignfull {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
.logged-in.admin-bar .site-header {
  top: 46px;
}
@media screen and (min-width: 783px) {
  .logged-in.admin-bar .site-header {
    top: 32px;
  }
}
.site-header.is-sticky::before {
  box-shadow: 0 1px 5px rgba(15, 8, 1, 0.33);
}
.site-header::before {
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  z-index: -1;
}

.site-header__container {
  height: 60px;
}
@media screen and (min-width: 1025px) {
  .site-header__container {
    height: 80px;
  }
}
.site-header__logo img {
  width: 40px;
}
@media screen and (min-width: 1025px) {
  .site-header__logo img {
    width: 60px;
  }
}

.primary-nav {
  transition: all 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .primary-nav {
    margin-left: auto;
  }
}
@media screen and (max-width: 1024px) {
  .primary-nav {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    overflow: auto;
    padding: 35px 24px 0;
    background-color: #4f3bd4;
    transform: translateX(101%);
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
  }
  .primary-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 1024px) and (min-width: 783px) {
  .logged-in.admin-bar .primary-nav {
    top: 92px;
  }
}
@media screen and (max-width: 782px) {
  .logged-in.admin-bar .primary-nav {
    top: 106px;
  }
}
@media screen and (max-width: 767px) {
  .primary-nav {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .primary-nav__list {
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .primary-nav__list > li {
    margin-right: 70px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 1025px) {
  .primary-nav__list > li {
    margin-right: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .primary-nav__list > li {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 1024px) {
  .primary-nav__list > li {
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .primary-nav__list > li > a {
    padding: 7px 0;
  }
}
.primary-nav li {
  font-weight: 400;
}
@media screen and (min-width: 1025px) {
  .primary-nav li.current-menu-item > a, .primary-nav li.current-menu-item > span, .primary-nav li.current-menu-parent > a, .primary-nav li.current-menu-parent > span {
    text-decoration: underline;
  }
}
@media screen and (max-width: 1024px) {
  .primary-nav li.current-menu-item > a, .primary-nav li.current-menu-item > span, .primary-nav li.current-menu-parent > a, .primary-nav li.current-menu-parent > span {
    color: #0f0801;
  }
}
.primary-nav li.menu-item-has-children {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .primary-nav li.menu-item-has-children::before {
    content: "";
    display: none;
    position: absolute;
    top: -28px;
    height: 100px;
  }
  .primary-nav li.menu-item-has-children > a {
    position: relative;
  }
  .primary-nav li.menu-item-has-children:hover::before, .primary-nav li.menu-item-has-children.is-focused::before {
    display: block;
  }
  .primary-nav li.menu-item-has-children:hover > .sub-menu, .primary-nav li.menu-item-has-children.is-focused > .sub-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
}
@media screen and (min-width: 1200px) {
  .primary-nav li.menu-item-has-children::before {
    left: -80px;
    right: -80px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 1025px) {
  .primary-nav li.menu-item-has-children::before {
    left: -50px;
    right: -50px;
  }
}
@media screen and (max-width: 1024px) {
  .primary-nav li.menu-item-has-children > a + .primary-nav__submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 42px;
    cursor: pointer;
    z-index: 2;
  }
  .primary-nav li.menu-item-has-children > a + .primary-nav__submenu-toggle::after, .primary-nav li.menu-item-has-children > a + .primary-nav__submenu-toggle::before {
    content: "";
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .primary-nav li.menu-item-has-children > a + .primary-nav__submenu-toggle::after {
    width: 16px;
    height: 2px;
  }
  .primary-nav li.menu-item-has-children > a + .primary-nav__submenu-toggle::before {
    width: 2px;
    height: 16px;
  }
  .primary-nav li.menu-item-has-children > a + .primary-nav__submenu-toggle.is-open::after {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .primary-nav li.menu-item-has-children > a + .primary-nav__submenu-toggle.is-open::before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .primary-nav li.menu-item-has-children.current-menu-item > a + .primary-nav__submenu-toggle::after, .primary-nav li.menu-item-has-children.current-menu-item > a + .primary-nav__submenu-toggle::before, .primary-nav li.menu-item-has-children.current-menu-item > span + .primary-nav__submenu-toggle::after, .primary-nav li.menu-item-has-children.current-menu-item > span + .primary-nav__submenu-toggle::before, .primary-nav li.menu-item-has-children.current-menu-parent > a + .primary-nav__submenu-toggle::after, .primary-nav li.menu-item-has-children.current-menu-parent > a + .primary-nav__submenu-toggle::before, .primary-nav li.menu-item-has-children.current-menu-parent > span + .primary-nav__submenu-toggle::after, .primary-nav li.menu-item-has-children.current-menu-parent > span + .primary-nav__submenu-toggle::before {
    background-color: #0f0801;
  }
}
.primary-nav a {
  color: #fff;
}
.primary-nav a:active {
  color: #0f0801;
}
@media screen and (min-width: 1025px) {
  .primary-nav a:hover {
    color: #0f0801;
  }
}
@media screen and (min-width: 1025px) {
  .primary-nav a {
    color: #0f0801;
  }
  .primary-nav a:hover {
    color: #4f3bd4;
  }
}
@media screen and (max-width: 1024px) {
  .primary-nav a {
    display: inline-block;
  }
}
@media screen and (min-width: 1025px) {
  .primary-nav .sub-menu {
    position: absolute;
    top: 52px;
    min-width: 140px;
    padding: 15px 20px 7px;
    background-color: #0f0801;
    transform: translateY(5px);
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
  }
}
@media screen and (min-width: 1200px) {
  .primary-nav .sub-menu {
    left: -35px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 1025px) {
  .primary-nav .sub-menu {
    left: -20px;
  }
}
@media screen and (max-width: 1024px) {
  .primary-nav .sub-menu {
    display: none;
    padding: 5px 0 0 25px;
  }
}
@media screen and (min-width: 1025px) {
  .primary-nav .sub-menu li {
    white-space: nowrap;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .primary-nav .sub-menu li {
    text-transform: none;
  }
}
@media screen and (max-width: 1024px) {
  .primary-nav .sub-menu a {
    padding: 5px 0;
  }
}
@media screen and (min-width: 1025px) {
  .primary-nav .sub-menu a {
    color: #fff;
  }
  .primary-nav .sub-menu a:active {
    color: #4f3bd4;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .primary-nav .sub-menu a:hover {
    color: #4f3bd4;
  }
}

.primary-nav__toggle {
  transition: unset;
  display: block;
  transform: translateY(-50%) rotate(0deg);
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .primary-nav__toggle {
    display: none;
  }
}
.primary-nav__toggle .icon-close {
  display: none;
}
.primary-nav__toggle.is-active .icon-menu-open {
  display: none;
}
.primary-nav__toggle.is-active .icon-close {
  display: block;
}

.site-header__search-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #0f0801;
  position: relative;
  z-index: 1;
}
.site-header__search-toggle:active {
  color: #4f3bd4;
}
@media screen and (min-width: 1025px) {
  .site-header__search-toggle:hover {
    color: #4f3bd4;
  }
}
@media screen and (min-width: 1025px) {
  .site-header__search-toggle {
    order: 1;
  }
}
@media screen and (max-width: 1024px) {
  .site-header__search-toggle {
    margin-right: 60px;
  }
}

#search-modal {
  display: none;
  padding: 0;
  background-color: transparent;
}
#search-modal form {
  position: relative;
}
#search-modal input {
  height: 48px;
  border: none;
  font: 400 24px "Playfair Display", sans-serif;
  color: #fff;
  padding-right: 50px;
  background-color: transparent;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  #search-modal input {
    height: 54px;
    font-size: 28px;
    padding-right: 56px;
  }
}
#search-modal input::placeholder {
  color: #fff;
  opacity: 1;
}
#search-modal button {
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  width: 48px;
  height: 48px;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 0 0 transparent;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #search-modal button {
    width: 54px;
    height: 54px;
  }
}
#search-modal button .icon {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  #search-modal button .icon {
    font-size: 28px;
  }
}
#search-modal button:active {
  box-shadow: inset 0 0 0 2px #fff;
}
@media screen and (min-width: 1025px) {
  #search-modal button:hover {
    box-shadow: inset 0 0 0 2px #fff;
  }
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-110%, -110%);
  transition: none;
  z-index: 10;
}
.skip-link:focus, .skip-link:focus-visible {
  transform: translate(10px, 10px);
}

.site-footer {
  color: #fff;
  padding: 20px 0;
  background-color: #0f0801;
}

.top-panel--primary {
  padding: 70px 0;
}
.top-panel--secondary {
  padding: 50px 0;
}
.top-panel--default {
  padding: 40px 0 30px;
}
@media screen and (min-width: 768px) {
  .top-panel--default {
    padding-top: 50px;
  }
}
.top-panel h1 {
  padding-bottom: 0;
}

.top-panel--primary,
.top-panel--secondary {
  display: flex;
  align-items: center;
  min-height: 290px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-panel--primary,
  .top-panel--secondary {
    min-height: 480px;
    margin-bottom: 50px;
  }
}
.top-panel--primary::before,
.top-panel--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(15, 8, 1, 0.33);
}
.top-panel--primary figure,
.top-panel--primary picture,
.top-panel--secondary figure,
.top-panel--secondary picture {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.top-panel--primary h1,
.top-panel--secondary h1 {
  color: #fff;
}

.share-links,
.social-links {
  margin: 0 -10px;
}
.share-links li,
.social-links li {
  display: inline-flex;
  vertical-align: middle;
  margin: 0 10px;
}
.share-links a,
.social-links a {
  font-size: 24px;
  line-height: 0.8;
  color: #4f3bd4;
}

.share-links a:active {
  color: #0f0801;
}
@media screen and (min-width: 1025px) {
  .share-links a:hover {
    color: #0f0801;
  }
}

.social-links a:active {
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .social-links a:hover {
    color: #fff;
  }
}

.gslide-inline {
  width: 100%;
  padding: 0;
  background-color: transparent;
}

.gslide-inline #search-modal {
  display: block;
}

.glightbox-button-hidden {
  display: none;
}

.glightbox-container.is-search-lightbox .goverlay {
  background-color: #4f3bd4;
  opacity: 0.98 !important;
}
.glightbox-container.is-search-lightbox .gslide-media {
  width: 100%;
  box-shadow: none;
}

:root {
  --ss-primary-color: #0f0801;
  --ss-bg-color: #fff;
  --ss-font-color: #0f0801;
  --ss-placeholder-color: #0f0801;
  --ss-disabled-color: #eee;
  --ss-border-color: #0f0801;
  --ss-focus-color: #4f3bd4;
  --ss-main-height: 40px;
  --ss-option-height: 40px;
  --ss-border-radius: 0;
  --ss-animation-timing: 0.3s;
}

.ss-main {
  min-height: 40px;
  padding: 0 10px;
  font: inherit;
  background: inherit;
  border: 1px solid #0f0801;
}
.ss-main:hover, .ss-main:active, .ss-main.ss-open-above, .ss-main.ss-open-below {
  border-color: #4f3bd4;
}
.ss-main:focus-visible, .ss-main:focus {
  outline: 0 none;
  box-shadow: none !important;
}
.is-keyboard-navigation .ss-main:focus {
  outline: 2px dashed #4f3bd4;
  outline-offset: 2px;
}
.ss-main .ss-values {
  padding: 0;
}
.ss-main .ss-values .ss-single,
.ss-main .ss-values .ss-placeholder,
.ss-main .ss-values .ss-multi-string {
  padding: 0 23px 0 0;
  line-height: 40px;
  color: #0f0801;
}
.ss-main .ss-arrow {
  width: 18px;
  height: 12px;
  margin: 0 6px 0 0;
}
.ss-main .ss-arrow path {
  stroke: #0f0801;
  stroke-width: 14;
}

.ss-content {
  font: inherit;
  background-color: #fff;
  border: 1px solid #0f0801;
  box-shadow: 0 0 10px -6px;
  z-index: 9999;
}
.ss-content .ss-list .ss-option {
  min-height: 40px;
  padding: 10px;
  line-height: 20px;
  color: #0f0801;
  background-color: #fff;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.ss-content .ss-list .ss-option:hover:not(.ss-disabled), .ss-content .ss-list .ss-option.ss-highlighted, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  color: #fff;
  background-color: #0f0801;
  border-left: 0;
}
.ss-content .ss-list .ss-option.ss-disabled {
  color: #666;
  opacity: 0.5;
  background-color: #fff;
}
.ss-content .ss-list .ss-optgroup-label {
  min-height: 40px;
  padding: 10px;
  font-weight: 700;
}

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