:root {
  --body-black: #10121a;
  --white: white;
  --black-lighter: #1b1d27;
  --light-grey-background: #f0f0f2;
  --black-light: #343641;
  --main-yellow: #f3f3f0;
  --dark-khaki: #a6a386;
  --dark-grey: #acafbe;
  --sea-green: #68927a;
  --silver-2: #c7c5ac;
  --silver: #b7b7ba;
  --honeydew: #bedaca;
  --white-smoke: #eeeff3;
  --gainsboro: #e4e6eb;
  --dim-grey: #586958;
  --grey: #748374;
  --dark-sea-green: #9ca686;
  --rosy-brown: #c99696;
  --tan: #cab7a8;
  --dim-grey-2: #796b60;
  --grey-2: #86796f;
  --beige: #d8d6c3;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-page-count {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--body-black);
  font-family: Manrope, sans-serif;
  font-size: 1vw;
  line-height: 1.2em;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--body-black);
  text-decoration: none;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

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

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.section {
  z-index: 20;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.section.with-bg-black {
  background-color: var(--body-black);
  color: var(--white);
}

.section.is-fullscreen-hero {
  z-index: 5;
  background-color: var(--body-black);
  overflow: visible;
}

.section.in-ui-kit {
  flex: 1;
}

.section.is-blog-article {
  overflow: visible;
}

.section.is-slider-sec {
  z-index: 5;
  background-color: #272b3d;
  height: 100vh;
  overflow: visible;
}

.section.with-bg-black-light {
  background-color: var(--black-lighter);
  color: var(--white);
}

.section.with-bg-black-light.with-border-bottom-light {
  border-bottom: 1px solid #4d4f5a;
}

.section.with-sticky-content {
  overflow: visible;
}

.section.with-bg-grey {
  background-color: var(--light-grey-background);
}

.section.with-border-bottom {
  border-bottom: 1px solid var(--body-black);
}

.section.with-border-top {
  border-top: 1px solid var(--body-black);
}

.section.is-term-sec {
  border-bottom: 1px solid var(--body-black);
  overflow: visible;
}

.section.is-404 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.section.with-border-bottom-grey {
  border-bottom: 1px solid #53555f;
}

.container {
  z-index: 10;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8em;
  padding-right: 8em;
  position: relative;
}

.container.is-full-width {
  max-width: 1920px;
  padding-left: 3.5em;
  padding-right: 3.5em;
}

.container.is-hero-header-1 {
  max-width: 2000px;
}

.container.in-audience {
  max-width: none;
  padding-left: 6em;
  padding-right: 6em;
}

.padding-inner {
  padding: 6em 0;
}

.padding-inner.padding-bottom-0em {
  padding-bottom: 0;
}

.hero-1-inner {
  max-width: 42em;
  position: relative;
}

.heading {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 5em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading.hero-1-title {
  text-transform: uppercase;
  margin-bottom: .5em;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 5em;
  font-weight: 500;
  line-height: 1em;
}

.heading.is-fullscreen-hero-1-title-1 {
  color: var(--white);
  letter-spacing: -.03em;
  text-indent: -.03em;
  text-transform: uppercase;
  max-width: 7em;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 8em;
  font-weight: 400;
  line-height: 1em;
}

.heading.is-style-guide-title {
  letter-spacing: -.03em;
  margin-bottom: 1em;
  font-size: 3em;
  font-weight: 600;
}

.heading.is-overview-title-1 {
  text-align: left;
  letter-spacing: -.04em;
  text-indent: -.04em;
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 3.8em;
  font-weight: 400;
  line-height: 1.3em;
}

.heading.password {
  text-align: left;
  letter-spacing: -.03em;
  text-indent: -.03em;
  margin-top: .6em;
  margin-bottom: .7em;
  font-size: 3em;
}

.heading.is-gallery-title-2 {
  z-index: 5;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 6em;
  font-weight: 800;
  line-height: 1.1em;
  position: relative;
}

.heading.is-article-hero-1 {
  text-align: center;
  letter-spacing: .02em;
  text-indent: .02em;
  text-transform: uppercase;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 6em;
  font-weight: 300;
  line-height: 1.2em;
}

.heading.is-title-1 {
  letter-spacing: -.03em;
  margin-bottom: 1.1em;
  font-size: 2.4em;
  line-height: 1em;
}

.heading.is-title-1.is-lowercase {
  color: #10121a99;
  text-transform: lowercase;
}

.heading.is-article-hero-2 {
  text-align: left;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 4.1em;
  font-weight: 400;
  line-height: 1.3em;
}

.heading.is-title-2 {
  letter-spacing: -.03em;
  margin-bottom: 1.7em;
  font-size: 2em;
  font-weight: 700;
  line-height: 1em;
}

.heading.hero-1-title-2 {
  letter-spacing: -.05em;
  margin-bottom: .6em;
  font-size: 6em;
  font-weight: 800;
  line-height: 1em;
}

.heading.hero-1-title-2.in-gallery {
  margin-bottom: 0;
}

.heading.is-about-title-2 {
  text-align: center;
  margin-top: .5em;
  margin-bottom: 1.1em;
  font-size: 5em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-audience-title-1 {
  z-index: 10;
  color: var(--white);
  margin-top: 18vh;
  margin-bottom: 13vh;
  font-size: 10em;
  font-weight: 500;
  position: relative;
}

.heading.is-overview-title {
  color: var(--white);
  text-align: center;
  letter-spacing: .03em;
  text-indent: .03em;
  text-transform: uppercase;
  max-width: 12em;
  margin-left: auto;
  margin-right: auto;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 7em;
  font-weight: 400;
  line-height: 1.3em;
}

.heading.is-article-1-title {
  text-transform: uppercase;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 7em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-review-name {
  letter-spacing: -.05em;
  font-size: 6em;
  font-weight: 800;
  line-height: 1em;
}

.heading.is-social-hero-title {
  color: var(--white);
  letter-spacing: -.03em;
  text-indent: -.03em;
  font-size: 10em;
  line-height: 1em;
}

.heading.is-title-3 {
  letter-spacing: -.03em;
  margin-bottom: .5em;
  font-size: 5em;
  font-weight: 700;
  line-height: 1em;
}

.heading.is-overview-title-3 {
  color: #ffffffb3;
  text-align: center;
  letter-spacing: .03em;
  text-indent: .03em;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 4em;
  font-weight: 300;
  line-height: 1.3em;
}

.heading.in-hero-header-3 {
  text-align: center;
  letter-spacing: .02em;
  text-indent: .02em;
  text-transform: uppercase;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 5em;
  font-weight: 300;
  line-height: 1.2em;
}

.heading.in-hero-header-3-title-2 {
  text-align: center;
  letter-spacing: .02em;
  text-indent: .02em;
  text-transform: uppercase;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 6em;
  font-weight: 300;
  line-height: 1em;
}

.heading.is-small-title-1 {
  letter-spacing: -.03em;
  margin-bottom: 1.1em;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.1em;
}

.heading.is-overview-title-2 {
  letter-spacing: -.02em;
  margin-bottom: .5em;
  font-size: 4em;
  font-weight: 700;
  line-height: 1em;
}

.heading.is-overview-title-2.is-2nd {
  margin-bottom: 1em;
}

.heading.is-audience-title-2 {
  color: var(--white);
  letter-spacing: .02em;
  text-transform: uppercase;
  max-width: 7em;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 12em;
  font-weight: 400;
  line-height: 1em;
}

._3d-for-images {
  z-index: 8;
  perspective: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-animation-trigger {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.image-animation-trigger.is-3d-image {
  overflow: hidden;
}

.image-animation-trigger.with-borders {
  border: 1px solid var(--body-black);
}

.animation-color-bg {
  z-index: 15;
  background-color: var(--white);
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
}

.animation-color-bg.is-black {
  background-color: var(--body-black);
}

.animation-color-bg.is-black-light {
  background-color: var(--black-lighter);
}

.animation-color-bg.is-grey {
  background-color: var(--light-grey-background);
}

.animation-color-bg.is-2nd {
  z-index: 12;
}

.animation-color-bg.is-2nd.is-color-2nd {
  background-color: var(--black-light);
}

.animation-color-bg.is-2nd.is-black {
  background-color: var(--body-black);
}

.animation-color-bg.is-2nd.is-black-light {
  background-color: var(--black-light);
}

.animation-color-bg.is-1st.is-color-1st {
  background-color: var(--white);
}

.animation-color-bg.is-1st.is-color-black {
  background-color: var(--body-black);
}

.animation-color-bg.is-1st.is-white {
  background-color: var(--white);
}

.cover-image {
  z-index: 5;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cover-image.is-3d-image {
  width: 113%;
  max-width: none;
  height: 113%;
  inset: auto;
}

.cover-image.is-parallax {
  height: 140%;
  top: auto;
  bottom: auto;
}

.accordion-title {
  letter-spacing: .01em;
  margin-bottom: 0;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.1em;
  text-decoration: none;
}

.accordion-title.in-testimonial {
  color: #272b3d;
  margin-left: .2em;
  margin-right: .2em;
  font-size: 1.3em;
}

.accordion-arrow {
  z-index: 3;
  width: 1.5em;
  height: 1.5em;
  font-size: 1em;
  position: absolute;
  left: 6em;
}

.accordion-arrow.in-newsletter {
  margin-left: 1em;
  position: relative;
  left: auto;
}

.accordion-arrow.is-relative {
  position: relative;
  left: auto;
}

.accordion {
  flex: none;
  align-self: stretch;
  margin-left: 0;
  margin-right: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.accordion.in-newsletter {
  z-index: 10;
  width: 100%;
}

.accordion-line {
  background-color: var(--body-black);
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.accordion-line.in-newsletter {
  height: 3px;
}

.accordion-inner-block {
  z-index: 5;
  opacity: 1;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 8%;
  margin-right: 1em;
  display: flex;
  position: relative;
  top: 1px;
}

.accordion-inner-block.in-newsletter {
  flex-direction: row;
  width: 100%;
  margin-right: 0;
}

.accordion-toggle {
  white-space: normal;
  border-bottom: 1px solid #272b3d33;
  justify-content: flex-start;
  align-items: center;
  min-height: 5em;
  padding: 0;
  transition: border-color .3s;
  display: flex;
}

.accordion-toggle:hover {
  border-bottom-color: #adb5bd;
}

.accordion-toggle.in-reviews {
  color: #272b3db3;
  justify-content: center;
  min-height: 10em;
  padding-left: 12em;
  padding-right: 12em;
  transition: color .2s, border-color .3s;
}

.accordion-toggle.in-reviews:hover {
  color: #272b3d;
}

.accordion-toggle.in-newsletter {
  border-bottom-color: #0000;
  justify-content: center;
  width: 100%;
  min-height: 10em;
}

.accordion-content {
  background-color: #0000;
  border-bottom: 1px solid #272b3d33;
  display: block;
  position: relative;
}

.accordion-content.w--open {
  position: relative;
}

.accordion-content.in-newsletter {
  border-bottom-color: #0000;
}

.accordion-inner {
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 3em 2em;
  display: flex;
}

.accordion-inner.in-testimonial {
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 66em;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 5em 4em;
}

.accordion-inner.in-newsletter {
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 67em;
  margin-left: auto;
  margin-right: auto;
  padding: 6em 0;
  display: flex;
}

.listing-2-cms-list {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.listing-2-block-1 {
  color: var(--body-black);
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding-top: 4em;
  padding-left: 4em;
  padding-right: 4em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.listing-2-title-text {
  margin-bottom: 1em;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.2em;
}

.listing-2-title-text.is-larger {
  font-size: 2.3em;
}

.listing-2-title-text.is-audience {
  font-size: 1.6em;
}

.listing-2-content-text {
  margin-bottom: 2em;
  line-height: 1.9em;
}

.listing-2-content-text.is-larger {
  font-size: 1.2em;
}

.listing-2-image {
  z-index: 5;
  width: 100%;
  height: 100%;
  min-height: 22em;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.listing-2-cms-item {
  z-index: 1;
  border: 1px solid #cfd1d8;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-top: -1px;
  margin-left: -1px;
  transition: border-color .2s;
  display: flex;
  position: relative;
}

.listing-2-cms-item:hover {
  z-index: 2;
  border-color: var(--body-black);
}

.plus-text {
  font-size: 1.4em;
  font-weight: 200;
  position: absolute;
  inset: 3.4em 2.8em auto auto;
}

.plus-text.is-3rd {
  top: .5em;
  right: 0;
}

.empty-state-default {
  background-color: var(--body-black);
  color: var(--white);
  border: 1px solid #272b3d33;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5em;
  display: flex;
}

.empty-state-default.is-hero-header-1 {
  min-height: 10em;
}

.content-text-2 {
  color: var(--main-yellow);
  max-width: 17em;
  font-size: 1.1em;
  line-height: 1.5em;
}

.main-button {
  z-index: 10;
  border: 2px solid var(--body-black);
  color: var(--body-black);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em 2.3em;
  font-weight: 700;
  display: flex;
  position: relative;
  overflow: hidden;
}

.main-button.is-light {
  color: var(--white);
  border-color: #ffffff59;
  transition: border-color .2s;
}

.main-button.is-light:hover {
  border-color: var(--white);
}

.button-text {
  z-index: 10;
  font-size: .8em;
  line-height: 1em;
  position: relative;
}

.button-icon {
  z-index: 8;
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 1.8em;
  display: none;
  position: absolute;
}

.button-background {
  z-index: 2;
  background-color: var(--body-black);
  flex: none;
  width: 20em;
  height: 20em;
  display: none;
  position: absolute;
}

.button-background.is-white {
  background-color: var(--white);
}

.about-grid-1 {
  z-index: 10;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  position: relative;
  top: -1px;
}

.grid-large-text-1 {
  color: var(--main-yellow);
  margin-bottom: .1em;
  font-size: 5em;
  line-height: 1.1em;
}

.grid-small-text-1 {
  color: var(--dark-khaki);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.1em;
}

.about-grid-image-1 {
  width: 100%;
  height: 20em;
  position: relative;
  overflow: hidden;
}

.form-button {
  z-index: 1;
  border: 2px solid var(--body-black);
  color: var(--body-black);
  text-align: center;
  letter-spacing: .02em;
  text-indent: .02em;
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.3em 2em;
  font-weight: 600;
  line-height: 1em;
  transition: color .2s, background-color .2s;
  position: relative;
}

.form-button:hover {
  background-color: var(--body-black);
  color: #eeede8;
}

.form-button:focus {
  border: 0 solid #0000;
  box-shadow: 1px 1px 20px #d94334;
}

.form-button:focus-visible, .form-button[data-wf-focus-visible] {
  border-width: 0;
  border-color: #0000;
}

.form-button.in-password {
  z-index: 10;
  border-color: var(--body-black);
  color: var(--white);
  background-color: #118f47;
  margin-top: -2px;
}

.form-button.in-password:hover {
  background-color: var(--body-black);
  color: var(--white);
}

.form-button.is-search-button {
  z-index: 10;
}

.form-inner {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.form-error-paragraph {
  color: #191c1f;
  line-height: 1.6;
}

.checkbox-field {
  align-items: center;
  width: 100%;
  margin-bottom: 1.3em;
  padding-left: 0;
  display: flex;
}

.form-error-link {
  color: #0a223f;
  text-decoration: underline;
}

.form-success-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8em;
  line-height: 1.5em;
}

.checkbox {
  cursor: pointer;
  background-color: #0000;
  border-width: .25em;
  border-color: #101118;
  border-radius: 0;
  flex: none;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
  margin-left: 0;
  margin-right: 1em;
  transition: background-color .3s;
  box-shadow: 0 0 3px 1px #0000;
}

.checkbox.w--redirected-checked {
  background-color: #191c1f;
  background-image: url('../images/done_white_24dp.svg');
  background-size: 1em;
  border-width: .25em;
  border-color: #191c1f;
  margin-left: 0;
}

.checkbox.w--redirected-focus, .checkbox.w--redirected-focus-visible {
  box-shadow: 0 0 3px 1px #d94334;
}

.form-field {
  z-index: 5;
  border: 1px solid var(--dark-grey);
  background-color: var(--white);
  color: #101118;
  text-align: center;
  letter-spacing: .02em;
  text-transform: uppercase;
  border-radius: 0;
  width: 100%;
  min-height: 4em;
  margin-top: -1px;
  margin-bottom: 0;
  padding: .5em 1.5em;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.1em;
  transition: background-color .2s, border-color .5s;
  position: relative;
}

.form-field:hover {
  z-index: 8;
  border-color: var(--body-black);
}

.form-field:focus {
  border-color: var(--body-black);
  background-color: #0000;
}

.form-field::placeholder {
  color: #10121a8c;
}

.form-field.text-area {
  min-height: 13em;
  margin-bottom: 1.2em;
  padding-top: 1.5em;
}

.form-field.in-password {
  border-width: 2px;
}

.form-field.in-newsletter {
  border-width: 2px;
  border-radius: 0;
  height: 100%;
  margin: 0;
  padding-left: 2em;
  font-size: 1em;
}

.form-field.is-search {
  border-width: 2px;
  top: 2px;
}

.checkbox-label {
  color: #6c757d;
  margin-top: .5em;
  margin-bottom: .5em;
  line-height: 1.4em;
}

.form-success-message {
  background-color: var(--sea-green);
  color: #fff;
  border: 1px solid #f1fff8;
  width: 100%;
  padding: 15em 5em;
}

.form {
  z-index: 10;
  flex: none;
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.form-error-message {
  background-color: #ffccd5;
  border: 1px solid #c9184a;
  padding: 2em;
}

.close-button-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 1.3em;
}

.close-button-border {
  border: 1px solid var(--white);
  opacity: .3;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.service-1-bg-image {
  z-index: 10;
  background-color: var(--white);
  display: none;
  position: absolute;
  inset: 0%;
}

.reviews {
  border-top: 1px solid #272b3d33;
  width: 100%;
}

.rich-text h4 {
  margin-top: 1.5em;
  margin-bottom: .8em;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1.1em;
}

.rich-text h6 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text h5 {
  margin-top: 1.5em;
  margin-bottom: 1em;
  font-size: 1.7em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text a {
  color: #a21f1f;
  background-image: url('../images/open_in_new_FILL0_wght600_GRAD0_opsz48.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: .8em;
  margin-right: .1em;
  padding-right: 1.1em;
  text-decoration: underline;
  transition: opacity .2s;
}

.rich-text a:hover {
  opacity: .8;
  color: var(--body-black);
  text-decoration: underline;
}

.rich-text h1 {
  margin-bottom: .6em;
  font-size: 4em;
  font-weight: 700;
  line-height: 1em;
}

.rich-text h2 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: .7em;
  font-size: 2.1em;
  font-weight: 700;
  line-height: 1.3em;
}

.rich-text ul {
  margin-bottom: 0;
  padding-top: 1.5em;
  padding-left: 2.5em;
}

.rich-text p {
  margin-bottom: .8em;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.7em;
}

.rich-text strong {
  font-weight: 600;
}

.rich-text h3 {
  margin-top: 1.1em;
  margin-bottom: .5em;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.1em;
}

.rich-text.in-testimonial {
  margin-top: 2em;
  font-size: 1.7em;
}

.rich-text li {
  margin-bottom: .6em;
  font-size: 1.2em;
  line-height: 1.5em;
}

.rich-text ol {
  margin-bottom: 0;
  padding-top: 1.5em;
  padding-left: 2.5em;
}

.rich-text blockquote {
  border-left-width: 3px;
  border-left-color: var(--body-black);
  color: #272b3d;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  padding: 1.5em;
  font-size: 1.2em;
  line-height: 1.7em;
}

.rich-text.is-author-text {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
}

.rich-text img {
  margin-top: 50px;
  margin-bottom: 25px;
}

.rich-text figcaption {
  color: #10121a99;
  margin-top: -5px;
  font-size: 1.1em;
  line-height: 1.1em;
}

.rich-text.is-smaller {
  font-size: .9em;
}

.testimonial-title-1 {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 500;
  line-height: 1.1em;
}

.grid-contact {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-1-text-1 {
  text-align: left;
  font-size: 1.9em;
  font-weight: 600;
  line-height: 1.2em;
}

.contact-1-divider {
  background-color: #272b3d33;
  width: 100%;
  height: 1px;
  margin-top: 4em;
  margin-bottom: 4em;
}

.footer-title-text-1 {
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.2em;
}

.empty-state-hidden {
  display: none;
}

.grid-about-2 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
}

.grid-block-1 {
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 30em;
  display: flex;
  position: relative;
}

.grid-content-2 {
  background-color: var(--white);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  padding: 5em;
  display: flex;
}

.grid-text-2 {
  text-transform: uppercase;
  max-width: 20em;
  font-size: 1.5em;
  line-height: 1.3em;
}

.grid-content-3 {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 8em 5em;
  display: flex;
}

.grid-text-3 {
  text-align: center;
  letter-spacing: -.05em;
  text-indent: -.05em;
  margin-top: .1em;
  margin-bottom: .1em;
  font-size: 4.6em;
  font-weight: 700;
  line-height: 1.1em;
}

.grid-text-4 {
  text-align: center;
  letter-spacing: .1em;
  text-indent: .1em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 600;
}

.grid-block-2 {
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 60em;
  display: flex;
  position: relative;
}

.carousel {
  z-index: 10;
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: auto;
  margin-left: -.5em;
  margin-right: -.5em;
  display: flex;
  position: relative;
}

.carousel-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 6em;
  padding-right: 6em;
  display: flex;
}

.carousel-button {
  opacity: .4;
  background-image: url('../images/arrow_right_FILL0_wght400_GRAD0_opsz48.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 2em;
  border: 1px solid #0000;
  border-radius: 50%;
  width: 5em;
  height: 5em;
  margin: auto 0 0 auto;
  font-size: 1em;
  transition: opacity .35s;
  display: flex;
  position: absolute;
  left: 7em;
  right: 0;
}

.carousel-button:hover {
  border-color: var(--body-black);
  opacity: 1;
  background-size: 2.6em;
}

.carousel-button.is-left {
  background-image: url('../images/arrow_left_FILL0_wght400_GRAD0_opsz48.svg');
  left: 0;
  right: 6em;
}

.carousel-button.is-left:hover {
  border-right-color: #272b3d;
}

.carousel-dot-custom-design {
  width: 1px;
  height: 1px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.carousel-nav {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16em;
  height: 5em;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
  bottom: 0;
}

.carousel-slide {
  width: 100%;
}

.carousel-mask {
  height: auto;
  margin-bottom: 9em;
  overflow: visible;
}

.review-title-2 {
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.7em;
}

.carousel-max-width {
  width: 100%;
  max-width: 64em;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-3-title {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 5em;
  font-weight: 500;
  line-height: 1.1em;
}

.portfolio-3-block {
  opacity: .4;
  border-bottom: 1px solid #fff9;
  justify-content: space-between;
  align-items: center;
  padding-top: 10vh;
  padding-bottom: 10vh;
  transition: opacity .2s, border-color .2s;
  display: flex;
  position: relative;
}

.portfolio-3-block:hover {
  opacity: 1;
  border-bottom-color: #fffc;
}

.portfolio-3-picture {
  z-index: -10;
  opacity: 0;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  inset: 0%;
}

.portfolio-3-cms {
  padding-bottom: 14em;
  position: static;
}

.portfolio-3-cms-item {
  padding-left: 6em;
  padding-right: 6em;
  position: static;
}

.portfolio-3-overlay-color {
  z-index: -5;
  mix-blend-mode: multiply;
  background-color: #20233180;
  position: absolute;
  inset: 0%;
}

.portfolio-3-cms-list {
  position: static;
}

.navbar-1 {
  z-index: 500;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #0000;
  border-bottom: 1px solid #ffffff4d;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
  overflow: visible;
}

.nav-1-row-1 {
  z-index: 20;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  border-bottom: 1px solid #ffffff4d;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  height: 5em;
  display: flex;
  position: relative;
  top: -1px;
}

.nav-1-row-1.is-dark {
  border-bottom-color: #10121a40;
  top: -1px;
}

.nav-1-column-1 {
  display: flex;
}

.nav-1-brand {
  color: var(--white);
  border-right: 1px solid #ffffff4d;
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-left: 2.5em;
  padding-right: 2.5em;
  transition: border-color .2s, background-color .2s;
  display: flex;
  top: 1px;
  left: -1px;
}

.nav-1-brand:hover {
  background-color: #ffffff1c;
}

.nav-1-brand.is-dark {
  color: var(--body-black);
  border-color: #10121a40 #10121a40 #0000 #0000;
  border-top-style: solid;
  border-top-width: 1px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-style: solid;
  border-left-width: 1px;
}

.nav-1-brand.is-dark:hover {
  z-index: 40;
  background-color: var(--white);
  border: 1px solid #00000096;
}

.circle-button-text-1 {
  color: var(--white);
  text-align: center;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: .7em;
  line-height: 1.1em;
  display: none;
  position: absolute;
}

.circle-button-text-1.is-social-text {
  color: #272b3dcc;
  display: none;
}

.circle-button-border {
  z-index: 5;
  border: 1px solid #ffffff4d;
  border-radius: 50%;
  position: absolute;
  inset: 0%;
}

.circle-button-border.with-background-color {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #ffffff17;
}

.circle-button-border.is-social-border {
  border-color: #272b3d2e;
}

.circle-button-border.in-gallery {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: #00000017;
}

.circle-button-icon {
  z-index: 10;
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 1.7em;
  position: absolute;
}

.circle-button-icon.is-social {
  font-size: 1.3em;
}

.circle-button-text-block {
  z-index: 20;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.portfolio-3-button {
  z-index: 20;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 8em;
  height: 8em;
  display: flex;
  position: relative;
}

.portfolio-3-link {
  color: var(--white);
}

.portfolio-3-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 2em;
  display: flex;
}

.portfolio-3-services {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.5em;
}

.portfolio-3-service-list {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.portfolio-3-service-item {
  padding-right: 2em;
}

.portfolio-3-service-link {
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid #0000;
  padding-top: .3em;
  padding-bottom: .3em;
  font-size: 1.1em;
  transition: border-color .2s;
}

.portfolio-3-service-link:hover {
  border-bottom-color: var(--white);
}

.nav-1-column-2 {
  z-index: 20;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  top: 1px;
}

._2nd-nav-link {
  color: #fffc;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid #0000;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 1em 1.8em;
  font-size: .85em;
  font-weight: 800;
  transition: background-color .2s, color .2s, border-color .2s;
  display: flex;
}

._2nd-nav-link:hover {
  border-bottom-color: var(--white);
  color: #fff;
}

._2nd-nav-link.w--current {
  border-bottom-color: var(--white);
  color: var(--white);
}

._2nd-nav-link.is-cta {
  color: #fff;
  background-color: #ffffff12;
  background-image: url('../images/horizontal_split_white_300.svg');
  background-position: 84%;
  background-repeat: no-repeat;
  background-size: 1.6em;
  border: 1px solid #0000;
  border-left-color: #ffffff4d;
  padding-left: 3.3em;
  padding-right: 5.5em;
}

._2nd-nav-link.is-cta:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--body-black);
  background-image: url('../images/horizontal_split_FILL0_wght600_GRAD0_opsz48.svg');
}

._2nd-nav-link.is-cta.is-2nd {
  color: var(--body-black);
  background-image: url('../images/horizontal_split_FILL0_wght600_GRAD0_opsz48.svg');
  border-top-color: #10121a40;
  border-left-color: #10121a40;
  margin-left: -1px;
}

._2nd-nav-link.is-cta.is-2nd:hover {
  z-index: 30;
  border-color: var(--body-black);
  background-color: var(--body-black);
  color: var(--white);
  background-image: url('../images/horizontal_split_white_300.svg');
}

._2nd-nav-link.for-aside-menu {
  color: #fff;
  background-image: url('../images/arrow-right-white.svg');
  background-position: 15%;
  background-repeat: no-repeat;
  background-size: 1.8em;
  border: 1px solid #0000;
  border-left-color: #ffffff4d;
  padding-left: 5.5em;
  padding-right: 3.3em;
}

._2nd-nav-link.for-aside-menu:hover {
  border: 1px solid var(--white);
  background-color: #ffffff1a;
}

._2nd-nav-link.for-aside-menu.is-dark {
  color: var(--body-black);
  background-image: url('../images/menu-dropdown-icon-black.svg');
  border-top-color: #10121a40;
  border-left-color: #10121a40;
}

._2nd-nav-link.for-aside-menu.is-dark:hover {
  z-index: 30;
  background-color: var(--white);
  border-color: #0000007d;
}

.nav-1-menu-button {
  z-index: 20;
  color: var(--white);
  letter-spacing: .2em;
  text-indent: .2em;
  text-transform: uppercase;
  border: 1px solid #0000;
  border-right-color: #ffffff4d;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  padding: 0 2.7em 0 2.5em;
  font-size: 1em;
  font-weight: 600;
  transition: background-color .2s;
  display: flex;
  position: relative;
  top: 1px;
}

.nav-1-menu-button:hover {
  z-index: 30;
  border-color: var(--white);
  background-color: #fff3;
}

.nav-1-menu-button.is-dark {
  color: var(--body-black);
  border-color: #10121a40 #10121a40 #0000 #0000;
  border-top-style: solid;
  border-top-width: 1px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-style: solid;
  border-left-width: 1px;
}

.nav-1-menu-button.is-dark:hover {
  z-index: 30;
  background-color: var(--silver-2);
  border: 1px solid #10121a99;
}

.nav-1-menu-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-right: .5em;
  font-size: 1.5em;
}

.nav-1-menu-text-block {
  font-size: .85em;
}

.hero-portfolio {
  width: 100%;
  padding-top: 14em;
  position: relative;
  overflow: hidden;
}

.main-circle-button {
  z-index: 20;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 8em;
  height: 8em;
  display: flex;
  position: relative;
}

.main-circle-button.is-smaller {
  width: 6em;
  height: 6em;
}

.main-circle-button.is-mini {
  width: 4em;
  height: 4em;
}

.dark-body {
  background-color: #272b3d;
}

.topics-4 {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.topic-4-name {
  margin-right: .8em;
  font-size: 1.9em;
  font-weight: 500;
  line-height: 1.2em;
  position: relative;
}

.topic-4-image-size {
  border: 1px solid #10121a80;
  flex: none;
  width: 11em;
  height: 100%;
  position: relative;
}

.topic-4-link-block {
  color: var(--body-black);
  border-bottom: 1px solid #272b3d4d;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  width: 100%;
  min-height: 13em;
  padding-top: 3em;
  padding-bottom: 3em;
  transition: min-height .6s cubic-bezier(.075, .82, .165, 1), padding .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
}

.topic-4-link-block:hover {
  border-bottom-color: #272b3d;
  min-height: 14em;
  padding-top: 4em;
  padding-bottom: 4em;
}

.topic-4-link-block.w--current {
  color: #272b3d;
  border-bottom-color: #272b3d;
}

.topic-4-link-block.is-overview-block {
  min-height: 11em;
  padding-top: 2em;
  padding-bottom: 2em;
}

.topic-4-link-block.is-overview-block:hover {
  min-height: 12em;
  padding-top: 3em;
  padding-bottom: 3em;
}

.topics-4-list {
  grid-column-gap: 3em;
  grid-row-gap: 0em;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.topic-4-item {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.topic-4-number {
  color: #10121ab3;
  text-transform: uppercase;
  margin-left: 3.3em;
  margin-right: 3.3em;
  font-weight: 600;
}

.topic-4-icon {
  width: 1em;
  height: 1em;
  margin-left: .9em;
  font-size: 1.7em;
}

.topic-4-icon-block {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.footer-blur-block {
  z-index: 20;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  text-align: center;
  background-color: #1f1e1870;
  border: 1px solid #85847b69;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5em;
  display: flex;
  position: relative;
}

.footer-1-social-name {
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .85em;
  font-weight: 600;
}

.uppercase-title {
  letter-spacing: .2em;
  text-indent: .2em;
  text-transform: uppercase;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1em;
}

.footer-tab-link {
  color: #272b3d80;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 2.5em;
  padding: .7em 0;
  transition: color .2s;
  display: flex;
}

.footer-tab-link:hover {
  color: #272b3d;
}

.footer-tab-link.w--current {
  color: #272b3d;
  background-color: #0000;
}

.tab-menu {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.tab-inner {
  z-index: 10;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tab-content {
  flex-direction: row;
  align-items: flex-start;
  padding-top: 1.5em;
}

.footer-tab-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-top: .2em;
  margin-right: 1.1em;
  font-size: 1.2em;
}

.fullscreen-menu {
  z-index: 999;
  justify-content: space-between;
  align-items: stretch;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.fullscreen-inner {
  z-index: 10;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.fullscreen-menu-bg-2 {
  background-color: #151720;
  position: fixed;
  inset: 0%;
}

.small-link {
  z-index: 10;
  color: var(--body-black);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: .4em;
  padding-bottom: .4em;
  transition: color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.small-link:hover {
  color: #272b3d;
}

.small-link.is-white {
  color: var(--white);
}

.small-link.is-white:hover {
  color: #fff;
}

.small-link.is-term-link {
  color: var(--white);
  margin-left: .8em;
  margin-right: .8em;
}

.small-link.is-term-link:hover {
  color: #fff;
}

.small-link.in-services-1 {
  margin-bottom: 3em;
}

.small-link.in-topics {
  color: #272b3d80;
  text-align: left;
  flex: 1;
}

.small-link.in-topics.w--current {
  color: #272b3d;
}

.small-link.in-terms {
  color: #272b3d80;
  text-align: left;
  flex: 1;
  padding-top: .6em;
  padding-bottom: .6em;
}

.small-link.in-terms.w--current {
  color: #272b3d;
}

.small-text-link {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 700;
}

.small-link-line {
  background-color: #272b3d;
  height: 2px;
  display: none;
  position: absolute;
  inset: auto 0%;
}

.small-link-line.is-white {
  background-color: var(--white);
}

.footer-1-column-2 {
  z-index: 9;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  width: 63%;
  margin-top: 4em;
  margin-right: 4em;
  padding: 5em;
  display: flex;
  position: relative;
}

.footer-1-column-1 {
  z-index: 10;
  flex-direction: column;
  flex: 1;
  align-self: stretch;
  align-items: flex-start;
  padding-top: 4em;
  display: flex;
  position: relative;
}

.footer-1-main-links {
  z-index: 10;
  border-left: .7em solid #10121a4d;
  flex-direction: column;
  flex: 1;
  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  padding-top: 2.8em;
  padding-bottom: 2.8em;
  display: flex;
  position: relative;
}

.footer-1-inner {
  z-index: 10;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.footer-1-main-link {
  color: var(--body-black);
  text-align: left;
  border-left: .7em solid #0000;
  flex: 0 auto;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  height: 100%;
  margin-top: -1px;
  margin-left: -.7em;
  padding: 1.2em 3em 1.2em 3.3em;
  font-weight: 700;
  line-height: 1em;
  transition: height .6s cubic-bezier(.075, .82, .165, 1), border-color .2s;
  display: flex;
  overflow: hidden;
}

.footer-1-main-link:hover {
  border-left-color: var(--body-black);
  height: 130%;
}

.footer-1-main-link.w--current {
  border-left-color: var(--body-black);
}

.footer-1-link-text {
  text-transform: uppercase;
  margin-right: 2.3em;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 1.8em;
  line-height: 1em;
}

.menu-arrow {
  z-index: 2;
  object-fit: contain;
  flex: none;
  width: 1em;
  height: 1em;
  font-size: 2em;
  position: relative;
}

.terms-3-cms {
  margin-top: 3em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5em;
  padding-right: 5em;
}

.footer-3-authors {
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  display: flex;
}

.footer-dot {
  background-color: var(--body-black);
  flex: none;
  width: .3em;
  height: .3em;
  margin-left: 2.5em;
  margin-right: 2.5em;
}

.menu-arrow-line {
  z-index: 1;
  background-color: var(--body-black);
  flex: none;
  width: 3em;
  height: 1px;
  margin-right: 1.1em;
  font-size: 1em;
  position: absolute;
}

.menu-arrow-line.is-white {
  background-color: #ffffff80;
}

.term-3-cms-list {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.symbol-divider {
  z-index: 10;
  background-color: var(--white);
  height: 8em;
  position: relative;
}

.delay-for-animations {
  z-index: 100;
  display: none;
  position: absolute;
  inset: 0%;
}

.footer-1-social-link {
  z-index: 1;
  color: #c2c1b7;
  background-color: #00000040;
  align-self: stretch;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  transition: background-color .2s, color .2s;
}

.footer-1-social-link:hover {
  color: var(--white);
  background-color: #0009;
}

.footer-1-social-link.is-inquiry {
  border: 1px solid var(--white);
  color: var(--white);
}

.footer-1-social-link.is-inquiry:hover {
  background-color: var(--white);
  color: #272b3d;
}

.menu-2-main-link {
  color: var(--white);
  text-align: left;
  letter-spacing: .1em;
  border-bottom: 1px solid #ffffff1a;
  flex: 0 auto;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  height: 100%;
  padding: 1.2em 3em;
  line-height: 1em;
  transition: letter-spacing .8s cubic-bezier(.075, .82, .165, 1), height .6s cubic-bezier(.075, .82, .165, 1), border-color .2s;
  display: flex;
  overflow: hidden;
}

.menu-2-main-link:hover {
  letter-spacing: .3em;
  border-bottom-color: #fff9;
  height: 130%;
}

.menu-2-main-link.w--current {
  border-bottom-color: #ffffff80;
  font-weight: 600;
}

.menu-delay-for-animations {
  z-index: 100;
  display: none;
  position: absolute;
  inset: 0%;
}

.background-for-column-2 {
  z-index: 10;
  background-color: #151720;
  display: none;
  position: absolute;
  inset: 0%;
}

.menu-3-grid-content {
  z-index: 30;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-align: center;
  background-color: #1517208c;
  border: 1px solid #ffffff2e;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 50%;
  max-width: 90%;
  min-height: 35%;
  margin-bottom: 2.5em;
  margin-right: 2.5em;
  padding: 5em;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.menu-cover-image {
  z-index: 5;
  object-fit: cover;
  object-position: 50% 30%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.menu-1-column-1 {
  z-index: 10;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  width: 35%;
  padding-top: 10em;
  padding-bottom: 5em;
  display: flex;
  position: relative;
}

.menu-2-main-links {
  z-index: 10;
  flex-direction: column;
  flex: 1;
  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.menu-2-link-text {
  text-transform: uppercase;
  margin-right: 1em;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 1.7em;
  font-weight: 300;
  line-height: 1em;
}

.menu-1-column-2 {
  z-index: 9;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 65%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-1-terms-list {
  grid-column-gap: 3em;
  grid-row-gap: 0em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fullscreen-hero {
  z-index: 10;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 100vh;
  padding-top: 18em;
  padding-bottom: 5em;
  display: flex;
  position: relative;
}

.fullscreen-hero.in-overview {
  padding-top: 10em;
}

.circle-button-1 {
  z-index: 20;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 8em;
  height: 8em;
  display: flex;
  position: relative;
}

.portfolio-3-background {
  z-index: -20;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0%;
}

.close-button {
  z-index: 999;
  opacity: .7;
  text-transform: uppercase;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 4em;
  height: 4em;
  line-height: 1.1em;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  inset: 2em auto auto 2em;
}

.close-button:hover {
  opacity: 1;
}

.ui-kit-block-1 {
  z-index: 10;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  min-height: 8em;
  display: flex;
  position: relative;
}

.nav-1-brand-name {
  letter-spacing: -.03em;
  text-indent: -.03em;
  margin-right: .5em;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 1.1em;
  display: none;
}

.symbols-wrap {
  z-index: 10;
  background-color: var(--white);
  position: relative;
}

.header-1 {
  z-index: 10;
  background-color: var(--light-grey-background);
  padding-top: 16em;
  position: relative;
  overflow: hidden;
}

.header-1.is-dark {
  color: var(--white);
}

.hero-1-flex {
  grid-column-gap: 2em;
  grid-row-gap: 0em;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.hero-1-social-list {
  grid-column-gap: 1.5em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-1-social-list.in-article {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
}

.circle-social-button {
  z-index: 20;
  opacity: .8;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 5em;
  height: 5em;
  transition: opacity .2s;
  display: flex;
  position: relative;
}

.circle-social-button:hover {
  opacity: 1;
}

.ui-divider {
  background-color: #d2d4d8;
  height: 5vh;
}

.navigations-wrap {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 100vh;
  display: flex;
}

.listing-1-cms-list {
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.listing-1-cms-item {
  border: 1px solid #cfd5df;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-top: -1px;
  display: flex;
  position: relative;
  top: -1px;
}

.listing-1-block-1 {
  color: #272b3d;
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  width: 100%;
  padding-top: 4em;
  padding-left: 4em;
  padding-right: 4em;
  transition: color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.listing-1-block-1:hover {
  color: var(--body-black);
}

.listing-1-content {
  z-index: 10;
  flex-direction: column;
  flex: none;
  align-items: flex-start;
  width: 25em;
  margin-right: 5em;
  padding-bottom: 4em;
  display: flex;
  position: relative;
}

.listing-1-content.is-2nd {
  justify-content: space-between;
  align-self: stretch;
}

.hero-2-content {
  width: 26em;
  margin-left: 5em;
}

.hero-2-content.in-audience {
  width: 33em;
}

.hero-1-content-text {
  color: #ffffffe6;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.8em;
}

.grid-team-1 {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr 1.5fr;
  padding-top: 6em;
  padding-bottom: 6em;
}

.about-title-1 {
  color: #10121ab3;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .3em;
  font-size: .7em;
  font-weight: 700;
  line-height: 1.3em;
}

.about-title-name {
  margin-top: .4em;
  margin-bottom: .4em;
  font-size: 1.4em;
  line-height: 1.1em;
}

.about-title-name.is-main-title {
  font-weight: 600;
}

.about-author-block-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 30em;
  display: flex;
  overflow: hidden;
}

._3d-inner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

._3d-text {
  z-index: 20;
  color: #fffc;
  text-align: center;
  letter-spacing: -.05em;
  text-indent: -.05em;
  max-width: 85%;
  font-size: 5vw;
  font-weight: 800;
  line-height: 1em;
  position: absolute;
}

._3d-text.is-uppercase {
  color: #fff9;
  letter-spacing: .4em;
  text-indent: .4em;
  text-transform: uppercase;
  font-size: 3.3em;
  font-weight: 600;
  line-height: .9em;
}

.team-cms-item {
  border-bottom: 1px solid #3448ad;
}

.about-author-flex {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.circle-image-1 {
  z-index: 10;
  border-radius: 50%;
  width: 4em;
  height: 4em;
  margin-right: 1.8em;
  position: relative;
  overflow: hidden;
}

.lightbox {
  z-index: 10;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.gallery-circle-button-1 {
  z-index: 30;
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 8em;
  height: 8em;
  display: flex;
  position: absolute;
}

.project-image-size {
  z-index: 10;
  width: 100%;
  height: 80vh;
  position: relative;
}

.topic-grid-1 {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  grid-template-columns: .25fr .75fr;
  place-items: start;
}

.terms-small-links {
  display: flex;
  position: sticky;
  top: 8em;
}

.contact-grid-block-2 {
  padding-right: 5em;
}

.contact-grid-block-3 {
  border-left: 1px solid var(--body-black);
  padding-left: 5em;
}

.fullwidth-divider {
  z-index: 10;
  background-color: #bfc8d1;
  width: 100%;
  height: 1px;
  position: relative;
}

.terms-small-links-list {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.term-small-link-item {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.empty-state-text {
  color: var(--silver-2);
  text-align: center;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.3em;
}

.contact-1-text-3 {
  color: #272b3d;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.1em;
  display: inline-block;
}

.article-timeline {
  background-color: #272b3d33;
  width: 1px;
  height: 80vh;
  position: sticky;
  top: 10vh;
}

.article-timeline-bg {
  background-color: #272b3d;
  position: absolute;
  inset: 0%;
}

.grid-article-content {
  grid-column-gap: 7.5em;
  grid-row-gap: 7.5em;
  grid-template-rows: auto;
  grid-template-columns: .5fr 2.25fr .5fr;
}

.article-side-image {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  padding: 2em;
  display: flex;
  position: sticky;
  top: 10vh;
  overflow: hidden;
}

.article-content {
  width: 100%;
  max-width: 53em;
}

.article-image-size {
  z-index: 10;
  width: 100%;
  height: 80vh;
  max-height: 50em;
  position: relative;
}

.topic-grid-title-1 {
  max-width: 24em;
  margin-bottom: 1em;
  font-size: 2.1em;
  line-height: 1.8em;
}

.topic-grid-block-1 {
  border-left: .4em solid #10121a26;
  padding-left: 5em;
  display: flex;
}

.topic-grid-block-2 {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.style-guide-flex {
  grid-column-gap: 2.75em;
  grid-row-gap: 2.75em;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.grid-content-link {
  color: var(--body-black);
  text-align: center;
  letter-spacing: .1em;
  border-bottom: 1px solid #10121a4d;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 2.3em;
  padding-bottom: 2.3em;
  font-weight: 700;
  transition: letter-spacing .6s cubic-bezier(.075, .82, .165, 1), background-color .2s;
  display: flex;
}

.grid-content-link:hover {
  letter-spacing: .25em;
  border-bottom-color: #10121ab3;
}

.grid-content-link.is-full-color {
  background-color: var(--body-black);
  color: var(--white);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 1em;
  padding-right: 1em;
  font-weight: 600;
}

.grid-content-link.is-full-color:hover {
  background-color: var(--black-light);
}

.grid-gallery {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-size {
  width: 100%;
  height: 30em;
  position: relative;
}

.grid-content-2-list, .grid-content-2-item {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.list-title {
  margin-bottom: .7em;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2em;
}

.list-line {
  background-color: var(--body-black);
  width: 1px;
  height: 100%;
  position: absolute;
  top: .1em;
  left: 1.1em;
}

.list-line.display-on-tablet, .list-line.display-on-phone {
  display: none;
}

.list-line.is-green {
  background-color: #118f47;
}

.list-paragraph {
  opacity: .8;
  color: #10121ad9;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.5em;
}

.list-content {
  padding-top: .15em;
}

.circle-background {
  z-index: 2;
  border: 1px solid var(--body-black);
  background-color: var(--body-black);
  position: absolute;
  inset: 0%;
}

.circle-background.is-green {
  background-color: #118f47;
  border-color: #118f47;
}

.circle-background.is-white {
  background-color: var(--white);
}

.custom-list-gallery {
  max-width: 40em;
}

.circle-in-list {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2.2em;
  height: 2.2em;
  margin-right: 2.5em;
  display: flex;
  position: relative;
}

.custom-list-block {
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 4.5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.custom-list-block.is-last {
  padding-bottom: 1.5em;
}

.custom-list-block.is-horizontal {
  min-height: 11em;
  padding-bottom: .5em;
}

.custom-list-icon {
  z-index: 10;
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 1.1em;
  position: absolute;
}

.overview-block-3 {
  grid-column-gap: 5em;
  grid-row-gap: 0em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 8em;
  padding-bottom: 4em;
  display: grid;
}

.buttons-flex {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.overview-block-1 {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 77em;
  display: flex;
}

.overview-inner-1 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10em 0 0;
  display: flex;
}

.opacity-70 {
  opacity: .7;
}

.span-number-1 {
  color: #d94334;
  letter-spacing: -.03em;
  text-indent: -.03em;
  margin-left: .2em;
  font-size: .4em;
  font-weight: 600;
  line-height: 1em;
  display: inline-block;
  position: relative;
  top: -1.2em;
}

.sticky-100vh {
  z-index: 1;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}

.absolute-block-200vh {
  z-index: 1;
  width: 100%;
  height: 200vh;
  position: absolute;
  inset: 0% 0% auto;
}

._3d-for-text {
  z-index: 10;
  perspective: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.gallery-cms-item-large {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 50em;
  display: flex;
}

.gallery-cms-item-large.with-margin {
  margin-bottom: 3em;
}

.more-templates-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-left: .7em;
  font-size: 1.5em;
}

.tab-text-1 {
  font-size: 1.2em;
  line-height: 1.8em;
}

.tabs {
  width: 100%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding: 10vw;
  display: flex;
}

.password-block {
  z-index: 20;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-align: center;
  background-color: #ffffff80;
  border: 1px solid #fffc;
  border-radius: 5px;
  flex-direction: column;
  width: 100%;
  max-width: 29em;
  margin-left: auto;
  margin-right: auto;
  padding: 3em 4em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.password-form {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.password-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-right: .4em;
  font-size: 2em;
}

.password-label {
  margin-bottom: 0;
  font-weight: 500;
}

.password-flex {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

._1-column-gallery-cms-list {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.gallery-row {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.gallery-list {
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.gallery-item {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  transition: width .8s cubic-bezier(.075, .82, .165, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.gallery-item:hover {
  width: 115%;
}

.gallery-overlay-color {
  z-index: 25;
  mix-blend-mode: multiply;
  background-color: #10121a59;
  transition: opacity .2s;
  position: absolute;
  inset: 0%;
}

.gallery-overlay-color:hover {
  opacity: .2;
}

.gallery-content {
  z-index: 20;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-self: stretch;
  align-items: flex-start;
  padding: 9em 5.5em;
  display: flex;
  position: relative;
}

.gallery-link-block {
  color: var(--white);
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.default-home-text {
  color: #fff9;
  text-transform: uppercase;
  margin-left: .5em;
  font-size: .8em;
  line-height: 1.1em;
  display: none;
}

.default-home-text.is-dark {
  color: var(--body-black);
}

.global-styles {
  position: fixed;
  inset: 0% auto auto 0%;
}

.grid-newsletter {
  z-index: 20;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.newsletter-title-block {
  text-align: center;
  width: 100%;
  max-width: 40em;
  margin-bottom: 4em;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.newsletter-form-block {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.newsletter-title-text {
  letter-spacing: -.02em;
  text-indent: -.02em;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.1em;
}

.accordion-text {
  font-size: 1.1em;
  line-height: 1.8em;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-image-block-2 {
  z-index: 2;
  width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.slider-inner {
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

.slider-image {
  object-fit: cover;
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.custom-slider {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.slider-backgrounds {
  z-index: 1;
  width: 100vw;
  height: 100%;
  position: relative;
}

.slider-image-last {
  object-fit: cover;
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.slider-overlay-color {
  z-index: 2;
  opacity: .5;
  mix-blend-mode: multiply;
  background-color: #1a1c29cc;
  position: absolute;
  inset: 0%;
}

.slider-image-block-1 {
  z-index: 3;
  width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.gallery-text-1 {
  max-width: 28em;
  margin-bottom: 3em;
  font-size: 2em;
  line-height: 1.6em;
}

.contact-grid-1 {
  grid-column-gap: 1.75em;
  grid-row-gap: 1.75em;
  grid-template-rows: auto;
  grid-template-columns: 2.25fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.contact-1-text-4 {
  max-width: 17em;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.5em;
}

.main-nav-links {
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  display: flex;
  position: relative;
  top: 1px;
}

.main-nav-link {
  color: #fffc;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid #0000;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 1em 1.8em;
  font-size: .85em;
  font-weight: 700;
  transition: letter-spacing .6s cubic-bezier(.075, .82, .165, 1), color .2s, border-color .2s;
  display: flex;
}

.main-nav-link:hover {
  border-bottom-color: var(--white);
  color: #fff;
  letter-spacing: .2em;
}

.main-nav-link.w--current {
  border-bottom-color: var(--white);
  color: var(--white);
  letter-spacing: .2em;
}

.main-nav-link.is-dropdown {
  grid-column-gap: 1em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.articles-1-listing-1 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.article-1-link-block {
  z-index: 10;
  border: 1px solid #cbccd1;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-top: -1px;
  margin-left: -1px;
  display: flex;
  position: relative;
}

.article-1-link-block:hover {
  z-index: 11;
  border-color: #4e505a;
}

.article-1-link-block-1 {
  color: var(--body-black);
  flex: 1;
  padding: 2.5em;
  transition: background-color .2s;
  position: relative;
}

.article-1-link-block-1:hover {
  background-color: #10121a12;
}

.article-1-image-size-1 {
  height: 15em;
  margin-bottom: 2em;
  position: relative;
  overflow: hidden;
}

.nav-1-row-2 {
  z-index: 10;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  border-bottom: 1px solid #10121a40;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  height: 5em;
  display: flex;
  position: relative;
}

.nav-1-search-link {
  color: #fffc;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid #0000;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  margin: 0;
  padding: 0;
  font-size: .85em;
  font-weight: 700;
  transition: background-color .2s, color .2s, border-color .2s;
  display: flex;
  position: relative;
}

.nav-1-search-link:hover {
  border-bottom-color: var(--white);
  color: #fff;
}

.nav-1-search-link.w--current {
  border-bottom-color: var(--white);
  color: var(--white);
}

.nav-1-search-link.is-dark {
  border-top: 1px solid #10121a40;
}

.nav-1-search-link.is-dark:hover {
  border-bottom-color: var(--body-black);
}

.search-input {
  z-index: 1;
  color: var(--white);
  background-color: #0000;
  border: 0 solid #0000;
  flex: 1;
  align-self: stretch;
  height: 100%;
  margin: 0;
  padding: .5em 0 .5em 2em;
  font-size: 1.5em;
  font-weight: 400;
}

.search-input:active, .search-input:focus {
  border: 0 #0000;
  box-shadow: 0 0 #0000;
}

.search-input::placeholder {
  color: #fff9;
  letter-spacing: .03em;
  font-size: .8em;
  line-height: 1em;
}

.search-input.is-dark {
  color: var(--body-black);
}

.search-input.is-dark::placeholder {
  color: #10121ab3;
}

.search-button {
  z-index: 10;
  background-color: #0000;
  background-image: url('../images/search-icon-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1.5em;
  width: 8em;
  position: relative;
}

.search-button.is-dark {
  background-image: url('../images/search-icon-black.svg');
  border-left: 1px solid #10121a00;
}

.search-button.is-dark:hover {
  background-color: var(--white);
  border-left-color: #10121a26;
}

.article-hero-header-1-item {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 80vh;
  padding-top: 15em;
  padding-bottom: 6em;
  display: flex;
  position: relative;
}

.image-wrap {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.image-bg-color-1 {
  z-index: 20;
  mix-blend-mode: multiply;
  background-color: #060918cc;
  position: absolute;
  inset: 0%;
}

.article-hero-title-block {
  border-left: 4px solid #ffffff4d;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  max-width: 40em;
  padding-left: 2.5em;
  display: flex;
}

.article-hero-text-1 {
  color: var(--silver);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 1.2em;
}

.article-hero-link-2 {
  color: #fffc;
  width: 100%;
  max-width: 49em;
  margin-left: auto;
  margin-right: auto;
  transition: color .2s;
}

.article-hero-link-2:hover {
  color: var(--white);
}

.article-hero-content-1 {
  grid-column-gap: 2.25em;
  grid-row-gap: 2.25em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 4fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: grid;
}

.hero-1-link-block-1 {
  color: var(--body-black);
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-1-link-text-1 {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-1-link-icon-1 {
  z-index: 10;
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 2em;
}

.hero-1-link-inner-1 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 8em;
  padding-right: 7em;
  display: flex;
}

.hero-1-links {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-height: 20vh;
  display: flex;
}

.hero-1-link-block-2 {
  width: 50%;
  padding: 1em;
  display: flex;
  position: relative;
}

.image-bg-color-2 {
  z-index: 11;
  background-image: linear-gradient(to right, var(--body-black), #10121a4d);
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0%;
}

.hero-1-link-inner-2 {
  z-index: 20;
  border: 1px solid #ffffff59;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  padding: 2em 6em;
  display: flex;
  position: relative;
}

.hero-1-link-name-2 {
  max-width: 17em;
  margin-right: auto;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.4em;
}

.hero-1-link-sizing-2 {
  color: #ffffffd9;
  flex: 1;
  align-self: stretch;
  display: flex;
  position: relative;
}

.hero-1-link-sizing-2:hover {
  color: var(--white);
}

.hero-1-link-block-2-item {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.hero-1-link-block-2-list {
  width: 100%;
  display: flex;
}

.article-1-name-title-1 {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.3em;
}

.hero-1-link-box-2 {
  background-color: var(--main-yellow);
  color: #0b1130;
  letter-spacing: .05em;
  text-transform: uppercase;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: .45em;
  margin-bottom: .5em;
  margin-right: 4em;
  padding: .2em .6em;
  font-size: .85em;
  font-weight: 700;
  display: flex;
}

.hero-1-link-content-2 {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-1-link-arrow-2 {
  z-index: 10;
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-left: 1em;
  font-size: 2em;
}

.article-text-1 {
  opacity: .6;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .75em;
  font-weight: 700;
  line-height: 1.1em;
}

.article-text-1.with-topic-color {
  opacity: 1;
  color: var(--white);
  padding: .4em .7em;
  font-weight: 600;
}

.article-1-categories {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: .9em;
  display: flex;
}

.article-hero-header-1 {
  background-color: var(--body-black);
}

.divider-line-2 {
  background-color: #10121a59;
  width: 2em;
  height: 1px;
  margin-left: .6em;
  margin-right: .6em;
}

.divider-line-2.is-light {
  opacity: .5;
  background-color: #9a9a9a;
}

.article-hero-link-1 {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.topic-1-image-size {
  border: 1px solid #10121a80;
  height: 7em;
  position: relative;
}

.topics-1-list {
  grid-column-gap: 5em;
  grid-row-gap: 3em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.topic-1-item {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.topic-1-link {
  color: var(--body-black);
  letter-spacing: 0;
  border-bottom: 1px solid #0000;
  flex: 1;
  transition: letter-spacing .6s cubic-bezier(.075, .82, .165, 1), border-color .2s;
}

.topic-1-link:hover {
  border-bottom-width: 1px;
  border-bottom-color: var(--body-black);
  letter-spacing: .08em;
}

.topic-1-link.is-white {
  color: var(--white);
}

.topic-1-link.is-white:hover {
  border-bottom-color: #fff6;
}

.topic-1-name-text {
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.3em;
}

.topic-1-content {
  padding-top: 1em;
  padding-bottom: 1em;
}

.footer-1-image-size {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.footer-1-socials-list {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-1-socials {
  width: 100%;
}

.footer-1-social-item {
  z-index: 1;
  border: 1px solid #85847b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -1px;
  margin-left: -1px;
  transition: border-color .2s, width .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
  position: relative;
}

.footer-1-social-item:hover {
  z-index: 2;
  border-color: #c2c1b7;
  width: 120%;
}

.footer-1 {
  z-index: 99;
  border-top: 1px solid var(--body-black);
  background-color: var(--light-grey-background);
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.subfooter-1 {
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  padding: 2em 4em;
  display: flex;
  position: relative;
}

.footer-1-author {
  justify-content: center;
  align-items: center;
  display: flex;
}

.article-link-block-2 {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  color: #eeede8;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 16em;
  padding: 2.5em;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.article-link-block-2:hover {
  background-color: var(--main-yellow);
  color: var(--body-black);
}

.article-link-block-2.is-light {
  color: var(--body-black);
}

.article-link-block-2.is-light:hover {
  background-color: #10121a1a;
}

.articles-1 {
  width: 100%;
}

.articles-3-list {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.articles-3-image-size {
  align-self: stretch;
  width: 45%;
  min-height: 15em;
  position: relative;
  overflow: hidden;
}

.articles-3-content-block {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.articles-3-name {
  max-width: 16em;
  font-size: 1.7em;
  font-weight: 500;
  line-height: 1.3em;
}

.article-2-name {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.3em;
}

.article-2-link-block {
  color: #eeede8;
  border-left: 1px solid #313544;
  flex: 1;
  padding: 2em;
  transition: border-color .2s, background-color .2s;
  position: relative;
}

.article-2-link-block:hover {
  background-color: #181a24;
  border-left-color: #a6a386a1;
}

.article-2-item {
  z-index: 10;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: relative;
}

.footer-1-content-block-1 {
  z-index: 10;
  border-top: 1px solid #eeede880;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 18em;
  padding-top: 2.5em;
  padding-bottom: 2.5em;
  display: flex;
  position: relative;
}

.footer-1-text-1 {
  color: #eeede8cc;
  font-size: 1.5em;
  line-height: 1.6em;
}

.newsletter-padding {
  padding: 5em 3em 0;
}

.newsletter-button {
  z-index: 6;
  border: 2px solid var(--body-black);
  background-color: var(--body-black);
  color: var(--white);
  text-align: center;
  letter-spacing: .02em;
  text-indent: .02em;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: 0;
  padding: 2em;
  font-weight: 600;
  line-height: 1em;
  transition: color .2s, background-color .2s;
  position: relative;
}

.newsletter-button:hover {
  background-color: var(--white);
  color: var(--body-black);
}

.newsletter-button:focus {
  border: 0 solid #0000;
  box-shadow: 1px 1px 20px #d94334;
}

.newsletter-button:focus-visible, .newsletter-button[data-wf-focus-visible] {
  border-width: 0;
  border-color: #0000;
}

.newsletter-field-block {
  z-index: 5;
  align-self: stretch;
  width: 50%;
  position: relative;
  right: -3px;
}

.newsletter-block {
  max-width: 67em;
  margin-left: auto;
  margin-right: auto;
}

.accordion-title-1 {
  font-weight: 500;
}

.newsletter-text-1 {
  text-align: center;
  max-width: 27em;
  margin: 1em auto;
  font-size: 2.5em;
  line-height: 1.7em;
  display: block;
}

.title-span-1 {
  background-color: var(--honeydew);
}

.title-span-2 {
  background-color: #d9dabe;
}

.menu-arrow-icon {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.articles-2-list {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.articles-2 {
  width: 100%;
}

.article-2-author {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: .9em;
  display: flex;
}

.articles-3 {
  width: 100%;
}

.articles-3-item {
  z-index: 10;
  border: 1px solid var(--black-light);
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-top: -1px;
  margin-left: -1px;
  display: flex;
  position: relative;
}

.articles-3-item:hover {
  z-index: 11;
  border-color: #4e505a;
}

.articles-3-categories {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.2em;
  display: flex;
}

.hero-header-2 {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  border-bottom: 1px solid #10121a40;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 100vh;
  padding-top: 13.5em;
  padding-bottom: 4em;
  display: grid;
}

.article-featured-1 {
  background-color: var(--body-black);
  display: flex;
}

.article-featured-1-list {
  flex: 1;
  align-self: stretch;
  display: flex;
}

.article-featured-1-item {
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-self: stretch;
  align-items: flex-start;
  padding: 5em;
  display: flex;
  position: relative;
}

.hero-2-link-block-2 {
  width: 100%;
  display: flex;
  position: relative;
}

.hero-2-link-block-2-list {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.hero-2-link-block-2-item {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.hero-2-link-sizing-2 {
  color: var(--white);
  flex: 1;
  display: flex;
  position: relative;
}

.hero-2-link-sizing-2:hover {
  color: var(--white);
}

.hero-2-link-inner-2 {
  z-index: 20;
  grid-column-gap: 1.75em;
  grid-row-gap: 1.75em;
  border: 1px solid #ffffff59;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  min-height: 15em;
  padding: 2em;
  display: flex;
  position: relative;
}

.article-2-hero-content-1 {
  z-index: 10;
  grid-column-gap: 2.25em;
  grid-row-gap: 2.25em;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 4fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.article-2-hero-link-1 {
  z-index: 10;
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  color: var(--body-black);
  background-color: #fff9;
  border: 1px solid #ffffff8c;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2em;
  padding: .5em 1em;
  display: flex;
  position: absolute;
  inset: 5em auto auto 5em;
}

.hero-2-link-name-2 {
  max-width: 17em;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.3em;
}

.hero-2-box-2 {
  background-color: var(--main-yellow);
  color: #0b1130;
  letter-spacing: .05em;
  text-transform: uppercase;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: .35em;
  margin-bottom: .35em;
  margin-right: 2em;
  padding: .2em .6em;
  font-size: .85em;
  font-weight: 700;
  display: flex;
}

.image-bg-color-3 {
  z-index: 20;
  mix-blend-mode: multiply;
  background-image: linear-gradient(#0000, #0000 40%, #060918);
  position: absolute;
  inset: 0%;
}

.article-hero-text-2 {
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 700;
}

.article-hero-1-title-block-1 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 50em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.article-1-hero-link-2 {
  color: #fffc;
  transition: color .2s;
}

.article-1-hero-link-2:hover {
  color: var(--white);
}

.hero-2-link-content-2 {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.articles-4 {
  width: 100%;
}

.articles-4-list {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.articles-4-item {
  z-index: 10;
  border-style: solid;
  border-width: 1px;
  border-color: var(--black-light) transparent;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-top: -1px;
  margin-left: -1px;
  display: flex;
  position: relative;
}

.articles-4-item:hover {
  z-index: 11;
  background-color: var(--black-light);
  border-color: #6f717c;
}

.article-4-link-block {
  grid-column-gap: 3.5em;
  grid-row-gap: 3.5em;
  color: #eeede8;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  min-height: 14em;
  padding: 2.5em;
  display: flex;
  position: relative;
}

.article-4-link-block:hover {
  color: var(--white);
}

.articles-4-image-size {
  align-self: stretch;
  width: 20em;
  position: relative;
  overflow: hidden;
}

.articles-4-content-block {
  text-align: left;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.articles-4-categories {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: flex-start;
  align-items: center;
  min-width: 20em;
  margin-bottom: .9em;
  margin-right: 2em;
  display: flex;
}

.articles-4-name {
  font-size: 1.7em;
  font-weight: 500;
  line-height: 1.2em;
}

.articles-4-description-text {
  opacity: .75;
  margin-top: 1em;
  font-size: 1.1em;
  line-height: 1.3em;
}

.audience-flex {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.about-grid-2 {
  z-index: 10;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  position: relative;
  top: -1px;
}

.about-grid-block-2 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 24em;
  padding-top: 4em;
  padding-bottom: 4em;
  display: flex;
  position: relative;
  top: 1px;
  overflow: hidden;
}

.topic-icon-2 {
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 1.4em;
}

.topic-2-content {
  z-index: 10;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: var(--light-grey-background);
  border-top: 1px solid #10121a80;
  border-right: 1px solid #10121a80;
  justify-content: flex-start;
  align-items: center;
  padding: 1em 1.2em 1em 0;
  transition: padding .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
  position: relative;
}

.topic-2-content:hover {
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.hero-divider-line {
  z-index: 10;
  background-color: #fff3;
  width: 100%;
  height: 1px;
  margin-top: 4em;
  margin-bottom: 4em;
  position: relative;
}

.topics-3 {
  width: 100%;
  padding: 1em;
  display: flex;
  position: relative;
}

.topics-3-list {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.topic-3-item {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.topic-3-link {
  color: #ffffffd9;
  flex: 1;
  align-self: stretch;
  align-items: flex-end;
  min-height: 18em;
  display: flex;
  position: relative;
}

.topic-3-link:hover {
  color: var(--white);
}

.topic-3-inner {
  z-index: 20;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 2.5em;
  display: flex;
  position: relative;
}

.topic-3-box {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  background-color: #f3f3f038;
  border: 1px solid #ffffff4d;
  margin-right: 1em;
  padding: .7em 1.5em;
  font-size: 1em;
  font-weight: 800;
  line-height: 1em;
}

.topic-3-arrow {
  z-index: 10;
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 2em;
}

.image-bg-color-4 {
  z-index: 11;
  background-image: linear-gradient(13deg, var(--body-black), #10121a00 65%);
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0%;
}

.articles-5 {
  width: 100%;
}

.articles-5-list {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.article-5-item {
  z-index: 10;
  border: 1px solid var(--silver);
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-top: -1px;
  margin-left: -1px;
  display: flex;
  position: relative;
}

.article-5-item:hover {
  z-index: 11;
  border-color: var(--body-black);
}

.article-5-link-block {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  color: var(--body-black);
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 2.5em;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.article-5-link-block:hover {
  background-color: #10121a0d;
}

.article-5-image-size {
  flex: none;
  align-self: stretch;
  width: 35%;
  position: relative;
  overflow: hidden;
}

.article-5-content-block {
  flex: 1;
}

.article-5-name-title {
  margin-bottom: .4em;
  font-size: 1.7em;
  font-weight: 600;
  line-height: 1.2em;
}

.articles-with-sidebar {
  grid-column-gap: 4.25em;
  grid-row-gap: 4.25em;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 3em;
  display: grid;
}

.sidebar.is-sticky {
  grid-row-gap: 3em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 5em;
}

.sidebar.is-2nd {
  grid-column-gap: 3.25em;
  grid-row-gap: 3.25em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.sidebar-articles-1 {
  width: 100%;
}

.sidebar-article-1-item {
  z-index: 10;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  display: flex;
  position: relative;
}

.sidebar-article-1-link {
  color: var(--body-black);
  background-color: #10121a00;
  border-left: 1px solid #cbccd1;
  align-self: stretch;
  padding: 1.5em 1.5em 1.5em 2em;
  transition: border-color .2s, background-color .2s;
  position: relative;
}

.sidebar-article-1-link:hover {
  border-left-color: var(--body-black);
  background-color: #10121a0d;
}

.sidebar-articles-2-list {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.sidebar-article-1-name {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.3em;
  display: inline;
}

.sidebar-article-1-name.is-2nd {
  color: #10121a8c;
  font-size: 1em;
  line-height: 1.4em;
}

.sidebar-article-category-1 {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .9em;
  display: flex;
}

.content-line-1 {
  background-color: var(--body-black);
  width: 1.4em;
  height: 1px;
  margin-bottom: .3em;
  margin-left: .8em;
  margin-right: .8em;
  display: inline-block;
}

.sidebar-audience-1 {
  width: 100%;
}

.sidebar-audience-1-list {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.sidebar-audience-1-item {
  z-index: 10;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  display: flex;
  position: relative;
}

.sidebar-audience-1-link {
  color: var(--body-black);
  border-left: 1px solid #10121a4d;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding: 1.4em 2em;
  transition: border-color .2s, background-color .2s;
  display: flex;
  position: relative;
}

.sidebar-audience-1-link:hover {
  border-left-color: var(--body-black);
  background-color: #10121a0d;
}

.sidebar-audience-1-link.is-flex-vertical {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.sidebar-audience-1-name {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.3em;
  display: inline;
}

.sidebar-text-1 {
  color: #10121acc;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .7em;
  font-weight: 700;
  line-height: 1.1em;
}

.sidebar-text-2 {
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1px solid #0000;
  padding: .3em .5em;
  font-size: .7em;
  font-weight: 700;
  line-height: 1.1em;
}

.hero-2-content-block {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pagination {
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.pagination-button {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  border-color: var(--body-black);
  letter-spacing: .05em;
  text-indent: .05em;
  text-transform: uppercase;
  background-color: #10121a0d;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 1.2em 3em;
  font-size: 1.1em;
  font-weight: 700;
  display: flex;
}

.pagination-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 1.4em;
}

.pagination-text {
  line-height: 1em;
}

.page-count {
  letter-spacing: .6em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: .9em;
  font-weight: 700;
  line-height: 1.1em;
}

.pagination-block {
  min-width: 33.3333%;
  padding-top: 3em;
}

.header-title-line {
  background-color: var(--body-black);
  width: 100%;
  height: 1em;
}

.header-title-line.is-white {
  background-color: #ffffff4d;
}

.social-button-1 {
  z-index: 20;
  border: 1px solid #0000;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 6em;
  height: 5em;
  padding: 0;
  transition: width .6s cubic-bezier(.075, .82, .165, 1), border-color .1s;
  display: flex;
  position: relative;
}

.social-button-1:hover {
  border-color: var(--body-black);
  opacity: 1;
  width: 7em;
}

.social-button-1.is-light:hover {
  border-color: #ffffff40;
}

.social-icon-1 {
  z-index: 10;
  object-fit: contain;
  flex: none;
  width: 1em;
  height: 1em;
  font-size: 1.3em;
}

.socials-1-list {
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-1-item {
  width: 100%;
}

.topic-featured-flex {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.topic-2-image-size {
  border: 1px solid #10121a80;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 25em;
  display: flex;
  position: relative;
}

.topic-2-name-text {
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.3em;
}

.topic-2-content-2 {
  padding-top: 1.4em;
  padding-bottom: 1.4em;
  position: relative;
  overflow: hidden;
}

.topic-2-link {
  color: var(--body-black);
  border: 1px solid #0000;
  flex: 1;
  padding: 3em;
  transition: border-color .2s, background-color .2s;
  overflow: hidden;
}

.topic-2-link:hover {
  border-color: var(--body-black);
  background-color: #ffffffa6;
}

.topic-2-conetnt-block {
  padding-top: 1.2em;
  overflow: hidden;
}

.topic-2-description-text {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
}

.topic-2-line {
  background-color: var(--body-black);
  width: 100%;
  height: 1px;
}

.topics-2-list {
  grid-column-gap: 5.75em;
  grid-row-gap: 5.75em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: 100%;
  display: grid;
}

.topic-3-image-size {
  z-index: 1;
  border: 1px solid #10121a80;
  position: absolute;
  inset: 0%;
}

.topic-4-link {
  color: var(--body-black);
  letter-spacing: .01em;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 11em;
  transition: letter-spacing .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.topic-4-link:hover {
  letter-spacing: .1em;
}

.main-nav-link-2 {
  color: var(--body-black);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid #0000;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 1em 1.8em;
  font-size: .85em;
  font-weight: 700;
  transition: letter-spacing .6s cubic-bezier(.075, .82, .165, 1), color .2s, border-color .2s;
  display: flex;
}

.main-nav-link-2:hover {
  border-bottom-color: var(--body-black);
  color: #10121aa6;
  letter-spacing: .2em;
}

.main-nav-link-2.w--current {
  border-bottom-color: var(--body-black);
  color: var(--body-black);
  letter-spacing: .2em;
}

.main-nav-link-2.is-dropdown {
  grid-column-gap: .75em;
  flex-direction: row;
}

.articles-4-block-1 {
  max-width: 25em;
}

.hero-2-links {
  display: flex;
}

.image-animation-trigger-2 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.authors-role {
  color: #10121a99;
  font-size: .9em;
}

.image {
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 1.3em;
}

.fullwidth-image-size {
  height: 15em;
  position: relative;
  top: -1px;
}

.image-bg-color-5 {
  z-index: 20;
  mix-blend-mode: multiply;
  background-color: #080f3099;
  position: absolute;
  inset: 0%;
}

.about-content-grid {
  grid-column-gap: 5em;
  grid-row-gap: 7em;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  width: 100%;
  max-width: 83em;
  margin-left: auto;
  margin-right: auto;
}

.about-grid-block-4 {
  width: 100%;
  max-width: 26em;
  height: 35em;
  position: relative;
}

.about-grid-block-3 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 33em;
  display: flex;
}

.about-text-2 {
  margin-top: 1.4em;
  margin-bottom: 1.4em;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.6em;
}

.about-text-3 {
  color: #10121ab3;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.8em;
}

.about-title-block-1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 65em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.about-text-4 {
  color: #10121ab3;
  text-align: center;
  letter-spacing: .7em;
  text-indent: .7em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 800;
  line-height: 1.6em;
}

.about-text-1 {
  margin-top: 1.3em;
  margin-bottom: 1.3em;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.7em;
}

.quote-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 2.4em;
}

.aside-menu {
  z-index: 999;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.aside-menu-width {
  z-index: 10;
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  width: 40vw;
  height: 100%;
  margin-left: auto;
  display: flex;
  position: relative;
}

.aside-menu-bg-fixed {
  z-index: 1;
  background-color: var(--white);
  border-left: 1px solid #10121a8c;
  position: absolute;
  inset: 0%;
}

.aside-menu-link-name {
  text-align: left;
  letter-spacing: -.03em;
  text-indent: -.03em;
  min-width: 5em;
  margin-right: .5em;
  font-size: 2.5vh;
  line-height: 1.2em;
}

.aside-menu-link-name.is-2nd {
  min-width: 8em;
}

.aside-menu-overflow {
  z-index: 30;
  flex: 1;
  position: relative;
  overflow: auto;
}

.aside-menu-link {
  z-index: 10;
  color: var(--body-black);
  text-align: left;
  border-bottom: 1px solid #10121a40;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 3vh 5em;
  font-weight: 400;
  transition: border-color .2s, padding .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
  position: relative;
}

.aside-menu-link:hover {
  border-bottom-color: var(--body-black);
  padding-top: 4vh;
  padding-bottom: 4vh;
}

.aside-menu-link.w--current {
  border-bottom-color: #10121a;
  font-weight: 600;
}

.aside-menu-link.is-main-link {
  background-color: #e1e9d0;
}

.aside-menu-link.is-utility-link {
  background-color: var(--light-grey-background);
  color: #10121ab3;
}

.aside-menu-link.is-utility-link:hover {
  color: #10121a;
}

.aside-menu-link.is-cms-link {
  color: #9c2729;
}

.aside-menu-flex {
  border: 1px solid #10121a40;
  border-bottom-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.articles-6 {
  width: 100%;
  display: flex;
  position: relative;
}

.articles-6-list {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.article-6-item {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.article-6-link-block {
  color: var(--white);
  flex: 1;
  display: flex;
  position: relative;
}

.article-6-link-block:hover {
  color: var(--white);
}

.article-6-inner {
  z-index: 20;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  border: 1px solid #ffffff59;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  min-height: 15em;
  padding: 2em;
  display: flex;
  position: relative;
}

.article-6-content {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.header-with-articles {
  padding-top: 14em;
  padding-bottom: 6em;
}

.article-6-name {
  max-width: 17em;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.3em;
}

.accordion-quote-icon {
  z-index: 3;
  width: 1.5em;
  height: 1.5em;
  font-size: 1em;
  position: absolute;
  right: 6em;
}

.aside-menu-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-left: auto;
  font-size: 1.6em;
}

.aside-fixed-bg {
  z-index: 5;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: #10121aa6;
  position: absolute;
  inset: 0%;
}

.contact-grid-block-5 {
  grid-column-gap: 1.75em;
  grid-row-gap: 1.75em;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.contact-grid-block-6 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.text-min-width {
  min-width: 23em;
}

.text-min-width.with-flex {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.about-author-image-1 {
  min-height: 20em;
  position: relative;
}

.about-author-block-1 {
  grid-column-gap: 2em;
  grid-row-gap: 1.75em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.authors-topics-list {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.authors-topic-link {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.slider-wrap {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.slider-bg-color-1 {
  z-index: 20;
  mix-blend-mode: multiply;
  background-color: #060918cc;
  position: absolute;
  inset: 0%;
}

.hero-1-content-text-2 {
  color: #ffffffbf;
  text-align: center;
  width: 100%;
  max-width: 13em;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5em;
}

._3d-image-size {
  width: 100%;
  height: 35em;
  position: relative;
}

.article-1-padding-1 {
  max-width: 70em;
  padding-top: 17em;
  padding-bottom: 4em;
}

.article-1-divider {
  background-color: #272b3d33;
  width: 100%;
  height: 1px;
}

.article-1-padding-2 {
  padding: 3em 0;
}

.article-1-author-block {
  justify-content: flex-start;
  align-items: center;
  min-width: 24em;
  display: flex;
  overflow: hidden;
}

.article-1-author-name {
  text-align: left;
  margin-bottom: .3em;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2em;
}

.content-line-2 {
  background-color: var(--body-black);
  flex: none;
  width: 2em;
  height: 1px;
}

.article-1-grid-block-1 {
  grid-column-gap: 1.75em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
  overflow: hidden;
}

.article-1-author-text {
  color: #272b3d;
  text-align: center;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.1em;
  display: inline-block;
}

.article-1-topic-text {
  color: var(--body-black);
  text-align: center;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.1em;
  display: inline-block;
}

.article-1-topic-text.is-2nd {
  color: #10121a99;
}

.article-1-grid-author {
  grid-column-gap: 1.75em;
  grid-row-gap: 1.75em;
  grid-template-rows: auto;
  grid-template-columns: 2.25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.link-block-6 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.article-1-author-role {
  color: #10121a99;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 700;
  line-height: 1.1em;
  display: inline-block;
}

.breadcrumbs {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
}

.breadcrumb-link {
  color: #10121ab3;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .75em;
  font-weight: 800;
  line-height: 1em;
  transition: color .2s;
}

.breadcrumb-link:hover {
  color: #10121a;
}

.breadcrumb-link.w--current {
  color: #10121a80;
}

.breadcrumb-dot {
  background-image: url('../images/arrow_right_FILL0_wght400_GRAD0_opsz48.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
}

.about-author-block-3 {
  max-width: 31em;
  overflow: hidden;
}

.parallax-trigger {
  z-index: 5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.fullwidth-image-size-2 {
  height: 30em;
  position: relative;
  top: -1px;
}

.listing-1-content-wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.author-padding {
  padding: 14em 0 0;
}

.author-image-size {
  z-index: 10;
  width: 100%;
  height: 77vh;
  position: relative;
}

.home-4-padding-1 {
  padding: 14em 0 6em;
}

.menu-dot {
  background-color: var(--white);
  flex: none;
  width: .3em;
  height: .3em;
  margin-left: 2.5em;
  margin-right: 2.5em;
}

.hero-bg-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.title-block-1 {
  grid-column-gap: .5em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.articles-in-topic {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.review-content {
  text-align: center;
  width: 100%;
  max-width: 57em;
  margin-left: auto;
  margin-right: auto;
}

.review-about-block {
  grid-column-gap: 2em;
  grid-row-gap: .5em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 4em;
  margin-bottom: 4em;
  display: flex;
}

.review-dot {
  background-color: var(--body-black);
  flex: none;
  width: .3em;
  height: .3em;
}

.review-title-1 {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 500;
  line-height: 1.1em;
}

.review-title-block {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.review-header {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 18em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.newsletter-text-2 {
  text-align: center;
  letter-spacing: .2em;
  text-indent: .2em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 600;
  line-height: 1.1em;
}

.review-block-1 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 5em;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0;
}

.quote-icon-2 {
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 2.4em;
}

.gallery-links {
  width: 100%;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
  display: flex;
  position: relative;
}

.gallery-links-list {
  grid-column-gap: 3.5em;
  grid-row-gap: 3.5em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.gallery-link-item {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.gallery-link {
  color: var(--white);
  flex: 1;
  display: flex;
  position: relative;
}

.gallery-link:hover {
  color: var(--white);
}

.gallery-link-inner {
  z-index: 20;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  border: 1px solid #fff3;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  min-height: 15em;
  padding: 2em;
  display: flex;
  position: relative;
}

.gallery-link-content {
  grid-column-gap: 2em;
  grid-row-gap: 1em;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gallery-link-box {
  background-color: var(--main-yellow);
  color: #0b1130;
  letter-spacing: .05em;
  text-transform: uppercase;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: .2em .6em;
  font-size: .85em;
  font-weight: 700;
  display: flex;
}

.gallery-link-text {
  font-size: 2em;
  font-weight: 400;
  line-height: 1.3em;
}

.gallery-link-bg {
  z-index: 1;
  background-image: linear-gradient(#10121a00, #10121ab0);
  height: 50%;
  position: absolute;
  inset: auto 0% 0%;
}

.gallery-title-block-1 {
  z-index: 10;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  display: flex;
  position: relative;
}

.gallery-link-icon {
  z-index: 5;
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 4em;
  position: relative;
}

.title-flex {
  grid-column-gap: 1.5em;
  grid-row-gap: 0em;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.5em;
  display: flex;
}

.contact-1-title-1 {
  text-align: left;
  margin-bottom: 1.1em;
  font-size: 1.9em;
  font-weight: 600;
  line-height: 1.5em;
}

.authors-in-contact-list {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.authors-in-contact-item {
  grid-column-gap: 1em;
  border-bottom: 1px solid var(--dark-grey);
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  transition: border-color .2s;
  display: flex;
}

.authors-in-contact-item:hover {
  border-bottom-color: var(--body-black);
}

.author-name-1 {
  min-width: 12em;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.1em;
}

.authors-contacts {
  grid-column-gap: 2em;
  grid-row-gap: 1em;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.author-role-1 {
  color: #10121acc;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.1em;
}

.link-block-7 {
  grid-row-gap: .5em;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact-padding {
  padding: 6em 0 4em;
}

.search {
  width: 100%;
  max-width: 30em;
  margin-bottom: 3em;
  margin-left: auto;
  margin-right: auto;
}

.review-icon-block {
  border: 1px solid var(--dark-grey);
  margin-bottom: 4em;
  padding: 1em;
}

.topics-small-links {
  display: flex;
  position: sticky;
  top: 8em;
}

.topics-small-links-list {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.topic-small-link {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.terms-grid {
  grid-column-gap: 7.5em;
  grid-row-gap: 7.5em;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

.sidebar-block {
  width: 100%;
}

.sidebar-title-1 {
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.2em;
}

.sidebar-title-1.with-margin {
  margin-bottom: 1.3em;
}

.topics-5 {
  width: 100%;
  display: flex;
  position: relative;
}

.topics-5-list {
  grid-column-gap: 3.5em;
  grid-row-gap: 3.5em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.topic-5-item {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.topic-5-link {
  color: var(--white);
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}

.topic-5-link:hover {
  color: var(--white);
}

.topic-5-inner {
  z-index: 20;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  border: 1px solid #fff3;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  min-height: 15em;
  padding: 2em;
  display: flex;
  position: relative;
}

.topic-5-inner.is-overview-cms-link {
  min-height: 10em;
}

.topic-5-content {
  grid-column-gap: 2em;
  grid-row-gap: 1em;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.topic-5-box {
  background-color: var(--main-yellow);
  color: #0b1130;
  letter-spacing: .05em;
  text-transform: uppercase;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: .2em .6em;
  font-size: .85em;
  font-weight: 700;
  display: flex;
}

.topic-5-name {
  font-size: 2em;
  font-weight: 400;
  line-height: 1.3em;
}

.topic-5-name.is-smaller {
  font-size: 1.7em;
}

.sidebar-author-1-image {
  object-fit: cover;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  margin-right: .4em;
  font-size: 2.6em;
}

.sidebar-author-1-link {
  color: var(--body-black);
  background-image: url('../images/add_FILL0_wght400_GRAD0_opsz48.svg');
  background-position: 92%;
  background-repeat: no-repeat;
  background-size: 0;
  border-bottom: 1px solid #0000;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  padding: .8em 0;
  transition: border-color .2s, padding .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
  position: relative;
}

.sidebar-author-1-link:hover {
  border-bottom-color: var(--body-black);
  background-size: 1em;
  padding-top: 1.2em;
  padding-bottom: 1.2em;
}

.sidebar-authors-1-name {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.3em;
  display: inline;
}

.articles-1-listing-2 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.sidebar-author-1-item {
  z-index: 10;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  display: flex;
  position: relative;
}

.sidebar-authors-1 {
  width: 100%;
}

.sidebar-authors-1-list {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.featured-articles-1 {
  width: 100%;
}

.featured-articles-1-list {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.featured-article-1-item {
  z-index: 10;
  border: 1px solid var(--black-light);
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-top: -1px;
  margin-left: -1px;
  display: flex;
  position: relative;
}

.featured-article-1-item:hover {
  z-index: 11;
  border-color: #4e505a;
}

.featured-article-1-link {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  background-color: var(--black-light);
  color: #eeede8;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 16em;
  padding: 2.5em;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.featured-article-1-link:hover {
  background-color: var(--body-black);
  color: var(--white);
}

.article-6-name-title {
  margin-bottom: .4em;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2em;
}

.article-6-image-size {
  flex: none;
  align-self: stretch;
  width: 15em;
  min-height: 7em;
  position: relative;
  overflow: hidden;
}

.max-width-60em {
  width: 100%;
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
}

.term-grid-block-2 {
  width: 100%;
  max-width: 53em;
}

.overview-hero-content {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  width: 100%;
  display: grid;
}

._404-button-block {
  margin-left: auto;
}

.about-link-text {
  text-transform: uppercase;
  max-width: 20em;
  font-size: .8em;
  line-height: 1.3em;
}

.overview-title-block {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 6em;
  display: flex;
}

.slider-bg-color-2 {
  z-index: 20;
  mix-blend-mode: multiply;
  background-color: #060918b3;
  position: absolute;
  inset: 0%;
}

.hero-content-block-2 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  place-items: center;
  width: 26em;
  margin-left: 5em;
  display: grid;
}

.social-text-1 {
  color: #ffffffe6;
  text-align: center;
  width: 100%;
  max-width: 13em;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.1em;
}

.quote-icon-3 {
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 7em;
}

.grid-text-1 {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5em;
}

.aside-menu-link-text-1 {
  color: #10121abf;
  margin-right: 1em;
}

.newsletter-form-success-message {
  background-color: var(--sea-green);
  color: #fff;
  border: 1px solid #f1fff8;
  width: 100%;
  padding: 1.5em;
}

.newsletter-form-success-title {
  text-align: center;
  letter-spacing: .03em;
  text-indent: .03em;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5em;
}

.about-grid-3 {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
}

.content-text-1 {
  margin-bottom: 2em;
  font-size: 1.2em;
  line-height: 1.8em;
}

.about-grid-block-6 {
  width: 100%;
  max-width: 26em;
  height: 100%;
  min-height: 35em;
  position: relative;
}

.about-grid-block-7 {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 26em;
  display: flex;
  position: relative;
}

.newsletter-quote-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 2.4em;
}

.topic-2-item {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.aside-title-wrap {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-header-3 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20em;
  padding-bottom: 20em;
  display: flex;
  position: relative;
}

.hero-header-3-text-1 {
  color: var(--silver);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: Big Shoulders Text, sans-serif;
  font-size: 1.3em;
}

.listing-grid-1 {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  border-bottom: 1px solid #10121a40;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 100vh;
  padding-top: 4em;
  padding-bottom: 4em;
  display: grid;
}

.grid-block-3 {
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.grid-block-4 {
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.overview-grid-1 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
}

.grid-block-5 {
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 30em;
  display: flex;
  position: relative;
}

.grid-block-6 {
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.span-number-2 {
  color: #d94334;
  letter-spacing: -.03em;
  text-indent: -.03em;
  white-space: nowrap;
  margin-left: 0;
  font-size: .55em;
  font-weight: 600;
  line-height: 1em;
  display: inline-block;
  position: absolute;
  top: -.4em;
}

.logo-image {
  object-fit: contain;
  object-position: 50% 50%;
  width: 15em;
  height: 4em;
  display: block;
}

.dropdown {
  flex-direction: column;
  flex: 1;
  align-items: flex-end;
  display: flex;
}

.dropdown-icon {
  object-fit: contain;
  width: 1em;
  height: 1em;
  margin-left: 0;
  margin-right: 0;
  font-size: 1.6em;
  position: relative;
}

.dropdown-list {
  position: absolute;
}

.dropdown-list.w--open {
  background-color: #10121ab3;
  border: 1px solid #ffffff4d;
  border-top-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  transition: background-color .2s;
  display: flex;
  top: 5em;
}

.dropdown-list.w--open:hover {
  background-color: #10121af5;
}

.dropdown-link {
  opacity: .8;
  color: var(--white);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid #0000;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 1.3em;
  font-size: .8em;
  font-weight: 700;
  transition: opacity .2s;
}

.dropdown-link:hover {
  opacity: 1;
}

.dropdown-link.w--current {
  border-bottom-color: var(--white);
  opacity: 1;
  color: var(--white);
}

.dropdown-list-2 {
  background-color: #0000;
  position: absolute;
}

.dropdown-list-2.w--open {
  background-color: #ffffffe6;
  border: 1px solid #10121a40;
  border-top-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  transition: background-color .2s;
  display: flex;
  top: 5em;
}

.dropdown-list-2.w--open:hover {
  background-color: #fff;
}

.dropdown-link-2 {
  opacity: .75;
  color: var(--body-black);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid #0000;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 1.3em;
  font-size: .8em;
  font-weight: 700;
  transition: opacity .2s;
}

.dropdown-link-2:hover {
  opacity: 1;
}

.dropdown-link-2.w--current {
  border-bottom-color: var(--body-black);
  opacity: 1;
  color: var(--body-black);
}

.hidden {
  display: none;
}

.logo-image-2 {
  object-fit: contain;
  object-position: 50% 50%;
  width: 15em;
  height: 4em;
  display: block;
}

.grid-specificy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.contenedor-especificaciones {
  margin-top: 54px;
}

.slider-image-block-3 {
  z-index: 2;
  width: 100vw;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.slider-image-block-3a {
  z-index: 1;
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (min-width: 1440px) {
  body {
    font-size: 14px;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 12px;
  }

  .container {
    padding-left: 4em;
    padding-right: 4em;
  }

  .hero-1-inner {
    text-align: center;
  }

  .heading.hero-1-title {
    text-align: center;
    margin-bottom: .5em;
  }

  .heading.is-fullscreen-hero-1-title-1 {
    max-width: 9em;
    font-size: 7em;
  }

  .heading.is-overview-title-1 {
    font-size: 3.7vw;
    line-height: 1.5em;
  }

  .heading.is-gallery-title-2 {
    font-size: 5em;
  }

  .heading.is-article-hero-1 {
    font-size: 4em;
  }

  .heading.is-article-hero-2 {
    font-size: 3.5em;
  }

  .heading.hero-1-title-2 {
    text-align: center;
    margin-bottom: .5em;
  }

  .heading.is-about-title-2 {
    font-size: 4em;
    line-height: 1.2em;
  }

  .heading.is-audience-title-1 {
    font-size: 8em;
  }

  .heading.is-overview-title {
    font-size: 4.3em;
  }

  .heading.is-article-1-title {
    font-size: 5em;
  }

  .heading.is-review-name {
    text-align: center;
  }

  .heading.is-social-hero-title {
    font-size: 7em;
  }

  .heading.is-title-3 {
    font-size: 4em;
  }

  .heading.is-overview-title-3 {
    font-size: 2.5em;
  }

  .heading.in-hero-header-3 {
    font-size: 4em;
  }

  .heading.in-hero-header-3-title-2 {
    font-size: 5em;
  }

  .heading.is-overview-title-2 {
    font-size: 3em;
  }

  .heading.is-audience-title-2 {
    max-width: 9em;
    font-size: 9em;
  }

  .accordion-title {
    font-size: 1.2em;
  }

  .accordion-title.in-testimonial {
    font-size: 1.4em;
  }

  .accordion-toggle.in-reviews {
    color: #272b3d;
  }

  .listing-2-cms-list {
    grid-template-columns: 1fr 1fr;
  }

  .listing-2-content-text {
    font-size: 1.1em;
  }

  .listing-2-cms-item {
    background-color: var(--white);
  }

  .empty-state-default.is-hero-header-1 {
    min-height: 8.1em;
    padding-top: 0;
    padding-bottom: 0;
  }

  .grid-large-text-1 {
    font-size: 3em;
  }

  .grid-small-text-1 {
    font-size: .9em;
  }

  .checkbox {
    width: 1.5em;
    height: 1.5em;
  }

  .form-field {
    font-size: 1.1em;
  }

  .form-field.in-newsletter {
    font-size: 1em;
  }

  .rich-text p {
    font-size: 1.3em;
  }

  .rich-text.in-testimonial {
    font-size: 1.5em;
  }

  .rich-text li, .rich-text blockquote {
    font-size: 1.3em;
  }

  .grid-contact {
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .footer-title-text-1 {
    font-size: 1.6em;
  }

  .grid-block-1 {
    height: 25em;
  }

  .grid-content-2 {
    padding: 1.1em;
  }

  .grid-text-2 {
    font-size: 1.3em;
  }

  .grid-content-3 {
    padding: 2em;
  }

  .grid-text-3 {
    font-size: 4.5em;
  }

  .grid-text-4 {
    font-size: .9em;
  }

  .grid-block-2 {
    height: 50em;
  }

  .carousel-button {
    opacity: 1;
    background-size: 2.3em;
    border-width: 0;
  }

  .carousel-button:hover {
    background-size: 2.3em;
    border-width: 0;
    border-color: #0000;
  }

  .portfolio-3-title {
    font-size: 8vw;
  }

  .portfolio-3-block {
    opacity: 1;
    padding-top: 10em;
    padding-bottom: 10em;
    transition: none;
  }

  .portfolio-3-cms {
    padding-bottom: 43vh;
  }

  .nav-1-row-1 {
    grid-template-columns: 2fr 1fr;
    justify-content: space-between;
    align-items: stretch;
    height: 4em;
    display: flex;
  }

  .nav-1-brand {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .portfolio-3-button {
    width: 5em;
    height: 5em;
  }

  ._2nd-nav-link {
    display: none;
  }

  ._2nd-nav-link.is-cta, ._2nd-nav-link.for-aside-menu {
    display: flex;
  }

  .nav-1-menu-button:hover {
    background-color: #fff0;
  }

  .main-circle-button.is-smaller {
    width: 5em;
    height: 5em;
  }

  .topics-4 {
    border-top: 1px solid #272b3d4d;
  }

  .topic-4-name {
    font-size: 1.8em;
  }

  .topic-4-link-block:hover {
    min-height: 13em;
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .topic-4-link-block.is-overview-block, .topic-4-link-block.is-overview-block:hover {
    min-height: 8em;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }

  .topics-4-list {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .topic-4-number {
    margin-left: 4.2em;
    margin-right: 4.2em;
  }

  .footer-blur-block {
    min-width: 70%;
    min-height: auto;
    padding: 2em;
  }

  .footer-1-social-name {
    font-size: .8em;
  }

  .tab-inner {
    flex-wrap: wrap;
  }

  .small-link {
    padding-top: .7em;
    padding-bottom: .7em;
  }

  .small-link.in-terms {
    font-size: 1.1em;
  }

  .footer-1-column-2 {
    width: 63%;
  }

  .footer-1-main-link {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .footer-1-main-link:hover {
    border-bottom-color: #ffffff1a;
    height: 100%;
  }

  .footer-1-link-text {
    font-size: 1.5em;
  }

  .terms-3-cms {
    margin-bottom: 2.5em;
  }

  .menu-arrow-line {
    width: 2em;
    margin-right: .8em;
  }

  .menu-2-main-link {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .menu-2-main-link:hover {
    border-bottom-color: #ffffff1a;
    height: 100%;
  }

  .menu-3-grid-content {
    min-width: 70%;
    min-height: auto;
    padding: 3.3em;
  }

  .menu-1-column-1 {
    padding-top: 8em;
    padding-bottom: 2em;
  }

  .menu-2-link-text {
    font-size: 1.3em;
  }

  .circle-button-1.tablet-is-hide {
    display: none;
  }

  .portfolio-3-background {
    object-position: 0% 50%;
  }

  .close-button {
    opacity: 1;
    font-size: .9em;
  }

  .nav-1-brand-name {
    margin-right: 0;
    font-size: 1.4em;
  }

  .hero-1-flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-1-social-list.in-article {
    flex-direction: row;
  }

  .listing-1-cms-item {
    background-color: var(--white);
  }

  .listing-1-content {
    width: 50%;
    margin-right: 3.5em;
  }

  .grid-team-1 {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
  }

  ._3d-text.is-uppercase {
    font-size: 2.8em;
  }

  .gallery-circle-button-1 {
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    font-size: .9em;
  }

  .contact-grid-block-2 {
    padding-top: 0;
    padding-right: 0;
  }

  .contact-grid-block-3 {
    border: 1px solid var(--dark-grey);
    background-color: var(--light-grey-background);
    padding: 5em;
  }

  .grid-article-content {
    grid-column-gap: 5em;
    grid-row-gap: 5em;
    grid-template-columns: .25fr 2fr;
  }

  .article-side-image {
    height: auto;
    position: relative;
    top: 0;
  }

  .topic-grid-title-1 {
    font-size: 1.9em;
  }

  .topic-grid-block-1 {
    padding-left: 2em;
  }

  .list-title {
    font-size: 1.4em;
  }

  .list-line.display-on-tablet {
    display: block;
  }

  .list-paragraph {
    font-size: 1.1em;
  }

  .custom-list-block.is-horizontal {
    padding-bottom: 2em;
  }

  .overview-block-3 {
    grid-column-gap: 2.5em;
    grid-row-gap: 0em;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .gallery-row {
    height: auto;
    min-height: 100vh;
  }

  .gallery-list {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .gallery-item {
    flex: 1;
  }

  .gallery-item:hover {
    width: 100%;
  }

  .gallery-overlay-color {
    z-index: 13;
  }

  .gallery-content {
    padding-top: 8em;
    padding-bottom: 5em;
  }

  .default-home-text {
    font-size: .9em;
    display: none;
  }

  .grid-newsletter {
    grid-template-columns: 1fr;
  }

  .gallery-text-1 {
    font-size: 1.7em;
  }

  .contact-grid-1 {
    grid-template-columns: 1fr;
  }

  .articles-1-listing-1 {
    grid-template-columns: 1fr 1fr;
  }

  .nav-1-row-2 {
    grid-template-columns: 2fr 1fr;
    justify-content: space-between;
    align-items: stretch;
    height: 4em;
    display: flex;
  }

  .search-input {
    padding-left: 1.5em;
  }

  .search-button {
    width: 5em;
  }

  .article-hero-link-2 {
    color: var(--white);
  }

  .hero-1-link-inner-1 {
    padding-left: 2em;
    padding-right: 1em;
  }

  .hero-1-link-inner-2 {
    padding-left: 2em;
    padding-right: 2em;
  }

  .hero-1-link-box-2 {
    margin-right: 2em;
  }

  .topics-1-list {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
  }

  .footer-1-social-item:hover {
    width: 100%;
  }

  .article-link-block-2 {
    color: var(--white);
  }

  .article-link-block-2:hover {
    color: var(--white);
    background-color: #0000;
  }

  .article-link-block-2.is-light:hover {
    color: var(--body-black);
    background-color: #0000;
  }

  .article-2-name {
    font-size: 1.2em;
  }

  .article-2-link-block:hover {
    background-color: #0000;
  }

  .newsletter-button {
    font-size: 1em;
  }

  .newsletter-text-1 {
    font-size: 2em;
  }

  .articles-2-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero-header-2 {
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 11em;
    padding-bottom: 0;
  }

  .article-featured-1-item {
    align-self: auto;
    min-height: 33em;
    padding: 3em;
  }

  .hero-2-link-inner-2 {
    padding: 3em;
  }

  .article-2-hero-link-1 {
    top: 3em;
    left: 3em;
  }

  .articles-4-image-size {
    width: 15em;
  }

  .about-grid-block-2 {
    min-height: 20em;
  }

  .topic-2-content {
    padding-right: 1em;
  }

  .topic-2-content:hover {
    padding-left: 0;
    padding-right: 1em;
  }

  .topics-3-list {
    grid-template-columns: 1fr 1fr;
  }

  .topic-3-inner {
    padding-left: 2em;
    padding-right: 2em;
  }

  .articles-with-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar.is-sticky {
    position: relative;
    top: 0;
  }

  .sidebar-article-1-link:hover {
    background-color: #0000;
  }

  .sidebar-articles-2-list {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar-article-1-name.is-2nd {
    font-size: 1.2em;
  }

  .sidebar-audience-1-list {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .sidebar-audience-1-link:hover {
    background-color: #0000;
  }

  .sidebar-audience-1-name {
    font-size: 1.2em;
  }

  .socials-1 {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .topic-2-link {
    border-color: var(--body-black);
    background-color: #ffffff80;
  }

  .topic-2-link:hover {
    background-color: #ffffff80;
  }

  .topics-2-list {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr 1fr;
  }

  .topic-4-link:hover {
    letter-spacing: .01em;
  }

  .articles-4-block-1 {
    max-width: none;
  }

  .image {
    font-size: 1.5em;
  }

  .about-text-2 {
    font-size: 1.7em;
  }

  .aside-menu-width {
    width: 60vw;
  }

  .aside-menu-link-name {
    min-width: 6em;
    font-size: 1.6em;
  }

  .aside-menu-link {
    padding: 2.5em 3em;
  }

  .articles-6-list {
    grid-template-columns: 1fr;
  }

  .article-6-inner {
    padding: 3em;
  }

  .header-with-articles {
    padding-top: 12em;
  }

  .contact-grid-block-6 {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

  .text-min-width {
    text-align: right;
    min-width: auto;
  }

  .text-min-width.is-2nd {
    margin-left: auto;
    margin-right: 4em;
  }

  .hero-1-content-text-2 {
    text-align: center;
  }

  .article-1-padding-1 {
    padding-top: 14em;
  }

  .article-1-author-block {
    text-align: right;
    min-width: auto;
  }

  .content-line-2 {
    width: 1.3em;
  }

  .article-1-grid-block-1 {
    grid-column-gap: 1.25em;
    text-align: right;
    min-width: auto;
  }

  .article-1-grid-author {
    grid-template-columns: 1fr;
  }

  .author-padding {
    padding-top: 11.5em;
  }

  .home-4-padding-1 {
    padding-top: 12em;
  }

  .review-title-block {
    text-align: center;
  }

  .gallery-links-list {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr;
  }

  .gallery-link-inner {
    padding: 3em;
  }

  .gallery-link-icon {
    font-size: 3em;
  }

  .author-name-1 {
    font-size: 1.3em;
  }

  .author-role-1 {
    font-size: .9em;
  }

  .terms-grid {
    grid-column-gap: 3.25em;
    grid-row-gap: 3.25em;
  }

  .sidebar-title-1 {
    font-size: 1.6em;
  }

  .topics-5-list {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr;
  }

  .topic-5-inner {
    padding: 3em;
  }

  .sidebar-author-1-link:hover {
    background-color: #0000;
    padding-top: .8em;
    padding-bottom: .8em;
  }

  .sidebar-authors-1-name {
    font-size: 1.2em;
  }

  .articles-1-listing-2 {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar-authors-1-list {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .featured-article-1-link {
    color: var(--white);
  }

  .featured-article-1-link:hover {
    color: var(--white);
    background-color: #0000;
  }

  .overview-hero-content {
    grid-column-gap: 3.25em;
    grid-row-gap: 2.25em;
    grid-template-columns: 1fr 1fr;
  }

  .overview-title-block {
    padding-top: 6em;
    padding-bottom: 4em;
  }

  .hero-content-block-2 {
    grid-template-columns: 1fr 1fr;
  }

  .quote-icon-3 {
    font-size: 5em;
  }

  .grid-text-1 {
    font-size: 1.5em;
  }

  .about-grid-3 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .listing-grid-1 {
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 11em;
    padding-bottom: 0;
  }

  .grid-block-5 {
    height: 25em;
  }

  .dropdown-list.w--open, .dropdown-list-2.w--open {
    top: 4em;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 11px;
  }

  .heading.is-fullscreen-hero-1-title-1 {
    max-width: 7em;
  }

  .heading.is-overview-title-1 {
    font-size: 5vw;
    line-height: 1.6em;
  }

  .heading.is-gallery-title-2, .heading.is-article-hero-1 {
    font-size: 4em;
  }

  .heading.is-article-hero-2 {
    font-size: 3em;
  }

  .heading.is-title-2 {
    margin-bottom: 1em;
  }

  .heading.is-about-title-2 {
    font-size: 3em;
  }

  .heading.is-overview-title {
    font-size: 3.8em;
  }

  .heading.is-article-1-title {
    font-size: 4em;
  }

  .heading.is-social-hero-title {
    font-size: 5em;
  }

  .heading.is-title-3 {
    font-size: 3.5em;
  }

  .heading.is-overview-title-3 {
    font-size: 3.8em;
  }

  .heading.in-hero-header-3 {
    font-size: 3.5em;
  }

  .heading.in-hero-header-3-title-2 {
    font-size: 6em;
  }

  .heading.is-overview-title-2 {
    font-size: 2.5em;
  }

  .heading.is-audience-title-2 {
    max-width: 7em;
    font-size: 7em;
  }

  .accordion-arrow {
    font-size: 1.6em;
    left: 2em;
  }

  .accordion-toggle.in-reviews {
    padding-left: 8em;
    padding-right: 8em;
  }

  .listing-2-cms-list {
    grid-template-columns: 1fr;
  }

  .listing-2-content-text {
    margin-bottom: 1em;
    font-size: 1.2em;
    line-height: 1.7em;
  }

  .listing-2-content-text.is-larger {
    margin-bottom: 1.5em;
  }

  .listing-2-image {
    height: 20em;
    min-height: auto;
  }

  .listing-2-cms-item:nth-child(2n) {
    background-color: #0000;
  }

  .empty-state-default.is-hero-header-1 {
    min-height: 7.7em;
  }

  .content-text-2 {
    font-size: 1.3em;
  }

  .button-text {
    font-size: .9em;
  }

  .about-grid-1 {
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 6em;
  }

  .grid-large-text-1 {
    font-size: 3em;
  }

  .checkbox-field {
    font-size: 1.2em;
  }

  .form-field::placeholder, .checkbox-label {
    font-size: .9em;
  }

  .form {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .rich-text p {
    font-size: 1.4em;
  }

  .rich-text.in-testimonial {
    font-size: 1.3em;
  }

  .rich-text li, .rich-text blockquote {
    font-size: 1.4em;
  }

  .rich-text.is-author-text {
    text-align: left;
  }

  .grid-content-2 {
    padding: 6vw;
  }

  .grid-text-2 {
    font-size: 1.5em;
  }

  .grid-content-3 {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .grid-text-3 {
    font-size: 6em;
  }

  .grid-text-4 {
    font-size: 1em;
  }

  .carousel-block {
    padding-left: 4em;
    padding-right: 4em;
  }

  .carousel-nav {
    width: 12em;
  }

  .carousel-mask {
    margin-top: 6em;
    margin-bottom: 7em;
  }

  .navbar-1 {
    border-bottom-width: 0;
    border-bottom-color: #fff0;
    overflow: visible;
  }

  .navbar-1.is-dark, .nav-1-row-1.is-dark {
    border-bottom-color: #0000;
  }

  .nav-1-column-1 {
    flex: 1;
  }

  .nav-1-brand {
    border-right-color: #0000;
    justify-content: flex-start;
    padding-left: 2em;
    padding-right: 2em;
  }

  .nav-1-brand:hover {
    background-color: #0000;
    border-right-color: #0000;
  }

  .nav-1-brand.is-dark {
    border-top-color: #10121a00;
    border-right-color: #0000;
  }

  .nav-1-column-2 {
    flex: 0 auto;
    position: static;
  }

  ._2nd-nav-link.is-cta {
    padding-left: 2.5em;
  }

  ._2nd-nav-link.is-cta.is-2nd {
    border-top-color: #10121a00;
  }

  ._2nd-nav-link.for-aside-menu {
    margin-left: 0;
    padding-right: 2.5em;
  }

  ._2nd-nav-link.for-aside-menu.is-dark, .nav-1-menu-button.is-dark {
    border-top-color: #10121a00;
  }

  .main-circle-button {
    font-size: .8em;
  }

  .main-circle-button.is-mini.phone-is-hide {
    display: none;
  }

  .topic-4-number {
    margin-left: 3.3em;
    margin-right: 3.3em;
  }

  .footer-blur-block {
    padding: 1.5em;
    position: relative;
  }

  .footer-1-social-name {
    font-size: .9em;
  }

  .fullscreen-inner {
    flex-flow: wrap;
    place-content: flex-start space-between;
    align-items: stretch;
    overflow: auto;
  }

  .small-link.in-topics, .small-link.in-terms {
    flex: 0 auto;
  }

  .small-text-link {
    font-size: 1em;
  }

  .footer-1-column-2 {
    width: 100%;
    margin-right: 0;
    position: relative;
  }

  .footer-1-column-1 {
    width: 100%;
  }

  .footer-1-inner {
    flex-wrap: wrap;
  }

  .footer-1-main-link {
    min-height: 6.2em;
    padding-left: 4.1em;
    padding-right: 4.1em;
  }

  .footer-1-link-text {
    font-size: 2.2em;
  }

  .terms-3-cms {
    margin-bottom: 3em;
  }

  .menu-arrow-line {
    width: 4em;
  }

  .footer-1-social-link {
    color: var(--white);
    padding-top: 1.8em;
    padding-bottom: 1.8em;
  }

  .menu-2-main-link {
    min-height: 6.2em;
    padding-left: 4em;
    padding-right: 4em;
  }

  .menu-3-grid-content {
    background-color: #15172099;
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .menu-1-column-1 {
    width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-2-link-text {
    font-size: 2em;
  }

  .menu-1-column-2 {
    width: 100%;
    height: auto;
    padding: 6em 4em;
    position: relative;
  }

  .footer-1-terms {
    border-bottom: 1px solid #10121a40;
    width: 100%;
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
  }

  .fullscreen-hero {
    min-height: 88vh;
    padding-top: 14em;
  }

  .fullscreen-hero.is-100vh {
    min-height: 100vh;
  }

  .nav-1-brand-name {
    font-size: 1.6em;
  }

  .header-1 {
    padding-top: 14em;
  }

  .circle-social-button {
    font-size: .8em;
  }

  .listing-1-cms-list {
    grid-template-columns: 1fr;
  }

  .listing-1-cms-item:nth-child(2n) {
    background-color: #0000;
  }

  .listing-1-block-1 {
    flex-wrap: wrap;
    padding-top: 2.5em;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .listing-1-content {
    width: 100%;
    max-width: 30em;
    margin-right: 0;
    padding-bottom: 2em;
  }

  .listing-1-content.is-2nd {
    align-self: auto;
  }

  .grid-team-1 {
    grid-row-gap: 3.25em;
    grid-template-columns: 1fr;
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .about-title-1 {
    font-size: .8em;
  }

  .about-title-name {
    font-size: 1.7em;
  }

  .about-title-name.is-main-title {
    font-size: 1.9em;
  }

  .about-author-block-2 {
    align-items: flex-start;
    max-width: none;
  }

  .about-author-flex.is-1st, .about-author-flex.is-scope {
    width: 100%;
  }

  .gallery-circle-button-1 {
    width: 6em;
    height: 6em;
  }

  .project-image-size {
    height: 30em;
  }

  .topic-grid-1 {
    grid-template-columns: 1fr;
  }

  .terms-small-links {
    width: 100%;
    padding-top: 0;
    position: relative;
    top: 0;
  }

  .terms-small-links-list {
    grid-column-gap: 2.5em;
    grid-row-gap: .25em;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .grid-article-content {
    grid-column-gap: 0em;
  }

  .article-image-size {
    height: 30em;
  }

  .gallery-size {
    height: 20em;
  }

  .list-title {
    font-size: 1.6em;
  }

  .list-line {
    left: 1.2em;
  }

  .list-paragraph {
    font-size: 1.2em;
  }

  .circle-in-list {
    width: 2.6em;
    height: 2.6em;
    margin-right: 2em;
  }

  .overview-block-3 {
    padding-top: 6em;
  }

  .overview-inner-1 {
    padding-top: 8em;
  }

  .gallery-cms-item-large {
    height: 30em;
  }

  .accordion-text {
    font-size: 1.3em;
  }

  .gallery-text-1 {
    font-size: 1.5em;
  }

  .articles-1-listing-1 {
    grid-template-columns: 1fr;
  }

  .nav-1-row-2 {
    display: none;
  }

  .nav-1-search-link {
    border-bottom-color: #ffffff4d;
    flex: 0 auto;
    width: 100%;
    font-size: 1em;
    position: absolute;
    inset: 4em 0% auto;
  }

  .nav-1-search-link.is-dark {
    border-bottom-color: #10121a40;
  }

  .search-input {
    padding-left: 1.8em;
  }

  .search-button {
    width: 10em;
  }

  .article-hero-header-1-item {
    min-height: auto;
  }

  .article-hero-content-1 {
    grid-row-gap: 3.75em;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-1-link-block-1 {
    flex: 0 auto;
    width: 100%;
  }

  .hero-1-link-inner-1 {
    border-bottom: 1px solid #a6a38680;
    padding: 3em 4em;
  }

  .hero-1-links {
    flex-wrap: wrap-reverse;
  }

  .hero-1-link-block-2 {
    width: 100%;
  }

  .hero-1-link-inner-2 {
    padding-left: 3em;
    padding-right: 3em;
  }

  .article-1-name-title-1 {
    font-size: 1.7em;
  }

  .topics-1-list {
    grid-column-gap: 1.75em;
    grid-row-gap: 1.75em;
  }

  .subfooter-1 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-1-author {
    width: 100%;
  }

  .articles-3-image-size {
    width: 35%;
  }

  .articles-3-name {
    font-size: 1.5em;
  }

  .article-2-name {
    font-size: 1.4em;
  }

  .article-2-link-block {
    border-left-color: #0000;
  }

  .article-2-item {
    border-left: 1px solid #313544;
  }

  .article-2-item:first-child {
    background-color: #1d1f2a;
    border-left-color: #5f6477;
  }

  .articles-2-list {
    grid-template-columns: 1fr;
  }

  .hero-2-link-block-2 {
    width: 100%;
  }

  .hero-2-link-inner-2 {
    padding-left: 3em;
    padding-right: 3em;
  }

  .article-2-hero-content-1 {
    grid-row-gap: 3.75em;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-2-link-name-2 {
    font-size: 1.4em;
  }

  .articles-4-image-size {
    width: 35%;
  }

  .about-grid-2 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-grid-block-2 {
    min-height: 14em;
  }

  .topics-3 {
    width: 100%;
  }

  .topic-3-link {
    min-height: 14em;
  }

  .topic-3-inner {
    padding-bottom: 1.7em;
    padding-left: 1.7em;
    padding-right: 1.7em;
  }

  .articles-5-list {
    grid-template-columns: 1fr;
  }

  .article-5-image-size {
    width: 30%;
  }

  .article-5-name-title {
    font-size: 1.7em;
  }

  .sidebar-article-1-item {
    border-left: 1px solid #313544;
  }

  .sidebar-article-1-link {
    border-left-color: #0000;
  }

  .sidebar-articles-2-list {
    grid-template-columns: 1fr;
  }

  .sidebar-article-1-name {
    font-size: 1.4em;
  }

  .sidebar-audience-1-item {
    border-left: 1px solid #313544;
  }

  .sidebar-audience-1-link {
    border-left-color: #0000;
  }

  .sidebar-audience-1-name {
    font-size: 1.4em;
  }

  .pagination-button {
    padding-left: 1em;
    padding-right: 1em;
  }

  .topic-2-name-text {
    font-size: 1.7em;
  }

  .topic-2-description-text {
    font-size: 1.1em;
  }

  .topics-2-list {
    grid-template-columns: 1fr;
  }

  .about-content-grid {
    grid-column-gap: 3em;
    grid-row-gap: 4.5em;
    grid-template-columns: 1fr;
  }

  .about-grid-block-4 {
    height: 27em;
  }

  .about-text-2 {
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 2em;
    line-height: 1.4em;
  }

  .about-text-3 {
    font-size: 1.1em;
  }

  .about-text-1 {
    font-size: 1.6em;
  }

  .aside-menu-width {
    width: 66vw;
  }

  .articles-6 {
    width: 100%;
  }

  .article-6-inner {
    padding-left: 3em;
    padding-right: 3em;
  }

  .accordion-quote-icon {
    font-size: 1.6em;
    right: 2em;
  }

  .text-min-width.is-2nd {
    margin-right: 2em;
  }

  .about-author-image-1 {
    min-height: 24em;
  }

  .about-author-block-1 {
    grid-column-gap: 3.75em;
    flex-flow: wrap;
    justify-content: flex-start;
  }

  .authors-topics-list {
    grid-column-gap: 2.5em;
    grid-row-gap: 1em;
    flex-flow: wrap;
  }

  .hero-1-content-text-2 {
    text-align: center;
  }

  ._3d-image-size {
    height: 27em;
  }

  .article-1-author-block {
    width: 100%;
  }

  .article-1-grid-author {
    flex-wrap: wrap;
  }

  .about-author-block-3 {
    max-width: none;
  }

  .author-image-size {
    height: 30em;
  }

  .review-header {
    padding-top: 14em;
  }

  .gallery-links {
    width: 100%;
  }

  .gallery-link-inner {
    min-height: 10em;
    padding-left: 3em;
    padding-right: 3em;
  }

  .title-flex {
    grid-column-gap: 1em;
  }

  .author-role-1 {
    font-size: 1em;
  }

  .topics-small-links {
    width: 100%;
    padding-top: 0;
    position: relative;
    top: 0;
  }

  .topics-small-links-list {
    grid-column-gap: 2.5em;
    grid-row-gap: .25em;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .topics-5 {
    width: 100%;
  }

  .topic-5-inner {
    min-height: 10em;
    padding-left: 3em;
    padding-right: 3em;
  }

  .sidebar-authors-1-name {
    font-size: 1.4em;
  }

  .articles-1-listing-2 {
    grid-template-columns: 1fr;
  }

  .article-6-image-size {
    width: 30%;
  }

  .overview-hero-content {
    text-align: center;
  }

  .about-link-text {
    font-size: 1em;
  }

  .hero-content-block-2 {
    margin-left: 2em;
  }

  .quote-icon-3 {
    font-size: 7em;
  }

  .grid-text-1 {
    font-size: 1.8em;
  }

  .about-grid-3 {
    grid-column-gap: 5em;
    grid-row-gap: 5em;
    grid-template-columns: 1fr 1fr;
  }

  .about-grid-block-6 {
    max-width: none;
    min-height: 25em;
  }

  .about-grid-block-7 {
    max-width: 80%;
  }

  .hero-header-3 {
    min-height: auto;
  }

  .hero-header-3-text-1 {
    letter-spacing: .1em;
    font-size: 1.4em;
  }

  .overview-grid-1 {
    grid-template-columns: 1fr;
  }

  .logo-image, .logo-image-2 {
    font-size: .9em;
  }
}

@media screen and (max-width: 479px) {
  .container, .container.is-full-width {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .container.in-audience {
    padding-left: 2em;
    padding-right: 2em;
  }

  .padding-inner.in-articles, .padding-inner.phone-padding-bottom-0em {
    padding-bottom: 0;
  }

  .padding-inner.phone-padding-top-0em {
    padding-top: 0;
  }

  .heading.is-fullscreen-hero-1-title-1 {
    font-size: 5em;
    line-height: 1.2em;
  }

  .heading.is-overview-title-1 {
    font-size: 5.8vw;
  }

  .heading.password {
    font-size: 2.6em;
  }

  .heading.is-gallery-title-2 {
    font-size: 3.5em;
  }

  .heading.is-article-hero-1 {
    font-size: 3.5em;
    line-height: 1.3em;
  }

  .heading.is-title-2 {
    font-size: 1.7em;
  }

  .heading.hero-1-title-2 {
    font-size: 5em;
  }

  .heading.hero-1-title-2.in-gallery {
    font-size: 4em;
  }

  .heading.is-about-title-2 {
    font-size: 2.8em;
  }

  .heading.is-audience-title-1 {
    font-size: 15vw;
  }

  .heading.is-overview-title {
    margin-bottom: .2em;
    font-size: 14vw;
    line-height: 1.2em;
  }

  .heading.is-article-1-title {
    font-size: 3em;
    line-height: 1.2em;
  }

  .heading.is-review-name {
    font-size: 4.1em;
  }

  .heading.is-social-hero-title {
    font-size: 4em;
  }

  .heading.is-overview-title-3 {
    font-size: 8vw;
    line-height: 1.2em;
  }

  .heading.in-hero-header-3 {
    font-size: 3em;
    line-height: 1.3em;
  }

  .heading.in-hero-header-3-title-2 {
    font-size: 5em;
  }

  .heading.is-audience-title-2 {
    font-size: 17vw;
    line-height: 1.2em;
  }

  .accordion-arrow {
    font-size: 1.3em;
    left: 1em;
  }

  .accordion-inner-block {
    width: 5em;
    margin-right: .6em;
  }

  .accordion-toggle.in-reviews {
    padding-left: 4em;
    padding-right: 4em;
  }

  .accordion-inner.in-testimonial {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .listing-2-block-1 {
    padding-top: 3em;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .listing-2-title-text {
    margin-bottom: .7em;
  }

  .listing-2-title-text.is-larger {
    font-size: 2em;
  }

  .listing-2-content-text.is-larger {
    font-size: 1.1em;
  }

  .listing-2-image {
    height: 15em;
  }

  .plus-text {
    top: 2.5em;
    right: 8vw;
  }

  .plus-text.is-3rd {
    top: 4em;
  }

  .empty-state-default {
    padding: 8vw;
  }

  .about-grid-1 {
    padding-top: 6em;
  }

  .grid-large-text-1 {
    font-size: 2.5em;
  }

  .about-grid-image-1 {
    height: 11em;
  }

  .form-button {
    border-radius: 0;
  }

  .form-error-paragraph {
    font-size: 1em;
  }

  .form-success-title {
    font-size: 1.2em;
  }

  .form-field {
    border-radius: 0;
  }

  .form-field.in-newsletter {
    border-bottom-width: 0;
    border-bottom-color: #0000;
    border-right-color: #10121a4d;
    border-radius: 0;
    min-height: 5.3em;
  }

  .form-error-message {
    padding: 1.7em;
  }

  .rich-text ul {
    padding-left: 2.2em;
  }

  .rich-text.in-testimonial {
    font-size: 1.1em;
  }

  .grid-contact {
    grid-template-columns: 1fr;
  }

  .contact-1-divider {
    margin-top: 4em;
    margin-bottom: 4em;
  }

  .grid-about-2 {
    grid-template-columns: 1fr;
  }

  .grid-block-1 {
    height: auto;
    min-height: 20em;
  }

  .grid-content-2 {
    padding-left: 2em;
    padding-right: 2em;
  }

  .grid-text-2 {
    font-size: 1.3em;
  }

  .grid-text-3 {
    font-size: 4.7em;
  }

  .grid-block-2 {
    height: auto;
    min-height: 20em;
  }

  .carousel-block {
    padding-left: 2em;
    padding-right: 2em;
  }

  .carousel-button {
    margin-right: auto;
  }

  .carousel-nav {
    height: 3em;
    bottom: 5.6em;
  }

  .carousel-slide {
    width: 100%;
  }

  .carousel-mask {
    margin-top: 4em;
    margin-bottom: 11em;
  }

  .review-title-2 {
    font-size: 1.3em;
  }

  .portfolio-3-title {
    font-size: 9vw;
  }

  .portfolio-3-block {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .portfolio-3-cms-item {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-1-column-1 {
    flex: 1;
  }

  .nav-1-brand {
    text-align: center;
    flex: 1;
    justify-content: center;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .portfolio-3-button {
    font-size: .8em;
  }

  .portfolio-3-content {
    margin-right: 1em;
  }

  .portfolio-3-service-link {
    letter-spacing: .1em;
    font-size: 1em;
  }

  .nav-1-column-2 {
    flex: 0 auto;
  }

  ._2nd-nav-link.is-cta {
    background-size: 1.3em;
    padding-left: 4vw;
    padding-right: 4em;
  }

  ._2nd-nav-link.for-aside-menu {
    background-position: 14%;
    background-size: 1.6em;
    padding-left: 4em;
    padding-right: 4vw;
    display: none;
  }

  .nav-1-menu-button {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .nav-1-menu-icon {
    margin-right: 1vw;
  }

  .nav-1-menu-text-block {
    font-weight: 700;
  }

  .main-circle-button.is-mini {
    font-size: .6em;
  }

  .topic-4-name {
    font-size: 1.5em;
  }

  .topic-4-name.in-audience {
    font-size: 1.8em;
  }

  .topic-4-image-size {
    width: 6em;
  }

  .topic-4-link-block, .topic-4-link-block:hover {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .topic-4-number {
    margin-left: 1.4em;
    margin-right: 1.4em;
  }

  .topic-4-number.in-audience {
    margin-left: 0;
  }

  .topic-4-icon {
    font-size: 1.5em;
  }

  .footer-blur-block {
    width: 100%;
    min-width: auto;
    max-width: none;
  }

  .footer-1-social-name {
    font-size: .8em;
  }

  .footer-tab-link {
    margin-right: 1.7em;
  }

  .small-link {
    padding-top: .3em;
    padding-bottom: .3em;
  }

  .footer-1-column-2 {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .footer-1-column-1 {
    padding-top: 6em;
  }

  .footer-1-main-link {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .footer-dot {
    margin-left: 1em;
    margin-right: 1em;
  }

  .menu-arrow-line {
    width: 3em;
  }

  .menu-2-main-link {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .menu-3-grid-content {
    width: 100%;
    min-width: auto;
    max-width: none;
  }

  .menu-1-column-1 {
    padding-top: 6em;
  }

  .menu-2-link-text {
    font-size: 1.7em;
  }

  .menu-1-column-2 {
    padding: 8vw;
  }

  .fullscreen-hero {
    padding-top: 12em;
  }

  .circle-button-1 {
    font-size: .8em;
  }

  .portfolio-3-background {
    object-position: 20% 50%;
  }

  .close-button {
    font-size: .7em;
  }

  .hero-1-flex {
    padding-bottom: 0;
  }

  .listing-1-block-1 {
    flex-wrap: wrap-reverse;
    padding-top: 1.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .listing-1-content {
    flex-wrap: wrap;
    max-width: none;
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .hero-2-content {
    margin-left: 2em;
  }

  .hero-2-content.in-404 {
    margin-left: 0;
  }

  .hero-1-content-text {
    font-size: 1.2em;
  }

  ._3d-text.is-uppercase {
    font-size: 1.9em;
  }

  ._3d-text.is-author-name {
    font-size: 7vw;
  }

  .gallery-circle-button-1 {
    font-size: .7em;
  }

  .contact-grid-block-3 {
    padding: 8vw;
  }

  .empty-state-text {
    font-size: 1.2em;
  }

  .grid-article-content {
    grid-template-columns: .25fr 4fr;
  }

  .topic-grid-title-1 {
    font-size: 1.6em;
  }

  .topic-grid-block-1 {
    padding-left: 1em;
  }

  .grid-content-link.is-full-color {
    padding-left: 2em;
    padding-right: 2em;
  }

  .grid-gallery {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .gallery-size {
    height: 15em;
  }

  .list-line {
    left: 1.1em;
  }

  .list-line.display-on-phone {
    display: block;
  }

  .custom-list-gallery {
    max-width: 22em;
  }

  .circle-in-list {
    width: 2.3em;
    height: 2.3em;
    margin-right: 1.5em;
  }

  .custom-list-block {
    padding-bottom: 3.5em;
  }

  .overview-block-3 {
    grid-template-columns: 1fr;
    padding-top: 5em;
  }

  .buttons-flex {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    justify-content: center;
  }

  .overview-inner-1 {
    padding-top: 8em;
  }

  .password-block {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .gallery-content {
    padding: 6em 10vw 3.5em;
  }

  .default-home-text {
    font-size: .8em;
  }

  .newsletter-form-block {
    flex-wrap: wrap;
  }

  .newsletter-title-text {
    font-size: 2em;
  }

  .contact-grid-1 {
    grid-template-columns: 1fr;
  }

  .search-input {
    padding-left: 6vw;
  }

  .search-button {
    width: 6em;
  }

  .article-hero-title-block {
    border-left-width: 0;
    border-left-color: #0000;
    padding-left: 0;
  }

  .hero-1-link-inner-1 {
    padding: 8vw;
  }

  .hero-1-link-block-2 {
    padding: 3vw;
  }

  .hero-1-link-inner-2 {
    padding: 5vw;
  }

  .hero-1-link-name-2 {
    font-size: 1.2em;
  }

  .topics-1-list {
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
    grid-template-columns: 1fr 1fr;
  }

  .footer-1-socials-list {
    flex-wrap: wrap;
  }

  .footer-1-social-item {
    margin-left: 0;
  }

  .subfooter-1 {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .article-link-block-2 {
    flex-wrap: wrap;
  }

  .articles-1 {
    width: 114%;
    margin-left: -6vw;
  }

  .articles-3-image-size {
    width: 100%;
    height: 8em;
  }

  .articles-3-content-block {
    flex: 0 auto;
    width: 100%;
  }

  .articles-3-name {
    font-size: 1.7em;
    line-height: 1.4em;
  }

  .article-2-link-block {
    padding-top: 1.3em;
    padding-bottom: 1.3em;
  }

  .newsletter-padding {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .newsletter-button {
    width: 100%;
  }

  .newsletter-field-block {
    width: 100%;
    right: 0;
  }

  .newsletter-text-1 {
    font-size: 1.6em;
  }

  .articles-3 {
    width: 120%;
    margin-left: -8vw;
  }

  .hero-header-2 {
    padding-top: 10em;
  }

  .hero-2-link-inner-2 {
    align-items: center;
    min-height: auto;
    padding: 10vw 5vw;
  }

  .article-2-hero-content-1 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .article-2-hero-link-1 {
    background-color: #ffffffe6;
    border-color: #0000;
    position: relative;
    top: 0;
    left: 0;
  }

  .hero-2-link-name-2 {
    font-size: 1.3em;
  }

  .hero-2-box-2 {
    letter-spacing: .1em;
    align-self: auto;
    margin-top: 0;
    margin-bottom: .75em;
    margin-right: 1.6em;
    padding-top: .3em;
    padding-bottom: .3em;
    font-size: .7em;
  }

  .image-bg-color-3 {
    background-color: #10121a8c;
    background-image: none;
  }

  .hero-2-link-content-2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-4-link-block {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-wrap: wrap;
  }

  .articles-4-image-size {
    width: 100%;
    height: 8em;
  }

  .articles-4-content-block {
    flex: 0 auto;
    width: 100%;
  }

  .articles-4-name {
    line-height: 1.3em;
  }

  .articles-4-description-text {
    line-height: 1.5em;
  }

  .topic-2-content {
    grid-column-gap: .25em;
    grid-row-gap: .25em;
  }

  .topics-3 {
    padding: 3vw;
  }

  .topics-3-list {
    grid-template-columns: 1fr;
  }

  .topic-3-inner {
    padding: 5vw;
  }

  .topic-3-box {
    margin-right: 2.5em;
  }

  .articles-5 {
    width: 120%;
    margin-left: -8vw;
  }

  .article-5-link-block {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-wrap: wrap;
  }

  .article-5-image-size {
    width: 100%;
    height: 10em;
  }

  .sidebar-article-1-link {
    padding-top: 1.3em;
    padding-bottom: 1.3em;
  }

  .sidebar-audience-1-list {
    grid-template-columns: 1fr;
  }

  .sidebar-audience-1-link {
    padding: 1.3em 1em;
  }

  .sidebar-audience-1-name {
    font-size: 1.2em;
  }

  .hero-2-content-block.in-404 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .pagination {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .pagination-button {
    grid-column-gap: .25em;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .pagination-text {
    font-size: .9em;
  }

  .page-count {
    letter-spacing: .4em;
  }

  .pagination-block {
    padding-top: 2em;
  }

  .topic-2-link {
    padding: 7vw;
  }

  .about-grid-block-4 {
    height: 23em;
  }

  .aside-menu-width {
    width: 80vw;
  }

  .aside-menu-link-name {
    min-width: 4.1em;
    font-size: 1.4em;
  }

  .aside-menu-link {
    padding-left: 2em;
    padding-right: 2em;
  }

  .article-6-inner {
    align-items: center;
    min-height: auto;
    padding: 5vw;
  }

  .article-6-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-with-articles {
    padding-top: 10em;
  }

  .article-6-name {
    font-size: 1.3em;
  }

  .accordion-quote-icon {
    font-size: 1.3em;
    right: 1em;
  }

  .contact-grid-block-5 {
    justify-content: flex-start;
  }

  .contact-grid-block-6 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-min-width.with-flex {
    margin-bottom: .8em;
  }

  .text-min-width.is-2nd {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-1-content-text-2 {
    text-align: center;
    font-size: 1.2em;
  }

  ._3d-image-size {
    height: 23em;
  }

  .article-1-padding-1 {
    padding-top: 12em;
  }

  .article-1-padding-2 {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .article-1-author-block {
    margin-bottom: .5em;
  }

  .article-1-grid-author {
    grid-row-gap: .5em;
    grid-template-columns: 1fr;
  }

  .breadcrumbs {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .author-padding {
    padding-top: 10em;
  }

  .home-4-padding-1 {
    padding-top: 12em;
    padding-bottom: 4em;
  }

  .menu-dot {
    margin-left: 1em;
    margin-right: 1em;
  }

  .articles-in-topic {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2.3em;
  }

  .review-about-block {
    grid-column-gap: 1.25em;
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .review-block-1 {
    display: none;
  }

  .gallery-link-inner {
    align-items: center;
    min-height: auto;
    padding: 5vw;
  }

  .gallery-link-content {
    grid-column-gap: 1em;
  }

  .gallery-link-box {
    letter-spacing: .1em;
    align-self: auto;
    padding-top: .3em;
    padding-bottom: .3em;
    font-size: .7em;
  }

  .gallery-link-text {
    font-size: 1.6em;
  }

  .title-flex {
    grid-column-gap: .75em;
  }

  .author-name-1 {
    min-width: auto;
  }

  .authors-contacts {
    grid-column-gap: 1.25em;
  }

  .link-block-7 {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-padding {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .search {
    max-width: none;
  }

  .topic-5-inner {
    align-items: center;
    min-height: auto;
    padding: 5vw;
  }

  .topic-5-content {
    grid-column-gap: 1em;
  }

  .topic-5-box {
    letter-spacing: .1em;
    align-self: auto;
    padding-top: .3em;
    padding-bottom: .3em;
    font-size: .7em;
  }

  .topic-5-name {
    font-size: 1.4em;
  }

  .sidebar-authors-1-name {
    font-size: 1.2em;
  }

  .sidebar-authors-1-list {
    grid-template-columns: 1fr;
  }

  .featured-articles-1 {
    width: 120%;
    margin-left: -8vw;
  }

  .featured-article-1-link {
    flex-wrap: wrap;
  }

  .article-6-image-size {
    width: 100%;
    height: 10em;
  }

  .overview-hero-content {
    grid-column-gap: 1em;
    grid-row-gap: 1.5em;
    flex-wrap: wrap-reverse;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
  }

  ._404-button-block {
    margin-left: 0;
  }

  .overview-title-block {
    padding-top: 3em;
    padding-bottom: 1em;
  }

  .hero-content-block-2 {
    flex: 0 auto;
    align-items: start;
    width: 100%;
  }

  .social-text-1 {
    font-size: 1.2em;
  }

  .grid-text-1 {
    margin-top: 0;
  }

  .newsletter-form-success-title {
    font-size: 1.2em;
  }

  .about-grid-3 {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
  }

  .about-grid-block-6 {
    min-height: 19em;
  }

  .about-grid-block-7 {
    max-width: none;
  }

  .listing-grid-1 {
    padding-top: 10em;
  }

  .grid-block-3, .grid-block-4 {
    height: auto;
    min-height: 20em;
  }

  .overview-grid-1 {
    grid-template-columns: 1fr;
  }

  .grid-block-5 {
    height: auto;
    min-height: 20em;
  }

  .span-number-2 {
    font-size: .65em;
  }

  .logo-image, .logo-image-2 {
    font-size: .8em;
  }
}

#w-node-fad943c8-49a0-ed0f-cd1a-b8d3e121cffe-b6d9c7c2 {
  align-self: stretch;
}

#w-node-_5508f90b-cd03-6b79-23ba-17294a748a48-b6d9c7c2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5508f90b-cd03-6b79-23ba-17294a748a58-b6d9c7c2 {
  grid-area: 2 / 1 / 4 / 2;
}

#w-node-_5508f90b-cd03-6b79-23ba-17294a748a60-b6d9c7c2 {
  grid-area: 1 / 2 / 4 / 4;
}

#w-node-_5508f90b-cd03-6b79-23ba-17294a748a68-b6d9c7c2 {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-f00c3c2c-94b9-43f5-d36b-39655e7b18ba-b6d9c7d6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_54cba3fa-a506-3028-6fe8-8ae828218738-b6d9c7d6, #w-node-_54cba3fa-a506-3028-6fe8-8ae82821873c-b6d9c7d6, #w-node-_54cba3fa-a506-3028-6fe8-8ae828218743-b6d9c7d6, #w-node-_54cba3fa-a506-3028-6fe8-8ae828218749-b6d9c7d6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_50c255ff-f396-60ae-2203-b1233081383c-b6d9c7d6 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_50c255ff-f396-60ae-2203-b12330813840-b6d9c7d6, #w-node-_50c255ff-f396-60ae-2203-b12330813845-b6d9c7d6, #w-node-_50c255ff-f396-60ae-2203-b1233081384a-b6d9c7d6, #w-node-b2ec46e6-683d-8eba-bf47-3e34a1a22e2d-a1a22e2b, #w-node-_02b43a7d-9e92-1d1e-a790-013e5f99c58c-b6d9c7d7, #w-node-_02b43a7d-9e92-1d1e-a790-013e5f99c54f-b6d9c7d7, #w-node-_02b43a7d-9e92-1d1e-a790-013e5f99c57c-b6d9c7d7, #w-node-_0af1af7b-9b14-a13f-930c-c2f7cb9e6337-b6d9c7d8, #w-node-fca4af63-2fb3-1022-c003-c62b0738c3ba-b6d9c7d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fca4af63-2fb3-1022-c003-c62b0738c3c7-b6d9c7d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_2ea1465e-0807-654a-fc8f-e4a8f1a8a789-b6d9c7d9, #w-node-fca4af63-2fb3-1022-c003-c62b0738c3df-b6d9c7d9, #w-node-_7e878120-130a-98af-864f-d72e4f768251-b6d9c7db, #w-node-_7e878120-130a-98af-864f-d72e4f768252-b6d9c7db, #w-node-_7e878120-130a-98af-864f-d72e4f768254-b6d9c7db, #w-node-a427932a-dd97-360c-842b-435dc71aacc1-b6d9c7db, #w-node-a427932a-dd97-360c-842b-435dc71aacc3-b6d9c7db {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_25a8f572-9c4e-4ca4-3289-23276f1bd5dc-b6d9c7db {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_7e878120-130a-98af-864f-d72e4f768262-b6d9c7db {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_64bce73d-9673-3f06-d142-d6a400ce7440-b6d9c7e2, #w-node-_2d2b3dab-4be0-6633-7964-a95f87979bb6-b6d9c7e2, #w-node-_941bf6ff-9c53-9ddd-c9bb-b9134b67debe-b6d9c7e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_941bf6ff-9c53-9ddd-c9bb-b9134b67dec6-b6d9c7e2 {
  justify-self: end;
}

#w-node-d0030084-73ac-a587-6730-a05ee9dd3f4e-b6d9c7e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c7bb22b8-9394-04b1-9373-60c3024de903-b6d9c7e3 {
  justify-self: center;
}

#w-node-c7bb22b8-9394-04b1-9373-60c3024de905-b6d9c7e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_6b811782-9dc1-b0ca-46ab-e91232890686-b6d9c7e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_6b811782-9dc1-b0ca-46ab-e9123289066e-b6d9c7e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_6b811782-9dc1-b0ca-46ab-e91232890670-b6d9c7e3, #w-node-_6b811782-9dc1-b0ca-46ab-e91232890672-b6d9c7e3, #w-node-_6b811782-9dc1-b0ca-46ab-e91232890674-b6d9c7e3, #w-node-_6b811782-9dc1-b0ca-46ab-e91232890676-b6d9c7e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6b811782-9dc1-b0ca-46ab-e9123289068a-b6d9c7e3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_3ae857c9-8055-4482-88b3-721d0f2a4a6c-b6d9c7e3, #w-node-_2ac17a6c-8d6d-f5de-b64f-283208df7026-b6d9c7e4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49fcaf6f-dbff-7dc9-fe04-46f7bb28e073-b6d9c7e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_49fcaf6f-dbff-7dc9-fe04-46f7bb28e075-b6d9c7e5, #w-node-_49fcaf6f-dbff-7dc9-fe04-46f7bb28e077-b6d9c7e5, #w-node-_49fcaf6f-dbff-7dc9-fe04-46f7bb28e079-b6d9c7e5, #w-node-_49fcaf6f-dbff-7dc9-fe04-46f7bb28e07b-b6d9c7e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49fcaf6f-dbff-7dc9-fe04-46f7bb28e083-b6d9c7e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: stretch center;
}

#w-node-_49fcaf6f-dbff-7dc9-fe04-46f7bb28e087-b6d9c7e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start center;
}

#w-node-da1b9a92-c937-837f-4629-a6ddeae331a8-b6d9c7e5, #w-node-_991d2a0a-5ac1-a2cd-d007-34a6e47dc8bc-b6d9c7e5, #w-node-_991d2a0a-5ac1-a2cd-d007-34a6e47dc8be-b6d9c7e5, #w-node-_991d2a0a-5ac1-a2cd-d007-34a6e47dc8c0-b6d9c7e5, #w-node-_991d2a0a-5ac1-a2cd-d007-34a6e47dc8c2-b6d9c7e5, #w-node-_991d2a0a-5ac1-a2cd-d007-34a6e47dc8c4-b6d9c7e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_991d2a0a-5ac1-a2cd-d007-34a6e47dc8d4-b6d9c7e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_991d2a0a-5ac1-a2cd-d007-34a6e47dc8d8-b6d9c7e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_32feee37-4b95-3643-639d-48d062f47c16-b6d9c7fe {
  align-self: stretch;
}

#w-node-_1d87680a-f449-f475-238a-ed8c71b54d51-b6d9c7fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7d04e650-6444-8dd5-c18f-366b63a5875c-b6d9c7fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-fdd8112a-cb1f-c96b-509e-7d97215bc036-b6d9c7fe, #w-node-_3ef1778e-7ecf-4ee9-8cef-26395496d508-b6d9c7fe, #w-node-_3ef1778e-7ecf-4ee9-8cef-26395496d51c-b6d9c7fe, #w-node-_76bda2b1-3ff8-abf9-a844-51db1862bd66-b6d9c802 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c3833544-1f40-5bee-4881-c2a563725370-b6d9c802 {
  justify-self: start;
}

#w-node-_876d9870-c01c-0575-586f-764a05c03a6e-b6d9c802 {
  justify-self: end;
}

#w-node-_425b6fa1-dae3-5635-73fb-4f88b4b4395b-b6d9c802, #w-node-_62d529f8-a949-cd5b-8aec-0e43c6aa7fd5-b6d9c802, #w-node-_62d529f8-a949-cd5b-8aec-0e43c6aa7fda-b6d9c802, #w-node-_62d529f8-a949-cd5b-8aec-0e43c6aa7fdf-b6d9c802 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_62d529f8-a949-cd5b-8aec-0e43c6aa7fe5-b6d9c802 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_05de4571-7611-2184-3d57-d8ecfc8fa6f4-b6d9c802, #w-node-e49fed62-2860-7f2f-a33c-be051e577fc0-b6d9c802 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c2803747-92e9-ba1a-7774-7bc0d3ffcc02-b6d9c802 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-c2803747-92e9-ba1a-7774-7bc0d3ffcc06-b6d9c802, #w-node-c2803747-92e9-ba1a-7774-7bc0d3ffcc0a-b6d9c802 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6cab1320-dc12-e602-61b6-e0d926ac5682-b6d9c803 {
  justify-self: start;
}

#w-node-_6cab1320-dc12-e602-61b6-e0d926ac5681-b6d9c803 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6cab1320-dc12-e602-61b6-e0d926ac5688-b6d9c803 {
  justify-self: end;
}

#w-node-_6cab1320-dc12-e602-61b6-e0d926ac56bf-b6d9c803 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6cab1320-dc12-e602-61b6-e0d926ac56e1-b6d9c803 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_6cab1320-dc12-e602-61b6-e0d926ac56d2-b6d9c803, #w-node-_6cab1320-dc12-e602-61b6-e0d926ac56d7-b6d9c803, #w-node-_6cab1320-dc12-e602-61b6-e0d926ac56dc-b6d9c803, #w-node-_8c2b7118-8431-dbfb-20f5-9ddbfc1b134c-b6d9c803, #w-node-_9cba4b84-bbe8-8142-d29d-6cb14aceb01d-b6d9c803, #w-node-_00a69f12-d9e7-53fb-17ff-a16d104621d7-b6d9c803, #w-node-_00a69f12-d9e7-53fb-17ff-a16d104621db-b6d9c803, #w-node-_00a69f12-d9e7-53fb-17ff-a16d104621e2-b6d9c803, #w-node-_00a69f12-d9e7-53fb-17ff-a16d104621e8-b6d9c803, #w-node-_16cedd87-47a2-7d42-cdb6-f7bc81f302fc-b6d9c805, #w-node-_1c4ee4f4-4cdb-1428-f109-22491d81c1fc-b6d9c805, #w-node-_17a00aa7-5e04-536f-7b01-b162916a3f70-b6d9c805 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_17a00aa7-5e04-536f-7b01-b162916a3f7d-b6d9c805 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_17a00aa7-5e04-536f-7b01-b162916a3f8b-b6d9c805, #w-node-_17a00aa7-5e04-536f-7b01-b162916a3f9a-b6d9c805, #w-node-_8fb34207-2436-6e6b-b123-be779c584a46-b6d9c805, #w-node-d8c91d6d-7c6f-f9df-fc48-6039b724fc84-b6d9c805, #w-node-c3c6d129-d55a-2b64-7ccd-dc0a7c6995c0-b6d9c805, #w-node-bf3b67a7-3489-ef87-7a34-5a9e9642dbe8-b6d9c805 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bf3b67a7-3489-ef87-7a34-5a9e9642dbe9-b6d9c805 {
  justify-self: start;
}

#w-node-bf3b67a7-3489-ef87-7a34-5a9e9642dbf0-b6d9c805 {
  justify-self: end;
}

#w-node-_9092021b-0587-56e9-cc1a-6ba3210efbfa-b6d9c807 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_42774fcf-a4ca-eb36-78ea-444af17ff883-b6d9c807 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_28cf86f3-32a8-96c4-2b82-b53287a55a98-b6d9c807, #w-node-ababae5c-58b0-f32d-56b6-f7820adf744a-b6d9c807, #w-node-_4ccce794-6933-c88d-7e53-c6e445123c0b-b6d9c840, #w-node-ff8c132f-76d3-e1b5-5f89-4345d9a8f08f-b6d9c840 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5fa0ed8f-2e77-8882-3d1f-e736cee2b1b1-b6d9c841 {
  align-self: stretch;
}

#w-node-ea8c4e26-28b6-723c-7a8f-53d48d6b8771-b6d9c841, #w-node-ea8c4e26-28b6-723c-7a8f-53d48d6b8785-b6d9c841, #w-node-ea8c4e26-28b6-723c-7a8f-53d48d6b8799-b6d9c841 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0613485f-e4ac-5c80-f033-c586bc57b18d-b6d9c847 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_0613485f-e4ac-5c80-f033-c586bc57b192-b6d9c847, #w-node-_0613485f-e4ac-5c80-f033-c586bc57b197-b6d9c847, #w-node-_0613485f-e4ac-5c80-f033-c586bc57b19c-b6d9c847, #w-node-caaf73d5-4f72-8a60-2fd9-f9eb662dbb5d-b6d9c847, #w-node-caaf73d5-4f72-8a60-2fd9-f9eb662dbb66-b6d9c847, #w-node-caaf73d5-4f72-8a60-2fd9-f9eb662dbb78-b6d9c847 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-caaf73d5-4f72-8a60-2fd9-f9eb662dbb80-b6d9c847 {
  justify-self: end;
}

#w-node-_560dbe53-255a-fe4f-6327-0c0bc91881db-b6d9c847, #w-node-e39cb0c8-1a65-c99f-2dfc-3b28bb30000d-b6d9c847, #w-node-de11782d-5026-c764-1e43-a219c1a5ccc3-b6d9c847 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cd823ccb-6fc5-a329-f2f2-f1d6ad309279-b6d9c847 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1bc0bce4-b68b-f155-c0f9-fce598a1d810-b6d9c847, #w-node-_1bc0bce4-b68b-f155-c0f9-fce598a1d814-b6d9c847, #w-node-_1bc0bce4-b68b-f155-c0f9-fce598a1d81b-b6d9c847, #w-node-_1bc0bce4-b68b-f155-c0f9-fce598a1d821-b6d9c847, #w-node-_618d502b-b481-5eb0-cdc3-708446a76046-46a76044, #w-node-_618d502b-b481-5eb0-cdc3-708446a7604a-46a76044, #w-node-_618d502b-b481-5eb0-cdc3-708446a7604d-46a76044, #w-node-_618d502b-b481-5eb0-cdc3-708446a76051-46a76044 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_618d502b-b481-5eb0-cdc3-708446a76059-46a76044 {
  grid-area: 2 / 2 / 4 / 4;
}

#w-node-_618d502b-b481-5eb0-cdc3-708446a7605d-46a76044 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_618d502b-b481-5eb0-cdc3-708446a76061-46a76044 {
  grid-area: 3 / 3 / 4 / 4;
}

#w-node-d7a67572-79de-81a4-760c-efa2ae7a3bef-b6d9c84a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d7a67572-79de-81a4-760c-efa2ae7a3bf0-b6d9c84a {
  justify-self: start;
}

#w-node-d7a67572-79de-81a4-760c-efa2ae7a3bf7-b6d9c84a {
  justify-self: end;
}

#w-node-_2ecc3c5f-c49d-b3bb-822d-97c6609572bf-b6d9c85e, #w-node-_6da0ebd5-df78-946e-556d-708aa376859d-b6d9c85e, #w-node-e123177f-5221-4a80-a050-bd810e14d719-b6d9c85e, #w-node-_0d9741e9-246a-3bb7-8bb7-79c826ad0a01-b6d9c85e, #w-node-c8ac0477-2f4e-2f23-df52-e080743b0ccf-b6d9c85f, #w-node-_1c1d87ef-278e-174f-63d5-2c0f414cfd8f-b6d9c85f, #w-node-c8ac0477-2f4e-2f23-df52-e080743b0cfd-b6d9c85f, #w-node-_9f6133a5-fc7e-d480-9876-3cf732356918-b6d9c85f, #w-node-c8ac0477-2f4e-2f23-df52-e080743b0d0d-b6d9c85f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fbb4e5ae-5ab9-1b63-3f6f-12a1f25cfb88-b6d9c85f {
  justify-self: start;
}

#w-node-fbb4e5ae-5ab9-1b63-3f6f-12a1f25cfb8b-b6d9c85f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fbb4e5ae-5ab9-1b63-3f6f-12a1f25cfb8f-b6d9c85f {
  justify-self: end;
}

#w-node-fbb4e5ae-5ab9-1b63-3f6f-12a1f25cfbfc-b6d9c85f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a816a41-6b27-1b47-a092-fe1baa892ab1-b6d9c85f {
  align-self: stretch;
}

#w-node-_9092021b-0587-56e9-cc1a-6ba3210efbfa-eb4a4bcd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_42774fcf-a4ca-eb36-78ea-444af17ff883-eb4a4bcd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_28cf86f3-32a8-96c4-2b82-b53287a55a98-eb4a4bcd, #w-node-ababae5c-58b0-f32d-56b6-f7820adf744a-eb4a4bcd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-c7bb22b8-9394-04b1-9373-60c3024de905-b6d9c7e3 {
    justify-self: start;
  }

  #w-node-c7bb22b8-9394-04b1-9373-60c3024de907-b6d9c7e3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_49fcaf6f-dbff-7dc9-fe04-46f7bb28e073-b6d9c7e5, #w-node-_49fcaf6f-dbff-7dc9-fe04-46f7bb28e083-b6d9c7e5, #w-node-_49fcaf6f-dbff-7dc9-fe04-46f7bb28e087-b6d9c7e5 {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_5508f90b-cd03-6b79-23ba-17294a748a48-b6d9c7c2, #w-node-_5508f90b-cd03-6b79-23ba-17294a748a58-b6d9c7c2, #w-node-_5508f90b-cd03-6b79-23ba-17294a748a60-b6d9c7c2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5508f90b-cd03-6b79-23ba-17294a748a68-b6d9c7c2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: auto;
  }

  #w-node-_54cba3fa-a506-3028-6fe8-8ae82821873c-b6d9c7d6 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_50c255ff-f396-60ae-2203-b1233081383c-b6d9c7d6 {
    grid-column: span 3 / span 3;
  }

  #w-node-_25a8f572-9c4e-4ca4-3289-23276f1bd5dc-b6d9c7db {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c7bb22b8-9394-04b1-9373-60c3024de903-b6d9c7e3 {
    justify-self: start;
  }

  #w-node-_6b811782-9dc1-b0ca-46ab-e91232890686-b6d9c7e3, #w-node-_991d2a0a-5ac1-a2cd-d007-34a6e47dc8d4-b6d9c7e5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_32feee37-4b95-3643-639d-48d062f47c16-b6d9c7fe {
    justify-self: stretch;
  }

  #w-node-_1d87680a-f449-f475-238a-ed8c71b54d51-b6d9c7fe {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c3833544-1f40-5bee-4881-c2a563725370-b6d9c802, #w-node-_876d9870-c01c-0575-586f-764a05c03a6e-b6d9c802 {
    justify-self: center;
  }

  #w-node-_62d529f8-a949-cd5b-8aec-0e43c6aa7fd2-b6d9c802 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_62d529f8-a949-cd5b-8aec-0e43c6aa7fe5-b6d9c802 {
    grid-column: span 3 / span 3;
  }

  #w-node-c2803747-92e9-ba1a-7774-7bc0d3ffcc06-b6d9c802 {
    justify-self: end;
  }

  #w-node-c2803747-92e9-ba1a-7774-7bc0d3ffcc0a-b6d9c802 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_6cab1320-dc12-e602-61b6-e0d926ac5682-b6d9c803, #w-node-_6cab1320-dc12-e602-61b6-e0d926ac5688-b6d9c803 {
    justify-self: center;
  }

  #w-node-_6cab1320-dc12-e602-61b6-e0d926ac56e1-b6d9c803 {
    grid-column: span 3 / span 3;
  }

  #w-node-_00a69f12-d9e7-53fb-17ff-a16d104621db-b6d9c803 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-bf3b67a7-3489-ef87-7a34-5a9e9642dbe9-b6d9c805, #w-node-bf3b67a7-3489-ef87-7a34-5a9e9642dbf0-b6d9c805 {
    justify-self: center;
  }

  #w-node-_0613485f-e4ac-5c80-f033-c586bc57b18d-b6d9c847 {
    grid-column: span 3 / span 3;
  }

  #w-node-de11782d-5026-c764-1e43-a219c1a5ccc3-b6d9c847 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_1bc0bce4-b68b-f155-c0f9-fce598a1d814-b6d9c847 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_618d502b-b481-5eb0-cdc3-708446a76046-46a76044 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_618d502b-b481-5eb0-cdc3-708446a7604a-46a76044 {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-_618d502b-b481-5eb0-cdc3-708446a76051-46a76044 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_618d502b-b481-5eb0-cdc3-708446a76059-46a76044 {
    grid-area: 4 / 1 / 7 / 4;
  }

  #w-node-_618d502b-b481-5eb0-cdc3-708446a7605d-46a76044 {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_618d502b-b481-5eb0-cdc3-708446a76061-46a76044 {
    grid-area: 6 / 2 / 7 / 4;
    align-self: end;
  }

  #w-node-d7a67572-79de-81a4-760c-efa2ae7a3bf0-b6d9c84a, #w-node-d7a67572-79de-81a4-760c-efa2ae7a3bf7-b6d9c84a, #w-node-fbb4e5ae-5ab9-1b63-3f6f-12a1f25cfb88-b6d9c85f, #w-node-fbb4e5ae-5ab9-1b63-3f6f-12a1f25cfb8f-b6d9c85f {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_5508f90b-cd03-6b79-23ba-17294a748a48-b6d9c7c2 {
    grid-column: span 1 / span 1;
  }

  #w-node-_5508f90b-cd03-6b79-23ba-17294a748a58-b6d9c7c2, #w-node-_5508f90b-cd03-6b79-23ba-17294a748a60-b6d9c7c2, #w-node-_5508f90b-cd03-6b79-23ba-17294a748a68-b6d9c7c2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_941bf6ff-9c53-9ddd-c9bb-b9134b67deba-b6d9c7e2 {
    grid-column: span 1 / span 1;
  }

  #w-node-_941bf6ff-9c53-9ddd-c9bb-b9134b67dec6-b6d9c7e2 {
    justify-self: start;
  }

  #w-node-_508faf43-277f-e877-40b1-948fdb71a635-b6d9c7e2 {
    grid-column: span 1 / span 1;
  }

  #w-node-_7f736e69-a263-2ec1-3c09-e9064281d876-b6d9c7fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-caaf73d5-4f72-8a60-2fd9-f9eb662dbb74-b6d9c847 {
    grid-column: span 1 / span 1;
  }

  #w-node-caaf73d5-4f72-8a60-2fd9-f9eb662dbb80-b6d9c847 {
    justify-self: start;
  }

  #w-node-_618d502b-b481-5eb0-cdc3-708446a76046-46a76044 {
    grid-column: span 1 / span 1;
  }

  #w-node-_618d502b-b481-5eb0-cdc3-708446a7604a-46a76044, #w-node-_618d502b-b481-5eb0-cdc3-708446a7604d-46a76044, #w-node-_618d502b-b481-5eb0-cdc3-708446a76051-46a76044 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_618d502b-b481-5eb0-cdc3-708446a76059-46a76044 {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }

  #w-node-_618d502b-b481-5eb0-cdc3-708446a7605d-46a76044 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_618d502b-b481-5eb0-cdc3-708446a76061-46a76044 {
    grid-area: 8 / 1 / 9 / 2;
  }
}


