:root {
  --text-color: white;
  --accent-color: #4aaffb;
  --white: white;
  --background: #2576b4;
  --secondary-color: #09ffc4;
  --browser-wireframe: #b9b9b9;
  --yellow: #ffc908;
  --background-2-3: #1e1f20;
  --foreground: #4f4f4f;
  --background-2: #282829;
}

.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-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;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  color: var(--text-color);
  background-color: #292829;
  background-image: none;
  background-size: auto;
  font-family: DM Sans, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.5;
}

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

a:hover {
  text-decoration: underline;
}

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

ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2.5rem;
  font-size: 1.125rem;
  list-style-type: decimal;
}

img {
  display: inline-block;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 5px solid var(--accent-color);
  background-color: #6e61ff14;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1.125rem;
  line-height: 1.5;
}

figure {
  margin-bottom: 10px;
}

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

.button-primary {
  border: .125rem solid var(--accent-color);
  background-color: var(--accent-color);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: .375rem;
  width: auto;
  min-width: 10rem;
  height: 3rem;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
}

.button-primary:hover {
  background-color: var(--background);
  text-decoration: none;
}

.button-primary.is-outlined {
  color: var(--accent-color);
  background-color: #0000;
  transition: all .3s cubic-bezier(.215, .61, .355, 1), background-color .3s cubic-bezier(.215, .61, .355, 1);
}

.button-primary.is-outlined:hover {
  border-color: var(--white);
  color: var(--text-color);
}

.button-primary.is-white {
  border-color: var(--white);
  background-color: var(--white);
  color: #000;
}

.button-primary.is-white:hover {
  border-color: var(--accent-color);
  background-color: var(--background);
  color: var(--text-color);
}

.button-primary.is-white.is-outlined {
  color: var(--white);
  background-color: #0000;
}

.button-primary.is-white.is-outlined:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.button-primary.is-alternate {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: #000;
}

.button-primary.is-alternate:hover {
  background-color: #19b993;
}

.button-primary.is-alternate.is-outlined {
  color: var(--secondary-color);
  background-color: #0000;
}

.button-primary.is-alternate.is-outlined:hover {
  border-bottom-color: var(--white);
  color: var(--white);
}

.button-primary.mr-20 {
  margin-right: 20px;
}

.button-primary.mt-20 {
  margin-top: 20px;
}

.button-primary.landing-cta {
  background-color: #6e61ff;
  border-color: #6e61ff;
}

.button-primary.landing-cta:hover {
  background-color: #483fa5;
}

.button-primary.global-message {
  color: #ffc908;
  background-color: #0000;
  border-color: #ffc908;
  transition: all .3s cubic-bezier(.215, .61, .355, 1), background-color .3s cubic-bezier(.215, .61, .355, 1);
}

.button-primary.global-message:hover {
  border-color: var(--white);
  color: var(--text-color);
}

.button-primary.is-disabled {
  border-color: var(--browser-wireframe);
  background-color: var(--browser-wireframe);
  cursor: not-allowed;
}

.button-primary.is-yellow {
  border-color: var(--yellow);
  background-color: var(--yellow);
  color: var(--background-2-3);
}

.button-primary.is-yellow:hover {
  background-color: #d6a700;
}

.button-primary.is-yellow.is-outlined {
  color: var(--yellow);
  background-color: #0000;
}

.button-primary.is-yellow.is-outlined:hover {
  border-color: var(--text-color);
  color: var(--text-color);
}

.form_field {
  border: 1px solid var(--foreground);
  color: var(--white);
  background-color: #2e3032;
  border-radius: .375rem;
  min-height: 3rem;
  margin-bottom: 0;
  padding: .5rem 1rem;
  font-size: 1.125rem;
}

.form_field:focus {
  border-color: var(--accent-color);
}

.form_field::placeholder {
  color: #87999f;
}

.form_field.is-textarea {
  min-height: 10rem;
}

