:root {
  --dark: #161a20;
  --body-display: #a0a1af;
  --icon: #979797;
  --relume-library-lite-white: white;
  --light-outline: rgba(255, 255, 255, .1);
  --extra-dark: #12151a;
  --outline: #eff3f8;
  --dark-outlune: #e8edf3;
  --background: #fafbfc;
  --relume-library-lite-grey: #e4e2df;
  --relume-library-lite-rl-black: black;
  --relume-library-lite-rl-gray: #f4f4f4;
  --relume-library-lite-rl-white: white;
  --dark-blue: #14171c;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

body {
  max-width: 120rem;
  background-color: var(--dark);
  color: #333;
  margin-left: auto;
  margin-right: auto;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1vw;
  line-height: 1.2;
}

h1 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25em;
}

h2 {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.8vw;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

p {
  color: var(--body-display);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65em;
}

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

a:hover {
  color: var(--relume-library-lite-white);
}

label {
  color: var(--body-display);
  margin-bottom: 5px;
  font-weight: 700;
  display: block;
}

blockquote {
  border-left: 1px solid var(--light-outline);
  background-color: rgba(255, 255, 255, .03);
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 24px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65em;
}

.background {
  background-image: none;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin: -5px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.background.two {
  background-image: none;
  background-position: 50% 0;
}

.overlay {
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 6, 12, .75);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.navbar {
  z-index: 100;
  width: 100%;
  height: 0;
  max-height: 0;
  background-color: rgba(255, 255, 255, 0);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navbar-wrapper {
  z-index: 4;
  width: 100%;
  height: 75px;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border: 1px solid var(--light-outline);
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: center;
  align-items: stretch;
  justify-items: stretch;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.navbar-wrapper.portfolio-page {
  z-index: 3;
  background-color: var(--dark);
}

.dot {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 100%;
  flex: none;
  align-self: auto;
  margin-left: 20px;
  margin-right: 10px;
}

.body {
  background-color: var(--dark);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.nav-right {
  z-index: 5;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1px 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  position: relative;
}

.separator {
  width: 1px;
  background-color: var(--light-outline);
  margin-top: 18px;
  margin-bottom: 18px;
}

.separator.top {
  width: 20px;
  height: 1px;
  cursor: not-allowed;
  margin-top: 0;
  margin-bottom: 0;
}

.separator.section-line {
  width: 90%;
  height: 1px;
  margin: 20px auto auto;
  padding-top: 0;
  padding-bottom: 0;
  position: static;
  top: 30rem;
}

.nav-text {
  z-index: 5;
  color: #fff;
  text-align: left;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 1vw;
  display: inline;
  position: relative;
}

.gallery-title {
  z-index: 5;
  cursor: default;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
  display: flex;
  position: relative;
}

.underline-link2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--light-outline);
  color: #fff;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 6px 4px;
  font-size: 11px;
  text-decoration: none;
  position: relative;
}

.section-welcome {
  z-index: auto;
  background-color: var(--dark);
  justify-content: center;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 4rem;
  display: flex;
  position: static;
  overflow: hidden;
}

.grid-wrapper {
  z-index: 20;
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: minmax(100vw, 1.75fr);
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: static;
}

.grid-wrapper.zero-height {
  width: 100vw;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(auto, 1247px));
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  margin-left: 40px;
  margin-right: 40px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: static;
}

.grain-background {
  z-index: 2;
  opacity: .02;
  background-image: url('../images/noise.gif');
  background-position: 50%;
  background-size: auto;
  display: block;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.grain-background.in-element {
  z-index: 2;
  width: 100vw;
  height: 100vh;
  min-height: 100%;
  opacity: .02;
  display: block;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.grain-background.bottom {
  z-index: 1;
  height: 50vh;
  opacity: .03;
  background-position: 50%;
  background-attachment: scroll;
  display: block;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.grain-background.top {
  z-index: 1;
  height: 50vh;
  opacity: .03;
  display: block;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.subtitle {
  z-index: 10;
  color: rgba(255, 255, 255, .8);
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 12px;
  position: relative;
}

.grid-3 {
  width: 100%;
  height: 100%;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.card-top {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-end;
  align-items: center;
  margin-right: -36px;
  display: grid;
}

.body-display {
  color: var(--body-display);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65em;
}

.grid-block {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: start;
  display: grid;
}

.menu-content {
  z-index: 3;
  min-height: 100vh;
  grid-column-gap: 3px;
  grid-row-gap: 0px;
  color: var(--icon);
  flex-direction: column;
  grid-template-rows: minmax(90px, .25fr) minmax(auto, 1fr);
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  align-items: center;
  justify-items: center;
  padding-top: 200px;
  display: grid;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.menu-wrapper {
  width: 200vw;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  align-self: auto;
  align-items: center;
  justify-items: center;
  margin-bottom: 0;
  margin-left: 40px;
  margin-right: 40px;
  display: flex;
}

.menu-items {
  width: 100%;
  max-width: 100vw;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
  overflow: hidden;
}

.h2 {
  text-align: left;
  text-transform: uppercase;
  align-self: center;
  margin-top: 0;
  margin-bottom: 40px;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 1.4vw;
  font-weight: 100;
  line-height: 1.4;
}

.grain-wrapper {
  z-index: 2;
  opacity: .02;
  background-image: url('../images/noise.gif');
  background-position: 50%;
  background-repeat: repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.grain-wrapper.portfolio-page {
  z-index: 2;
  opacity: .02;
  display: block;
}

.circle-link-text {
  z-index: 20;
  position: relative;
}

.four-column {
  z-index: 25;
  width: 100%;
  grid-row-gap: 24px;
  flex-direction: row;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.button {
  z-index: 25;
  width: 300px;
  border: 1px solid var(--light-outline);
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 1vw;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.button:hover {
  background-color: var(--light-outline);
}

.button-outline {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  border-radius: 100%;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  display: grid;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.button-outline-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.button-outline-wrapper.left {
  width: 50%;
}

.button-outline-wrapper.right {
  width: 50%;
  justify-content: flex-end;
}

.button-outline-fill {
  width: 200%;
  height: 100%;
  min-width: 300px;
  border: 1px solid #fff;
  border-radius: 100%;
}

.footer-menu-link {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border: 1px solid var(--light-outline);
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  align-items: flex-start;
  justify-items: center;
  padding: 65px 0;
  text-decoration: none;
  display: grid;
}

.stacked-intro {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.stacked-intro.centered {
  text-align: center;
}

.hero-image {
  height: 100vh;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hero-image.full {
  width: 120vw;
  height: 130vh;
  min-height: 110%;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.hero-image-wrapper {
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper.left {
  z-index: 20;
  width: 100vw;
}

.full-hero {
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  z-index: auto;
  width: 100%;
  background-color: var(--dark);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  display: block;
  position: relative;
}

.form {
  z-index: 5;
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 48px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  padding-top: 80px;
  display: flex;
  position: relative;
}

.field-block {
  grid-column-gap: 18px;
  grid-row-gap: 12px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-field {
  min-height: 60px;
  border: 1px solid var(--light-outline);
  color: #fff;
  text-align: center;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 2px;
  align-self: center;
  margin-bottom: 0;
  padding: 18px 22px 20px;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  background-color: rgba(18, 21, 26, .3);
  border-color: rgba(255, 255, 255, .25);
  padding-left: 26px;
}

.text-field::-ms-input-placeholder {
  color: rgba(255, 255, 255, .48);
  font-weight: 300;
}

.text-field::placeholder {
  color: rgba(255, 255, 255, .48);
  font-weight: 300;
}

.submit-button {
  border: 1px solid var(--light-outline);
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  background-color: rgba(22, 26, 32, 0);
  border-radius: 0%;
  align-self: center;
  margin-bottom: 20px;
  padding: 10px 14px 10px 20px;
  font-size: 14px;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.submit-button:hover {
  border-color: #fff;
}

.social-block {
  z-index: auto;
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: end;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  display: flex;
  position: relative;
}

.social-icon-wrapper {
  z-index: 3;
  width: 100%;
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-direction: row;
  flex: 0 auto;
  order: -1;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.social-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--light-outline);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 14px;
  display: flex;
}

.preloader {
  z-index: 500;
  background-color: var(--extra-dark);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.preloader-content {
  z-index: auto;
  width: 200px;
  height: 200px;
  border: 1px solid var(--light-outline);
  border-radius: 100%;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.preloader-outline-circle {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin: -1px;
  display: grid;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.preloader-outline-wrapper {
  width: 0%;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: relative;
  overflow: hidden;
}

.preloader-outline {
  width: 200px;
  height: 200px;
  min-height: 200px;
  min-width: 200px;
  border: 1px solid #fff;
  border-radius: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.preloader-outline.bottom {
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.social-icon-image {
  z-index: 20;
  width: 18px;
  position: relative;
}

.form-wrapper {
  z-index: auto;
  width: 100%;
  height: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 120px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: space-between;
  padding: 93px 40px 60px;
  display: block;
  position: relative;
}

.footer-section {
  z-index: auto;
  background-color: #14171c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.section-title-left {
  width: 100px;
  border-bottom: 1px solid var(--light-outline);
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  padding: 24px 0 10px;
  font-size: 11px;
  text-decoration: none;
  display: flex;
  position: static;
  overflow: hidden;
}

.footer-credit-wrapper {
  z-index: 3;
  width: 100%;
  height: 2rem;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid var(--light-outline);
  color: var(--body-display);
  letter-spacing: 4px;
  text-transform: uppercase;
  flex-direction: row;
  order: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 8px;
  display: flex;
  position: relative;
}

.legal-credits {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  justify-items: end;
  display: flex;
}

.legal-llink {
  opacity: 1;
  color: var(--body-display);
  text-decoration: none;
  transition: all .6s cubic-bezier(.25, .46, .45, .94);
}

.legal-llink:hover {
  color: #fff;
}

.h-button {
  display: flex;
}

.h-button.margin-top {
  perspective: 1000px;
  margin-top: 1rem;
}

.section-hero {
  z-index: auto;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  overflow: hidden;
}

.h1-hero {
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 4vw;
  font-weight: 800;
  line-height: .9;
}

.h1-hero.outline {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.hero-header {
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1vw;
  font-weight: 300;
  line-height: 1;
}

.stage-button {
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #bdbdbd;
  border-radius: 0;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 1em 1.5em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .2s ease-out;
  display: flex;
  position: relative;
  overflow: hidden;
  transform: scale(1);
}

.stage-text {
  z-index: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1vw;
  font-weight: 100;
  position: relative;
}

.hero-wrap {
  z-index: 3;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 5rem;
  left: 5rem;
  right: auto;
}

.nav-brand {
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
  display: block;
}

.logo-lge {
  z-index: auto;
  width: 100%;
  height: 120px;
  object-fit: scale-down;
  margin-top: -15px;
  display: block;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
  overflow: hidden;
}

.logo-lge.portfolio-page, .logo-lge.x3 {
  display: none;
}

.h1 {
  font-family: Roboto, sans-serif;
  font-size: 3vw;
  line-height: 2;
}

.grid-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--light-outline);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  padding: 36px 15px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.card-link {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 15px;
  display: flex;
}

.horizontal-line {
  height: 1px;
  background-color: rgba(255, 255, 255, .1);
}

.section-about {
  z-index: auto;
  background-color: var(--dark);
  padding-top: 4rem;
  position: static;
}

.welcome-stack {
  z-index: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.image-about {
  width: 14rem;
  height: 14rem;
  max-width: none;
  border: 1px solid var(--light-outline);
  opacity: .8;
  filter: grayscale();
  flex: 0 auto;
  align-self: auto;
  margin-left: 0;
  margin-right: 0;
  padding: 20px;
  display: block;
}

.image-about:hover {
  opacity: 1;
  filter: none;
}

.about-quick-stack {
  z-index: 5;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: rgba(0, 0, 0, 0);
  flex: 0 auto;
  align-self: center;
  margin-top: 4rem;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  position: static;
}

.marquee-content {
  min-width: 100%;
  grid-column-gap: 1rem;
  flex: none;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.marquee-content.scroll {
  width: 100%;
  flex-direction: row;
  flex: 1;
  order: 0;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
  overflow: hidden;
}

.marquee-logo {
  letter-spacing: -.025em;
  white-space: nowrap;
  align-self: auto;
  font-size: 6vw;
  line-height: 1.6em;
  display: block;
}

.marquee-block {
  flex-direction: row;
  flex: 0 auto;
  justify-content: space-between;
  align-self: center;
  align-items: stretch;
  display: block;
  position: relative;
}

.marquee {
  width: 100%;
  height: 3rem;
  grid-column-gap: 1rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-slider {
  z-index: 1;
  width: 100%;
  height: 200px;
  border-top: 1px solid var(--light-outline);
  border-bottom: 1px solid var(--light-outline);
  background-color: var(--extra-dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  display: flex;
  position: static;
}

.marquee-dot {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.section-title {
  z-index: 4;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
  position: static;
  top: 0;
  overflow: hidden;
}

.section-title.sticky {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-top: 2rem;
  padding-bottom: 0;
  position: static;
  top: 6rem;
  bottom: auto;
}

.section-title.contact {
  background-color: rgba(0, 0, 0, 0);
}

.about-cell {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.about-cell.bottom, .about-cell.left {
  justify-content: flex-start;
}

.logo-sml {
  z-index: 3;
  height: 60px;
  margin-top: 5px;
  display: block;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
}

.section-choose {
  z-index: auto;
  width: 100%;
  background-color: var(--dark);
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 40px 3rem;
  position: static;
}

.full-menu {
  z-index: 4;
  height: 100vh;
  max-width: 120rem;
  background-color: var(--extra-dark);
  object-fit: none;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.menu-link-2 {
  color: #fff;
  letter-spacing: -.025em;
  justify-content: center;
  align-items: flex-end;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  font-size: 6vw;
  font-weight: 600;
  line-height: 1.1em;
  text-decoration: none;
  display: flex;
  position: relative;
  transform: none;
}

.full-menu-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-content: start;
  justify-content: center;
  align-items: start;
  justify-items: center;
  margin-left: 40px;
  margin-right: 40px;
  overflow: hidden;
}

.full-menu-block {
  z-index: 3;
  border: 1px solid var(--light-outline);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  display: flex;
  position: relative;
}

.icon-wrapper {
  padding: 10px 20px 20px;
  font-family: Roboto, sans-serif;
  font-size: 2vw;
  font-weight: 100;
}

.icon-wrapper.contact {
  color: var(--icon);
  margin-right: 10px;
  padding: 0;
}

.fa-email {
  color: var(--icon);
  font-family: "Fa 400", sans-serif;
}

.full-menu-para {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Roboto Flex, sans-serif;
  font-size: 1.5vw;
}

.fa-phone {
  color: var(--icon);
  font-family: "Fa Solid 900", sans-serif;
  font-weight: 400;
}

.fa-location {
  font-family: "Fa Solid 900", sans-serif;
}

.form-icons {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 14px;
  display: flex;
}

.underline-link {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(255, 255, 255, .1);
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 6px 4px;
  font-size: 11px;
  text-decoration: none;
  position: relative;
}

.underline-link.home-page {
  z-index: 3;
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .1);
  font-size: 1vw;
  position: relative;
}

.underline-link.home-page.w--current {
  z-index: 3;
}

.hover-line {
  height: 1px;
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.hover-fill {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.fa-home {
  margin-right: 0;
  font-family: "Fa Solid 900", sans-serif;
}

.home-block {
  justify-content: space-between;
  align-items: center;
  margin-right: -52px;
  display: block;
  position: static;
  right: 0;
}

.social-icon-2 {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 14px;
  display: flex;
}

.footer-link {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  justify-content: center;
  align-items: center;
  padding: 24px;
  font-size: 11px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.text-block {
  font-size: 1vw;
  display: flex;
}

.copyright {
  width: 100%;
}

.cell {
  justify-content: center;
  align-items: center;
}

.story-block {
  z-index: 3;
  align-items: center;
  display: flex;
  position: relative;
}

.link-block {
  z-index: 5;
  position: relative;
}

.grid-image {
  display: block;
  position: relative;
}

.grid-para {
  width: 100%;
  color: var(--outline);
  font-size: 1.3vw;
  font-weight: 100;
  line-height: 1.3;
}

.empty {
  height: 0;
}

.h4-choose-title {
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 1.6vw;
  line-height: 1.2;
}

.section-wrapper {
  margin-top: 0;
  margin-left: 40px;
  margin-right: 40px;
  position: static;
  top: 60rem;
}

.choose-para {
  color: var(--dark-outlune);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5vw;
  font-weight: 100;
  line-height: 1.4;
  position: static;
}

.contact-grid {
  z-index: 2;
  width: 100%;
  height: 100%;
  margin-top: 3rem;
  position: relative;
}

.contact-left {
  width: 100%;
  max-width: 33rem;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.contact-info {
  color: var(--icon);
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.4;
}

.contact-wrap {
  z-index: 2;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.contact-icon {
  color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
}

.heading {
  color: var(--dark-outlune);
}

.section-blank {
  width: 100%;
  height: 8rem;
  background-color: var(--dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto auto;
  display: flex;
}

.heading-mid {
  text-align: center;
  font-size: 1.8vw;
  line-height: 1.8;
}

.top-div {
  z-index: 6;
  height: 50vh;
  background-color: var(--dark);
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.bottom-div {
  z-index: 6;
  height: 50vh;
  background-color: var(--dark);
  display: none;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-portfolio {
  z-index: auto;
  width: 100%;
  height: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 40px 3rem;
  display: block;
  position: relative;
}

.portfolio {
  z-index: 3;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid var(--light-outline);
  color: #000;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: space-between;
  align-self: flex-start;
  align-items: start;
  padding: 40px 60px;
  display: grid;
  position: relative;
}

.html-embed {
  color: rgba(0, 0, 0, 0);
}

.grid-seperator {
  width: 1px;
  background-color: rgba(255, 255, 255, .1);
  margin-top: 18px;
  margin-bottom: 18px;
}

.grid-seperator.grid-line {
  width: 1px;
  height: 100%;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
}

.stack-component {
  grid-row-gap: 0rem;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.stack-card {
  height: 12rem;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--extra-dark);
  grid-template: "." 30%
                 "." 70%
                 / 8% 40% 4% 8% 40%;
  grid-auto-columns: 1fr;
  margin-bottom: 9rem;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  position: -webkit-sticky;
  position: sticky;
  top: 7rem;
  overflow: hidden;
  box-shadow: 0 -12px 16px -4px rgba(0, 0, 0, .05);
}

.stack-card.card-2 {
  background-color: var(--extra-dark);
  margin-bottom: 6rem;
  top: 10rem;
}

.stack-card.card-3 {
  background-color: var(--extra-dark);
  margin-bottom: 3rem;
  top: 13rem;
}

.stack-card.card-4 {
  background-color: var(--extra-dark);
  margin-bottom: 0;
  top: 16rem;
}

.open-menu {
  width: 96px;
  height: 100%;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}

.lottie-anim-open {
  width: 32px;
  filter: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.close-menu {
  width: 96px;
  height: 100%;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: none;
}

.lottie-anim-close {
  width: 32px;
  filter: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-gallery {
  z-index: auto;
  width: 100%;
  height: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 40px 3rem;
  display: block;
  position: relative;
}

.gallery-wrapper {
  z-index: 3;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #000;
  border: 1px solid rgba(255, 255, 255, .1);
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: space-between;
  align-self: flex-start;
  align-items: start;
  padding: 40px 60px;
  display: grid;
  position: relative;
}

.imput-embed {
  color: rgba(0, 0, 0, 0);
}

@media screen and (min-width: 1280px) {
  .form-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }

  .nav-brand {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1440px) {
  .h2 {
    font-size: 1.3vw;
  }

  .nav-brand {
    margin-left: auto;
    margin-right: auto;
  }

  .h1 {
    font-size: 2.8vw;
  }

  .stack-card {
    height: 14rem;
  }
}

@media screen and (min-width: 1920px) {
  h3 {
    font-size: 1.3vw;
  }

  .dot {
    justify-content: center;
    align-items: center;
  }

  .nav-text {
    font-size: .8vw;
  }

  .h2 {
    font-family: Roboto, sans-serif;
    font-size: 1.3vw;
  }

  .button {
    font-size: .8vw;
  }

  .h1-hero {
    font-size: 3.6vw;
  }

  .stage-button {
    padding: .9em 1.5em;
    font-size: .8vw;
  }

  .stage-text {
    font-size: .8vw;
    font-weight: 200;
  }

  .nav-brand {
    margin-left: auto;
    margin-right: auto;
  }

  .h1 {
    font-size: 2vw;
  }

  .grid-card {
    padding: 2vw;
  }

  .image-about {
    width: 16rem;
    height: 16rem;
  }

  .marquee-logo {
    flex: 0 auto;
    align-self: center;
  }

  .marquee-block {
    justify-content: space-between;
    align-items: center;
  }

  .marquee-dot {
    justify-content: center;
  }

  .full-menu {
    display: none;
  }

  .icon-wrapper {
    font-size: 1.5vw;
  }

  .full-menu-para {
    font-size: 1.2vw;
  }

  .underline-link.home-page {
    font-size: .8vw;
  }

  .text-block {
    font-size: 1vw;
  }

  .story-block {
    flex-direction: row;
    justify-content: flex-start;
    display: flex;
  }

  .grid-image {
    width: 3rem;
  }

  .grid-para {
    font-size: 1.2vw;
  }

  .h4-choose-title, .choose-para {
    font-size: 1.4vw;
  }

  .contact-left {
    max-width: 40rem;
  }

  .contact-info {
    font-size: .9vw;
  }

  .heading {
    font-size: 1.2vw;
  }

  .heading-mid {
    font-size: 1.5vw;
  }

  .link {
    font-size: .8vw;
  }

  .stack-card {
    height: 16rem;
  }
}

@media screen and (max-width: 991px) {
  .navbar-wrapper {
    height: 65px;
    grid-template-columns: 1fr;
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }

  .nav-right {
    font-size: 4vw;
  }

  .separator.top {
    line-height: 4;
  }

  .separator.section-line {
    margin-top: 0;
    margin-bottom: 0;
  }

  .nav-text {
    font-size: 1.5vw;
  }

  .nav-text.x3 {
    display: none;
  }

  .gallery-title {
    line-height: 4;
  }

  .section-welcome {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .grid-wrapper {
    flex-direction: column;
    grid-template-columns: minmax(100vw, 1.75fr);
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .grid-3 {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .menu-content {
    padding-top: 140px;
  }

  .menu-wrapper {
    width: auto;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    display: flex;
  }

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

  .circle-link-text {
    text-align: center;
    font-size: 7.5px;
  }

  .four-column {
    grid-row-gap: 48px;
  }

  .hero-image.full {
    width: 100vw;
    height: 100%;
  }

  .full-hero {
    min-height: 90vh;
  }

  .form {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
  }

  .h-button {
    justify-content: center;
  }

  .h1-hero {
    font-size: 2rem;
  }

  .hero-header {
    letter-spacing: 3px;
    font-size: .8rem;
  }

  .hero-wrap {
    bottom: 4.8rem;
    left: 3.3rem;
  }

  .nav-brand {
    display: none;
  }

  .logo-lge {
    display: block;
  }

  .logo-lge.x3 {
    display: none;
  }

  .grid-card {
    padding-top: 0;
  }

  .section-about {
    padding-top: 2rem;
  }

  .about-quick-stack {
    margin-top: 2rem;
  }

  .marquee-logo {
    font-size: 9vw;
  }

  .marquee {
    height: 2rem;
  }

  .section-slider {
    height: 120px;
  }

  .about-cell {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .about-cell.bottom {
    flex-direction: row;
    justify-content: center;
  }

  .about-cell.left {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .logo-sml {
    object-fit: scale-down;
    align-self: flex-start;
    margin-top: 0;
    display: block;
    position: absolute;
    left: 10px;
    overflow: hidden;
  }

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

  .full-menu {
    display: none;
  }

  .menu-link-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-content: end;
    align-items: end;
    padding-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
    font-size: 48px;
    display: grid;
  }

  .menu-link-2.w--current {
    grid-auto-columns: 1fr;
  }

  .fa-home {
    margin-right: 20px;
  }

  .copyright {
    padding-top: 0;
  }

  .section-blank {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  blockquote {
    margin-top: 36px;
    margin-bottom: 36px;
    padding: 18px;
  }

  .navbar-wrapper {
    z-index: 5;
    grid-column-gap: 10px;
  }

  .dot {
    margin-bottom: 2px;
    margin-left: 0;
  }

  .body {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-right {
    z-index: 5;
    font-size: 1vw;
    line-height: 1;
  }

  .nav-text {
    font-size: 1.5vw;
    line-height: 1.5;
  }

  .gallery-title {
    z-index: 5;
    text-align: right;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 1.5vw;
    line-height: 1.5;
    position: relative;
  }

  .section-welcome {
    padding: 20px 15px;
  }

  .grid-wrapper {
    z-index: auto;
    grid-row-gap: 10px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .grid-wrapper.zero-height {
    margin-top: 40px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .grain-background.in-element {
    z-index: 2;
    display: block;
  }

  .card-top {
    margin-top: 10px;
  }

  .grid-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .menu-content {
    min-height: 0;
    grid-template-rows: auto 1fr;
    padding-top: 100px;
  }

  .menu-wrapper {
    z-index: 5;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: center;
    align-items: flex-end;
    margin-left: 0;
    margin-right: 0;
    position: relative;
  }

  .menu-items.mobile {
    max-width: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 0;
    padding-right: 0;
    line-height: 1.2;
  }

  .h2 {
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 2.2vw;
  }

  .grain-wrapper {
    z-index: 2;
  }

  .circle-link-text {
    text-align: center;
    font-size: 9px;
    line-height: 1.3em;
  }

  .four-column {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .button {
    font-size: 1.2vw;
  }

  .contact-wrapper {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }

  .social-icon-wrapper {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
    padding: 10px;
  }

  .social-icon-image {
    width: 14px;
    line-height: 1;
  }

  .form-wrapper {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .footer-section {
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-credit-wrapper {
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
    justify-content: space-between;
    justify-items: center;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section-hero {
    height: 95vh;
  }

  .h1-hero {
    font-size: 1.4rem;
    line-height: 1;
  }

  .hero-header {
    letter-spacing: 2px;
    font-size: .6rem;
  }

  .hero-wrap {
    z-index: 2;
    bottom: 2rem;
    left: 2rem;
  }

  .grid-card {
    padding-bottom: 20px;
  }

  .card-link {
    width: 34px;
    height: 34px;
    padding: 5px;
  }

  .section-about {
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
    display: block;
  }

  .welcome-stack {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-self: auto;
    padding-bottom: 0;
  }

  .image-about {
    z-index: 2;
    width: 50%;
    padding: 10px;
    position: relative;
  }

  .marquee-logo {
    letter-spacing: normal;
    font-size: 12vw;
  }

  .section-slider {
    height: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title.sticky {
    margin-bottom: 1rem;
    padding-top: 1rem;
  }

  .logo-sml {
    z-index: 5;
    height: 45px;
    margin-top: 10px;
  }

  .section-choose {
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .full-menu {
    display: none;
  }

  .menu-link-2 {
    font-size: 36px;
  }

  .full-menu-grid {
    margin-left: 15px;
    margin-right: 15px;
  }

  .full-menu-block {
    z-index: 5;
    padding: 10px;
  }

  .icon-wrapper {
    padding-bottom: 10px;
  }

  .underline-link.home-page {
    z-index: 2;
    font-size: 1.5vw;
    position: relative;
  }

  .underline-link.home-page.w--current {
    z-index: 5;
    letter-spacing: 3px;
    font-size: 1.5vw;
  }

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

  .home-block {
    margin-right: -46px;
    padding-bottom: 8px;
  }

  .text-block {
    font-size: 1.5vw;
  }

  .text-block.footer {
    font-size: 1.2vw;
  }

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

  .story-block {
    z-index: 5;
    justify-content: flex-end;
    align-items: center;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 1.5vw;
    line-height: 1.5;
    position: relative;
  }

  .grid-para {
    font-size: 2.2vw;
  }

  .h4-choose-title {
    font-size: 2.4vw;
  }

  .section-wrapper {
    margin-left: 10px;
    margin-right: 10px;
  }

  .choose-para {
    font-size: 2vw;
  }

  .contact-grid {
    flex-direction: column;
    justify-content: center;
    align-self: center;
    align-items: center;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .contact-left {
    max-width: none;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    grid-template: "."
                   "."
                   "."
                   / 1fr;
    grid-auto-columns: 1fr;
    align-self: auto;
    align-items: center;
    justify-items: center;
    display: grid;
  }

  .contact-info {
    font-size: 1.4vw;
  }

  .contact-wrap {
    justify-content: space-around;
  }

  .heading {
    font-size: 2vw;
  }

  .section-blank {
    height: 4rem;
    padding-left: 15px;
    padding-right: 15px;
  }

  .heading-mid {
    font-size: 3vw;
  }

  .contact-form.x3 {
    width: 100%;
    clear: none;
    flex-direction: row;
    justify-content: center;
    align-self: auto;
    align-items: center;
    display: flex;
  }

  .open-menu, .close-menu {
    width: 84px;
  }
}

@media screen and (max-width: 479px) {
  .navbar-wrapper {
    height: 60px;
  }

  .separator.top, .gallery-title {
    display: none;
  }

  .section-welcome {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .grid-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .grid-wrapper.zero-height {
    margin-left: 10px;
    margin-right: 10px;
  }

  .menu-content {
    flex-direction: column;
    padding-top: 80px;
    display: block;
  }

  .menu-wrapper {
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-self: auto;
    margin: 0 10px;
    padding-bottom: 0;
    padding-left: 0;
    font-size: 1vw;
    display: block;
  }

  .menu-items.mobile {
    width: 100%;
    height: 100px;
    max-width: none;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .h2 {
    justify-content: center;
    align-self: auto;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    font-size: 3vw;
    display: flex;
  }

  .circle-link-text {
    letter-spacing: 2px;
    font-size: 7px;
    line-height: 1.4em;
  }

  .button {
    width: auto;
    font-size: 3vw;
  }

  .hero-image.full {
    width: 100%;
  }

  .full-hero {
    min-height: 550px;
  }

  .form {
    padding-top: 60px;
  }

  .footer-section {
    padding-top: 20px;
  }

  .footer-credit-wrapper {
    text-align: left;
    order: 0;
    justify-content: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .legal-credits {
    grid-column-gap: 5px;
    grid-template-columns: auto;
    justify-content: flex-end;
    justify-items: center;
    display: none;
  }

  .h-button.margin-top {
    width: 100%;
    justify-content: flex-start;
    margin-top: .25rem;
  }

  .section-hero {
    height: 70vh;
    background-image: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0, 35%;
  }

  .h1-hero {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 4vw;
    line-height: 1.3;
  }

  .h1-hero.outline {
    margin-bottom: 0;
    font-size: 4vw;
    line-height: 1.3;
  }

  .hero-header {
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 5px;
    padding-right: 50px;
    font-size: 1.4vw;
    line-height: 1.5;
  }

  .stage-button {
    z-index: 2;
    padding-left: 1.7em;
    padding-right: 1.7em;
  }

  .stage-text {
    margin-bottom: 0;
    font-weight: 400;
  }

  .hero-wrap {
    bottom: 6rem;
    left: 1rem;
  }

  .h1 {
    margin-left: 0;
    font-size: 3.5vw;
  }

  .grid-card {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-about {
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-about {
    height: 6rem;
    padding: 10px;
  }

  .about-quick-stack {
    margin-top: .5rem;
  }

  .marquee-logo {
    font-size: 12vw;
  }

  .section-slider {
    display: none;
  }

  .section-title.sticky {
    margin-bottom: .5rem;
  }

  .about-cell.left {
    justify-content: center;
    align-items: flex-start;
  }

  .logo-sml {
    margin-top: 6px;
  }

  .section-choose {
    padding-top: .25rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .full-menu {
    display: none;
  }

  .menu-link-2 {
    font-size: 36px;
  }

  .full-menu-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .full-menu-block {
    padding-left: 40px;
    padding-right: 40px;
  }

  .icon-wrapper {
    padding: 4px;
  }

  .icon-wrapper.contact {
    margin-right: 5px;
  }

  .fa-email {
    font-size: 4vw;
  }

  .full-menu-para {
    font-size: 3vw;
  }

  .fa-phone, .fa-location {
    font-size: 5vw;
  }

  .underline-link {
    margin-bottom: 15px;
    margin-right: 10px;
  }

  .underline-link.home-page {
    margin-bottom: 20px;
    margin-right: 20px;
    font-size: 2.6vw;
  }

  .underline-link.home-page.w--current {
    margin-bottom: 20px;
    margin-right: 10px;
    font-size: 2.6vw;
  }

  .underline-link.portfolio-page.w--current {
    margin-right: 10px;
  }

  .home-block {
    margin-right: 0;
    display: none;
  }

  .text-block {
    justify-content: center;
    align-self: auto;
    align-items: center;
    font-size: 2vw;
  }

  .copyright {
    padding-left: 10px;
    padding-right: 10px;
  }

  .story-block {
    display: none;
  }

  .grid-para {
    font-size: 2.5vw;
  }

  .h4-choose-title {
    margin-bottom: .5rem;
    font-size: 3vw;
  }

  .choose-para {
    margin-bottom: 1rem;
    font-size: 3vw;
  }

  .contact-grid {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto auto auto;
    grid-template-columns: auto;
  }

  .contact-left {
    width: auto;
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-info.mobile {
    font-size: 2.5vw;
  }

  .heading {
    font-size: 3vw;
  }

  .heading-mid {
    font-size: 4vw;
  }

  .link {
    font-size: 3vw;
  }

  .h3-mob {
    font-size: 5vw;
  }
}

#w-node-_31f759e7-5db2-f232-e48b-4764660f2964-770fefa3 {
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 1fr;
}

#w-node-_31f759e7-5db2-f232-e48b-4764660f2970-770fefa3 {
  grid-column: span 2 / span 2;
}

#w-node-_31f759e7-5db2-f232-e48b-4764660f2976-770fefa3 {
  align-self: center;
}

#w-node-_31f759e7-5db2-f232-e48b-4764660f2978-770fefa3 {
  align-self: center;
  justify-self: center;
}

#w-node-_31f759e7-5db2-f232-e48b-4764660f297a-770fefa3 {
  align-self: start;
}

#w-node-_31f759e7-5db2-f232-e48b-4764660f2980-770fefa3, #w-node-_31f759e7-5db2-f232-e48b-4764660f298a-770fefa3 {
  align-self: center;
}

#w-node-_6ba827c4-e0af-7f31-973d-c50654910aeb-770fefa3 {
  grid-area: 1 / 1 / 2 / 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto auto;
}

#w-node-f22a78cc-e159-420e-b2e8-20caaba0019f-770fefa3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f22a78cc-e159-420e-b2e8-20caaba001a0-770fefa3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-f22a78cc-e159-420e-b2e8-20caaba001a3-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001a4-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001a5-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001a8-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001aa-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001ad-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001af-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001b1-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001b5-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001b6-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001b9-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001ba-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001bb-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001be-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001c0-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001c3-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001c5-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001c7-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001cb-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001cc-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001cf-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001d0-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001d1-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001d4-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001d6-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001d9-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001db-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001dd-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001e1-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001e2-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001e5-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001e6-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001e7-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001ea-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001ec-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001ef-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001f1-770fefa3, #w-node-f22a78cc-e159-420e-b2e8-20caaba001f3-770fefa3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_164b58df-79b6-4bba-2e39-ee39e2fd171c-87a3772a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
  justify-self: end;
}

#w-node-_5342ce38-c822-2986-d8a5-6a2b6b7d77c8-87a3772a {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-ae65f1f4-3160-c660-cf7f-c1c6fb7f14de-87a3772a {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: end;
  justify-self: center;
}

#w-node-_431a92ba-7d9c-8dd5-6286-89ed3a99580f-87a3772a {
  justify-self: end;
}

#w-node-fc881fd5-67a7-613d-9e4f-502f79f3247a-21b10d4f {
  align-self: start;
  justify-self: auto;
}

#w-node-f631b906-b242-9df9-9613-d37452977696-21b10d4f, #w-node-d3c6b7e1-d656-397e-b002-df29463bf3b1-21b10d4f, #w-node-b2494de9-6696-4647-181a-f1b16be0eff5-21b10d4f {
  align-self: center;
  justify-self: center;
}

#w-node-_57398322-eccc-1d76-2424-c47721b10d51-21b10d4f {
  grid-area: 1 / 1 / 2 / 2;
  align-self: auto;
  justify-self: auto;
}

#w-node-_57398322-eccc-1d76-2424-c47721b10d52-21b10d4f {
  align-self: start;
}

#w-node-c8d38d2a-4f81-4e7a-aa7f-f9c432b44636-21b10d4f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_57398322-eccc-1d76-2424-c47721b10d55-21b10d4f {
  align-self: center;
}

#w-node-fba2f3fd-9fba-846b-e932-8b6f3aa84a59-21b10d4f {
  align-self: center;
  justify-self: center;
}

#w-node-_57398322-eccc-1d76-2424-c47721b10d63-21b10d4f {
  align-self: stretch;
  justify-self: stretch;
}

#w-node-_9c522504-2640-3828-4839-f0b3a7867366-21b10d4f {
  order: 25;
  justify-self: end;
}

#w-node-_74cc01b5-0937-d3a4-c5e1-1b59c8b714d3-c8b714cc {
  align-self: start;
}

#w-node-_74cc01b5-0937-d3a4-c5e1-1b59c8b714d5-c8b714cc {
  align-self: start;
  justify-self: end;
}

#w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b1b-770fefc9 {
  align-self: start;
  justify-self: auto;
}

#w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b3a-770fefc9, #w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b44-770fefc9, #w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b4e-770fefc9 {
  align-self: center;
  justify-self: center;
}

#w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b59-770fefc9 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: auto;
  justify-self: auto;
}

#w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b5a-770fefc9 {
  align-self: start;
}

#w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b5b-770fefc9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b5c-770fefc9 {
  align-self: center;
}

#w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b60-770fefc9 {
  align-self: center;
  justify-self: center;
}

#w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b62-770fefc9 {
  align-self: stretch;
  justify-self: stretch;
}

#w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b63-770fefc9 {
  order: 25;
  justify-self: end;
}

#w-node-_4736be50-a474-0a93-ab0b-aefe69042bb7-770fefc9 {
  grid-area: 1 / 1 / 2 / 2;
}

#email-form.w-node-_6111e4787a31d355cc31ef6600000000000c-770fefc9 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_2bb4dd89-52c0-9935-0c80-7d4e3f566d87-770fefc9 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_3d03c3ac-b4e2-5cee-f071-8f6cb465d64d-770fefc9 {
  align-self: center;
}

#w-node-_6111e4787a31d355cc31ef6600000000000e-770fefc9 {
  justify-self: center;
}

#w-node-_34736873-62d9-9d9b-a697-42516143767c-770fefc9 {
  justify-self: start;
}

#pass.w-node-_6111e4787a31d355cc31ef66000000000012-770fefc9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2f3b2983-f46b-fd7f-2ca9-de87cc894e86-770fefc9, #w-node-_2f3b2983-f46b-fd7f-2ca9-de87cc894e88-770fefc9 {
  justify-self: center;
}

#w-node-d641c5b5-d71d-0237-f86b-fdd9a68b82f3-770fefe7 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: stretch;
  justify-self: stretch;
}

#w-node-d641c5b5-d71d-0237-f86b-fdd9a68b82f4-770fefe7 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_6111e4915a3e617d56ff3c2b00000000000b-770fefe7 {
  align-self: center;
}

#w-node-e3d2ee2e-c577-601e-f0e4-57f1cfb713f1-770fefe7 {
  justify-self: center;
}

#w-node-e3d2ee2e-c577-601e-f0e4-57f1cfb713f6-770fefe7 {
  justify-self: start;
}

#w-node-e3d2ee2e-c577-601e-f0e4-57f1cfb713f8-770fefe7 {
  justify-self: end;
}

#w-node-d641c5b5-d71d-0237-f86b-fdd9a68b8311-770fefe7, #w-node-d641c5b5-d71d-0237-f86b-fdd9a68b8313-770fefe7 {
  justify-self: center;
}

#w-node-d641c5b5-d71d-0237-f86b-fdd9a68b831c-770fefe7 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfc88-770ff005 {
  align-self: start;
  justify-self: auto;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfca7-770ff005, #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcb1-770ff005, #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcbb-770ff005 {
  align-self: center;
  justify-self: center;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcc6-770ff005 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: auto;
  justify-self: auto;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcc7-770ff005 {
  align-self: start;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcc8-770ff005 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcc9-770ff005 {
  align-self: center;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfccd-770ff005 {
  align-self: center;
  justify-self: center;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfccf-770ff005 {
  align-self: stretch;
  justify-self: stretch;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcd0-770ff005 {
  order: 25;
  justify-self: end;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfc88-770ff008 {
  align-self: start;
  justify-self: auto;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfca7-770ff008, #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcb1-770ff008, #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcbb-770ff008 {
  align-self: center;
  justify-self: center;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcc6-770ff008 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: auto;
  justify-self: auto;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcc7-770ff008 {
  align-self: start;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcc8-770ff008 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcc9-770ff008 {
  align-self: center;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfccd-770ff008 {
  align-self: center;
  justify-self: center;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfccf-770ff008 {
  align-self: stretch;
  justify-self: stretch;
}

#w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcd0-770ff008 {
  order: 25;
  justify-self: end;
}

@media screen and (min-width: 1440px) {
  #w-node-d641c5b5-d71d-0237-f86b-fdd9a68b82f3-770fefe7 {
    grid-area: 1 / 2 / 2 / 3;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_6ba827c4-e0af-7f31-973d-c50654910aeb-770fefa3 {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    display: grid;
  }

  #w-node-_18d2d33f-557e-b855-b453-9990cfc97234-770fefa3 {
    grid-row: span 2 / span 2;
  }

  #w-node-ebf6fcc0-90c4-e882-96a3-dedb247e939a-21b10d4f {
    align-self: start;
  }

  #w-node-fba2f3fd-9fba-846b-e932-8b6f3aa84a59-21b10d4f, #w-node-d82d550c-c2fd-213f-c6df-27c44b1bc69c-21b10d4f {
    justify-self: start;
  }

  #w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b39-770fefc9 {
    align-self: start;
  }

  #w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b60-770fefc9, #w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b61-770fefc9 {
    justify-self: start;
  }

  #w-node-d641c5b5-d71d-0237-f86b-fdd9a68b82f3-770fefe7 {
    grid-column: 1 / 4;
  }

  #w-node-d641c5b5-d71d-0237-f86b-fdd9a68b82f4-770fefe7 {
    grid-column: 1 / 5;
  }

  #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfca6-770ff005 {
    align-self: start;
  }

  #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfccd-770ff005, #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcce-770ff005 {
    justify-self: start;
  }

  #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfca6-770ff008 {
    align-self: start;
  }

  #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfccd-770ff008, #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfcce-770ff008 {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_31f759e7-5db2-f232-e48b-4764660f2964-770fefa3 {
    grid-template-rows: auto auto;
    grid-template-columns: .25fr;
  }

  #w-node-ae65f1f4-3160-c660-cf7f-c1c6fb7f14de-87a3772a {
    grid-column: span 1 / span 1;
  }

  #w-node-_431a92ba-7d9c-8dd5-6286-89ed3a99580f-87a3772a {
    justify-self: center;
  }

  #w-node-ebf6fcc0-90c4-e882-96a3-dedb247e939a-21b10d4f, #w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b39-770fefc9, #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfca6-770ff005, #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfca6-770ff008 {
    align-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_31f759e7-5db2-f232-e48b-4764660f2964-770fefa3 {
    grid-template-rows: auto auto;
    grid-template-columns: .25fr;
  }

  #w-node-_6ba827c4-e0af-7f31-973d-c50654910aeb-770fefa3 {
    grid-template-rows: 1fr;
    grid-template-columns: auto;
  }

  #w-node-_18d2d33f-557e-b855-b453-9990cfc97234-770fefa3 {
    grid-row: span 1 / span 1;
  }

  #w-node-_3f2effd1-4d8b-80ce-0d35-55fdeb5738ca-87a3772a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fc881fd5-67a7-613d-9e4f-502f79f3247a-21b10d4f, #w-node-f8a43ab5-e506-4422-dd68-7e7524ae3b1b-770fefc9 {
    align-self: center;
    justify-self: center;
  }

  #w-node-d641c5b5-d71d-0237-f86b-fdd9a68b82f4-770fefe7 {
    grid-column-end: 2;
  }

  #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfc88-770ff005, #w-node-_729a9f5f-2d35-33e1-191f-2dba969cfc88-770ff008 {
    align-self: center;
    justify-self: center;
  }
}


@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa V 4 Compatibility';
  src: url('../fonts/fa-v4compatibility.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}