@charset "UTF-8";
/*************
example on using Animation Mixins:

// Define animation name, and properties
@include keyframes(fade-out) {
  0% { opacity: 1; }
  90% { opacity: 0; }
}
// Add animation to element
.element {
  width: 100px;
  height: 100px;
  background: black;
  @include animation('fade-out 5s 3');
  @include transition(all 0.4s ease);
}
*/
/* Define our custom Gutenberg colors: */
/* Text Colors: */
.single.single-post {
  background-color: #121212;
}
.single.single-post .site-main {
  background-color: #121212;
}
.single.single-post .post-categories li {
  font-family: "Neue Haas Grotesk Display Std", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  color: #A393BF;
  margin-top: 8px;
  padding: 0;
  position: relative;
  display: inline-block;
}
@media (max-width: 600px) {
  .single.single-post .post-categories li {
    font-size: 14px;
  }
}
.single.single-post .post-categories li:not(:first-of-type):before {
  content: "";
  height: 8px;
  width: 8px;
  background: #B0AFB0;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  margin: 0 12px 2px;
}
@media (max-width: 750px) {
  .single.single-post .is-layout-constrained > .alignleft,
.single.single-post .is-layout-constrained > .alignright {
    margin-left: auto;
    margin-right: auto;
  }
}
.single.single-post h1, .single.single-post h2, .single.single-post h3, .single.single-post h4 {
  color: #fff;
}
.single.single-post p, .single.single-post li, .single.single-post span, .single.single-post figcaption, .single.single-post cite {
  color: #F1F2F2;
}
.single.single-post h5, .single.single-post h6 {
  color: #A393BF;
}
.single.single-post h2 {
  padding: 16px 0px;
}
.single.single-post h2 + p {
  padding: 16px 0px;
}
.single.single-post p {
  padding: 12px 0;
}
@media (max-width: 600px) {
  .single.single-post p {
    padding: 8px 0;
  }
}
.single.single-post .entry-header li {
  list-style: none;
  padding: 16px 0;
}
.single.single-post .entry-header ul {
  margin: 0;
  padding: 0;
}
.single.single-post .wp-block-buttons {
  margin-top: 32px;
}
@media (max-width: 600px) {
  .single.single-post .wp-block-buttons {
    margin-top: 8px;
  }
}
.single.single-post .wp-block-quote,
.single.single-post blockquote {
  position: relative;
  margin: 24px 0;
}
.single.single-post .wp-block-quote:after,
.single.single-post blockquote:after {
  content: "";
  position: absolute;
  display: block;
  background: url("/wp-content/uploads/2024/07/Quotation-1.svg") center/contain no-repeat;
  height: 60px;
  width: 48px;
  top: 0;
  left: 0;
}
.single.single-post .wp-block-quote p,
.single.single-post blockquote p {
  font-family: "Neue Haas Grotesk Display Std", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
  margin: 0;
  line-height: 1.5;
  max-width: 690px;
  padding-left: 48px;
}
@media (max-width: 600px) {
  .single.single-post .wp-block-quote p,
.single.single-post blockquote p {
    font-size: 18px;
  }
}
.single.single-post cite {
  font-family: "Neue Haas Grotesk Display Std", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.12rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 8px;
  color: #bcbcbc;
  margin-top: 8px;
  font-style: normal;
  padding-left: 48px;
}
@media (max-width: 750px) {
  .single.single-post .wp-block-spacer {
    height: 24px !important;
  }
}
.single.single-post .container-prevealblog + .container-hrevealblog {
  margin-top: 40px;
}
.single.single-post .post-slider-group ul, .single.single-post .post-slider-group li {
  list-style: none;
}
.single.single-post .post-slider-group ul {
  margin: 0;
  padding: 0;
}
.single.single-post .post-slider-group h2 {
  max-width: 500px;
}
.single.single-post .entry-content {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin: 0 -50vw;
  position: relative;
  padding: 40px;
  overflow: hidden;
}
@media (max-width: 750px) {
  .single.single-post .entry-content {
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media (max-width: 750px) {
  .single.single-post .entry-content {
    margin: 0 -50vw;
    padding: 0 16px;
  }
}
.single.single-post .entry-content.twocol .entry-content-inner {
  max-width: 1648px;
}
.single.single-post .entry-content.twocol .entry-content-inner > * {
  max-width: unset;
}
.single.single-post .entry-content p a {
  color: #fff;
  font-family: "Neue Haas Grotesk Text Pro", "Arial", sans-serif;
  cursor: pointer !important;
  text-decoration: none;
  border-bottom: 1px solid;
  transition: color 0.2s;
}
.single.single-post .entry-content p a:visited {
  color: #fff;
}
.single.single-post .entry-content p a:hover, .single.single-post .entry-content p a:active, .single.single-post .entry-content p a:focus {
  outline: 0;
  color: #A393BF;
  text-decoration: none;
}
.single.single-post .entry-content-inner {
  padding-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  /* Style the radio button container */
  /* Style the selected radio button with a white dot */
  /* Adjust positioning of the radio button label */
  /* Style the checkbox container */
  /* Style the checked state with a white checkmark */
  /* Poll bar styles */
}
.single.single-post .entry-content-inner > * {
  max-width: 732px;
  margin-left: auto;
  margin-right: auto;
}
.single.single-post .entry-content-inner > .container-prevealblog + .container-hrevealblog {
  margin-top: 40px;
}
.single.single-post .entry-content-inner > .two-col-template {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin: 0 -50vw;
  padding: 0 40px;
  max-width: unset;
}
.single.single-post .entry-content-inner > .wp-block-image, .single.single-post .entry-content-inner > .wp-block-gallery, .single.single-post .entry-content-inner > .wp-block-video, .single.single-post .entry-content-inner > .wp-block-cover, .single.single-post .entry-content-inner > .wp-block-cover-image {
  max-width: unset;
  margin-left: unset;
  margin-right: unset;
  margin-top: 40px;
  margin-bottom: 40px;
}
.single.single-post .entry-content-inner > .wp-block-image.aligncenter, .single.single-post .entry-content-inner > .wp-block-gallery.aligncenter, .single.single-post .entry-content-inner > .wp-block-video.aligncenter, .single.single-post .entry-content-inner > .wp-block-cover.aligncenter, .single.single-post .entry-content-inner > .wp-block-cover-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .single.single-post .entry-content-inner > .wp-block-image, .single.single-post .entry-content-inner > .wp-block-gallery, .single.single-post .entry-content-inner > .wp-block-video, .single.single-post .entry-content-inner > .wp-block-cover, .single.single-post .entry-content-inner > .wp-block-cover-image {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.single.single-post .entry-content-inner ul,
.single.single-post .entry-content-inner ol {
  margin-bottom: 0;
  padding-top: 8px;
}
.single.single-post .entry-content-inner ul li,
.single.single-post .entry-content-inner ol li {
  padding: 0 0 24px;
}
.single.single-post .entry-content-inner ol {
  padding-left: 48px;
}
.single.single-post .entry-content-inner ul li {
  padding-left: 48px;
  position: relative;
  list-style: none;
}
.single.single-post .entry-content-inner ul li:before {
  content: "";
  position: absolute;
  top: 6px;
  background: #A393BF;
  left: 0;
  width: 16px;
  height: 16px;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=color],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=date],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=datetime-local],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=datetime],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=email],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=month],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=number],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=password],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=search],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=tel],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=text],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=time],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=url],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form input[type=week],
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form select,
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form textarea {
  border: 1px solid #fff;
  color: #fff;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme form .ginput_complex label,
.single.single-post .entry-content-inner .gfield_label {
  color: #A393BF;
}
.single.single-post .entry-content-inner .gform_title {
  color: #fff;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme span.name_first,
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme span.name_last {
  color: #A393BF;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme select,
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_radio .gform-field-label--type-inline,
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield-choice-input + label {
  color: #F1F2F2;
}
.single.single-post .entry-content-inner .gfield_error .gfield_label {
  color: #F1F2F2;
  margin: 0;
}
.single.single-post .entry-content-inner .gform_confirmation_wrapper {
  color: #F1F2F2;
}
.single.single-post .entry-content-inner .gfield_description.gform_fileupload_rules {
  color: #F1F2F2;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_error label {
  color: #ff7979 !important;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_error .gchoice label {
  color: #ff7979 !important;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_error input {
  outline: 0;
  background-color: #121212;
  border-color: none;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_error .validation_message {
  color: #ff7979 !important;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_error label {
  margin: 0;
}
.single.single-post .entry-content-inner .ginput_container_select::before {
  background-image: url("/wp-content/uploads/2024/07/tailless-line-arrow-down-1-arrow-down-keyboard.svg");
}
.single.single-post .entry-content-inner textarea::-webkit-input-placeholder,
.single.single-post .entry-content-inner input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #F1F2F2 !important;
}
.single.single-post .entry-content-inner textarea::-moz-placeholder,
.single.single-post .entry-content-inner input::-moz-placeholder {
  /* Firefox 19+ */
  color: #F1F2F2 !important;
}
.single.single-post .entry-content-inner textarea:-ms-input-placeholder,
.single.single-post .entry-content-inner input:-ms-input-placeholder {
  /* IE 10+ */
  color: #F1F2F2 !important;
}
.single.single-post .entry-content-inner textarea:-moz-placeholder,
.single.single-post .entry-content-inner input:-moz-placeholder {
  /* Firefox 18- */
  color: #F1F2F2 !important;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme ::-webkit-file-upload-button {
  font-weight: 400;
  font-size: 21px;
  line-height: 0.8;
  background-color: #4A4773 !important;
  color: #fff !important;
  padding: 16px 32px 16px !important;
  margin: 0;
  cursor: pointer !important;
  opacity: 1 !important;
  white-space: nowrap;
  position: relative;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: none;
  text-decoration: none;
  z-index: 1;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme ::-webkit-file-upload-button:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  height: calc(100% + 4px);
  width: 0;
  background: #4A4773;
  z-index: -1;
  transition: width 0.3s ease;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme ::-webkit-file-upload-button:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 40px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background: url("/wp-content/uploads/2024/06/arrow-right-sharp-light-2.svg") no-repeat center center;
  transition: background 0.3s ease;
  will-change: background;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 750px) {
  .single.single-post .entry-content-inner .gform_wrapper.gravity-theme ::-webkit-file-upload-button {
    font-size: 18px;
  }
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme ::-webkit-file-upload-button:hover, .single.single-post .entry-content-inner .gform_wrapper.gravity-theme ::-webkit-file-upload-button:active, .single.single-post .entry-content-inner .gform_wrapper.gravity-theme ::-webkit-file-upload-button:focus, .single.single-post .entry-content-inner .gform_wrapper.gravity-theme ::-webkit-file-upload-button:focus-visible {
  color: #fff !important;
}
.single.single-post .entry-content-inner .gform_footer input {
  font-weight: 400;
  font-size: 21px;
  line-height: 0.8;
  background-color: transparent !important;
  color: #fff !important;
  padding: 16px 32px 16px !important;
  margin: 0;
  cursor: pointer !important;
  opacity: 1 !important;
  white-space: nowrap;
  position: relative;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: none;
  text-decoration: none;
  z-index: 1;
}
.single.single-post .entry-content-inner .gform_footer input:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  height: calc(100% + 4px);
  width: 0;
  background: #4A4773;
  z-index: -1;
  transition: width 0.3s ease;
}
.single.single-post .entry-content-inner .gform_footer input:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 40px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background: url("/wp-content/uploads/2024/06/arrow-right-sharp-light-2.svg") no-repeat center center;
  transition: background 0.3s ease;
  will-change: background;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 750px) {
  .single.single-post .entry-content-inner .gform_footer input {
    font-size: 18px;
  }
}
.single.single-post .entry-content-inner .gform_footer input:hover, .single.single-post .entry-content-inner .gform_footer input:active, .single.single-post .entry-content-inner .gform_footer input:focus, .single.single-post .entry-content-inner .gform_footer input:focus-visible {
  color: #fff !important;
  background: #4A4773 !important;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_radio .gfield-choice-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #121212;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  /* Space between the radio button and the label */
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_radio .gfield-choice-input:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Center the dot */
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_radio .gform-field-label--type-inline {
  display: inline-block;
  vertical-align: middle;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield-choice-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  background-color: #121212;
  border: 1px solid #fff;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  /* Space between the checkbox and the label */
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield-choice-input:checked::before {
  content: "✔";
  /* Unicode for checkmark */
  font-size: 16px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Center the checkmark */
}
.single.single-post .entry-content-inner .gform_confirmation_wrapper:not(.gform-theme--framework) .gpoll_bar_juice:after, .single.single-post .entry-content-inner .gform_legacy_markup_wrapper .gpoll_bar_juice:after, .single.single-post .entry-content-inner .gravity-theme .gpoll_bar_juice:after,
.single.single-post .entry-content-inner .gform_confirmation_wrapper:not(.gform-theme--framework) .gpoll_bar_juice, .single.single-post .entry-content-inner .gform_legacy_markup_wrapper .gpoll_bar_juice, .single.single-post .entry-content-inner .gravity-theme .gpoll_bar_juice {
  background-image: none;
  background-color: #A393BF;
  border-radius: 0;
}
.single.single-post .entry-content-inner .gform_confirmation_wrapper:not(.gform-theme--framework) .green .gpoll_ratio_box, .single.single-post .entry-content-inner .gform_legacy_markup_wrapper .green .gpoll_ratio_box, .single.single-post .entry-content-inner .gravity-theme .green .gpoll_ratio_box {
  background-color: #121212;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_checkbox label, .single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_radio label,
.single.single-post .entry-content-inner .gform_confirmation_wrapper .gform_confirmation_message {
  font-size: 18px;
}
@media (max-width: 750px) {
  .single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_checkbox label, .single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield_radio label,
.single.single-post .entry-content-inner .gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 16px;
  }
}
.single.single-post .entry-content-inner .gform_confirmation_wrapper .gform_confirmation_message {
  text-align: center;
  display: block;
  margin: 40px auto;
}
.single.single-post .entry-content-inner .gform_wrapper.gravity-theme .gfield-choice-input + label {
  margin: 4px 0;
}
.single.single-post .entry-content-inner .gform_confirmation_wrapper:not(.gform-theme--framework) .gpoll_bar_count, .single.single-post .entry-content-inner .gform_legacy_markup_wrapper .gpoll_bar_count, .single.single-post .entry-content-inner .gravity-theme .gpoll_bar_count {
  display: none;
}
.single.single-post .entry-content-inner .gform_confirmation_wrapper:not(.gform-theme--framework) .gpoll_bar, .single.single-post .entry-content-inner .gform_legacy_markup_wrapper .gpoll_bar, .single.single-post .entry-content-inner .gravity-theme .gpoll_bar {
  box-shadow: none;
  height: 32px;
  max-height: unset;
}
.single.single-post .entry-content-inner .gform_confirmation_wrapper:not(.gform-theme--framework) .gpoll_wrapper, .single.single-post .entry-content-inner .gform_legacy_markup_wrapper .gpoll_wrapper, .single.single-post .entry-content-inner .gravity-theme .gpoll_wrapper {
  position: relative;
  width: 100%;
  border: 1px solid #fff;
}
.single.single-post .wp-lightbox-overlay .scrim {
  background: rgba(0, 0, 0, 0.8) !important;
}
.single.single-post .wp-lightbox-overlay button svg {
  fill: #fff !important;
}
.single.single-post .popup {
  top: -50px;
  left: -35px;
  display: none;
  position: absolute;
  background-color: #3D3D3D;
  color: #fff;
  padding: 11px;
  border-radius: 4px;
  z-index: 1000;
  font-size: 16px;
}
@media (max-width: 1000px) {
  .single.single-post .popup {
    top: unset;
    bottom: 70px;
    left: -5px;
  }
}
.single.single-post .popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: #3D3D3D transparent transparent transparent;
}
@media (max-width: 1000px) {
  .single.single-post .popup::after {
    margin-left: -36px;
  }
}
.single.single-post .post-meta-wrapper {
  position: relative;
}
.single.single-post .social-share-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  top: 16px;
  right: 0;
  position: absolute;
}
@media (max-width: 1000px) {
  .single.single-post .social-share-wrapper {
    margin-top: 24px;
    position: unset;
  }
}
.single.single-post .social-share-wrapper img {
  width: 29px;
  height: auto;
}
.single.single-post .social-share-wrapper .ns-buttons.ns-inline {
  margin: 0px;
}
.single.single-post .social-share-wrapper .ns-buttons.ns-inline a {
  margin-bottom: 0px;
}
.single.single-post .social-share-wrapper .ns-buttons.ns-inline a svg {
  color: #a0a0a0;
  width: 29px;
  height: auto;
}
.single.single-post .social-share-wrapper .ns-button:not(.ns-hover-swap):hover .ns-button-wrapper > span.ns-inverse {
  filter: brightness(0.6);
}
.single.single-post .featuredimg-wrap {
  height: calc(70vh - 100px);
  overflow: hidden;
}
.single.single-post .featuredimg-wrap img {
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 900px) {
  .single.single-post .featuredimg-wrap {
    height: 40vw;
  }
}
@media (max-width: 600px) {
  .single.single-post .featuredimg-wrap {
    height: 100%;
  }
}
.single.single-post .wp-block-columns {
  margin-bottom: 40px;
  gap: 124px;
}
@media (max-width: 1260px) {
  .single.single-post .wp-block-columns {
    gap: 40px;
  }
}
@media (max-width: 750px) {
  .single.single-post .wp-block-columns {
    margin-bottom: 24px;
    gap: 24px;
  }
}
.single.single-post .wp-block-column > p {
  padding-top: 0px;
}
.single.single-post .wp-block-cover {
  height: 100%;
}
.single.single-post .post-categories h5 {
  color: #A393BF;
  font-size: 24px;
  text-transform: unset;
  margin: 24px 0px 8px 0px;
}
.single.single-post .post-excerpt p {
  max-width: 1000px;
  margin: 0px;
  font-size: 20px;
}
@media (max-width: 600px) {
  .single.single-post .post-excerpt p {
    font-size: 16px;
  }
}
.single.single-post .post-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.single.single-post .post-meta h5, .single.single-post .post-meta h6, .single.single-post .post-meta span {
  color: #B0AFB0;
  margin: 0px;
}
.single.single-post .post-meta img {
  padding: 0px;
}
.single.single-post .entry-content {
  margin-top: 40px;
  padding-top: 0;
}
@media (max-width: 1000px) {
  .single.single-post .entry-content {
    margin-top: 0;
  }
}

.next-post-slider-group {
  background-color: #1E1E1E;
  padding: 24px 40px 48px;
}
.next-post-slider-group .next-post-slider {
  margin-top: 16px;
}
.next-post-slider-group .next-post-slider a:hover {
  text-decoration: none;
}
.next-post-slider-group .next-post-slider a:focus {
  text-decoration: underline;
  color: #fff;
}
.next-post-slider-group .next-post-slider h3 {
  margin-top: 8px;
  margin-bottom: 20px;
  max-width: 90%;
}
.next-post-slider-group .next-post-slider h5 {
  font-size: 14px;
}
.next-post-slider-group .next-post-slider .slick-slide a {
  max-width: 534px;
}
@media (max-width: 750px) {
  .next-post-slider-group .next-post-slider .slick-slide figure {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    max-width: calc(100vw - 32px);
  }
}
.next-post-slider-group .next-post-slider .slick-slide figure img {
  max-height: 300px;
  width: auto;
  object-fit: cover;
  height: 100%;
  min-height: 300px;
  width: 100%;
}
@media (max-width: 750px) {
  .next-post-slider-group .next-post-slider .slick-slide figure img {
    height: 54vw;
    min-height: unset;
    max-height: unset;
  }
}

@media (max-width: 1000px) {
  .reverseStackCols {
    flex-direction: column-reverse !important;
  }
}

.fwpl-layout.careers-list .fwpl-result:after {
  right: 6px !important;
}

.fwpl-layout.careers-list .fwpl-result:hover:after {
  transition: transform 0.3s ease;
  transform: translate(6px, -50%);
}

.facetwp-type-search .facetwp-input-wrap input[type=text] {
  font-size: 18px !important;
}

.slider-text-group p {
  padding-bottom: 0px;
}

#benefits, #openings {
  position: absolute;
  top: -100px;
}

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