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

body {
  margin-bottom: 0px;
  font-family: 'Mark Book', sans-serif;
  color: #1a1229;
  font-size: 20px;
  font-weight: 400;
}

h1 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 44px;
  line-height: 62px;
  font-weight: 400;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 46px;
  font-weight: 400;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 38px;
  font-weight: 400;
}

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

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

p {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 40px;
}

a {
  display: inline-block;
  -webkit-transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  color: #1a1b1f;
  text-decoration: none;
}

a:hover {
  color: #32343a;
}

a:active {
  color: #43464d;
}

ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 40px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

img {
  display: block;
}

label {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

strong {
  font-family: 'Mark Bold', sans-serif;
  font-weight: 700;
}

blockquote {
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 15px 30px;
  border-left: 5px solid #e2e2e2;
  font-size: 20px;
  line-height: 34px;
}

figure {
  margin-top: 25px;
  padding-bottom: 20px;
}

figcaption {
  margin-top: 5px;
  opacity: 0.6;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
}

.button-white {
  margin-bottom: 40px;
  padding: 12px 24px;
  border: 3px solid #fff;
  border-radius: 6px;
  background-color: transparent;
  -webkit-transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  font-family: 'Mark Bold', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.button-white:hover {
  border-color: #abd69b;
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: #fff;
}

.button-white:active {
  opacity: 0.7;
  -webkit-transform: scale(0.98) translate(0px, 0px);
  -ms-transform: scale(0.98) translate(0px, 0px);
  transform: scale(0.98) translate(0px, 0px);
}

.button-white.no-margin {
  margin-bottom: 0px;
}

.navigation-links {
  padding: 9px 24px;
  font-family: 'Mark Bold', sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.25px;
}

.navigation-links:hover {
  opacity: 0.7;
  -webkit-transform: skew(3deg, 3deg);
  -ms-transform: skew(3deg, 3deg);
  transform: skew(3deg, 3deg);
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
  white-space: normal;
}

.navigation-links:active {
  opacity: 0.6;
  -webkit-transform: scale(0.96) skew(0deg, 0deg);
  -ms-transform: scale(0.96) skew(0deg, 0deg);
  transform: scale(0.96) skew(0deg, 0deg);
  color: #fff;
  text-transform: capitalize;
}

.navigation-links.w--current {
  padding-right: 30px;
  padding-left: 30px;
  background-color: transparent;
  opacity: 1;
  font-family: 'Mark Bold', sans-serif;
  color: #abd69b;
  font-weight: 700;
  text-transform: capitalize;
}

.navigation-links.w--current:hover {
  opacity: 1;
  -webkit-transform: skew(0deg, 0deg);
  -ms-transform: skew(0deg, 0deg);
  transform: skew(0deg, 0deg);
  color: #abd69b;
}

.navigation-links.hide {
  color: #fff;
}

.div-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #004369;
  color: #fff;
  font-size: 17px;
}

.logo-image {
  display: block;
  -webkit-transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  transition: all 300ms cubic-bezier(.23, 1, .32, 1);
}

.logo-image:hover {
  position: static;
  overflow: visible;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.logo-image:active {
  -webkit-transform: scale(0.9) rotate(-45deg);
  -ms-transform: scale(0.9) rotate(-45deg);
  transform: scale(0.9) rotate(-45deg);
}

.navigation-wrap {
  margin-right: -24px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.text-field {
  margin-bottom: 18px;
  padding: 24px 20px;
  border: 2px solid #e4e4e4;
  border-radius: 6px;
  -webkit-transition: border-color 400ms ease;
  transition: border-color 400ms ease;
  font-size: 16px;
  line-height: 26px;
}

.text-field:hover {
  border-color: #e3e6eb;
}

.text-field:active {
  border-color: #43464d;
}

.text-field:focus {
  border-color: #43464d;
}

.text-field::-webkit-input-placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.text-field:-ms-input-placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.text-field::-ms-input-placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.text-field::placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.status-message {
  padding: 9px 30px;
  background-color: #202020;
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
}

.status-message.cc-error-message {
  background-color: #db4b68;
}

.footer-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 96px 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #004369;
}

.protected-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.protected-heading {
  margin-bottom: 30px;
}

.section-hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #004369;
  background-image: none;
  color: #e8e8e8;
}

.section-grey {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #f3f3f3;
}

.section-grey.hover-image {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.heading-1 {
  display: block;
  width: 67%;
  margin-top: 0px;
  margin-bottom: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: transparent;
  font-family: 'Mark Bold', sans-serif;
  color: #fff;
  font-size: 72px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: none;
}

.heading-1._404 {
  width: 100%;
  margin-bottom: 48px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.heading-1._404:hover {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.heading-1.project {
  width: 67%;
}

.heading-2 {
  max-width: 370px;
  margin-top: -5px;
  margin-bottom: 0px;
  direction: ltr;
  font-family: 'Mark Bold', sans-serif;
  color: #fff;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
}

.heading-3 {
  display: block;
  margin-top: 16px;
  font-family: 'Mark Bold', sans-serif;
  color: #004369;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.heading-3.no-margin {
  margin-bottom: 0px;
  color: #004369;
  letter-spacing: -0.6px;
}

.section-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-right: 40px;
  margin-left: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-span-3 {
  color: #abd69b;
}

.container-hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-right: 40px;
  margin-left: 40px;
  padding-top: 300px;
  padding-bottom: 120px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.container-hero.homepage {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.columns-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-right: 40px;
  margin-left: 40px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.body-large {
  margin-bottom: 40px;
  font-family: 'Mark Book', sans-serif;
  color: #1a1229;
  font-size: 32px;
  line-height: 52px;
  font-weight: 300;
}

.body-large.end {
  margin-bottom: 0px;
}

.paragraph-6 {
  margin-bottom: 0px;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: -0.75px;
}

.text-link {
  display: inline-block;
  border-bottom: 3px solid #e0e0e0;
  -webkit-transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  font-family: 'Mark Book', sans-serif;
}

.text-link:hover {
  border-bottom-color: transparent;
  -webkit-transform: skew(0deg, 3deg);
  -ms-transform: skew(0deg, 3deg);
  transform: skew(0deg, 3deg);
  color: #004369;
}

.text-link:active {
  opacity: 0.7;
  -webkit-transform: skew(0deg, 0deg);
  -ms-transform: skew(0deg, 0deg);
  transform: skew(0deg, 0deg);
}

.text-link._8px-bottom {
  margin-bottom: 12px;
}

.text-link._8px-bottom:hover {
  border-bottom-color: hsla(0, 0%, 87.8%, 0);
}

.text-link.bold {
  font-family: 'Mark Bold', sans-serif;
  font-weight: 700;
}

.text-link.bold:hover {
  border-bottom-color: hsla(0, 0%, 87.8%, 0);
}

.text-link.bold._24px:hover {
  -webkit-transform: skew(3deg, 3deg);
  -ms-transform: skew(3deg, 3deg);
  transform: skew(3deg, 3deg);
}

.text-link.bold._20px {
  max-height: 32px;
}

.text-link.bold._32px {
  line-height: 40px;
}

.text-link.bold._40px {
  max-height: 54px;
}

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

.text-link._24px {
  max-height: 39px;
}

.text-link._20px {
  max-height: 32px;
}

.text-link.full-width {
  display: inline-block;
}

.text-span-4 {
  display: block;
  color: #75717d;
}

.text-span-7 {
  color: #75717d;
}

.section-white-margin {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-right: 40px;
  margin-left: 40px;
  padding-top: 120px;
  padding-bottom: 120px;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

.section-white-margin.no-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}

.section-white-margin.grid {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.section-white-margin.process {
  padding-top: 80px;
}

.link-9 {
  display: inline-block;
  margin-bottom: 0px;
}

.body-tiny-white {
  font-family: 'Mark Book', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.1px;
}

.body-regular {
  margin-bottom: 32px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  font-family: 'Mark Book', sans-serif;
  color: #1a1229;
}

.centred-paragraph {
  width: 66%;
  margin-right: auto;
  margin-left: auto;
}

.centred-paragraph._80px-right-padding {
  padding-right: 72px;
}

.centred-paragraph.horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 67%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.body-regular-end {
  display: block;
  margin-bottom: -5px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  font-family: 'Mark Book', sans-serif;
  color: #1a1229;
}

.div-33-project {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 700px;
  margin-top: 56px;
  padding-top: 56px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-top: 1px solid #e0e0e0;
}

.div-writing-link {
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
}

.div-writing-link:hover {
  opacity: 0.7;
}

.div-writing-link.end {
  border-bottom-style: none;
}

.heading-2-dark {
  margin-top: 0px;
  margin-bottom: 0px;
  direction: ltr;
  font-family: 'Mark Bold', sans-serif;
  color: #1a1229;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
}

.heading-2-dark.bottom-margin {
  margin-bottom: 32px;
}

.heading-2-dark.inline {
  display: inline-block;
}

.div-writing-links {
  width: 100%;
}

.body-tiny-dar {
  margin-bottom: 0px;
  padding-top: 12px;
  font-family: 'Mark Book', sans-serif;
  color: #75717d;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.25px;
}

.body-tiny-dar p {
  font-size: 20px;
  line-height: 30px;
}

.writing-link {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 48px;
  padding-bottom: 48px;
  -webkit-transition-duration: 350ms;
  transition-duration: 350ms;
  text-decoration: none;
}

.writing-link:hover {
  -webkit-transform: skew(1deg, 1deg);
  -ms-transform: skew(1deg, 1deg);
  transform: skew(1deg, 1deg);
}

.writing-link:active {
  -webkit-transform: scale(0.98) skew(0deg, 0deg);
  -ms-transform: scale(0.98) skew(0deg, 0deg);
  transform: scale(0.98) skew(0deg, 0deg);
}

.writing-link.end {
  padding-bottom: 0px;
}

.writing-link.start {
  padding-top: 0px;
}

.div-block-12 {
  width: 14%;
  margin-right: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.div-block-13 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.div-block-14 {
  width: 50%;
}

.div-block-16 {
  max-width: 750px;
}

.image {
  width: 100%;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.image.no-margin {
  display: block;
  width: 50%;
  margin-bottom: 0px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 4px;
}

.image.full-bleed {
  margin-bottom: 48px;
}

.div-white-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.div-white-content.no-divider {
  border-bottom-style: none;
}

.div-project-brief {
  margin-right: 40px;
}

.button {
  padding: 12px 24px;
  border-style: solid;
  border-width: 3px;
  border-color: #004369;
  border-radius: 6px;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: 'Mark Bold', sans-serif;
  color: #004369;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover {
  border-color: #abd69b;
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: #004369;
}

.button:active {
  opacity: 0.7;
  -webkit-transform: scale(0.98) translate(0px, 0px);
  -ms-transform: scale(0.98) translate(0px, 0px);
  transform: scale(0.98) translate(0px, 0px);
}

.button._32px-spacer {
  display: inline-block;
  margin-top: 32px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.button._32px-spacer:active {
  -webkit-transform: scale(0.99) translate(0px, 0px);
  -ms-transform: scale(0.99) translate(0px, 0px);
  transform: scale(0.99) translate(0px, 0px);
}

.button._32px-bottom {
  display: none;
  margin-top: 16px;
  margin-bottom: 32px;
}

.work-rich-text-block {
  font-size: 0px;
}

.work-rich-text-block p {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 36px;
}

.work-rich-text-block.max-width {
  max-width: 700px;
}

.work-rich-text-block a {
  max-height: 36px;
  border-bottom: 3px solid #e0e0e0;
  font-family: 'Mark Bold', sans-serif;
  font-weight: 700;
}

.work-rich-text-block a:hover {
  border-bottom-color: transparent;
  -webkit-transform: skew(3deg, 3deg);
  -ms-transform: skew(3deg, 3deg);
  transform: skew(3deg, 3deg);
  color: #004369;
}

.work-rich-text-block a:active {
  opacity: 0.7;
  -webkit-transform: skew(0deg, 3deg);
  -ms-transform: skew(0deg, 3deg);
  transform: skew(0deg, 3deg);
}

.heading-4 {
  margin-top: 15px;
  margin-bottom: 20px;
  font-family: 'Mark Bold', sans-serif;
  color: #004369;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.heading-4.no-margin {
  margin-bottom: 0px;
}

.heading-4.book {
  margin-top: 0px;
  margin-bottom: 16px;
  font-family: 'Mark Book', sans-serif;
  white-space: pre;
}

.heading-4.book.end {
  margin-bottom: 0px;
}

.collection-list-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.collection-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.collection-item._2-column {
  width: 50%;
  grid-auto-columns: 1fr;
  -ms-grid-columns: minmax(200%, 1fr) 1fr;
  grid-template-columns: minmax(200%, 1fr) 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.collection-list.empty {
  height: 0px;
  padding: 0px;
}

.image-block {
  margin-right: 40px;
  margin-left: 40px;
}

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

.image-block-2-col {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.image-block-1-col {
  margin-bottom: 24px;
}

.collection-list-wrapper-full-bleed {
  background-color: transparent;
}

.heading-6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  opacity: 1;
  -webkit-transition: all 750ms cubic-bezier(.23, 1, .32, 1);
  transition: all 750ms cubic-bezier(.23, 1, .32, 1);
  font-family: 'Mark Bold', sans-serif;
  color: #1a1229;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.3px;
}

.heading-6:hover {
  -webkit-filter: blur(0px);
  filter: blur(0px);
}

.heading-6.grey {
  margin-left: 12px;
  color: rgba(117, 113, 125, 0.4);
}

.body-small {
  font-size: 20px;
  line-height: 32px;
}

.body-small._40-px {
  margin-bottom: 40px;
}

.body-small.cph-banner {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 24px;
}

.link-one-line {
  display: block;
}

.body {
  background-color: #004369;
}

._404-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #004369;
  color: #e8e8e8;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

._404-section:hover {
  -webkit-transform: rotateX(3600deg) rotateY(0deg) rotateZ(0deg);
  transform: rotateX(3600deg) rotateY(0deg) rotateZ(0deg);
}

._404-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-right: 40px;
  margin-left: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

._404-div {
  width: 67%;
}

.light-grey-text {
  display: inline;
  color: #75717d;
}

.light-grey-text.small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
}

.section-white {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section-white.divider {
  border-bottom: 1px solid #e0e0e0;
  opacity: 1;
}

.div-second-column {
  margin-right: 40px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.div-second-column.no-margin {
  margin-right: 0px;
}

.form-block {
  width: 100%;
  max-width: 400px;
  margin-right: 40px;
  margin-left: 40px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.div-13 {
  position: -webkit-sticky;
  position: sticky;
  top: 105px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 13%;
  margin-top: 10px;
  margin-right: 40px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-top: 6px solid #004369;
}

.social-icon {
  width: 20px;
  height: 20px;
}

.collection-list-2 {
  display: -ms-grid;
  display: grid;
  margin-bottom: 0px;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 36px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.empty-state {
  display: none;
}

.collection-item-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.project-thumb-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-transform: skew(0deg, 0deg);
  -ms-transform: skew(0deg, 0deg);
  transform: skew(0deg, 0deg);
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
}

.project-thumb-link:hover {
  opacity: 0.75;
  -webkit-transform: skew(0.72deg, 0.72deg);
  -ms-transform: skew(0.72deg, 0.72deg);
  transform: skew(0.72deg, 0.72deg);
}

.project-thumb-link:active {
  -webkit-transform: scale(0.99);
  -ms-transform: scale(0.99);
  transform: scale(0.99);
}

.collection-list-wrapper-3 {
  width: 100%;
  max-width: 1200px;
  margin: 120px 40px;
}

.div-grid {
  display: -ms-grid;
  display: grid;
  width: 100%;
  margin-top: 10px;
  grid-auto-columns: 1fr;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.next-div {
  display: block;
  width: 66%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sticky-div-13 {
  position: -webkit-sticky;
  position: sticky;
  top: 105px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 13%;
  margin-top: 10px;
  margin-right: 40px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-top: 6px solid #004369;
}

.thumbnail-title-div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 8px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.grey {
  color: rgba(117, 113, 125, 0.4);
}

.top-div {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 99999;
  display: none;
  height: 50vh;
  background-color: #fc5838;
}

.bottom-div {
  position: fixed;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  height: 50vh;
  background-color: #fc5838;
}

.reading-grid {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.reading-image {
  margin-bottom: 24px;
  border-radius: 4px;
}

.bestees-navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #1a1229;
  color: #fff;
}

.bestees-section-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-right: 40px;
  margin-left: 40px;
}

.bestees-div-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.bestees-navigation-links {
  margin-right: 0px;
  margin-left: 0px;
  padding: 0px;
  font-family: 'Mark Bold', sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.25px;
}

.bestees-navigation-links:hover {
  opacity: 0.7;
  -webkit-transform: skew(3deg, 3deg);
  -ms-transform: skew(3deg, 3deg);
  transform: skew(3deg, 3deg);
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
  white-space: normal;
}

.bestees-navigation-links:active {
  opacity: 0.6;
  -webkit-transform: scale(0.96) skew(0deg, 0deg);
  -ms-transform: scale(0.96) skew(0deg, 0deg);
  transform: scale(0.96) skew(0deg, 0deg);
  color: #fff;
  text-transform: capitalize;
}

.bestees-navigation-links.w--current {
  padding-right: 30px;
  padding-left: 30px;
  background-color: transparent;
  opacity: 1;
  font-family: 'Mark Bold', sans-serif;
  color: #abd69b;
  font-weight: 700;
  text-transform: capitalize;
}

.bestees-navigation-links.w--current:hover {
  opacity: 1;
  -webkit-transform: skew(0deg, 0deg);
  -ms-transform: skew(0deg, 0deg);
  transform: skew(0deg, 0deg);
  color: #abd69b;
}

.bestees-navigation-wrap {
  display: none;
  margin-right: -24px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.bestees-section-hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: -74px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #1a1229;
}

.bestees-container-hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-right: 40px;
  margin-left: 40px;
  padding-top: 192px;
  padding-bottom: 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.bestees-heading-1 {
  display: block;
  width: 80%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-family: 'Mark Bold', sans-serif;
  color: #fff;
  font-size: 72px;
  line-height: 80px;
  font-weight: 700;
  letter-spacing: -1px;
}

.bestees-heading-1._404 {
  width: 100%;
  margin-bottom: 48px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.bestees-heading-1._404:hover {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.bestees-body-large {
  max-width: 500px;
  margin-bottom: 40px;
  font-family: 'Mark Book', sans-serif;
  color: #fff;
  font-size: 32px;
  line-height: 52px;
  font-weight: 300;
}

.bestees-body-large.end {
  margin-bottom: 0px;
}

.bestees-80-container {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.bestees-button-white {
  margin-bottom: 40px;
  padding: 12px 24px;
  border: 3px solid #fff;
  border-radius: 6px;
  background-color: transparent;
  -webkit-transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  font-family: 'Mark Bold', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.bestees-button-white:hover {
  border-color: #abd69b;
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: #fff;
}

.bestees-button-white:active {
  opacity: 0.7;
  -webkit-transform: scale(0.98) translate(0px, 0px);
  -ms-transform: scale(0.98) translate(0px, 0px);
  transform: scale(0.98) translate(0px, 0px);
}

.bestees-footer {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #1a1229;
  color: #fff;
}

.bestees-section-white {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bestees-section-white.divider {
  border-bottom: 1px solid #e0e0e0;
}

.bestees-section-white-margin {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-right: 40px;
  margin-left: 40px;
  padding-top: 120px;
  padding-bottom: 120px;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

.bestees-section-white-margin.no-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}

.bestees-section-white-margin.grid {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.div-block-17 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px;
  background-color: #fff;
}

.heading-7 {
  margin-bottom: 0px;
  font-family: 'Mark Bold', sans-serif;
}

.div-block-18 {
  width: 50%;
  margin: 40px;
}

.bestees-button {
  padding: 12px 24px;
  border-style: solid;
  border-width: 3px;
  border-color: #004369;
  border-radius: 6px;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: 'Mark Bold', sans-serif;
  color: #004369;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.bestees-button:hover {
  border-color: #abd69b;
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: #004369;
}

.bestees-button:active {
  opacity: 0.7;
  -webkit-transform: scale(0.98) translate(0px, 0px);
  -ms-transform: scale(0.98) translate(0px, 0px);
  transform: scale(0.98) translate(0px, 0px);
}

.bestees-button._32px-spacer {
  margin-top: 32px;
}

.bestees-button._32px-spacer:active {
  -webkit-transform: scale(0.99) translate(0px, 0px);
  -ms-transform: scale(0.99) translate(0px, 0px);
  transform: scale(0.99) translate(0px, 0px);
}

.heading-8 {
  margin-top: 0px;
  margin-bottom: 48px;
}

.heading-7-copy {
  margin-bottom: 0px;
  font-family: 'Mark Bold', sans-serif;
  font-size: 120px;
  line-height: 140px;
}

.text-span-8 {
  color: #75717d;
  font-size: 16px;
  line-height: 24px;
}

.heading-9 {
  padding-right: 24px;
  padding-left: 24px;
  border-radius: 6px;
  background-color: hsla(0, 0%, 100%, 0.2);
  font-size: 18px;
  line-height: 48px;
}

.navbar {
  position: static;
  top: 74px;
  background-color: #fc5838;
}

.cph-banner-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.div-cph-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.cph-banner-item {
  position: static;
  top: 74px;
  display: none;
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: #fc5838;
  background-image: linear-gradient(45deg, rgba(91, 30, 214, 0.55), #fc5838);
}

.paragraph-7 {
  margin-bottom: 0px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 18px;
}

.cph-banner-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 166px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.button-white-small {
  padding: 10px 20px;
  border: 3px solid #fff;
  border-radius: 6px;
  background-color: transparent;
  -webkit-transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  font-family: 'Mark Bold', sans-serif;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.button-white-small:hover {
  border-color: #abd69b;
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: #fff;
}

.button-white-small:active {
  opacity: 0.7;
  -webkit-transform: scale(0.98) translate(0px, 0px);
  -ms-transform: scale(0.98) translate(0px, 0px);
  transform: scale(0.98) translate(0px, 0px);
}

.button-white-small.no-margin {
  margin-bottom: 0px;
}

.text-span-9 {
  font-family: 'Mark Bold', sans-serif;
}

.div-project-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 36%;
  padding-right: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.div-project-details.smaller {
  width: 20%;
}

.heading-2-dark-2 {
  margin-top: 0px;
  margin-bottom: 0px;
  direction: ltr;
  font-family: 'Mark Bold', sans-serif;
  color: #1a1229;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
}

.heading-2-dark-2.bottom-margin {
  margin-bottom: 32px;
}

.heading-2-dark-2.inline {
  display: inline-block;
}

.heading-10 {
  margin-top: 15px;
  margin-bottom: 20px;
  font-family: 'Mark Bold', sans-serif;
  color: #004369;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.heading-10.no-margin {
  margin-bottom: 0px;
}

.button-2 {
  padding: 12px 24px;
  border-style: solid;
  border-width: 3px;
  border-color: #004369;
  border-radius: 6px;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-family: 'Mark Bold', sans-serif;
  color: #004369;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.button-2:hover {
  border-color: #abd69b;
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: #004369;
}

.button-2:active {
  opacity: 0.7;
  -webkit-transform: scale(0.98) translate(0px, 0px);
  -ms-transform: scale(0.98) translate(0px, 0px);
  transform: scale(0.98) translate(0px, 0px);
}

.button-2._32px-spacer {
  display: inline-block;
  margin-top: 32px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.button-2._32px-spacer:active {
  -webkit-transform: scale(0.99) translate(0px, 0px);
  -ms-transform: scale(0.99) translate(0px, 0px);
  transform: scale(0.99) translate(0px, 0px);
}

.text-link-2 {
  display: inline-block;
  border-bottom: 3px solid #e0e0e0;
  -webkit-transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  font-family: 'Mark Book', sans-serif;
}

.text-link-2:hover {
  border-bottom-color: transparent;
  -webkit-transform: skew(0deg, 3deg);
  -ms-transform: skew(0deg, 3deg);
  transform: skew(0deg, 3deg);
  color: #004369;
}

.text-link-2:active {
  opacity: 0.7;
  -webkit-transform: skew(0deg, 0deg);
  -ms-transform: skew(0deg, 0deg);
  transform: skew(0deg, 0deg);
}

.text-link-2.full-width {
  display: inline-block;
}

.body-large-2 {
  margin-bottom: 40px;
  font-family: 'Mark Book', sans-serif;
  color: #1a1229;
  font-size: 32px;
  line-height: 52px;
  font-weight: 300;
}

.body-large-2.end {
  margin-bottom: 0px;
}

.heading-11 {
  max-width: 370px;
  margin-top: -5px;
  margin-bottom: 0px;
  direction: ltr;
  font-family: 'Mark Bold', sans-serif;
  color: #fff;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
}

.button-white-2 {
  margin-bottom: 40px;
  padding: 12px 24px;
  border: 3px solid #fff;
  border-radius: 6px;
  background-color: transparent;
  -webkit-transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  transition: all 300ms cubic-bezier(.23, 1, .32, 1);
  font-family: 'Mark Bold', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.button-white-2:hover {
  border-color: #abd69b;
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: #fff;
}

.button-white-2:active {
  opacity: 0.7;
  -webkit-transform: scale(0.98) translate(0px, 0px);
  -ms-transform: scale(0.98) translate(0px, 0px);
  transform: scale(0.98) translate(0px, 0px);
}

.body-tiny-white-2 {
  font-family: 'Mark Book', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.1px;
}

.footer-wrap-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 96px 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #004369;
}

.div-block-20 {
  display: none;
}

.div-block-22 {
  display: none;
}

@media screen and (max-width: 991px) {
  .button-white {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .navigation-links:active {
    background-color: transparent;
  }

  .heading-1 {
    width: 100%;
    margin-right: 16%;
    margin-left: 16%;
    padding-left: 40px;
    font-size: 56px;
    line-height: 63px;
  }

  .heading-1._404 {
    margin-right: 0%;
    margin-left: 0%;
    padding-left: 0px;
  }

  .heading-1.project {
    width: 66%;
    margin-right: 0%;
    margin-left: 0%;
    padding-right: 40px;
    padding-left: 40px;
  }

  .heading-3.no-margin {
    overflow: hidden;
  }

  .section-nav {
    margin-right: 40px;
    margin-left: 40px;
  }

  .columns-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-white-margin.grid {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 120px;
    -ms-grid-columns: 16% 1fr;
    grid-template-columns: 16% 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .centred-paragraph {
    width: 66%;
    margin-right: 16%;
    margin-left: 16%;
    padding-right: 40px;
    padding-left: 40px;
  }

  .centred-paragraph._80px-right-padding {
    padding-right: 40px;
  }

  .centred-paragraph.horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-33-project {
    width: 100%;
    max-width: 1000px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .heading-2-dark {
    color: #1a1229;
  }

  .body-tiny-dar {
    padding-top: 16px;
    color: #75717d;
  }

  .div-block-12 {
    width: 17%;
  }

  .div-block-14 {
    width: 60%;
  }

  .div-block-15 {
    margin-left: 30px;
  }

  .image {
    display: block;
  }

  .div-project-brief {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .button {
    margin-bottom: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .work-rich-text-block.two-columns {
    max-width: 675px;
    -webkit-column-count: 1;
    column-count: 1;
  }

  .work-rich-text-block.max-width {
    max-width: 675px;
  }

  .heading-4 {
    margin-bottom: 48px;
  }

  .collection-item-2 {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 50% 50%;
    background-size: cover;
  }

  .heading-6 {
    font-size: 24px;
    line-height: 36px;
  }

  .div-13 {
    width: 16%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .div-13.grid {
    width: 100%;
  }

  .div-13.grid.white-background {
    background-color: #fff;
  }

  .div-grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .next-div {
    margin-right: 16%;
    margin-left: 16%;
    padding-left: 40px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .sticky-div-13 {
    width: 16%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .bestees-section-nav {
    margin-right: 40px;
    margin-left: 40px;
  }

  .bestees-navigation-links:active {
    background-color: transparent;
  }

  .bestees-heading-1 {
    width: 100%;
    margin-right: 16%;
    margin-left: 16%;
    padding-left: 40px;
    font-size: 56px;
    line-height: 63px;
  }

  .bestees-heading-1.project {
    width: 66%;
    margin-right: 0%;
    margin-left: 0%;
    padding-right: 40px;
    padding-left: 40px;
  }

  .bestees-button-white {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .bestees-section-white-margin.grid {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 120px;
    -ms-grid-columns: 16% 1fr;
    grid-template-columns: 16% 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .bestees-button {
    margin-bottom: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .div-cph-banner {
    width: 120%;
  }

  .button-white-small {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .div-project-details {
    width: 100%;
    max-width: 1000px;
    margin-top: 0px;
    padding-right: 0px;
  }

  .heading-2-dark-2 {
    color: #1a1229;
  }

  .heading-10 {
    margin-bottom: 48px;
  }

  .button-2 {
    margin-bottom: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .button-white-2 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .div-block-20 {
    display: block;
  }

  .div-block-21 {
    display: none;
  }

  .div-block-22 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .button-white {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .navigation-links {
    padding-right: 20px;
    padding-left: 20px;
  }

  .navigation-links:active {
    background-color: transparent;
  }

  .navigation-links.w--current {
    padding-right: 20px;
    padding-left: 20px;
  }

  .navigation-links.hide {
    padding-right: 20px;
    padding-left: 20px;
  }

  .navigation-links.hide.instagram {
    display: none;
  }

  .navigation-wrap {
    margin-right: -12px;
  }

  .footer-wrap {
    padding-right: 40px;
    padding-left: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .heading-1 {
    margin-right: 0%;
    margin-left: 0%;
    padding-right: 0px;
    padding-left: 0px;
  }

  .heading-1.project {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
  }

  .heading-2 {
    max-width: 100%;
    margin-top: 0px;
    margin-bottom: 40px;
    padding-left: 0px;
    text-align: left;
  }

  .heading-3 {
    margin-bottom: 0px;
  }

  .logo {
    padding-left: 0px;
  }

  .logo.w--current {
    padding-left: 0px;
  }

  .columns-3 {
    padding-top: 80px;
    padding-bottom: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-white-margin {
    padding-top: 80px;
    padding-bottom: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .section-white-margin.grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .body-tiny-white {
    text-align: left;
  }

  .centred-paragraph {
    width: 100%;
    margin-right: 0%;
    margin-left: 0%;
    padding-right: 0px;
    padding-left: 0px;
  }

  .centred-paragraph._80px-right-padding {
    padding-right: 0px;
  }

  .centred-paragraph.horizontal {
    width: 100%;
  }

  .div-33-project {
    width: 100%;
    margin-top: 40px;
    padding-top: 40px;
  }

  .div-block-12 {
    margin-bottom: 24px;
  }

  .div-block-13 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-block-14 {
    width: 100%;
  }

  .div-block-15 {
    margin-left: 0px;
  }

  .image {
    display: block;
  }

  .div-white-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-project-brief {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .work-rich-text-block.max-width {
    margin-bottom: 80px;
  }

  .work-rich-text-block.max-width.end {
    margin-bottom: 0px;
  }

  .heading-4 {
    margin-bottom: 48px;
  }

  .body-small._40-px {
    margin-bottom: 32px;
  }

  ._404-div {
    width: 83%;
  }

  .div-second-column {
    width: 100%;
    margin-bottom: 80px;
  }

  .div-second-column.no-margin.end {
    margin-bottom: 0px;
  }

  .div-13 {
    position: static;
    width: 100%;
    margin-bottom: 32px;
  }

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

  .collection-list-wrapper-3 {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .next-div {
    width: 100%;
    margin-right: 0%;
    margin-left: 0%;
    padding-left: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sticky-div-13 {
    position: static;
    width: 100%;
    margin-bottom: 32px;
  }

  .thumbnail-title-div {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .reading-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .bestees-navigation-links:active {
    background-color: transparent;
  }

  .bestees-navigation-links.w--current {
    padding-right: 20px;
    padding-left: 20px;
  }

  .bestees-navigation-links.hide {
    padding-right: 20px;
    padding-left: 20px;
  }

  .bestees-navigation-links.hide.instagram {
    display: none;
  }

  .bestees-navigation-wrap {
    margin-right: -12px;
  }

  .bestees-heading-1 {
    margin-right: 0%;
    margin-left: 0%;
    padding-right: 0px;
    padding-left: 0px;
  }

  .bestees-heading-1.project {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
  }

  .bestees-button-white {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .bestees-section-white-margin {
    padding-top: 80px;
    padding-bottom: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .bestees-section-white-margin.grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .bestees-button {
    width: 100%;
    text-align: center;
  }

  .cph-banner-right {
    min-width: 166px;
  }

  .button-white-small {
    text-align: center;
  }

  .div-project-details {
    width: 100%;
  }

  .heading-10 {
    margin-bottom: 48px;
  }

  .button-2 {
    width: 100%;
    text-align: center;
  }

  .heading-11 {
    max-width: 100%;
    margin-top: 0px;
    margin-bottom: 40px;
    padding-left: 0px;
    text-align: left;
  }

  .button-white-2 {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .body-tiny-white-2 {
    text-align: left;
  }

  .footer-wrap-2 {
    padding-right: 40px;
    padding-left: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .div-block-22 {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .button-white {
    padding-right: 24px;
    padding-left: 24px;
  }

  .navigation-links {
    padding-right: 20px;
    padding-left: 20px;
  }

  .navigation-links.w--current {
    display: block;
  }

  .navigation-links.hide {
    display: none;
  }

  .navigation {
    overflow: hidden;
  }

  .navigation-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: -20px;
  }

  .footer-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .heading-1 {
    width: 100%;
    font-size: 40px;
    line-height: 46px;
  }

  .container-hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .columns-3 {
    margin-right: 40px;
    margin-left: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .body-large {
    font-size: 24px;
    line-height: 40px;
  }

  .body-large.end {
    margin-bottom: 0px;
  }

  .paragraph-6 {
    font-family: 'Mark Bold', sans-serif;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
  }

  .section-white-margin {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .body-regular {
    font-size: 20px;
    line-height: 34px;
  }

  .centred-paragraph {
    width: 100%;
  }

  .body-regular-end {
    font-size: 20px;
    line-height: 32px;
  }

  .div-33-project {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .heading-2-dark {
    font-size: 32px;
    line-height: 42px;
  }

  .div-block-12 {
    width: 100%;
  }

  .image {
    display: block;
    margin-bottom: 16px;
  }

  .image.no-margin {
    margin-bottom: 16px;
    border-radius: 0px;
  }

  .image.full-bleed {
    margin-bottom: 16px;
    border-radius: 0px;
  }

  .button {
    padding-right: 24px;
    padding-left: 24px;
  }

  .heading-4.book {
    margin-bottom: 8px;
  }

  .image-block {
    margin-right: 0px;
    margin-left: 0px;
  }

  .image-block-1-col {
    overflow: hidden;
  }

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

  ._404-container {
    padding-bottom: 80px;
  }

  ._404-div {
    width: 100%;
  }

  .div-second-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-right: 0px;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .div-second-column.no-margin.end {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-second-column.vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-13 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-right: 0px;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .collection-list-wrapper-3 {
    margin: 0px 0px 80px;
  }

  .div-grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }

  .next-div {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .sticky-div-13 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-right: 0px;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .thumbnail-title-div {
    padding-right: 40px;
    padding-left: 40px;
  }

  .reading-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .bestees-navigation {
    overflow: hidden;
  }

  .bestees-navigation-links.w--current {
    display: block;
  }

  .bestees-navigation-links.hide {
    display: none;
  }

  .bestees-navigation-wrap {
    display: none;
    margin-right: -20px;
  }

  .bestees-container-hero {
    padding-bottom: 80px;
  }

  .bestees-heading-1 {
    width: 100%;
    font-size: 40px;
    line-height: 46px;
  }

  .bestees-body-large {
    font-size: 24px;
    line-height: 40px;
  }

  .bestees-body-large.end {
    margin-bottom: 0px;
  }

  .bestees-button-white {
    padding-right: 24px;
    padding-left: 24px;
  }

  .bestees-footer {
    overflow: hidden;
  }

  .bestees-section-white-margin {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .bestees-button {
    padding-right: 24px;
    padding-left: 24px;
  }

  .cph-banner-left {
    margin-right: 0px;
    margin-bottom: 16px;
  }

  .div-cph-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .button-white-small {
    width: 100%;
    margin-bottom: 20px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .div-project-details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .div-block-19 {
    margin-bottom: 0px;
  }

  .heading-2-dark-2 {
    font-size: 32px;
    line-height: 42px;
  }

  .button-2 {
    padding-right: 24px;
    padding-left: 24px;
  }

  .body-large-2 {
    font-size: 24px;
    line-height: 40px;
  }

  .body-large-2.end {
    margin-bottom: 0px;
  }

  .button-white-2 {
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer-wrap-2 {
    padding-top: 80px;
    padding-bottom: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-block-20 {
    display: none;
  }

  .div-block-22 {
    display: block;
  }
}

@font-face {
  font-family: 'Mark Book';
  src: url('../fonts/markbook-webfont.eot') format('embedded-opentype'), url('../fonts/markbook-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Mark Bold';
  src: url('../fonts/markbold-webfont.eot') format('embedded-opentype'), url('../fonts/markbold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Markbook webfont';
  src: url('../fonts/markbook-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'webfont';
  src: url('../fonts/markbold-webfont.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}