@font-face {
  font-family: Untitledsans;
  src: url('../fonts/UntitledSans-BlackItalic.otf') format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Untitledsans;
  src: url('../fonts/UntitledSans-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Untitledsans;
  src: url('../fonts/UntitledSans-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Untitledsans;
  src: url('../fonts/UntitledSans-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Untitledsans;
  src: url('../fonts/UntitledSans-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Untitledsans;
  src: url('../fonts/UntitledSans-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Untitledsans;
  src: url('../fonts/UntitledSans-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Untitledsans;
  src: url('../fonts/UntitledSans-RegularItalic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Untitledsans;
  src: url('../fonts/UntitledSans-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  --orange: #d84405;
  --dark-color: black;
  --primary-brand-color: black;
  --light-color: white;
  --secondary-brand-color: #89b6ff;
  --mid-grey: #727272;
  --light-grey: #ddd;
}

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

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

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

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

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

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

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

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

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

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

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

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

body {
  background-color: var(--orange);
  color: var(--dark-color);
  font-family: Untitledsans, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 24px;
}

a {
  color: var(--primary-brand-color);
  text-decoration: underline;
}

.section-padding {
  padding-left: 60px;
  padding-right: 60px;
}

.container {
  flex: 1;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.style-guide-grid {
  grid-column-gap: 40px;
  grid-row-gap: 41px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
}

.style-guide-category {
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 20px;
  padding-bottom: 5px;
  font-weight: 700;
}

.style-guide-edit {
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 10px;
  margin-bottom: 10px;
}

.light-text {
  color: var(--light-color);
}

.style-guide-element {
  color: #fff;
  background-color: #3b83f7;
  margin-top: 3px;
  margin-bottom: 3px;
  padding: 3px 5px;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.style-guide-class {
  color: #fff;
  background-color: #3b83f7;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.style-guide-class.tag-class {
  background-color: #cc55b8;
}

.style-guide-edit-wrap {
  opacity: .4;
}

.style-guide-edit-wrap:hover {
  opacity: 1;
}

.small-p {
  font-size: 14px;
  line-height: 18px;
}

.large-p {
  letter-spacing: -.3px;
  padding-right: 20px;
  font-size: 26px;
  line-height: 130%;
}

.style-guide-color-wrap {
  background-color: var(--dark-color);
  justify-content: flex-start;
  align-items: center;
  height: 100px;
  margin-top: 30px;
  padding: 15px 30px;
  display: flex;
}

.style-guide-color-wrap.primary-color-background {
  background-color: var(--primary-brand-color);
}

.style-guide-color-wrap.secondary-color-background {
  background-color: var(--secondary-brand-color);
}

.style-guide-color-wrap.mid-grey-color-background {
  background-color: var(--mid-grey);
}

.style-guide-color-wrap.light-color-background, .style-guide-color-wrap.white-background {
  background-color: var(--light-color);
}

.style-guide-color-wrap.light-grey-color-background {
  background-color: var(--light-grey);
}

.button {
  background-color: var(--primary-brand-color);
  margin-top: 0;
}

.button:hover {
  text-decoration: underline;
}

.button.ghost-button {
  color: var(--primary-brand-color);
  background-color: #0000;
  border: 1px solid #000;
}

.button.ghost-button.invese-ghost {
  border-color: var(--light-color);
  color: var(--light-color);
}

.button.ghost-button.nav {
  text-transform: uppercase;
  border-top-width: 0;
  border-bottom-width: 0;
  border-right-width: 0;
  padding: 10px 30px;
  font-size: 18px;
  line-height: 22px;
}

.button.ghost-button.nav.hide {
  display: none;
}

.button.inverse-button {
  background-color: var(--light-color);
  color: var(--primary-brand-color);
}

.button.form-submit {
  margin-top: 15px;
}

.style-guide-grid-item-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: flex-start stretch;
  padding-top: 10px;
  display: grid;
}

.list {
  padding-left: 15px;
}

.list-item {
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-field.form-select {
  background-color: var(--light-color);
}

.form-lable {
  margin-top: 20px;
}

.form-checkbox {
  width: 20px;
}

.style-guide-layout-demo {
  background-color: #d3d3d3;
  border: 1px solid #d3d3d3;
}

.style-guide-layout-demo.section-padding {
  margin-top: 30px;
}

.style-guide-white-div {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.popup-background-wrap {
  z-index: 100;
  background-color: #000c;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup-card {
  background-color: var(--light-color);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  padding: 30px;
  display: flex;
  position: relative;
}

.style-guide-wrap {
  padding-top: 20px;
}

.close-popup-button {
  color: var(--dark-color);
  padding: 15px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  inset: -5px -5px auto auto;
}

.style-guide-popup-wrap {
  background-color: var(--dark-color);
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 22px;
  display: flex;
}

.navbar {
  background-color: var(--light-color);
  outline-offset: 0px;
  outline: 3px solid #000;
  height: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.brand {
  outline-color: var(--primary-brand-color);
  outline-offset: 0px;
  outline-width: 1px;
  outline-style: solid;
  padding: 10px;
}

.nav-dig-logo {
  width: 40px;
  padding: 0;
}

.div-hero {
  background-color: var(--light-color);
  outline-color: var(--primary-brand-color);
  outline-offset: 0px;
  outline-width: 3px;
  outline-style: solid;
  justify-content: center;
  align-items: center;
  height: 75vh;
  min-height: 500px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px 120px;
  display: flex;
}

.div-hero.columns {
  min-height: 600px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.div-icon {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.icon-image {
  padding: 15px;
}

.div-content {
  background-color: var(--light-color);
  outline-offset: 0px;
  outline: 3px solid #000;
  margin-bottom: 40px;
}

.div-content.horizontal {
  justify-content: space-around;
  align-items: stretch;
  display: flex;
}

.columns {
  margin-top: 40px;
  margin-bottom: 40px;
}

.column-left {
  padding-left: 0;
  padding-right: 20px;
}

.column-right {
  padding-left: 20px;
  padding-right: 0;
}

.hr {
  font-size: 1px;
}

.hr.contact {
  display: none;
}

.div-text-margin-shadow {
  margin-top: -1px;
  margin-bottom: 0;
  margin-left: -1px;
  padding: 30px;
  box-shadow: inset -1px -1px #000, inset 1px 1px #000;
}

.services-link.bold {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

.services-link.bold.underlined {
  text-decoration: underline;
}

.vr {
  border-right: 1px solid #000;
  margin-left: -40px;
  margin-right: -40px;
}

.page-heading {
  text-align: center;
  text-transform: uppercase;
  font-size: 120px;
  font-weight: 500;
  line-height: 113px;
}

.page-heading.underline-on-hover {
  font-size: 100px;
  line-height: 100px;
}

.page-heading.underline-on-hover:hover {
  text-decoration: underline;
}

.case-study-subheading {
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 25px;
}

.case-study-client-name {
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 25px;
}

.column-no-padding {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.div-text-margin {
  padding: 20px;
}

.div-text-margin.centered {
  text-align: center;
}

.div-image-select-flex {
  justify-content: flex-end;
  margin-top: -1px;
  margin-left: -1px;
  margin-right: -1px;
  display: none;
  box-shadow: inset -1px -1px #000, inset 1px 1px #000;
}

.uppercase {
  text-transform: uppercase;
}

.body-background-patterm {
  background-image: url('../images/Base-Pattern.svg');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: cover;
}

.about-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: auto;
}

.about-image.daniel {
  object-position: 50% 35%;
}

.about-us-heading {
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 500;
  line-height: 100%;
}

.about-us-heading.left-aligned {
  text-align: left;
  text-transform: uppercase;
}

.about-us-heading-div {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 75vh;
  min-height: 600px;
  display: flex;
  box-shadow: 1px 1px #000;
}

.about-us-heading-div.clientslower, .about-us-heading-div.clientsupper {
  min-height: 600px;
}

.about-us-heading-div.clientsupper.blog {
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
  padding-right: 40px;
}

.about-us-heading-div.blog {
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  min-height: 100%;
}

.about-us-hero-columns {
  flex: 1;
  justify-content: center;
  align-items: center;
}

.about-us-hero-columns.blog {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.about-us-column {
  padding-left: 0;
  padding-right: 0;
}

.about-us-column.blog {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template: "Area Area-4 Area-2 Area-5"
                 "Area Area-4 Area-2 Area-5"
                 "Area-3 Area-4 Area-2 Area-5"
                 "Area-6 Area-7 Area-7 Area-8"
                 "Area-6 Area-7 Area-7 Area-8"
                 "Area-6 Area-7 Area-7 Area-8"
                 "Area-9 Area-12 Area-13 Area-11"
                 "Area-10 Area-12 Area-13 Area-14"
                 / 1fr 1fr 1fr 1fr;
}

.read-more-link {
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.read-more-link.blog {
  text-align: left;
  margin-top: 20px;
  display: block;
}

.image-4 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.servicesparagraph {
  letter-spacing: -.3px;
  font-size: 26px;
  line-height: 130%;
}

.div-icon-box {
  background-color: var(--light-color);
  outline-offset: 0px;
  outline: 3px solid #000;
}

.services-title {
  letter-spacing: -.3px;
  text-transform: uppercase;
  padding-right: 20px;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

.services-title:hover {
  text-decoration: underline;
}

.case-study-links {
  text-align: left;
  letter-spacing: -.3px;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 400;
  line-height: 38px;
  text-decoration: none;
  display: block;
}

.case-study-links:hover {
  text-decoration: underline;
}

.case-study-link-div {
  width: 100%;
  padding-left: 40px;
}

.oldcasestudyformat {
  display: none;
}

.case-sudy-hero-image {
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
}

.case-study-sub-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 50%;
}

.case-study-quick-stack {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 0;
}

.custom-cell {
  border: .5px solid #000;
}

.custom-cell.padding {
  justify-content: space-between;
  padding: 30px;
}

.custom-cell.image {
  display: flex;
}

.custom-cell-copy {
  border: 1px solid #000;
}

.case-study-heading {
  border: .5px solid #000;
  padding: 30px;
}

.case-study-image-text {
  width: 50%;
  color: var(--light-color);
  text-align: right;
  text-transform: uppercase;
  padding-top: 30px;
  padding-right: 30px;
  font-weight: 500;
  position: absolute;
  inset: 0% 0% auto auto;
}

.case-study-hero-wrap {
  width: 100%;
  position: relative;
}

.image-wrap {
  height: 350px;
  overflow: hidden;
}

.spacer {
  height: 300px;
}

.services-title-div {
  justify-content: space-between;
  display: flex;
}

.expand-arrow {
  width: 20px;
}

.paragraph {
  letter-spacing: -.3px;
  min-width: 20px;
  min-height: 20px;
}

.paragraph.spaced {
  line-height: 32px;
}

.paragraph.blog-details {
  text-transform: uppercase;
}

.blog-details {
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-image {
  width: 100%;
}

.blog-image.top-margin {
  margin-top: 20px;
}

.blog-details-card {
  padding: 30px;
}

.blog-scrolling-paragraph {
  height: 80vh;
  padding: 30px;
  overflow: scroll;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 1.8em;
    line-height: 1.5em;
  }

  .large-p {
    font-size: 1.5em;
    line-height: 1.5em;
  }

  .button.ghost-button.nav {
    background-color: var(--light-color);
    border-top-width: 1px;
    border-left-width: 0;
  }

  .nav-menu {
    outline-offset: 0px;
    outline: 3px solid #000;
  }

  .div-hero {
    height: 65vh;
    padding-left: 100px;
    padding-right: 100px;
  }

  .div-content.horizontal {
    flex-direction: column;
  }

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

  .menu-button {
    border-left: 1px solid #000;
    padding: 8px;
  }

  .menu-button.w--open {
    background-color: var(--light-color);
  }

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

  .hr.contact {
    display: block;
  }

  .div-text-margin-shadow.hide-on-mobile {
    display: none;
  }

  .icon {
    color: var(--primary-brand-color);
  }

  .page-heading {
    font-size: 5em;
    line-height: 1em;
  }

  .page-heading.underline-on-hover {
    font-size: 70px;
    line-height: 80px;
  }

  .body-background-patterm {
    background-size: auto;
  }

  .about-us-heading {
    font-size: 3em;
    line-height: 1em;
  }

  .about-us-hero-columns.blog {
    display: block;
  }

  .grid-2 {
    grid-template-areas: "Area Area Area-2 Area-2"
                         "Area-3 Area-5 Area-6 Area-4"
                         "Area-7 Area-7 Area-8 Area-8"
                         "Area-7 Area-7 Area-8 Area-8"
                         "Area-7 Area-7 Area-8 Area-8"
                         ". . . ."
                         "Area-9 Area-12 Area-12 Area-11"
                         "Area-10 Area-13 Area-13 Area-14";
  }

  .servicesparagraph {
    font-size: 1.5em;
    line-height: 1.5em;
  }

  .services-title {
    font-size: 1.8em;
    line-height: 1.5em;
  }

  .case-study-links {
    font-size: 1.3em;
    line-height: 1.3em;
  }

  .case-study-sub-image {
    object-fit: cover;
  }

  .image-wrap {
    height: 500px;
  }
}

@media screen and (max-width: 767px) {
  .section-padding {
    padding-left: 40px;
    padding-right: 40px;
  }

  .style-guide-color-wrap {
    height: auto;
  }

  .div-hero.columns {
    height: 70vh;
  }

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

  .menu-button {
    padding: 8px;
  }

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

  .div-text-margin-shadow.hidden {
    display: none;
  }

  .page-heading {
    font-size: 4em;
  }

  .page-heading.underline-on-hover {
    margin-top: 5px;
    font-size: 50px;
    line-height: 60px;
  }

  .div-text-margin.centered {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-us-heading-div {
    height: 35vh;
    min-height: 300px;
  }

  .about-us-heading-div.clientslower {
    height: 40vh;
    min-height: 300px;
  }

  .about-us-heading-div.clientsupper {
    height: 30vh;
    min-height: 300px;
    padding-top: 1vh;
  }

  .grid-2 {
    grid-template-rows: auto auto auto auto auto auto auto auto auto;
    grid-template-areas: "Area Area Area Area"
                         "Area-3 Area-3 Area-3 Area-3"
                         "Area-2 Area-2 Area-2 Area-2"
                         "Area-7 Area-7 Area-7 Area-7"
                         "Area-7 Area-7 Area-7 Area-7"
                         "Area-7 Area-7 Area-7 Area-7"
                         "Area-8 Area-8 Area-8 Area-8"
                         "Area-9 Area-9 Area-9 Area-9"
                         "Area-10 Area-10 Area-11 Area-11";
  }

  .servicesparagraph {
    font-size: 1.4em;
  }

  .services-title {
    font-size: 1.6em;
  }

  .case-study-links {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.2em;
    line-height: 1.2em;
  }

  .custom-cell.padding {
    padding: 25px;
  }

  .case-study-image-text {
    justify-content: flex-end;
    width: 70%;
    padding-top: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 479px) {
  .section-padding {
    padding-left: 30px;
    padding-right: 30px;
  }

  .style-guide-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .large-p {
    padding-right: 10px;
    font-size: 1.2em;
    line-height: 1.3em;
  }

  .style-guide-grid-item-wrap {
    grid-template-columns: 1fr;
  }

  .navbar {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .div-hero {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .div-icon {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .div-content {
    margin-bottom: 30px;
  }

  .columns {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .menu-button {
    padding: 8px;
  }

  .div-text-margin-shadow {
    padding: 20px;
  }

  .page-heading {
    font-size: 2.5em;
  }

  .page-heading.underline-on-hover {
    font-size: 26px;
    line-height: 36px;
  }

  .about-us-heading {
    font-size: 2em;
  }

  .read-more-link {
    font-size: 16px;
  }

  .servicesparagraph {
    font-size: 1.2em;
    line-height: 1.3em;
  }

  .services-title {
    font-size: 1.2em;
    line-height: 1.2em;
  }

  .case-study-links {
    font-size: 1em;
    line-height: 1.4em;
  }

  .case-study-link-div {
    padding-left: 20px;
  }

  .custom-cell.padding {
    padding: 15px;
  }

  .case-study-heading {
    padding: 20px;
  }

  .case-study-image-text {
    width: 85%;
    font-size: 14px;
  }

  .paragraph {
    font-size: 16px;
  }

  .blog-details-card, .blog-scrolling-paragraph {
    padding: 20px;
  }
}

#w-node-af6ac8e3-b1ce-cda6-23dc-a32b43a6a065-22d94e38 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cef64361-1f9b-8732-7793-1d4785eeed97-22d94e38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4313243-b51c-03bb-11ad-c431ebe2a80b-22d94e38 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d0d2d682-3502-a29f-1a22-871f47028af2-22d94e38, #w-node-eb00ca3d-f0c1-8354-e9aa-1faf574614be-22d94e38, #w-node-_85cb43b8-5298-9d0a-b169-853350d81ae0-22d94e38, #w-node-_5ce572de-a6ee-b264-99b3-588be3f1debe-22d94e38, #w-node-e573c9ae-1e4b-15b0-7098-638502628a9c-22d94e38, #w-node-_0c02166c-4ee3-9762-cc8d-f567a47991b2-22d94e38, #w-node-_31bfd8e3-b79a-c6a8-c644-de3e1d6aef06-22d94e38, #w-node-_8101b2ee-d87b-6d50-ecc4-1cc6560df4db-22d94e38, #w-node-aa9291ec-5ca1-3ae2-496b-ff742d602a68-22d94e38, #w-node-_479385eb-f044-0d6d-9fb9-3510fe0092c5-22d94e38, #w-node-_36d6a540-3dac-ba1b-4887-4e460e7ddc86-22d94e38, #w-node-_58a77a61-8d2a-f298-bcf8-5b5d6bda4258-22d94e38, #w-node-_84eebd00-708d-d564-7474-81a48d7f1aa8-22d94e38, #w-node-c0ceb277-bbf2-2cf4-4072-7fa273a7e783-22d94e38, #w-node-_293d8aee-201d-8e8e-7d11-7b9b1bf3932f-22d94e38, #w-node-e02f6cf5-e81b-07a2-d153-c916403846e7-22d94e38, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec6-22d94e38, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec7-22d94e38, #w-node-_40d4d6df-e38b-f778-5115-ea8f93d0542e-22d94e38, #w-node-c9d7c3ab-d31b-4fe2-e290-666f73a76a6a-22d94e38, #w-node-_1cb2eaff-c085-9ab3-df4a-1725ee4f484b-22d94e38, #w-node-_1229091c-99d0-b728-5727-37785a9996e2-22d94e38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f637bbff-835b-0236-4124-4ac1eef82ac3-22d94e38 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_826fbc41-7f9a-f875-b76e-3e9c3ff2002b-22d94e38, #w-node-ed82fd76-b394-3b31-d285-0d24c40a28ca-22d94e38, #w-node-_11717b33-079b-321a-8523-e173de28bfe2-22d94e38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e383549d-c8b3-87cd-ee42-73f99aa01117-22d94e38 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_55db6e40-b97b-9254-09df-2929df1b67ad-22d94e38, #w-node-_8a96fce1-c74f-35f2-c6f4-3587e7d0e79a-22d94e38, #w-node-bfdc7d70-2863-8331-b4f9-ad395f381310-22d94e38, #w-node-_8219438d-b20e-01aa-f124-d537d0821573-22d94e38, #w-node-df52a5df-cf6e-cd43-ccd8-20633efad3fb-22d94e38, #w-node-cd8a551e-24bb-f985-80c2-ed654c7036ec-22d94e38, #w-node-c73ec5c5-9d1c-c71a-647d-93fd71def3a3-22d94e38, #w-node-b28db8fa-48cc-0fc7-f454-c90e65fa4e38-22d94e38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_18765f94-c4e6-c755-ac1d-a3de06ce4dbc-22d94e38 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_91cfe370-0245-0733-cc80-e0128461d2a5-22d94e38, #w-node-_983a314a-baad-360b-c27c-560bd790abd0-22d94e38, #w-node-dec986e8-2989-ac3d-9697-51959cdb817b-22d94e38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_539debc5-c3bf-e500-5373-a3259d80206f-22d94e38 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aecd07ed-cd8b-1716-e906-11a45aa52757-22d94e38, #w-node-_432c5549-5a58-4527-4926-71dbf8e6a1d1-22d94e38, #w-node-_165d79eb-b2a5-28c4-eb36-16dde57c961e-22d94e38, #w-node-c962fc9a-3fcf-08e3-bdf2-4ecd4a9701dd-22d94e38, #w-node-_448e0e5a-f5bb-b07f-46a7-e322d88554aa-22d94e38, #w-node-_448e0e5a-f5bb-b07f-46a7-e322d88554ab-22d94e38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bca97c44-ed2a-c4d2-234a-6c62ee4dc6b5-22d94e38 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_65cb131a-038a-ef25-ea34-fb9ed9c178b0-22d94e38, #w-node-_50c4eecd-635c-c0cb-6b83-c35774246b79-22d94e38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_329d01d8-fe48-e8cf-d58b-be295e6560dd-69bc2275 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_329d01d8-fe48-e8cf-d58b-be295e6560de-69bc2275 {
  grid-column: span 2 / span 2;
}

#w-node-_0ff77d1a-ba27-233b-2918-71a54f2ba725-69bc2275 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0ff77d1a-ba27-233b-2918-71a54f2ba726-69bc2275 {
  grid-column: span 2 / span 2;
}

#w-node-_164a351e-0762-b57e-cf33-0a18bca73f43-69bc2275 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_164a351e-0762-b57e-cf33-0a18bca73f44-69bc2275 {
  grid-column: span 2 / span 2;
}

#w-node-_033e1453-84c3-590f-99ef-52bda17c334e-69bc2275 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_033e1453-84c3-590f-99ef-52bda17c334f-69bc2275 {
  grid-column: span 2 / span 2;
}

#w-node-_63f64a53-f55f-64a7-5c4f-9409fa8bc415-69bc2275 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_63f64a53-f55f-64a7-5c4f-9409fa8bc416-69bc2275 {
  grid-column: span 2 / span 2;
}

#w-node-_195ee50a-411e-b07b-d01d-beff96bbd5d7-69bc2275 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_195ee50a-411e-b07b-d01d-beff96bbd5d8-69bc2275 {
  grid-column: span 2 / span 2;
}

#w-node-c224e2d5-d8fb-37d1-7172-4c6453938d98-69bc2275 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-c224e2d5-d8fb-37d1-7172-4c6453938d99-69bc2275 {
  grid-column: span 2 / span 2;
}

#w-node-_1d03f48a-645f-d317-4cb0-c9e74d1f3d61-69bc2275 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_1d03f48a-645f-d317-4cb0-c9e74d1f3d62-69bc2275 {
  grid-column: span 2 / span 2;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335def-69bc2275 {
  grid-area: Area;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335df3-69bc2275 {
  grid-area: Area-4;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335df4-69bc2275 {
  grid-area: Area-2;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335df7-69bc2275 {
  grid-area: Area-5;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335df8-69bc2275 {
  grid-area: Area-3;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335dfc-69bc2275 {
  grid-area: Area-6;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335dfd-69bc2275 {
  grid-area: Area-7;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335dfe-69bc2275 {
  grid-area: Area-8;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335e04-69bc2275 {
  grid-area: Area-9;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335e07-69bc2275 {
  grid-area: Area-12;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335e08-69bc2275 {
  grid-area: Area-13;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335e09-69bc2275 {
  grid-area: Area-11;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335e0e-69bc2275 {
  grid-area: Area-10;
}

#w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335e11-69bc2275 {
  grid-area: Area-14;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b8006d-69bc2275 {
  grid-area: Area;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b80071-69bc2275 {
  grid-area: Area-4;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b80072-69bc2275 {
  grid-area: Area-2;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b80075-69bc2275 {
  grid-area: Area-5;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b80076-69bc2275 {
  grid-area: Area-3;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b80093-69bc2275 {
  grid-area: Area-6;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b80094-69bc2275 {
  grid-area: Area-7;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b80095-69bc2275 {
  grid-area: Area-8;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b80097-69bc2275 {
  grid-area: Area-9;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b8009a-69bc2275 {
  grid-area: Area-12;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b8009b-69bc2275 {
  grid-area: Area-13;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b8009c-69bc2275 {
  grid-area: Area-11;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b800a1-69bc2275 {
  grid-area: Area-10;
}

#w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b800a4-69bc2275 {
  grid-area: Area-14;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d7785-69bc2275 {
  grid-area: Area;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d7789-69bc2275 {
  grid-area: Area-4;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d778a-69bc2275 {
  grid-area: Area-2;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d778d-69bc2275 {
  grid-area: Area-5;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d778e-69bc2275 {
  grid-area: Area-3;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d7792-69bc2275 {
  grid-area: Area-6;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d7793-69bc2275 {
  grid-area: Area-7;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d7794-69bc2275 {
  grid-area: Area-8;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d7796-69bc2275 {
  grid-area: Area-9;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d7799-69bc2275 {
  grid-area: Area-12;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d779a-69bc2275 {
  grid-area: Area-13;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d779b-69bc2275 {
  grid-area: Area-11;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d77a0-69bc2275 {
  grid-area: Area-10;
}

#w-node-d63c6ecf-2258-50bc-0841-3320a51d77a3-69bc2275 {
  grid-area: Area-14;
}

@media screen and (max-width: 991px) {
  #w-node-_329d01d8-fe48-e8cf-d58b-be295e6560dd-69bc2275 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_329d01d8-fe48-e8cf-d58b-be295e6560de-69bc2275 {
    grid-column: span 1 / span 1;
  }

  #w-node-_0ff77d1a-ba27-233b-2918-71a54f2ba725-69bc2275 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0ff77d1a-ba27-233b-2918-71a54f2ba726-69bc2275 {
    grid-column: span 1 / span 1;
  }

  #w-node-_164a351e-0762-b57e-cf33-0a18bca73f43-69bc2275 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_164a351e-0762-b57e-cf33-0a18bca73f44-69bc2275 {
    grid-column: span 1 / span 1;
  }

  #w-node-_033e1453-84c3-590f-99ef-52bda17c334e-69bc2275 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_033e1453-84c3-590f-99ef-52bda17c334f-69bc2275 {
    grid-column: span 1 / span 1;
  }

  #w-node-_63f64a53-f55f-64a7-5c4f-9409fa8bc415-69bc2275 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_63f64a53-f55f-64a7-5c4f-9409fa8bc416-69bc2275 {
    grid-column: span 1 / span 1;
  }

  #w-node-_195ee50a-411e-b07b-d01d-beff96bbd5d7-69bc2275 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_195ee50a-411e-b07b-d01d-beff96bbd5d8-69bc2275 {
    grid-column: span 1 / span 1;
  }

  #w-node-c224e2d5-d8fb-37d1-7172-4c6453938d98-69bc2275 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-c224e2d5-d8fb-37d1-7172-4c6453938d99-69bc2275 {
    grid-column: span 1 / span 1;
  }

  #w-node-_1d03f48a-645f-d317-4cb0-c9e74d1f3d61-69bc2275 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1d03f48a-645f-d317-4cb0-c9e74d1f3d62-69bc2275 {
    grid-column: span 1 / span 1;
  }

  #w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335dfd-69bc2275, #w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b80094-69bc2275, #w-node-d63c6ecf-2258-50bc-0841-3320a51d7793-69bc2275 {
    grid-area: span 3 / span 2 / span 3 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_2fc6dcbe-30c8-bcf4-11de-aee090335dfd-69bc2275, #w-node-_0d62e2d1-90e0-1c88-c068-d88aa5b80094-69bc2275, #w-node-d63c6ecf-2258-50bc-0841-3320a51d7793-69bc2275 {
    grid-area: span 3 / span 4 / span 3 / span 4;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_329d01d8-fe48-e8cf-d58b-be295e6560dd-69bc2275, #w-node-_0ff77d1a-ba27-233b-2918-71a54f2ba725-69bc2275, #w-node-_164a351e-0762-b57e-cf33-0a18bca73f43-69bc2275, #w-node-_033e1453-84c3-590f-99ef-52bda17c334e-69bc2275, #w-node-_63f64a53-f55f-64a7-5c4f-9409fa8bc415-69bc2275, #w-node-_195ee50a-411e-b07b-d01d-beff96bbd5d7-69bc2275, #w-node-c224e2d5-d8fb-37d1-7172-4c6453938d98-69bc2275, #w-node-_1d03f48a-645f-d317-4cb0-c9e74d1f3d61-69bc2275 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Untitledsans';
  src: url('../fonts/UntitledSans-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Untitledsans';
  src: url('../fonts/UntitledSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Untitledsans';
  src: url('../fonts/UntitledSans-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Untitledsans';
  src: url('../fonts/UntitledSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Untitledsans';
  src: url('../fonts/UntitledSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Untitledsans';
  src: url('../fonts/UntitledSans-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Untitledsans';
  src: url('../fonts/UntitledSans-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Untitledsans';
  src: url('../fonts/UntitledSans-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Untitledsans';
  src: url('../fonts/UntitledSans-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Untitledsans';
  src: url('../fonts/UntitledSans-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}