.button-secondary-right {
  color: var(--accent-color);
  text-transform: uppercase;
  background-color: #0000;
  background-image: url('../images/primary-arrow-right.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  height: 3rem;
  padding: 1rem 1.5rem 1rem 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  transition: margin .3s cubic-bezier(.215, .61, .355, 1), padding .3s cubic-bezier(.215, .61, .355, 1);
}

.button-secondary-right:hover {
  margin-right: -.5rem;
  padding-right: 2rem;
  text-decoration: none;
}

.button-secondary-right.is-white {
  color: var(--white);
  background-image: url('../images/white-arrow-right.svg');
}

.button-secondary-right.is-alternate {
  color: var(--secondary-color);
  background-image: url('../images/secondary-arrow-right.svg');
}

.button-secondary-right.is-yellow {
  color: var(--yellow);
  background-image: url('../images/secondary-arrow-right-yellow.svg');
}

.button-secondary-right.is-banner-cta {
  z-index: 1;
  margin-left: auto;
}

.button-secondary-left {
  color: var(--accent-color);
  text-transform: uppercase;
  background-color: #0000;
  background-image: url('../images/primary-arrow-left.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  height: 3rem;
  margin-left: 0;
  padding: 1rem 0 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  transition: margin .3s cubic-bezier(.215, .61, .355, 1), padding .3s cubic-bezier(.215, .61, .355, 1);
}

.button-secondary-left:hover {
  margin-left: -.5rem;
  padding-left: 2rem;
  text-decoration: none;
}

.button-secondary-left.is-white {
  color: var(--white);
  background-image: url('../images/white-arrow-left.svg');
}

.button-secondary-left.is-alternate {
  color: var(--secondary-color);
  background-image: url('../images/secondary-arrow-left.svg');
}

.button-secondary-left.is-yellow {
  color: var(--yellow);
  background-image: url('../images/secondary-arrow-left-yellow.svg');
}

.header-section {
  justify-content: space-between;
  height: 90vh;
  max-height: 675px;
  display: flex;
  overflow: hidden;
}

.full-width-container {
  align-items: flex-start;
  max-width: 73rem;
  height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  position: relative;
}

.full-width-container.menubar-container {
  z-index: 2;
  align-items: center;
}

.full-width-container.menubar-container.slim {
  max-width: 760px;
}

.home-header_content {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 38rem;
  height: 100%;
  padding-top: 5rem;
  display: flex;
  position: relative;
}

.mt-40 {
  margin-top: 40px;
}

.content-section {
  overflow: hidden;
}

.content-section.alt {
  background-color: var(--background-2-3);
}

.content-section.alt.page-title {
  margin-top: 0;
  padding-top: 150px;
}

.content-section.of-visible {
  overflow: visible;
}

.content-grid {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(320px, 730px);
  width: 100%;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.content-grid.portfolio-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .7fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.content-grid.testimonials-content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.portfolio-item_component {
  color: var(--text-color);
  border-radius: .625rem;
  flex-wrap: wrap;
  align-content: center;
  padding: 1rem;
  transition: background-color .2s cubic-bezier(.215, .61, .355, 1);
  display: block;
  position: relative;
}

.portfolio-item_component:hover {
  background-color: var(--background-2-3);
  text-decoration: none;
}

.portfolio-item_meta-container {
  flex-flow: column;
  place-content: flex-start flex-end;
  align-items: flex-start;
  padding-top: 1.25rem;
  padding-left: .5rem;
  padding-right: .5rem;
}

.social-box {
  color: var(--text-color);
  background-color: #e9e9e9;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.social-box:hover {
  box-shadow: inset 0 0 0 2px var(--accent-color);
  background-color: #fff;
  text-decoration: none;
}

.social-media-icon {
  width: 70px;
  height: 70px;
}

.social-box-meta {
  flex: 1;
  align-self: center;
}

.social-name {
  padding-bottom: 5px;
  font-weight: 700;
  line-height: 1;
}

.social-tag {
  color: #535353;
  line-height: 1;
}

.section_breadcrumb {
  background-color: #383838;
  width: 100%;
}

.breadcrumb-link {
  color: var(--white);
  background-image: url('../images/breadcrumb-arrow.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 25px;
  font-size: 16px;
  display: inline-block;
}

.breadcrumb-link:hover {
  color: var(--accent-color);
}

.breadcrumb-link.last {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  padding-right: 0;
}

.section_footer {
  margin-top: auto;
  position: relative;
}

.footer-section-old {
  background-color: var(--background-2-3);
  width: 100%;
  position: relative;
}

.footer_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: 255px 1fr;
  align-items: start;
}

.footer_links-wrapper {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: .625rem;
  display: flex;
}

.footer_link {
  color: var(--white);
  display: inline-block;
}

.footer_link:hover {
  color: var(--accent-color);
}

.nav-menu {
  z-index: 9;
  border-radius: .375rem;
  flex: 1;
  margin-left: 1.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.nav-menu.is-slim {
  flex: 0 auto;
}

.hero-image {
  max-width: none;
  height: 100%;
  max-height: 612px;
  display: block;
  position: absolute;
  inset: auto 0 0% auto;
}

.cookie-banner {
  z-index: 99;
  justify-content: center;
  width: 100%;
  transition: all .4s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  position: fixed;
  inset: auto 0% 0;
}

.cookie-banner.hidden {
  margin-bottom: -200px;
}

.cookie-container {
  color: var(--white);
  background-color: #333;
  justify-content: space-between;
  width: 90%;
  max-width: 600px;
  margin-bottom: 30px;
  padding: 10px 7px 10px 20px;
  display: flex;
  box-shadow: 0 2px 10px #00000040;
}

.consent-text {
  flex: 1;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.4;
}

.consent-input {
  align-items: center;
  padding-left: 15px;
  display: flex;
}

.consent-switch {
  cursor: pointer;
  background-color: #0000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.consent-switch:hover {
  background-color: #606060;
}

.consent-switch.accept {
  background-image: url('../images/accept.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.consent-switch.decline {
  background-image: url('../images/decline.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.vertical-separator {
  background-color: #555;
  width: 1px;
  height: 24px;
}

.page-description {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(176deg, #fff, #a7afc2);
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 40rem;
  font-size: 2.1rem;
  line-height: 1.3;
}

.landing-page-title {
  -webkit-text-fill-color: transparent;
  background-image: none;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 72px;
  display: inline-block;
  position: relative;
}

.post-content img {
  border-radius: 5px;
  margin-left: -30px;
  display: block;
}

.post-content p {
  margin-bottom: 30px;
}

.post-content figure {
  margin-bottom: 0;
}

.post-content h3 {
  margin-top: 30px;
}

.post-content h2 {
  margin-top: 40px;
}

.portfolio-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.cta-banner_component {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  background-color: #1e1f20;
  border-radius: 10px;
  flex-wrap: wrap;
  padding: 1.25rem;
  display: flex;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.error-code {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(321deg, #b2b4bb 19%, #fff 82%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 156px;
  line-height: 100%;
}

.error-code._404 {
  background-image: linear-gradient(321deg, #6e61ff 7%, #ea4c89 71%);
}

.error-code._403 {
  background-image: linear-gradient(321deg, #ea4c4c 7%, #ffc061 71%);
}

.error-code.auth {
  font-size: 60px;
}

.post-thumbnail {
  border-radius: 5px;
  width: 100%;
  height: auto;
  margin-top: -100px;
  display: block;
}

.image-overlay {
  background-image: linear-gradient(#0f101100, #0f1011 60%);
  height: 50%;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.portfolio-brush-back {
  z-index: -1;
  opacity: .3;
  background-image: none;
  background-size: auto;
  width: 308px;
  height: 115px;
  position: absolute;
  top: -34px;
  left: 0;
}

.portfolio-list-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: -1rem;
  margin-right: -1rem;
  display: grid;
}

.portfolio-list-grid.no-padding {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  display: grid;
}

.portfolio-item_thumbnail {
  border-radius: 5px;
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-item_category, .portfolio-item_category:hover {
  text-decoration: none;
}

.portfolio-cta-banner_component {
  background-color: var(--foreground);
  border-radius: .375rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  position: relative;
}

.portfolio-cta-banner_component.is-full-width {
  max-width: none;
}

.portfolio-cta-banner_component.is-fixed {
  min-height: 5.625rem;
  overflow: hidden;
}

.about-section-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
}

.about-grid-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.about-brush-back {
  z-index: -1;
  opacity: .3;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  width: 377px;
  height: 286px;
  position: absolute;
  right: -85px;
}

.about-section-image {
  border-radius: .3125rem;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.about-image-frame {
  z-index: -1;
  background-image: url('../images/profile-frame.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  width: 319px;
  height: 308px;
  display: none;
  position: absolute;
  top: -15px;
  right: -45px;
}

.process-steps-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 20px;
  position: relative;
}

.spotlight-paragraph {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.two-column-layout {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  align-content: start;
  align-items: start;
}

.greyed-out-text {
  color: #818181;
}

.form_component {
  height: 100%;
  min-height: 19rem;
  margin-bottom: 0;
  position: relative;
}

.form_content {
  position: relative;
}

.form_content.contact {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  display: grid;
}

.form_content.downloads {
  flex-direction: column;
  display: block;
}

.form-status {
  background-color: #2e3032;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding: 0;
  font-size: 20px;
  position: absolute;
  top: 0;
}

.form-status-message {
  text-align: center;
  padding-top: 10px;
  font-size: 20px;
  font-weight: 700;
}

.form-status-description {
  text-align: center;
  max-width: 420px;
  padding-top: 10px;
  font-size: 18px;
}

.form-status-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1rem;
  display: flex;
}

.accordion_component {
  background-color: #2e303200;
  border-radius: .375rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 1rem;
  display: block;
}

.accordion_toggle {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--text-color);
  white-space: normal;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.accordion_icon {
  flex: none;
  width: 16px;
  height: 16px;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  top: .25rem;
}

.accordion_content {
  background-color: #0000;
  padding-left: 2rem;
  position: relative;
  overflow: hidden;
}

.accordion_title {
  text-align: left;
  flex: 0 auto;
  display: block;
}

.horizontal-line {
  background-color: #fff;
  width: 16px;
  height: 2px;
  margin-top: 7px;
  position: absolute;
}

.vertical-line {
  background-color: #fff;
  width: 2px;
  height: 16px;
  margin-left: 7px;
  position: absolute;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 300px;
  padding-top: 30px;
  display: flex;
}

.error_message {
  color: #ffc908;
  background-color: #0000;
  border-radius: 5px;
  align-self: center;
  margin-top: 1rem;
  margin-bottom: -2.6875rem;
  margin-left: 7rem;
  padding: 0;
}

.process-step {
  background-color: var(--background-2-3);
  border-radius: 5px;
  padding: 2rem;
  position: relative;
}

.step-title-container {
  align-items: center;
  display: flex;
}

.process-step-image-container {
  width: 56px;
}

.process-description {
  max-width: 18rem;
  padding-top: .75rem;
}

.arrow-back {
  background-image: url('../images/arrow_right-brush_1arrow_right-brush.png');
  background-position: 0 60%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 77px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  right: -46px;
}

.arrow-back.hidden {
  display: none;
}

.brush-trail {
  z-index: -1;
  background-image: url('../images/trail-brush.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 22px;
  left: -87px;
}

.nav-menu_link {
  color: var(--text-color);
  text-transform: uppercase;
  border-bottom: 1px solid #0000;
  margin-bottom: -.125rem;
  padding: .375rem 0 .375rem 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: border-color .1s;
}

.nav-menu_link:hover {
  border-bottom-color: var(--text-color);
  text-decoration: none;
}

.nav-menu_link.w--current {
  border-bottom-color: var(--text-color);
  color: var(--text-color);
}

.nav-menu_link.show-mobile-landscape {
  display: none;
}

.menubar_component {
  background-color: #0000;
  height: 5.75rem;
  margin-bottom: -5.75rem;
  padding-top: 2rem;
  position: sticky;
  inset: -2rem 0% auto;
}

.menubar-button {
  z-index: 9;
  border-radius: 5px;
  padding: 0;
  display: none;
}

.menubar-button:hover {
  background-color: #0003;
}

.menubar-button.w--open {
  background-color: #000;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.nav-brand-link {
  z-index: 2;
}

.page-header-section {
  background-color: var(--background-2-3);
  padding: 150px 15px 80px;
  overflow: hidden;
}

.fill-height {
  flex: 1;
}

.global-css {
  display: none;
}

.homepage-title-wrapper {
  position: relative;
}

.homepage-hero-lottie {
  z-index: -1;
  width: 100%;
  max-width: 410px;
  height: auto;
  position: absolute;
  top: 0%;
}

.process-section-title {
  text-align: center;
}

.nav-menu_link-wrapper {
  grid-column-gap: 1.25rem;
  display: flex;
}

.nav-menu_link-wrapper.is-special {
  grid-column-gap: .5rem;
  margin-left: auto;
}

.menubar_anchor {
  width: 0%;
  height: 100vh;
  position: absolute;
  inset: 2rem auto 0% 0%;
}

.navbar-background {
  z-index: 1;
  opacity: 0;
  -webkit-backdrop-filter: saturate(200%) blur(25px);
  backdrop-filter: saturate(200%) blur(25px);
  background-color: #1e1f20e6;
  transition: opacity .2s;
  position: absolute;
  inset: 0%;
}

.nav-brand-image {
  display: block;
}

.process-brush-stroke {
  opacity: .3;
  width: 100%;
  max-width: 570px;
  padding-right: 20px;
}

.process-brush-stroke-wrapper {
  z-index: -1;
  justify-content: center;
  width: 100%;
  display: flex;
  position: absolute;
  top: 30px;
}

.testimonials-title-wrapper {
  text-align: center;
  max-width: 30.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.testimonials-arrow {
  z-index: -1;
  opacity: .3;
  width: 63px;
  height: auto;
  position: absolute;
  bottom: -20px;
  right: -70px;
}

.testimonials_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  width: 100%;
}

.testimonials_single {
  background-color: var(--foreground);
  border-radius: 5px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.testimonials_quote {
  flex: 1;
  padding-bottom: 1rem;
}

.testimonials_logo {
  width: auto;
  max-height: 32px;
  display: block;
}

.testimonials_name {
  padding-top: 1rem;
  font-weight: 700;
}

.testimonials_name-light {
  font-weight: 400;
}

.global-message-wrapper {
  z-index: 9999;
  -webkit-backdrop-filter: saturate(200%) blur(25px);
  backdrop-filter: saturate(200%) blur(25px);
  background-color: #282929e6;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  display: none;
  position: fixed;
  inset: 0%;
}

.global-message-container {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  display: flex;
}

.global-message-title {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
}

.global-message-description {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.global-message-icon {
  display: block;
}

.post-thumbnail-wrapper {
  margin-left: -30px;
  margin-right: -30px;
  position: relative;
}

.post-layout-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(auto, 320px);
}

.post-layout-grid_right-content {
  padding-left: 15px;
}

.table-of-contents_component {
  border: 2px solid #1e1f20;
  border-radius: 5px;
  width: 100%;
  position: sticky;
  top: 90px;
}

.table-of-contents_back-to-top {
  grid-column-gap: 10px;
  color: var(--text-color);
  border-bottom: 2px solid #1e1f20;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 100%;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.table-of-contents_back-to-top:hover {
  background-color: #3a3a3a;
  text-decoration: none;
}

.back-to-top_icon {
  display: block;
  transform: rotate(180deg);
}

.table-of-contents_links-wrapper {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 15px;
}

.table-of-contents_title {
  padding-top: 15px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 22px;
  font-weight: 700;
}

.table-of-contents_link {
  color: var(--text-color);
  border-left: 2px solid #4aaffb00;
  margin-left: -2px;
  padding-left: 25px;
  padding-right: 25px;
  text-decoration: none;
  transition: border-color .2s;
  display: block;
  position: relative;
}

.table-of-contents_link:hover {
  border-left-color: var(--browser-wireframe);
  margin-left: -2px;
  text-decoration: none;
}

.table-of-contents_link.w--current {
  border-left-color: var(--accent-color);
}

.hide-old {
  display: none;
}

.margin-xhuge {
  margin: 8rem;
}

.text-weight-bold {
  font-weight: 700;
}

.icon-height-small {
  height: 1rem;
}

.background-color-black {
  color: #f5f5f5;
  background-color: #000;
}

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.form_message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.text-size-small {
  font-size: 1rem;
}

.margin-0 {
  margin: 0;
}

.text-weight-xbold {
  font-weight: 800;
}

.page-wrapper {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.text-weight-normal {
  font-weight: 400;
}

.padding-0 {
  padding: 0;
}

.text-size-tiny {
  font-size: .875rem;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.text-align-right {
  text-align: right;
}

.text-size-large {
  font-size: 1.5rem;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.overflow-visible {
  overflow: visible;
}

.text-weight-medium {
  font-weight: 500;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.icon-height-large {
  height: 3rem;
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: .125rem solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.margin-2 {
  margin: 2rem;
}

.text-size-regular {
  font-size: 1.125rem;
}

.padding-1-25 {
  padding: 1.25rem;
}

.padding-xhuge {
  padding: 8rem;
}

.icon-height-medium {
  height: 2rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.padding-custom3 {
  padding: 3.5rem;
}

.container-large {
  width: 100%;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.container-large.is-relative {
  position: relative;
}

.margin-xxhuge {
  margin: 12rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.margin-huge {
  margin: 6rem;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.fs-styleguide_heading-large {
  font-size: 6rem;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: .125rem solid #202020;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: space-between start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.margin-2-5 {
  margin: 2.5rem;
}

.text-color-white {
  color: #fff;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #0073e61a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.margin-xxlarge, .margin-5 {
  margin: 5rem;
}

.text-weight-semibold {
  font-weight: 600;
}

.padding-2 {
  padding: 2rem;
}

.text-color-black {
  color: #000;
}

.text-color-grey {
  color: var(--browser-wireframe);
}

.heading-style-h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.text-align-center {
  text-align: center;
}

.text-style-link {
  color: var(--accent-color);
}

.margin-1-25 {
  margin: 1.25rem;
}

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h3.display-inline-block {
  display: inline-block;
}

.fs-styleguide_label {
  color: #fff;
  background-color: #0073e6;
  flex-direction: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: #be4aa5;
}

.fs-styleguide_label.is-hex {
  color: #000;
  background-color: #f5f5f5;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.form_field-wrapper {
  grid-column-gap: 1.25rem;
  display: flex;
}

.text-style-italic {
  font-style: italic;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.text-size-medium {
  font-size: 1.25rem;
}

.text-align-left {
  text-align: left;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.margin-custom2 {
  margin: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.overflow-auto {
  overflow: auto;
}

.margin-1 {
  margin: 1rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

.padding-5 {
  padding: 5rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.form_component-old {
  margin-bottom: 0;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.margin-0-5 {
  margin: .5rem;
}

.padding-global {
  padding-left: 2rem;
  padding-right: 2rem;
}

.padding-global.flex-gow {
  flex: 1;
}

.padding-4 {
  padding: 4rem;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.fs-styleguide_version {
  z-index: 5;
  font-weight: 500;
}

.text-weight-light {
  font-weight: 300;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.padding-1 {
  padding: 1rem;
}

.text-style-nowrap {
  white-space: nowrap;
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.padding-xxhuge {
  padding: 12rem;
}

.container-medium {
  width: 100%;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.background-color-mid-gray {
  background-color: var(--foreground);
}

.text-style-muted {
  opacity: .6;
}

.heading-style-h6 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.padding-2-5 {
  padding: 2.5rem;
}

.fs-styleguide_header {
  background-color: var(--background-2-3);
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.form_message-success {
  padding: 1.25rem;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #0073e61a;
  border: 1px dashed #0073e6;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.padding-huge {
  padding: 6rem;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.fs-styleguide_color.is-3 {
  background-color: #fff;
}

.fs-styleguide_color.is-1 {
  background-color: #000;
}

.fs-styleguide_color.is-2 {
  background-color: #f5f5f5;
}

.main-wrapper {
  flex: 1;
}

.margin-custom1 {
  margin: 1.5rem;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.margin-4 {
  margin: 4rem;
}

.padding-0-5 {
  padding: .5rem;
}

.fs-styleguide_spacing-all {
  display: none;
}

.padding-section-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.heading-style-h1 {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-rich-text h1, .text-rich-text h2, .text-rich-text h3, .text-rich-text h5, .text-rich-text h4, .text-rich-text h6 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.text-rich-text p, .text-rich-text ul, .text-rich-text ol {
  margin-bottom: 1.25rem;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.hide {
  display: none;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.background-color-blue {
  background-color: var(--accent-color);
}

.background-color-green {
  background-color: var(--secondary-color);
}

.background-color-deep-blue {
  background-color: var(--background);
}

.text-color-green {
  color: var(--secondary-color);
}

.text-color-blue {
  color: var(--accent-color);
}

.global-alert_component {
  background-color: var(--background-2-3);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-size: 1rem;
}

.global-alert_component.is-critical {
  background-color: #fc3e3e;
}

.global-alert_component.is-warning {
  color: var(--background-2);
  background-color: #ffc908;
}

.global-alert_layout {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 7.5rem 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.global-alert_icon-wrapper {
  justify-content: flex-end;
  align-items: center;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.global-alert_content {
  flex-direction: column;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.global-alert_icon {
  z-index: 1;
  max-height: 3rem;
  display: block;
  position: relative;
}

.global-alert_overlay {
  background-color: #0003;
  width: 50vw;
  height: 100%;
  position: absolute;
  right: 0%;
}

.global-alert_title {
  font-weight: 700;
}

.content-wrapper.is-relative {
  position: relative;
}

.downloads-form_form {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-direction: column;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.downloads-form_overlay-button.button-primary {
  max-width: 100%;
  position: absolute;
  right: 0;
}

.downloads-form_text {
  cursor: default;
  font-size: 1rem;
}

.opacity-60 {
  opacity: .6;
}

.section_header {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.wallpaper_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: 1fr 1fr;
}

.wallpaper_thumbnail {
  border-radius: .375rem;
  width: 100%;
  height: auto;
  display: block;
  position: sticky;
  top: 5rem;
}

.downloads-form_component {
  border-radius: .375rem;
}

.background-color-dark-gray {
  background-color: var(--background-2-3);
}

.author-card_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

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

.author-card_image-wrapper {
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  overflow: hidden;
}

.author-card_meta-text {
  display: inline;
}

.author-card_meta-wrapper {
  font-size: 1rem;
}

.blog_component {
  grid-column-gap: 3.5rem;
  grid-template-rows: auto;
  grid-template-columns: minmax(1rem, 1fr) minmax(auto, 20rem);
}

.blog_thumbnail-wrapper {
  border-radius: .375rem;
  margin: -6.5rem -1.5rem 2.5rem;
  padding-bottom: 59.7%;
  position: relative;
  overflow: hidden;
}

.blog_thumbnail {
  background-color: var(--background-2);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.toc_component {
  box-shadow: inset 0 0 0 .125rem var(--background-2-3);
  border-radius: .375rem;
  position: sticky;
  top: 5rem;
  overflow: hidden;
}

.toc_links-container {
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.toc_link {
  color: var(--text-color);
  border-left: .125rem solid #4aaffb00;
  padding: .125rem 1.5rem;
  transition: border-color .2s cubic-bezier(.215, .61, .355, 1);
  display: block;
}

.toc_link:hover {
  border-left-color: var(--browser-wireframe);
  color: var(--accent-color);
  text-decoration: none;
}

.toc_link.is-active {
  border-left-color: var(--accent-color);
  color: var(--accent-color);
}

.toc_title-wrapper {
  padding-top: .75rem;
  padding-left: 1.5rem;
}

.toc_top-button {
  grid-column-gap: 1rem;
  border: .125rem solid var(--background-2-3);
  border-top-left-radius: .375rem;
  border-top-right-radius: .375rem;
  width: 100%;
  padding: .75rem 1.5rem;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.toc_top-button:hover {
  background-color: var(--foreground);
  text-decoration: none;
}

.toc_top-button-text {
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}

.toc_button-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.blog_rich-text h1 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  font-size: 2.5rem;
}

.blog_rich-text h2 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  font-size: 2rem;
}

.blog_rich-text h3 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  font-size: 1.5rem;
}

.blog_rich-text h5 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  font-size: 1.125rem;
}

.blog_rich-text h4 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  font-size: 1.25rem;
}

.blog_rich-text h6 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.blog_rich-text p, .blog_rich-text ul, .blog_rich-text ol {
  margin-bottom: 1.25rem;
}

.error_section {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.error_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-width: 50rem;
  display: grid;
}

.error_icon-wrapper {
  width: 5rem;
  height: 5rem;
}

.error_icon-wrapper.is-new {
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
  top: -5rem;
}

.error_icon {
  width: 100%;
  height: auto;
}

.error_icon.is-yellow {
  color: var(--yellow);
  display: flex;
}

.error_button-wrapper {
  opacity: .6;
}

.error_form {
  grid-column-gap: 1rem;
  display: flex;
}

.button-404 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #969696;
  background-image: url('../images/white-arrow-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: .375rem;
  flex: none;
  width: 3rem;
  height: 3rem;
  padding: 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
}

.button-404:hover {
  background-color: var(--foreground);
}

.button-404.is-outlined {
  color: var(--accent-color);
  background-color: #0000;
  transition: all .3s cubic-bezier(.215, .61, .355, 1), background-color .3s cubic-bezier(.215, .61, .355, 1);
}

.button-404.is-outlined:hover {
  border-color: var(--white);
  color: var(--text-color);
}

.button-404.is-white {
  border-color: var(--white);
  background-color: var(--white);
  color: #000;
}

.button-404.is-white:hover {
  border-color: var(--accent-color);
  background-color: var(--background);
  color: var(--text-color);
}

.button-404.is-white.is-outlined {
  color: var(--white);
  background-color: #0000;
}

.button-404.is-white.is-outlined:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.button-404.is-alternate {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: #000;
}

.button-404.is-alternate:hover {
  background-color: #19b993;
}

.button-404.is-alternate.is-outlined {
  color: var(--secondary-color);
  background-color: #0000;
}

.button-404.is-alternate.is-outlined:hover {
  border-bottom-color: var(--white);
  color: var(--white);
}

.button-404.mr-20 {
  margin-right: 20px;
}

.button-404.mt-20 {
  margin-top: 20px;
}

.button-404.landing-cta {
  background-color: #6e61ff;
  border-color: #6e61ff;
}

.button-404.landing-cta:hover {
  background-color: #483fa5;
}

.button-404.global-message {
  color: #ffc908;
  background-color: #0000;
  border-color: #ffc908;
  transition: all .3s cubic-bezier(.215, .61, .355, 1), background-color .3s cubic-bezier(.215, .61, .355, 1);
}

.button-404.global-message:hover {
  border-color: var(--white);
  color: var(--text-color);
}

.menubar_wrapper {
  align-items: center;
  height: 3.75rem;
  display: flex;
}

.menubar_wrapper.justify-center {
  justify-content: center;
}

.portfolio-cta-banner_image {
  flex: none;
  width: auto;
  height: auto;
}

.portfolio-cta-banner_image.is-absolute {
  z-index: 0;
  object-fit: cover;
  object-position: 100% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.form_overlay {
  z-index: 1;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  cursor: not-allowed;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: -1rem;
}

.background-color-light-gray {
  background-color: #818181;
}

.breadcrumb_component {
  grid-column-gap: 1rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.project_component {
  grid-column-gap: 2rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .7fr;
}

.project_rich-text h1 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  font-size: 2.5rem;
}

.project_rich-text h2 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  font-size: 2rem;
}

.project_rich-text h3 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  font-size: 1.5rem;
}

.project_rich-text h5 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  font-size: 1.125rem;
}

.project_rich-text h4 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
  font-size: 1.25rem;
}

.project_rich-text h6 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.project_rich-text p, .project_rich-text ul, .project_rich-text ol {
  margin-bottom: 1.25rem;
}

.project_rich-text img {
  border-radius: .375rem;
}

.project_rich-text figure {
  margin-bottom: 2rem;
}

.project_rich-text figcaption {
  opacity: .6;
  margin-top: .625rem;
  font-size: 1rem;
}

.project_details-wrapper {
  grid-row-gap: 1.25rem;
  flex-direction: column;
  display: flex;
  position: sticky;
  top: 5rem;
}

.project_details-wrapper.is-static {
  position: static;
}

.project_meta-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  display: flex;
}

.project_meta-single {
  grid-column-gap: .625rem;
  align-items: center;
  display: flex;
}

.project_meta-icon {
  flex: none;
}

.project_meta-text {
  padding-top: 1px;
  display: inline-block;
}

.horizontal-divider {
  background-color: #4f4f4f;
  width: 100%;
  height: 1px;
}

.project_live-link {
  background-color: var(--foreground);
  border-radius: .3125rem;
  padding: .25rem 1rem;
}

.date-wrapper {
  grid-column-gap: .25rem;
  display: flex;
}

.project_preloader {
  z-index: 1;
  background-color: var(--background-2-3);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.project_preloader-rext {
  opacity: .6;
  position: sticky;
  top: 5rem;
}

.project_image {
  border-radius: .3125rem;
}

.project_image-wrapper {
  border-radius: .3125rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.project_image-wrapper img {
  border-radius: .5rem;
  width: 100%;
  height: auto;
  display: block;
}

.project_image-wrapper figure {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

.project_image-caption {
  opacity: .6;
  text-align: center;
  margin-top: .625rem;
  font-size: 1rem;
}

.home-header_component {
  align-items: flex-start;
  max-width: 70rem;
  height: 100%;
  display: flex;
  position: relative;
}

.home-header_component.menubar-container {
  z-index: 2;
  align-items: center;
}

.home-header_component.menubar-container.slim {
  max-width: 760px;
}

.section_404 {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 100dvh;
  display: flex;
}

._404_component {
  grid-row-gap: .5rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

._404_text-wrapper {
  width: 100%;
  position: relative;
}

._404_text {
  width: 100%;
  font-size: 1.25rem;
  position: absolute;
}

._404_text.is-extra {
  display: none;
}

.wallpaper_price-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.wallpaper-slider_component {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: auto;
}

.wallpaper-slider_image {
  object-fit: cover;
  border-radius: .375rem;
  flex: none;
  width: 100%;
  height: auto;
  display: block;
}

.wallpaper-slider_image-wrapper {
  flex: none;
}

.new-label {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: .25rem;
  align-self: center;
  padding: .125rem .25rem .25rem;
  font-size: .875rem;
  line-height: 1;
}

.new-label.show-mobile-landscape {
  display: none;
}

.discounted-price {
  color: var(--accent-color);
  font-weight: 700;
}

.icon-title-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.icon-title-image {
  flex: none;
  width: 2rem;
  height: 2rem;
}

.code-rich-text h1, .code-rich-text h2, .code-rich-text h3, .code-rich-text h5, .code-rich-text h4, .code-rich-text h6 {
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.code-rich-text p, .code-rich-text ul, .code-rich-text ol {
  margin-bottom: 1.25rem;
}

.code-rich-text em {
  background-color: var(--background);
  padding-left: .25rem;
  padding-right: .25rem;
  line-height: 1.3;
  display: inline-block;
}

.share_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.share_button {
  background-color: var(--foreground);
  cursor: pointer;
  border-radius: 20rem;
  width: 2.5rem;
  height: 2.5rem;
}

.share_button:hover {
  background-color: var(--white);
}

.share_button-icon {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.share_button-icon.is-clipboard:hover {
  color: var(--background-2-3);
}

.share_button-icon.is-twitter:hover {
  color: #1da1f2;
}

.share_button-icon.is-facebook:hover {
  color: #1877f2;
}

.share_button-icon.is-linkedin:hover {
  color: #0077b5;
}

.share_button-icon.is-reddit:hover {
  color: #ff4500;
}

.message-text {
  background-color: var(--foreground);
  border-radius: .375rem;
  padding: .25rem 1rem;
}

.share_clipboard-message {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.blog_post-tile {
  background-color: var(--foreground);
  border-radius: .375rem;
  padding: 1rem;
  display: block;
}

.blog_post-tile-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: center;
}

.blog_post-tile-thumbnail {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: .3125rem;
  width: 100%;
  height: auto;
}

.signature {
  opacity: .6;
  width: 5rem;
  height: auto;
  display: block;
}

.blog_published-label {
  background-color: #282829d6;
  border-radius: .3125rem;
  padding-left: .5rem;
  padding-right: .5rem;
  font-size: 1rem;
  position: absolute;
  inset: auto auto .25rem .25rem;
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 26px;
  }

  .form_field {
    max-width: 100%;
  }

  .header-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-header_content {
    z-index: 1;
    position: relative;
  }

  .content-grid {
    grid-template-columns: 1fr;
    justify-items: end;
  }

  .footer_grid {
    grid-template-columns: 14rem 1fr;
  }

  .footer_link {
    padding-bottom: 0;
  }

  .page-description {
    z-index: 10;
  }

  .portfolio-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: end;
  }

  .portfolio-cta-banner_component.is-full-width {
    max-width: 32rem;
  }

  .about-section-image {
    object-fit: cover;
    height: 100%;
  }

  .process-steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spotlight-paragraph {
    font-size: 26px;
  }

  .page-header-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .hide-tablet {
    display: none;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .margin-2-5 {
    margin: 1.5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-5 {
    margin: 3rem;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .padding-5 {
    padding: 3rem;
  }

  .padding-4 {
    padding: 2.5rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-2-5 {
    padding: 1.5rem;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-4 {
    margin: 2.5rem;
  }

  .padding-section-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .wallpaper_component {
    grid-template-columns: .75fr 1fr;
  }

  .blog_component {
    grid-template-columns: 1fr .5fr;
  }

  .wallpaper-slider_component {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  h1, h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h6 {
    font-size: 1rem;
  }

  .button-primary.mt-20-ml {
    margin-top: 20px;
  }

  .button-primary.mr-0-ml {
    margin-right: 0;
  }

  .header-section {
    padding-left: 0;
    padding-right: 0;
  }

  .full-width-container.menubar-container {
    position: static;
  }

  .home-header_content {
    justify-content: flex-end;
    width: 92%;
    position: absolute;
    bottom: 60px;
  }

  .content-section.alt {
    margin-top: 60px;
  }

  .content-grid.testimonials-content {
    align-items: flex-start;
  }

  .portfolio-item_title {
    font-size: 30px;
  }

  .footer_grid {
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr minmax(12rem, auto);
  }

  .footer_links-wrapper {
    grid-row-gap: .75rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer_copyright-text {
    padding-top: 1.5rem;
  }

  .nav-menu {
    z-index: 6;
    background-color: #0000;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-left: 0;
    padding: 0;
    display: block;
    position: absolute;
    left: 0%;
    right: 0%;
    overflow: hidden;
  }

  .hero-image {
    align-self: center;
    position: absolute;
    top: auto;
    bottom: auto;
  }

  .page-description {
    font-size: 30px;
  }

  .landing-page-title {
    white-space: nowrap;
  }

  .post-content img {
    border-radius: 0;
  }

  .portfolio-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner_component {
    flex-direction: row;
    align-items: center;
    display: flex;
  }

  .error-code.auth {
    font-size: 8vw;
  }

  .post-thumbnail {
    border-radius: 0;
  }

  .image-overlay {
    background-image: linear-gradient(to bottom, #28282900, #282829b0 35%, #282829db 61%, var(--background-2) 91%);
    display: block;
  }

  .portfolio-list-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-cta-banner_component {
    justify-content: flex-end;
    min-height: 5.3125rem;
  }

  .about-section-grid {
    grid-template-columns: 1fr;
  }

  .about-brush-back {
    bottom: 0;
  }

  .process-steps-grid {
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .two-column-layout {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .form_content.contact {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .accordion_component {
    border-radius: 0;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav-menu_link {
    font-size: 26px;
    font-weight: 700;
  }

  .nav-menu_link.show-mobile-landscape {
    display: block;
  }

  .menubar_component {
    height: 3.75rem;
    margin-bottom: 0;
    padding-top: 0;
    top: 0;
  }

  .menubar-button {
    flex-direction: row;
    order: -1;
    justify-content: center;
    align-items: center;
    width: 2.8rem;
    height: 3.75rem;
    margin-left: -.3rem;
    padding-top: 1.3rem;
    display: flex;
  }

  .menubar-button:hover {
    background-color: #0000;
  }

  .menubar-button.w--open {
    background-color: #0000;
    border-radius: 5px;
  }

  .nav-brand-link {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .page-header-section {
    padding-left: 0;
    padding-right: 0;
  }

  .process-section-title {
    text-align: left;
  }

  .nav-menu_link-wrapper {
    z-index: 13;
    grid-row-gap: 1rem;
    -webkit-backdrop-filter: saturate(200%) blur(25px);
    backdrop-filter: saturate(200%) blur(25px);
    background-color: #1e1f20e6;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-bottom: 7.5rem;
    display: flex;
    overflow: hidden;
  }

  .nav-menu_link-wrapper.is-special, .menubar_anchor {
    display: none;
  }

  .navbar-background {
    opacity: 1;
  }

  .nav-brand-wrapper {
    z-index: 2;
    justify-content: center;
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
  }

  .testimonials-title-wrapper {
    justify-content: flex-start;
  }

  .testimonials-title {
    width: auto;
    padding-right: 70px;
  }

  .testimonials-arrow {
    right: 0;
  }

  .testimonials_component {
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .fs-styleguide_heading-large {
    font-size: 3rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .margin-2-5 {
    margin: 1.25rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-5 {
    margin: 2rem;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .heading-style-h3 {
    font-size: 1.75rem;
  }

  .padding-5 {
    padding: 2rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-4 {
    padding: 1.5rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .fs-styleguide_version {
    font-size: .875rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .heading-style-h6 {
    font-size: 1rem;
  }

  .padding-2-5 {
    padding: 1.25rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-4 {
    margin: 1.5rem;
  }

  .padding-section-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .global-alert_layout {
    grid-column-gap: 1rem;
    grid-template-columns: 5rem 1fr;
  }

  .global-alert_icon-wrapper {
    padding-right: 1rem;
  }

  .global-alert_content {
    justify-content: center;
  }

  .section_header {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .wallpaper_component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .downloads-form_component.background-color-dark-gray {
    position: sticky;
    bottom: 1.5rem;
  }

  .blog_component {
    grid-template-columns: 1fr;
  }

  .blog_thumbnail-wrapper {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 56.25%;
  }

  .blog_left-column {
    padding-right: 0;
  }

  .blog_right-column {
    display: none;
  }

  .blog_rich-text {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .error_component {
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .button-404.mt-20-ml {
    margin-top: 20px;
  }

  .button-404.mr-0-ml {
    margin-right: 0;
  }

  .menubar_wrapper.justify-center {
    justify-content: flex-start;
  }

  .portfolio-cta-banner_image {
    flex: 1;
    position: absolute;
    left: 1.5rem;
  }

  .project_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .project_rich-text {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .project_meta-wrapper {
    flex-flow: wrap;
  }

  .project_live-link {
    align-self: center;
    width: 100%;
    max-width: 32rem;
  }

  .menubar-toggle-icon {
    margin-left: .3rem;
    display: block;
  }

  .menubar-toggle-icon.is-open {
    display: block;
  }

  .menubar-toggle-icon.is-close {
    display: none;
  }

  .home-header_component.menubar-container {
    position: static;
  }

  .section_404 {
    height: 100vh;
    margin-top: -3.75rem;
  }

  .wallpaper-slider_component {
    max-width: 100vw;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: flex;
  }

  .wallpaper-slider_image {
    width: 6.75rem;
    height: 13rem;
  }

  .wallpaper-slider_image-wrapper {
    width: 6rem;
  }

  .new-label {
    margin-top: 2rem;
    margin-bottom: -1rem;
  }

  .new-label.show-mobile-landscape {
    display: block;
  }

  .blog_post-tile-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 36px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .footer_grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .nav-menu {
    min-width: 70vw;
  }

  .hero-image {
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 32rem;
    margin-right: -30px;
    top: 20px;
    left: auto;
    right: 0;
  }

  .cookie-container {
    transition: all .3s cubic-bezier(.19, 1, .22, 1);
    position: relative;
  }

  .page-description {
    font-size: 24px;
  }

  .landing-page-title {
    background-image: none;
    font-size: 51px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .utility-page-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .error-code {
    font-size: 110px;
  }

  .error-code.auth {
    font-size: 34px;
  }

  .image-overlay {
    height: 60%;
  }

  .portfolio-cta-banner_component {
    background-image: none;
    overflow: hidden;
  }

  .portfolio-cta-banner_component.is-fixed {
    min-height: 4.7rem;
  }

  .about-section-image {
    object-position: 50% 0%;
    height: 80%;
  }

  .homepage-hero-lottie {
    max-width: 292px;
  }

  .navbar-background {
    box-shadow: 0 1px 0 0 var(--background-2);
  }

  .hide-mobile-portrait {
    display: none;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .heading-style-h3.is-price {
    font-size: 1.5rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .global-alert_layout {
    grid-template-columns: auto 1fr;
  }

  .global-alert_content {
    display: flex;
  }

  .global-alert_icon {
    max-width: 2rem;
  }

  .portfolio-cta-banner_image {
    z-index: 0;
    left: -4rem;
  }

  .portfolio-cta-banner_image.is-absolute {
    object-position: 66% 50%;
  }
}

#w-node-_8b0f8fd5-68fe-9761-67a8-38a894ba4ca6-6af74591, #w-node-f24f4a17-4cb3-8561-b375-e0e1a33dcca6-6af74591, #w-node-_55a905e5-17e6-d3b1-3584-898b5120d564-6af74591, #w-node-_240da66d-b9dc-5cda-9caa-bbf56779f933-6af74591, #w-node-bf173b2c-8a0b-6395-740f-34127daceea8-6af74591, #w-node-_46e9d2bf-0a07-0de6-f41e-d7ffecf8fa71-6af74591, #w-node-_44a75025-077b-a9ff-2828-5971a3ebd995-6af74591, #w-node-_78d8fda0-685b-8386-e8b5-b7337d6fa432-6af74591, #w-node-_78d8fda0-685b-8386-e8b5-b7337d6fa43a-6af74591, #w-node-_78d8fda0-685b-8386-e8b5-b7337d6fa442-6af74591, #w-node-_78d8fda0-685b-8386-e8b5-b7337d6fa44b-6af74591, #w-node-_78d8fda0-685b-8386-e8b5-b7337d6fa453-6af74591, #w-node-f239528c-8c43-8a04-2e27-ff5b1f6db66e-6af74591 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_83d588f2-23d2-95f2-d960-954961bef030-6af74591 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#field.w-node-_7acd2f5e-4ad2-0e9e-88ea-34216c08d289-6af74591, #speak-now.w-node-a0f199a3-ec3e-2687-6f21-abfd39f855fe-6af74591 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_51390688-2a62-125f-434d-49daaa9e58c9-6af74591 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a804b49-5c7d-9e78-3d74-576908c684f5-6af74591 {
  align-self: start;
}

#w-node-_73c55e89-bc78-29a2-975a-9b6c6998e046-6998e031 {
  align-self: end;
}

#w-node-_73c55e89-bc78-29a2-975a-9b6c6998e053-6998e031 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_593d0c80-7cf2-5f90-dbad-93b6c813e124-c813e124 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e7e9-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e7ee-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e7f3-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e7f8-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e7fe-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e804-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e80a-6af745ac {
  justify-self: start;
}

#w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e917-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e930-6af745ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e933-6af745ac {
  justify-self: start;
}

#w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e935-6af745ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e938-6af745ac {
  justify-self: start;
}

#w-node-_4b039580-5918-b816-1ebd-d64fb933974d-6af745ac, #w-node-f026fa65-2960-bc0a-4f54-c52699b0e3f0-6af745ac, #w-node-c8a524c3-8d27-9d4b-26dd-a7ff90b6d536-6af745ac, #w-node-_74217078-5863-75a4-d89d-0aec38e86311-6af745ac, #w-node-b552ae26-45c8-dea7-be65-c5ac918661d3-6af745ac, #w-node-c1c6176a-cf2a-aec7-ca20-d50dbda32ee4-6af745ac, #w-node-_9a4ead5d-9acb-b738-9a30-ded6330ff054-6af745ac, #w-node-_2863a5c2-d638-d892-23ad-5939dc029c91-6af745ac, #w-node-_9eb2f4cc-c56b-9675-395f-a469a3d0a511-6af745ac, #w-node-_4fc00f76-de9a-aa8c-1203-f7cf6284fb25-6af745ac, #w-node-c646744d-2588-85bc-4147-d003b4630f42-6af745ac, #w-node-_096d230f-11f2-c8f0-a7f2-b5d2a2126b51-6af745ac, #w-node-_8ad35da4-129a-ca2b-1ead-934864ea2808-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e9a1-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e9ab-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1e9ac-6af745ac, #w-node-_26b7ce43-28b7-c5c1-8b79-c0877541b371-6af745ac, #w-node-_5d559642-f2f7-2d81-15f6-8210b82f7aec-6af745ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea1a-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea1f-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea24-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea29-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea2e-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea33-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea3d-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea42-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea47-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea4c-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea51-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea56-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea5b-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea60-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea98-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ea9d-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1eaa2-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1eaa7-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1eaac-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1eab1-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1eabb-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1eac0-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1eac5-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1eaca-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1eacf-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ead4-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ead9-6af745ac, #w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1eade-6af745ac {
  justify-self: start;
}

#w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1eb87-6af745ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ecec4ef1-d0fe-66c5-0029-6a07eda1ebe3-6af745ac {
  justify-self: start;
}

#w-node-a8d7b134-0805-5809-8747-25d0ac8a699c-6af745ae {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-a8d7b134-0805-5809-8747-25d0ac8a699e-6af745ae, #w-node-_3be1e4ad-7557-f617-7364-4f9d172193a2-6af745b4, #w-node-debc3cd9-6869-fdf6-0bef-8e64873992f1-6af745b4, #w-node-bb5e333f-9cd5-e07c-a363-daee841e601b-6af745b4, #w-node-_57e0d7ff-a0a3-367b-60fa-a18618f35929-49b88b78, #w-node-_88b4a81a-50e9-f651-514d-9bfef6ed65d6-49b88b78 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_49d248be-86b1-9247-977a-e6b949b88b86-49b88b78, #w-node-_49d248be-86b1-9247-977a-e6b949b88b95-49b88b78 {
  align-self: end;
}

#w-node-_49d248be-86b1-9247-977a-e6b949b88ba0-49b88b78 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3be1e4ad-7557-f617-7364-4f9d172193a2-6af745b5, #w-node-bb5e333f-9cd5-e07c-a363-daee841e601b-6af745b5, #w-node-b3e218e8-5523-88c2-46f9-b45fb144daf1-6af745c0, #w-node-bafc64d1-4724-641f-a837-cd846541bcaf-6af745c0, #w-node-_3be1e4ad-7557-f617-7364-4f9d172193a2-ea6b5b1a, #w-node-debc3cd9-6869-fdf6-0bef-8e64873992f1-ea6b5b1a, #w-node-bb5e333f-9cd5-e07c-a363-daee841e601b-ea6b5b1a, #w-node-_842a5ce7-fc75-b2d0-99f0-a9682104cc53-2104cc46, #w-node-_842a5ce7-fc75-b2d0-99f0-a9682104cc6a-2104cc46, #w-node-_842a5ce7-fc75-b2d0-99f0-a9682104cc7e-2104cc46 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2a049dac-5ab0-987f-df30-f3e3387ea5f9-387ea5f1 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_2a049dac-5ab0-987f-df30-f3e3387ea60f-387ea5f1 {
  align-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_0d8ac1ad-9c45-9705-6cc6-5e87cd19429e-6af74591, #w-node-d4a36c0d-8544-21f8-1ffb-0b22b853e53d-6af74591, #w-node-_511c3aaa-7209-903e-f2c6-6d7837764b42-6af74591, #w-node-_78d8fda0-685b-8386-e8b5-b7337d6fa42c-6af74591, #w-node-e9aaea7d-79fa-1f64-4666-00e416ad31be-6af74591 {
    justify-self: end;
  }

  #name.w-node-_18505cd1-ba42-f367-1344-06cf3b117cd6-6af74591, #Email.w-node-ee856768-dddd-8ebd-292d-a08b17816bb7-6af74591 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_842a5ce7-fc75-b2d0-99f0-a9682104cc7e-2104cc46 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_83d588f2-23d2-95f2-d960-954961bef030-6af74591 {
    grid-row: span 1 / span 1;
  }

  #name.w-node-_18505cd1-ba42-f367-1344-06cf3b117cd6-6af74591, #Email.w-node-ee856768-dddd-8ebd-292d-a08b17816bb7-6af74591, #field.w-node-_7acd2f5e-4ad2-0e9e-88ea-34216c08d289-6af74591, #speak-now.w-node-a0f199a3-ec3e-2687-6f21-abfd39f855fe-6af74591 {
    grid-column: span 1 / span 1;
  }

  #w-node-_73c55e89-bc78-29a2-975a-9b6c6998e044-6998e031 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_73c55e89-bc78-29a2-975a-9b6c6998e046-6998e031 {
    align-self: start;
  }

  #w-node-_49d248be-86b1-9247-977a-e6b949b88b93-49b88b78 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_842a5ce7-fc75-b2d0-99f0-a9682104cc7e-2104cc46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: stretch;
  }

  #w-node-_2a049dac-5ab0-987f-df30-f3e3387ea5f9-387ea5f1 {
    grid-row: span 1 / span 1;
  }

  #w-node-_2a049dac-5ab0-987f-df30-f3e3387ea60f-387ea5f1 {
    order: 9999;
  }
}


@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}