@font-face {
  font-family: Oswald;
  src: url('../fonts/Oswald-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Oswald;
  src: url('../fonts/Oswald-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Oswald;
  src: url('../fonts/Oswald-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Oswald;
  src: url('../fonts/Oswald-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Oswald;
  src: url('../fonts/Oswald-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Oswald;
  src: url('../fonts/Oswald-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rondal;
  src: url('../fonts/RondalRegular-K7ORW.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rondal;
  src: url('../fonts/RondalSemibold-vmZ5Z.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Rondal;
  src: url('../fonts/RondalBold-2O4lW.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-black: #040000;
  --white: white;
  --light-grey: #d3d2d3;
  --primary-red: #af2d2f;
}

.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-form-formrecaptcha {
  margin-bottom: 8px;
}

body {
  background-color: var(--primary-black);
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Rondal, sans-serif;
  font-size: 110px;
  font-weight: 400;
  line-height: 1.25;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rondal, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Rondal, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.25;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Rondal, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Rondal, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Rondal, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--white);
  font-family: Rondal, sans-serif;
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--light-grey);
  text-decoration: underline;
}

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

img {
  max-width: 100%;
  margin-right: 10px;
  display: inline-block;
}

blockquote {
  border-right: 5px solid var(--primary-black);
  border-left: 5px solid var(--primary-black);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  font-family: Italiana;
  font-size: 2em;
  line-height: 1.3;
}

figure {
  margin-bottom: 10px;
  padding-bottom: 0;
}

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

.grid-8-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-8-columns.about-main-grid {
  min-height: 300vh;
}

.grid-8-columns.width-100pct {
  width: 100%;
}

.button {
  border: 1px solid var(--white);
  color: #fff;
  text-align: center;
  background-color: #0000;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding: 15px 60px;
  transition: background-color .2s;
}

.button:hover {
  background-color: #8a2224;
}

.content {
  position: relative;
}

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

.content.social-links-content {
  text-align: left;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.content.footer-socket-links-content {
  justify-content: flex-end;
  display: flex;
}

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

.section {
  z-index: 1;
  padding: 3em;
  position: relative;
}

.section.hero-section {
  height: 600vh;
  padding-top: 100px;
}

.section.hero {
  min-height: 100vh;
  padding-top: 100px;
}

.section.hero.contact {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  min-height: 0;
  padding-top: 20vh;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  overflow: hidden;
}

.section.video-section {
  z-index: 0;
  flex-direction: row;
  align-items: stretch;
  min-height: 200vh;
  display: flex;
  position: relative;
  overflow: visible;
}

.section.video-section.hide {
  display: none;
}

.section.footer.dark {
  background-color: var(--primary-black);
}

.section.small-hero {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
  padding-top: 100px;
  display: flex;
}

.section.small-hero.sticky {
  z-index: auto;
  opacity: 1;
  position: sticky;
  inset: 0% 0% auto;
}

.section.work-list {
  z-index: auto;
  background-color: var(--primary-black);
  padding-top: 0;
  position: relative;
  overflow: visible;
}

.section.work-list.z-index-0 {
  z-index: 0;
}

.section.no-padding-top {
  padding-top: 0;
}

.section.hide {
  display: none;
}

.image-container {
  object-fit: cover;
  border: 0 #0000;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.sticky {
  position: sticky;
  top: 100px;
}

.sticky.z-index-2 {
  z-index: 2;
}

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

.list-link-footer {
  text-align: right;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.link {
  padding-bottom: 4px;
  text-decoration: none;
  overflow: hidden;
}

.link:hover {
  text-decoration: none;
}

.subscribe-form {
  align-items: stretch;
  display: flex;
}

.submit-button {
  background-color: var(--primary-red);
  text-align: center;
  letter-spacing: 1px;
  text-indent: 0;
  background-image: url('../images/arrow-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  background-attachment: scroll;
  width: 80px;
  height: 70px;
  margin-left: -1px;
  padding: 10px;
  font-size: 18px;
  line-height: 20px;
  text-decoration: none;
}

.submit-button:hover {
  background-color: #cf383b;
}

.subscribe-form-block {
  width: 100%;
  margin-top: 4em;
  margin-bottom: 0;
}

.navbar {
  z-index: 1;
  background-color: #0000;
  margin-left: 3rem;
  margin-right: 3rem;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  top: auto;
  bottom: 0;
}

.nav-wrapper {
  z-index: 99;
  background-color: #0000;
  background-image: linear-gradient(#fff, #fff0);
  width: 100%;
  margin-bottom: 0;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-wrapper.dark {
  background-color: #0000;
  background-image: linear-gradient(#040000cc, #04000000);
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.nav-link {
  color: var(--primary-black);
  margin-left: 40px;
  padding: 10px;
  font-size: 20px;
  text-decoration: none;
  transition: color .2s;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  color: #000;
  text-decoration: none;
}

.nav-link.white {
  color: #fff;
}

.nav-menu {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-left: 20px;
  display: flex;
}

.link-underline {
  background-color: var(--primary-black);
  width: 100%;
  height: 1px;
  margin-top: 2px;
  padding-top: 0;
}

.link-underline.nav-underline-right {
  width: 50px;
  height: 2px;
  margin-top: 2px;
  position: absolute;
  inset: 0% auto 0% 8px;
}

.link-underline.nav-underline-right.white {
  background-color: #fff;
}

.link-underline.nav-underline-left {
  width: 100px;
  height: 2px;
  margin-top: 2px;
  position: absolute;
  inset: 0% 8px 0% auto;
}

.link-underline.nav-underline-left.white, .link-underline.light {
  background-color: #fff;
}

.nav-item-text {
  opacity: 1;
  text-decoration: none;
}

.footer-link {
  color: #000;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--primary-red);
}

.brand-image {
  width: auto;
  height: 35px;
  padding-left: 0;
}

.brand {
  padding-left: 0;
}

.licensing {
  border: 0 #0000;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding: 20px;
  display: flex;
}

.success-message {
  border: 1px solid var(--light-grey);
  color: #000;
  background-color: #fff;
  margin-top: 14px;
  margin-bottom: 14px;
}

.error-message {
  color: var(--primary-red);
  background-color: #f1f1f161;
  padding: 16px;
  font-size: 18px;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 400px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container.padding {
  margin-top: 4em;
}

.collection-list {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.product-title {
  z-index: 1;
  color: #fff;
  text-align: center;
  font-size: 88px;
  display: block;
}

.product-title.on-white-page {
  opacity: 1;
}

.project-item-content {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: fixed;
  top: 75vh;
  left: 0;
  right: 0;
}

.project-item-content:hover {
  text-decoration: none;
}

.project-item-content._1, .project-item-content._2, .project-item-content._3, .project-item-content._4, .project-item-content._5 {
  transform: none;
}

.project-item-content.relative {
  z-index: 3;
  width: auto;
  position: relative;
  top: 0;
}

.project-item-content.relative:hover {
  text-decoration: none;
}

.project-collection-list-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.project-collection-list-wrapper._2 {
  top: 4%;
  left: -4%;
}

.project-collection-list-wrapper._4 {
  top: -5%;
  left: 1%;
}

.project-collection-list-wrapper._5 {
  top: -2%;
  left: -2%;
}

.hero-text {
  z-index: 2;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rondal, sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  position: relative;
}

.hero-text.white-text {
  font-size: 200px;
}

.project-background {
  z-index: -1;
  opacity: 0;
  position: fixed;
  inset: 0 0% 0% -10vw;
}

.project-background.image {
  opacity: .2;
  filter: blur(100px);
  display: none;
  position: absolute;
  inset: 0%;
}

.project-background.color {
  z-index: 1;
  opacity: 0;
  width: 120vw;
  height: 500vh;
  inset: 0% 0% 0% -10vw;
}

.project-background.color.full-height {
  width: 100%;
  height: 140%;
  position: fixed;
  top: -30%;
  left: 0;
}

.project-item-image {
  filter: brightness(80%);
  object-fit: cover;
  width: 70vw;
  max-width: none;
  height: 85vh;
}

.project-item-image.width-100 {
  width: 100%;
  height: auto;
}

.projects-collection {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 85vh 0% 0%;
}

.project-item-title-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-content {
  z-index: 3;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 70vh;
  display: flex;
  position: relative;
}

.hero-content.small {
  justify-content: center;
  height: 60vh;
}

.grid-6-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-4-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.about-images-container {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 80vh;
  margin-top: 180px;
  display: flex;
  position: sticky;
  top: 10vh;
}

.about-images-container.hide {
  display: none;
}

.content-sticky {
  position: sticky;
  top: 100px;
}

.about-image {
  object-fit: cover;
  width: 100%;
  height: 50vh;
  position: absolute;
  inset: 0% auto auto 0%;
}

.about-image._2 {
  transform: rotate(-10deg);
}

.about-image._3 {
  transform: rotate(5deg);
}

.about-image._4 {
  transform: rotate(12deg);
}

.about-image._5 {
  transform: translate(0, 30px);
}

.about-image-container {
  width: 90%;
  height: 60vh;
  position: absolute;
}

.overflow-hidden {
  text-transform: uppercase;
  position: relative;
  overflow: visible;
}

.skew-on-load-anim-1, .skew-on-load-anim-2 {
  position: relative;
}

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

.text-center.padding {
  margin-top: 100px;
}

.hero-content-middle-80 {
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  margin-top: 180px;
  display: flex;
}

.background-video {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: flex;
  position: relative;
}

.video-side-content.right {
  text-align: right;
}

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

.scrollable-box-item {
  width: 100%;
  margin-top: 2em;
}

.scrollable-box-item:hover {
  text-decoration: none;
}

.scrollable-box-item.middle {
  margin-top: 6em;
}

.scrollable-image-container {
  height: 50vh;
  position: relative;
  overflow: hidden;
}

.scrollable-image {
  background-image: url('../images/personal-4.jpg');
  background-position: 50%;
  background-size: cover;
  height: 70vh;
  position: absolute;
  inset: 0%;
}

.scrollable-image._2 {
  background-image: url('../images/phone-on-grass.jpeg');
}

.scrollable-image._3 {
  background-image: url('../images/friendly.jpg');
}

.white-text {
  color: #fff;
}

.about-images-overlay {
  background-color: var(--primary-black);
  opacity: 0;
  height: 100%;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.video-content-sticky {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 80vh;
  display: flex;
  position: sticky;
  top: 10vh;
  overflow: visible;
}

.content-padding {
  padding-bottom: 2em;
}

.style-heading-title {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.nav-link-circle {
  border: 2px solid var(--primary-black);
  background-color: #0000;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  position: absolute;
  inset: auto auto 0 50%;
}

.nav-link-circle.white {
  border-color: #fff;
}

.dark {
  background-color: var(--primary-black);
  color: #fff;
}

.contact-form {
  margin-bottom: 0;
  padding: 0;
}

.contact-form-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.form-input {
  border-style: none solid solid;
  border-width: 0 0 1px;
  border-color: var(--primary-black) black var(--white) var(--primary-black);
  color: #fff;
  text-transform: none;
  background-color: #0000;
  height: auto;
  margin-bottom: 0;
  padding: 20px 5px;
  font-size: 20px;
  font-weight: 400;
}

.form-input:focus {
  border-bottom-color: var(--primary-black);
  background-color: #04000008;
}

.form-input::placeholder {
  color: var(--light-grey);
  background-color: #0000;
}

.navbar-background {
  z-index: 0;
  background-color: var(--primary-black);
  opacity: 0;
  display: none;
  position: absolute;
  inset: 0%;
}

.navbar-background.white {
  background-color: #fff;
}

.text-xl {
  font-size: 32px;
}

.text-xl.capitalized {
  text-transform: uppercase;
}

.skew-on-home-load-1, .skew-on-home-load-2, .skew-on-home-load-3 {
  position: relative;
}

.hero-text-container {
  text-align: center;
  margin-bottom: 3em;
}

.font-oswald {
  font-family: Oswald, sans-serif;
  font-weight: 300;
}

.heading-container {
  margin-bottom: 3em;
}

.footer-link-container {
  margin-left: 40px;
  display: inline-block;
}

.footer-socket {
  border-top: 1px solid var(--primary-black);
  margin-top: 3em;
  padding-top: 3em;
}

.footer-socket.white-border {
  border-top-color: #fff;
}

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

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

.bold-text.white-text {
  color: #fff;
  font-family: Oswald, sans-serif;
}

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

.no-margin-top {
  margin-top: 0;
}

.project-collection-item {
  background-color: #000;
  width: 100%;
  padding-bottom: 6em;
}

.project-collection-item:nth-child(odd) {
  flex-direction: row;
  justify-content: flex-end;
  display: flex;
}

.project-collection-item:nth-child(2n) {
  justify-content: flex-start;
  display: flex;
}

.project-collection-item:first-child, .project-collection-item:last-child {
  flex-direction: row;
  justify-content: center;
  display: flex;
}

.project-item-image-with-text {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 60vw;
  height: auto;
  display: flex;
}

.text-medium {
  text-transform: uppercase;
  font-size: 20px;
}

.project-item-summary {
  display: block;
}

.project-item-background-stretch {
  background-color: #000;
  position: absolute;
  inset: 0%;
}

.available-freelance-container {
  z-index: 3;
  background-image: url('../images/arrow-black-down.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 270px;
  position: absolute;
  inset: -170px auto auto 0%;
}

.available-for-freelance-icon {
  width: 100%;
}

.paragraph-with-border {
  margin-bottom: 10px;
}

.about-video-lightbox {
  background-color: #0000004d;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 0;
  padding: 30px 20px 30px 30px;
  display: flex;
}

.video-play-icon {
  width: auto;
  height: 100%;
}

.accordion {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.accordion.last {
  border-bottom: 1px solid #e3e3e3;
}

.accordion-header {
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.accordion-header:hover {
  background-color: #00000005;
}

.accordion-body {
  overflow: hidden;
}

.accordion-number {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  min-width: 30%;
  min-height: 200px;
  padding-bottom: 20px;
  padding-left: 20px;
  display: flex;
}

.accordion-icon-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20%;
  min-width: 20%;
  min-height: 200px;
  display: flex;
}

.accordion-title-text {
  text-transform: uppercase;
  margin-top: 0;
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.accordion-title {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 200px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.accordion-icon {
  width: 60px;
  height: 60px;
}

.accordion-body-content {
  text-align: center;
  padding-top: 2em;
  padding-bottom: 2em;
}

.position-relative {
  position: relative;
}

.blog-collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-item:nth-child(odd) {
  margin-top: -20px;
}

.blog-item:nth-child(2n) {
  padding-top: 40px;
}

.blog-item:first-child {
  margin-top: 0;
  padding-top: 0;
}

.contact-images-container {
  flex: 0 auto;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  margin-top: -100px;
  display: none;
  position: relative;
}

.contact-image-content {
  width: 50vw;
  height: 50vh;
  position: absolute;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.contact-image-content._2 {
  height: 40vh;
  inset: -10% 0% auto auto;
}

.contact-image-content._3 {
  z-index: -1;
  height: 60vh;
  top: 40%;
  left: 23%;
}

.contact-image-content._4 {
  width: 700px;
  height: 45vh;
  inset: auto 10% 10% auto;
}

.contact-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: rotate(0);
}

.contact-image-overlay {
  background-color: var(--primary-black);
  opacity: 1;
  height: 100%;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
}

.licensing-image {
  width: 60px;
}

.content-with-padding {
  flex-direction: row;
  justify-content: flex-start;
  padding-bottom: 45px;
  display: flex;
}

.license-item-description {
  margin-bottom: 20px;
}

.product-details-image {
  width: 80%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.product-details-title {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.project-details-list-item {
  margin-bottom: 2em;
}

.project-details-list-item.last {
  margin-bottom: 0;
}

.project-details-list-item.hide {
  display: none;
}

.horizontal-line {
  background-color: #4a4a4a;
  width: 100%;
  height: 1px;
  margin-top: 2em;
  margin-bottom: 2em;
}

.dark-rich-text {
  background-color: var(--primary-black);
  color: #fff;
}

.dark-rich-text p, .dark-rich-text h1, .dark-rich-text h3 {
  color: #fff;
}

.dark-rich-text li {
  color: #e7e7e7;
}

.dark-rich-text a, .dark-rich-text h4 {
  color: #fff;
}

.dark-rich-text figcaption {
  color: #fff9;
}

.dark-rich-text h5 {
  color: #fff;
}

.dark-rich-text blockquote {
  color: #fff;
  border-left-color: #fff;
  border-right-color: #fff;
}

.dark-rich-text h6, .dark-rich-text h2 {
  color: #fff;
}

.background-dark {
  z-index: -1;
  background-color: var(--primary-black);
  position: absolute;
  inset: 0%;
}

.rich-text p, .rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6, .rich-text ol, .rich-text ul {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.project-details-grid-images {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 3em;
  padding-bottom: 3em;
  display: grid;
}

.project-details-grid-image {
  width: 100%;
}

.project-details-grid-image:nth-child(odd) {
  margin-top: -20px;
}

.project-details-grid-image:nth-child(2n) {
  padding-top: 40px;
}

.project-details-grid-image:first-child {
  margin-top: 0;
  padding-top: 0;
}

.post-details-image {
  width: 100%;
  margin-bottom: 2em;
}

.post-item-category {
  text-transform: uppercase;
  margin-top: 20px;
  font-weight: 700;
}

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

.contact-info-content {
  margin-bottom: 3em;
}

.preloader {
  z-index: 999;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.logo {
  width: 180px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-2 {
  width: 50%;
  padding-top: 40px;
}

.product-title-copy {
  z-index: 1;
  opacity: 0;
  color: #fff;
  text-align: center;
  font-size: 88px;
  display: block;
}

.video {
  margin-bottom: 40px;
}

.content-width-80 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.html-embed {
  display: none;
}

.html-embed-2 {
  margin-bottom: 40px;
}

.subheader {
  font-family: Oswald, sans-serif;
  font-weight: 300;
}

.overflow-hidden-2 {
  position: relative;
  overflow: hidden;
}

.link-2 {
  padding-bottom: 4px;
  text-decoration: none;
  overflow: hidden;
}

.link-2:hover {
  text-decoration: none;
}

.link-underline-2 {
  background-color: #040000;
  width: 100%;
  height: 1px;
  margin-top: 2px;
  padding-top: 0;
}

.heading {
  margin-top: 0;
}

.client-item {
  text-transform: capitalize;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 26px;
  display: inline;
}

.div-block {
  display: flex;
}

.preloader-container {
  z-index: 998;
  background-color: var(--primary-black);
  display: none;
  position: absolute;
  inset: 0%;
}

.contact-images-container-copy {
  flex: 0 auto;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  margin-top: -100px;
  display: block;
  position: relative;
}

.collection-item-2 {
  display: inline;
}

.h3-link {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
}

.div-block-2 {
  background-color: var(--white);
  width: 480px;
  height: 140px;
  color: var(--primary-black);
  border-radius: 10px;
  align-items: center;
  display: block;
}

.image-3 {
  width: 150px;
  height: 150px;
  padding: 10px;
  display: inline-block;
}

.column {
  margin-top: 15px;
  padding-left: 0;
  padding-right: 0;
  position: static;
  inset: 0%;
}

.heading-2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 13px;
  font-weight: 400;
}

.black {
  width: 200px;
  color: var(--primary-black);
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 14px;
  display: block;
}

.black.extend {
  letter-spacing: 2px;
}

.black.small {
  font-size: 10.5px;
}

.image-4 {
  border-radius: 7px;
  margin-right: 2px;
}

.section-2 {
  margin-top: 240px;
}

.div-block-3, .div-block-4 {
  display: inline-block;
}

.image-5 {
  width: 140px;
  height: 140px;
  margin-top: 5px;
  margin-left: 5px;
  position: absolute;
  inset: 0%;
}

.image-6 {
  width: 140px;
  padding: 5px;
  display: block;
}

.div-block-5 {
  margin-bottom: -15px;
  display: inline-block;
}

.div-block-6 {
  object-fit: fill;
}

.collection-list-2 {
  grid-column-gap: 16px;
  grid-row-gap: 35px;
  grid-template: "."
  / 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.award-item {
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
}

.award-item.bg {
  padding-top: 25px;
  padding-bottom: 25px;
}

.award-header {
  text-transform: uppercase;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 34px;
  font-weight: 700;
  display: block;
}

.award-title {
  text-transform: uppercase;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 26px;
  display: block;
}

.background-video-copy {
  z-index: 2;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: flex;
  position: relative;
}

.image-7 {
  object-fit: fill;
  position: absolute;
  inset: 27% 0% auto 8%;
}

.html-embed-3 {
  padding-top: 1em;
  padding-bottom: 1em;
}

.accordion-body-content-copy {
  text-align: center;
}

.recaptcha {
  position: absolute;
}

@media screen and (min-width: 1440px) {
  .logo {
    width: 220px;
  }

  .image-7 {
    left: 17%;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 24px;
  }

  h2 {
    font-size: 60px;
  }

  h5 {
    font-size: 28px;
  }

  p {
    font-size: 24px;
    line-height: 1.25;
  }

  .button {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 23px;
  }

  .nav-container {
    margin-left: 10px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .nav-link {
    font-size: 22px;
  }

  .container {
    max-width: 1500px;
  }

  .project-collection-list-wrapper._5 {
    height: 99vh;
  }

  .hero-text.white-text {
    font-size: 270px;
  }

  .project-background.color {
    display: none;
  }

  .project-item-image {
    object-fit: cover;
    overflow: hidden;
  }

  .contact-image-content {
    width: 40vw;
  }

  .product-title-copy {
    opacity: 1;
  }

  .contact-images-container-copy {
    margin-top: -60px;
  }

  .h3-link {
    font-size: 38px;
  }

  .image-7 {
    left: 19%;
  }
}

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

  h3 {
    font-size: 36px;
  }

  h5 {
    font-size: 20px;
  }

  blockquote {
    font-size: 1.5em;
  }

  .grid-8-columns.about-main-grid {
    width: 100%;
    min-height: 500vh;
  }

  .content.social-links-content {
    text-align: right;
  }

  .content.footer-socket-links-content {
    justify-content: flex-start;
  }

  .section {
    padding: 2em;
  }

  .section.hero.contact {
    padding-top: 15vh;
  }

  .navbar {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }

  .nav-wrapper {
    inset: 0% 0% auto;
  }

  .nav-container {
    z-index: 1;
    height: auto;
    padding: 1em;
    position: relative;
  }

  .nav-link {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
    display: block;
  }

  .nav-link.white.w--current {
    font-weight: 700;
  }

  .nav-menu {
    background-color: var(--primary-black);
    border-bottom: 2px solid #fff;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-right: 0;
    padding: 1em;
    display: block;
    position: absolute;
    inset: 80px 0% auto;
  }

  .nav-menu.nav-menu-white {
    border-bottom: 2px solid var(--primary-black);
    background-color: #fff;
  }

  .link-underline {
    display: none;
  }

  .menu-button {
    width: 50px;
    height: 50px;
    color: var(--primary-black);
    background-color: #fff;
    border-radius: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: background-color .3s;
    display: flex;
    position: relative;
  }

  .menu-button:hover, .menu-button.w--open {
    background-color: #fafafa;
  }

  .menu-button.dark {
    background-color: #04000066;
  }

  .menu-button.dark:hover, .menu-button.dark.w--open {
    background-color: #04000099;
  }

  .brand-image {
    height: 30px;
  }

  .licensing {
    padding-left: 0;
  }

  .project-item-content._5 {
    transform: none;
  }

  .hero-text {
    font-size: 110px;
  }

  .hero-text.white-text {
    font-size: 120px;
  }

  .hero-content.small {
    height: auto;
  }

  .grid-6-columns, .grid-4-columns {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .about-images-container {
    align-items: center;
  }

  .about-image-container {
    width: 60%;
  }

  .hero-content-middle-80 {
    min-height: auto;
  }

  .nav-link-circle {
    display: none;
  }

  .navbar-background {
    display: block;
  }

  .menu-button-icon {
    border-top: 2px solid var(--primary-black);
    border-bottom: 2px solid var(--primary-black);
    width: 26px;
    height: 12px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
    position: absolute;
    inset: 19px auto auto 12px;
  }

  .menu-button-icon.light {
    border-top-color: #fff;
    border-bottom-color: #fff;
  }

  .text-xl {
    font-size: 28px;
  }

  .hero-text-container {
    margin-bottom: 2em;
  }

  .footer-link-container {
    margin-left: 0;
    margin-right: 10px;
  }

  .project-item-image-with-text {
    width: 60vw;
  }

  .available-freelance-container {
    width: 200px;
    top: -130px;
  }

  .accordion {
    border-bottom-style: none;
  }

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

  .contact-images-container {
    margin-top: -10px;
  }

  .contact-image-content._2 {
    width: 40vw;
    top: -5%;
  }

  .contact-image-content._3 {
    top: 30%;
  }

  .contact-image-content._4 {
    width: 35vw;
    bottom: 0%;
    right: -5%;
  }

  .contact-image-content._1 {
    z-index: 1;
  }

  .project-details-grid-images {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr 1fr;
  }

  .content-width-100, .content-width-80 {
    width: 100%;
  }

  .link-underline-2 {
    display: none;
  }

  .contact-images-container-copy {
    margin-top: -10px;
  }

  .award-item.bg {
    margin-top: 0;
    padding-top: 0;
  }

  .image-7 {
    margin-right: 0;
    position: static;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 50px;
  }

  .grid-8-columns {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .wrapper {
    text-align: center;
  }

  .content.vertical-center {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .content.social-links-content {
    text-align: left;
    justify-content: flex-start;
  }

  .content.footer-socket-links-content {
    justify-content: flex-start;
  }

  .content.vertical-align-right {
    align-items: flex-start;
  }

  .section {
    padding-left: 1em;
    padding-right: 1em;
    overflow: visible;
  }

  .section.hero.contact {
    padding-top: 10vh;
  }

  .section.footer.dark {
    text-align: left;
  }

  .section.small-hero {
    min-height: 60vh;
  }

  .product-title {
    font-size: 70px;
  }

  .project-item-content {
    top: 70vh;
  }

  .hero-text {
    font-size: 70px;
  }

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

  .project-item-image {
    width: 70vw;
  }

  .hero-content {
    height: 60vh;
  }

  .grid-6-columns, .grid-4-columns {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .about-images-container {
    margin-top: 50px;
  }

  .content-sticky {
    position: static;
  }

  .about-image-container {
    width: 80%;
  }

  .background-video {
    justify-content: center;
  }

  .video-side-content.right {
    text-align: center;
  }

  .grid-9-columns {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .scrollable-box-item.middle {
    margin-top: 0;
  }

  .video-content-sticky {
    height: auto;
  }

  .text-xl {
    font-size: 22px;
  }

  .heading-container {
    margin-bottom: 2em;
  }

  .footer-link-container {
    margin-left: 0;
    margin-right: 10px;
  }

  .footer-socket {
    margin-top: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .project-item-image-with-text {
    width: 70vw;
  }

  .project-item-summary {
    display: none;
  }

  .available-freelance-container {
    width: 190px;
    top: -140px;
  }

  .about-video-lightbox {
    margin-bottom: 0;
  }

  .accordion-body {
    padding-left: 0%;
    padding-right: 0%;
  }

  .accordion-number {
    justify-content: center;
    width: 20%;
    min-width: 20%;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .accordion-icon-container {
    min-height: auto;
    padding-bottom: 20px;
    position: absolute;
    inset: auto auto 0% 0%;
  }

  .accordion-title {
    justify-content: flex-start;
    min-height: 150px;
  }

  .accordion-icon {
    width: 50px;
    height: 50px;
  }

  .contact-image-content._3 {
    width: 50vw;
    left: 13%;
  }

  .contact-image-content._1 {
    width: 50vw;
  }

  .project-details-list-item {
    margin-bottom: 1em;
  }

  .project-details-grid-images {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .product-title-copy {
    font-size: 70px;
  }

  .background-video-copy {
    justify-content: center;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 21px;
  }

  p {
    font-size: 16px;
  }

  blockquote {
    border-left-width: 3px;
    border-right-width: 3px;
    margin-left: -.5rem;
    margin-right: -.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 1.3em;
  }

  .content.social-links-content {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .content.footer-socket-links-content {
    flex-direction: column;
  }

  .section.hero-section {
    height: 480vh;
  }

  .section.small-hero {
    min-height: auto;
  }

  .section.small-hero.sticky {
    min-height: 60vh;
  }

  .sticky {
    padding-top: 40px;
  }

  .subscribe-form-block {
    width: 100%;
  }

  .nav-menu {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    left: 0;
  }

  .utility-page-content {
    width: 90%;
  }

  .product-title {
    font-size: 45px;
  }

  .project-collection-list-wrapper {
    height: 80vh;
  }

  .hero-text {
    font-size: 40px;
  }

  .hero-text.white-text {
    font-size: 80px;
  }

  .project-item-image {
    height: 60vh;
  }

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

  .about-images-container {
    margin-top: 0;
  }

  .content-sticky {
    position: static;
  }

  .about-image._2 {
    transform: rotate(-5deg);
  }

  .about-image._3 {
    transform: rotate(4deg);
  }

  .about-image._4 {
    transform: rotate(6deg);
  }

  .about-image._5 {
    transform: translate(0);
  }

  .about-image-container {
    width: 90%;
  }

  .font-oswald.light-in-mobile-view {
    font-weight: 300;
  }

  .project-item-image-with-text {
    width: 80vw;
  }

  .available-freelance-container {
    width: 160px;
    top: -120px;
  }

  .accordion-number {
    padding-top: 20px;
  }

  .accordion-icon {
    width: 40px;
    height: 40px;
  }

  .blog-item:nth-child(odd) {
    margin-top: 0;
  }

  .blog-item:nth-child(2n) {
    padding-top: 0;
  }

  .contact-image-content._2 {
    width: 50vw;
    top: 0%;
  }

  .contact-image-content._3 {
    width: 70vw;
    height: 40vh;
    top: 40%;
  }

  .contact-image-content._4 {
    width: 70vw;
    height: 40vh;
  }

  .contact-image-content._1 {
    width: 60vw;
    height: 40vh;
    top: 5%;
  }

  .product-details-image {
    width: 100%;
  }

  .rich-text ol, .rich-text ul {
    padding-left: 20px;
  }

  .project-details-grid-image:nth-child(odd) {
    margin-top: 0;
  }

  .project-details-grid-image:nth-child(2n) {
    padding-top: 50px;
  }

  .post-details-image {
    margin-bottom: 1em;
  }

  .product-title-copy {
    font-size: 45px;
  }

  .image-3 {
    width: 170px;
    padding-left: 0;
  }

  .award-item.bg {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }
}

#w-node-_794b7f4d-9330-9647-69b4-dd095eb08b56-5eb08b4b {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_3f8881c6-9fa7-07ea-92b3-29864aa7640e-5eb08b4b, #w-node-_794b7f4d-9330-9647-69b4-dd095eb08b62-5eb08b4b {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_794b7f4d-9330-9647-69b4-dd095eb08b7c-5eb08b4b {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_794b7f4d-9330-9647-69b4-dd095eb08b7f-5eb08b4b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0474efdc-4794-77cb-d382-76785e90ae33-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737faf-5e90ae30 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-ccdf5512-2d12-253c-14b6-512d38737fb6-5e90ae30 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-ccdf5512-2d12-253c-14b6-512d38737fb9-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737fbe-5e90ae30 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_0474efdc-4794-77cb-d382-76785e90ae3f-5e90ae30 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_1503353d-cac7-217f-d841-1837ab17775d-5e90ae30, #w-node-_55e8af0b-0544-b6e6-2c7a-d0e29b6c83fa-5e90ae30 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-dd293969-f790-f28b-6352-5cc42595dd8a-f254a5cc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e0c2433c-f6db-da27-6bd3-875673298a07-f254a5cc {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_26c3a33f-aa0e-0404-85b7-d60021f102ba-f254a5cc, #w-node-e20dba0d-b8b4-352e-aaed-a37e07e62099-f254a5cc, #w-node-c72bab12-3dfc-a767-dfa1-c82a5b1c5ab9-f254a5cc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d679e879-0f57-9801-18de-96d8195a28a8-f254a5cc {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-d679e879-0f57-9801-18de-96d8195a28ba-f254a5cc, #w-node-d679e879-0f57-9801-18de-96d8195a28c5-f254a5cc, #w-node-d679e879-0f57-9801-18de-96d8195a28d0-f254a5cc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_39cf06ee-ab72-6567-3c6e-11322bf2a4bc-0454a5d1 {
  grid-area: 1 / 1 / 4 / 3;
}

#w-node-_39cf06ee-ab72-6567-3c6e-11322bf2a4bf-0454a5d1 {
  grid-area: 2 / 7 / 3 / 9;
}

#w-node-_39cf06ee-ab72-6567-3c6e-11322bf2a4c2-0454a5d1 {
  grid-area: 2 / 2 / 4 / 5;
}

#w-node-_39cf06ee-ab72-6567-3c6e-11322bf2a4c5-0454a5d1 {
  grid-area: 3 / 5 / 5 / 8;
}

#w-node-ced48177-1466-29f6-edf4-f63be317f6d5-0454a5d1 {
  grid-area: 1 / 2 / 2 / 8;
}

#w-node-ced48177-1466-29f6-edf4-f63be317f6fb-0454a5d1, #w-node-ced48177-1466-29f6-edf4-f63be317f6fe-0454a5d1, #w-node-ced48177-1466-29f6-edf4-f63be317f701-0454a5d1, #w-node-ced48177-1466-29f6-edf4-f63be317f704-0454a5d1, #w-node-ced48177-1466-29f6-edf4-f63be317f707-0454a5d1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b888e25b-72b4-9bed-93d2-8de827c31dd2-27c31dce {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-b888e25b-72b4-9bed-93d2-8de827c31dd5-27c31dce {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-cf54a5d7, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-cf54a5d7 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-dd293969-f790-f28b-6352-5cc42595dd8a-3d54a5c9 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-e0c2433c-f6db-da27-6bd3-875673298a07-3d54a5c9 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_26c3a33f-aa0e-0404-85b7-d60021f102ba-3d54a5c9, #w-node-e20dba0d-b8b4-352e-aaed-a37e07e62099-3d54a5c9, #w-node-c72bab12-3dfc-a767-dfa1-c82a5b1c5ab9-3d54a5c9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a87c1a24-d39c-89f3-dd98-25667a1210d8-3d54a5c9, #w-node-_55b691bf-aaa0-f895-42b6-592c02011b9f-3d54a5c9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e3c561e8-d1c2-5ae5-f74f-bb2d85f99809-9254a5d3 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-f9f1a3be-bafe-0582-c00a-54f110a46b6e-9254a5d3 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-8954a5ce, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-8954a5ce {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-f680f945-36d6-cee2-dcc6-4b46381f138b-5a54a5cd {
  grid-area: 1 / 3 / 2 / 7;
}

@media screen and (max-width: 991px) {
  #w-node-_794b7f4d-9330-9647-69b4-dd095eb08b56-5eb08b4b {
    grid-column: span 6 / span 6;
  }

  #w-node-_794b7f4d-9330-9647-69b4-dd095eb08b7f-5eb08b4b {
    grid-column: span 4 / span 4;
  }

  #w-node-_0474efdc-4794-77cb-d382-76785e90ae33-5e90ae30 {
    grid-column: span 5 / span 5;
  }

  #w-node-ccdf5512-2d12-253c-14b6-512d38737faf-5e90ae30 {
    grid-column: span 6 / span 6;
  }

  #w-node-_1503353d-cac7-217f-d841-1837ab17775d-5e90ae30, #w-node-_55e8af0b-0544-b6e6-2c7a-d0e29b6c83fa-5e90ae30 {
    grid-column: span 4 / span 4;
  }

  #w-node-dd293969-f790-f28b-6352-5cc42595dd8a-f254a5cc, #w-node-e0c2433c-f6db-da27-6bd3-875673298a07-f254a5cc, #w-node-ced48177-1466-29f6-edf4-f63be317f6d5-0454a5d1 {
    grid-column: span 8 / span 8;
  }

  #w-node-b888e25b-72b4-9bed-93d2-8de827c31dd5-27c31dce {
    grid-column: span 4 / span 4;
  }

  #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-cf54a5d7, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-cf54a5d7 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-dd293969-f790-f28b-6352-5cc42595dd8a-3d54a5c9, #w-node-e0c2433c-f6db-da27-6bd3-875673298a07-3d54a5c9 {
    grid-column: span 8 / span 8;
  }

  #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-8954a5ce, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-8954a5ce {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_794b7f4d-9330-9647-69b4-dd095eb08b56-5eb08b4b, #w-node-_794b7f4d-9330-9647-69b4-dd095eb08b7c-5eb08b4b, #w-node-_794b7f4d-9330-9647-69b4-dd095eb08b7f-5eb08b4b, #w-node-_0474efdc-4794-77cb-d382-76785e90ae33-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737faf-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737fb6-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737fb9-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737fbe-5e90ae30, #w-node-_0474efdc-4794-77cb-d382-76785e90ae3f-5e90ae30, #w-node-_1503353d-cac7-217f-d841-1837ab17775d-5e90ae30, #w-node-_55e8af0b-0544-b6e6-2c7a-d0e29b6c83fa-5e90ae30, #w-node-dd293969-f790-f28b-6352-5cc42595dd8a-f254a5cc, #w-node-e0c2433c-f6db-da27-6bd3-875673298a07-f254a5cc {
    grid-column: span 2 / span 2;
  }

  #w-node-d679e879-0f57-9801-18de-96d8195a28a8-f254a5cc {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ced48177-1466-29f6-edf4-f63be317f6d5-0454a5d1, #w-node-b888e25b-72b4-9bed-93d2-8de827c31dd2-27c31dce, #w-node-b888e25b-72b4-9bed-93d2-8de827c31dd5-27c31dce {
    grid-column: span 2 / span 2;
  }

  #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-cf54a5d7, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-cf54a5d7 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dd293969-f790-f28b-6352-5cc42595dd8a-3d54a5c9, #w-node-e0c2433c-f6db-da27-6bd3-875673298a07-3d54a5c9, #w-node-e3c561e8-d1c2-5ae5-f74f-bb2d85f99809-9254a5d3, #w-node-f9f1a3be-bafe-0582-c00a-54f110a46b6e-9254a5d3 {
    grid-column: span 2 / span 2;
  }

  #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981fa4-8954a5ce, #w-node-_053fa637-0d1a-4b50-e4bb-ee3545981faa-8954a5ce, #w-node-f680f945-36d6-cee2-dcc6-4b46381f138b-5a54a5cd {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ccdf5512-2d12-253c-14b6-512d38737fb9-5e90ae30, #w-node-ccdf5512-2d12-253c-14b6-512d38737fbe-5e90ae30 {
    grid-column: span 2 / span 2;
  }

  #w-node-ced48177-1466-29f6-edf4-f63be317f6d5-0454a5d1 {
    grid-column: span 3 / span 3;
  }

  #w-node-ced48177-1466-29f6-edf4-f63be317f6fb-0454a5d1, #w-node-ced48177-1466-29f6-edf4-f63be317f6fe-0454a5d1, #w-node-ced48177-1466-29f6-edf4-f63be317f701-0454a5d1, #w-node-_46c6ecee-2c39-39b7-77cd-31af3b377613-bc54a5d2, #w-node-a8e55045-4d46-b589-0058-0176c3635e1a-5a54a5cd {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rondal';
  src: url('../fonts/RondalRegular-K7ORW.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rondal';
  src: url('../fonts/RondalSemibold-vmZ5Z.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rondal';
  src: url('../fonts/RondalBold-2O4lW.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}