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

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

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

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

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

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

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

:root {
  --black: black;
  --primary: black;
  --primary-hover: #212121;
  --dark-hover: black;
  --white: #fff;
  --light: #fafafa;
  --danger-alert: #f4433633;
  --danger-hover: #c62828;
  --light-hover: #e0e0e0;
  --secondary: #6bd18e;
  --secondary-hover: #71bc7f;
  --success: #4caf50;
  --success-hover: #2e7d32;
  --danger: #f44336;
  --warning: #ffc107;
  --warning-hover: #ff8f00;
  --dark: #212121;
  --primary-alert: #2196f333;
  --secondary-alert: #6bd18e33;
  --success-alert: #4caf5033;
  --warning-alert: #ffc10733;
  --dark-alert: #21212133;
  --light-alert: #eceff133;
  --tertiary: #9f93db;
  --tertiary-hover: #897ebf;
  --001: #bce2ec;
  --002: #e3c1b6;
  --003: #e7d4c1;
}

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

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

body {
  color: var(--black);
  font-family: Rubik, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  z-index: 2;
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
}

h4 {
  z-index: 2;
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
}

h5 {
  z-index: 2;
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
}

h6 {
  z-index: 2;
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
}

p {
  margin-bottom: 1rem;
  position: relative;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: letter-spacing 1s, border-color .4s, color .4s, box-shadow .4s, background-color .4s, opacity .4s;
}

a:hover {
  color: var(--primary-hover);
}

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

ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
}

li {
  padding-top: 0;
  padding-bottom: 0;
}

img {
  z-index: 1;
  width: 100%;
  max-width: 100%;
  display: inline-block;
  position: relative;
}

strong {
  font-weight: 500;
}

.content {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.content.x-small {
  max-width: 512px;
}

.line-separator {
  background-color: var(--black);
  width: 2rem;
  height: 1px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.hover-line {
  background-color: var(--dark-hover);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.hover-line.right {
  inset: auto 0% 0% auto;
}

.button {
  z-index: 2;
  color: #fff;
  text-align: center;
  border-style: none;
  justify-content: center;
  align-items: center;
  padding: .375rem 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: box-shadow .2s, background-color .2s, color .2s;
  position: relative;
  overflow: hidden;
}

.link-block {
  z-index: 1;
  cursor: auto;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

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

.link-block.margin-right-1rem {
  cursor: pointer;
}

.display-2 {
  z-index: 2;
  letter-spacing: -.025em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Oranienbaum, sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
}

.hover-trigger {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: relative;
}

.hover-trigger.thumb {
  width: auto;
  height: auto;
  color: var(--primary);
  letter-spacing: -.02em;
  font-family: Oranienbaum, sans-serif;
  font-size: 6.5vw;
  font-weight: 400;
  line-height: 1.3;
}

.hover-trigger.thumb:hover {
  color: #0000001a;
}

.hover-trigger.many-thumbs {
  width: auto;
  height: auto;
  color: var(--primary);
  letter-spacing: -.02em;
  font-family: Oranienbaum, sans-serif;
  font-size: 6.5vw;
  font-weight: 400;
  line-height: 1.3;
  position: static;
}

.hover-trigger.many-thumbs:hover {
  letter-spacing: .05em;
}

.lead {
  z-index: 2;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.3;
  position: relative;
}

.section {
  z-index: 3;
  width: 100%;
  padding: 0 10rem 4rem;
  position: relative;
}

.section.sticky-grow {
  z-index: 2;
  min-height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.section.vh-75 {
  height: 35vh;
}

.section.small {
  justify-content: flex-end;
  align-self: auto;
  align-items: center;
  padding-right: 10rem;
  display: flex;
}

.section.small.invert {
  filter: invert();
}

.section.bg-light {
  display: none;
}

.overflow-hidden {
  padding-top: 4px;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.main {
  z-index: 1;
  background-color: var(--white);
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}

.display-1 {
  z-index: 2;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1vw;
  font-family: Oranienbaum, sans-serif;
  font-size: 8vw;
  font-weight: 400;
  line-height: .74;
  position: relative;
}

.uppercase {
  letter-spacing: 0;
  text-transform: uppercase;
}

.tooltip {
  z-index: 9;
  background-color: var(--black);
  color: #fff;
  border-radius: .125rem;
  justify-content: center;
  align-items: center;
  padding: 6px 8px;
  font-size: .75rem;
  line-height: 1;
  display: flex;
  position: fixed;
  inset: 16px auto auto 16px;
}

.tooltip.close-button-layer {
  background-color: var(--white);
  background-image: url('../images/close-24px.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  border-radius: 100px;
  width: 64px;
  height: 64px;
  padding: 0;
  top: -64px;
  left: -64px;
}

.display-3 {
  z-index: 2;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rubik, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
}

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

.small {
  z-index: 1;
  font-size: 75%;
  display: none;
  position: relative;
}

.small.uppercase {
  letter-spacing: .25em;
}

.underline {
  border-bottom: 1px solid var(--primary);
}

.underline.w--current {
  font-size: 1rem;
}

.align-center {
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.margin-bottom-0_5rem {
  margin-bottom: .5rem;
  position: relative;
}

.margin-bottom-1rem {
  margin-bottom: 1rem;
  position: relative;
}

.margin-bottom-3rem {
  z-index: 2;
  margin-bottom: 3rem;
  position: relative;
}

.margin-right-1rem {
  margin-right: 1rem;
  position: relative;
}

.margin-right-left-0_5rem {
  margin-left: .5rem;
  margin-right: .5rem;
  position: relative;
}

.padding-bottom-0 {
  padding-bottom: 0;
  position: relative;
}

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

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

.bg-primary-link:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

.bg-light {
  background-color: var(--light);
  color: var(--black);
}

.alert {
  background-color: var(--white);
  border: 1px solid #0000;
  border-radius: .25rem;
  margin-bottom: 1rem;
  padding: .75rem 1.25rem;
  line-height: 1.3;
  position: relative;
}

.alert.danger {
  border-color: var(--danger-alert);
  background-image: linear-gradient(to bottom, var(--danger-alert), var(--danger-alert));
  color: var(--danger-hover);
}

.utility-page-wrap {
  background-color: var(--light);
  background-image: url('../images/Isl-2018-Pixelus-3.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin-bottom: 0;
  padding: 48px 32px;
  display: flex;
}

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

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

.display-flex.horiz-align-center {
  align-items: center;
}

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

.display-flex.justify-space {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}

.link-block-invert {
  z-index: 1;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.side-fix-left {
  z-index: 8;
  perspective-origin: 0%;
  transform-origin: 50% 0;
  letter-spacing: .3px;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  width: 100vh;
  height: 10rem;
  padding-left: 4rem;
  padding-right: 4rem;
  font-size: .625rem;
  font-weight: 500;
  display: flex;
  position: fixed;
  top: 50%;
  transform: translate(-50%)rotate(-90deg);
}

.side-fix-right {
  z-index: 5;
  perspective-origin: 0%;
  transform-origin: 50% 100%;
  letter-spacing: .3px;
  text-transform: uppercase;
  justify-content: flex-end;
  align-items: center;
  width: 100vh;
  height: 10rem;
  padding-left: 4rem;
  padding-right: 4rem;
  font-size: .625rem;
  font-weight: 400;
  display: flex;
  position: fixed;
  inset: auto 0 50% auto;
  transform: translate(50%)rotate(-90deg);
}

.logo {
  z-index: 9;
  width: 128px;
  padding-left: 0;
  position: relative;
}

.logo.w--current {
  width: auto;
}

.show-onload {
  padding-top: 45px;
  display: none;
}

.show-onload.display-1 {
  font-size: 7vw;
}

.show-onload.display-1.align-center {
  margin-bottom: 30px;
  font-size: 7vw;
}

.bg-animate {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.icon-48 {
  width: 48px;
}

.text-field {
  color: #000;
  background-color: #0000;
  border: 1px solid #e0e0e0;
  height: 48px;
  padding: 0 8px;
  position: relative;
}

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

.text-field::placeholder {
  color: #00000080;
}

.vh-50 {
  height: 50vh;
}

.vh-75 {
  height: 75vh;
}

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

.category-holder {
  z-index: 1;
  justify-content: flex-start;
  align-items: center;
  margin-top: .5rem;
  margin-bottom: .5rem;
  display: flex;
  position: relative;
}

.category-holder.top {
  align-items: flex-start;
}

.award-x {
  opacity: .5;
  margin-left: 8px;
  margin-right: 32px;
  font-size: .5rem;
}

.award-x.margin-top {
  margin-top: 6px;
}

.grid-about-header {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.grid-footer {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  justify-content: flex-end;
  align-self: auto;
  align-items: center;
  width: 100%;
  display: flex;
}

.contact-layer {
  z-index: 5;
  text-transform: uppercase;
  cursor: none;
  background-color: #fafafae6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Oranienbaum, sans-serif;
  font-size: 6vw;
  line-height: 1;
  display: none;
  position: fixed;
  inset: 0%;
}

.close-layer {
  z-index: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.layer-link {
  position: relative;
  overflow: hidden;
}

.overflow-hidden-layer {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.close-button-layer-tablet {
  display: none;
}

.grid-work-detail-img-5x9 {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 4rem;
}

.work-detail-header {
  z-index: 2;
  margin-top: 0;
  position: relative;
  bottom: -4vw;
}

.grid-work-detail-info {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.detail-info {
  min-width: 72px;
}

.fill-wrap {
  letter-spacing: -.03em;
  text-transform: uppercase;
  border-bottom-style: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-family: Oranienbaum, sans-serif;
  font-size: 12vw;
  font-weight: 400;
  line-height: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}

.fill-wrap.w--current {
  color: #ef5350;
}

.text-effect-fill {
  transform-origin: 50%;
  color: var(--light-hover);
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.text-effect-fill.hover {
  clear: none;
  transform-origin: 0%;
  color: var(--black);
  text-align: left;
  position: absolute;
  left: 0;
  overflow: hidden;
}

.bg-img {
  z-index: 0;
  background-image: url('../images/image-placeholder-transparent_1image-placeholder-transparent.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.bg-img.fade-in-grow, .bg-img.skew-in-grow {
  transform: scale(1.05);
}

.img-size {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.img-size.small {
  height: 512px;
}

.img-size.medium {
  height: 64vh;
}

.margin-bottom-6rem {
  margin-bottom: 6rem;
}

.navi-list-horizontal {
  letter-spacing: .25em;
  text-transform: uppercase;
  flex-wrap: wrap;
  font-size: 75%;
  display: flex;
}

.logo-serif {
  z-index: 2;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Rubik, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  position: relative;
}

.invert {
  filter: invert();
}

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

.overview-button-area {
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  font-size: .75rem;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.overview-button-holder {
  background-color: var(--black);
  width: 48px;
  height: 48px;
  color: var(--white);
  cursor: pointer;
  border-radius: 100px;
  justify-content: flex-end;
  align-items: center;
  padding-right: 48px;
  display: flex;
  position: absolute;
  inset: auto 56px 56px auto;
  overflow: hidden;
}

.overview-label {
  opacity: 1;
  margin-right: 28px;
  display: block;
  position: relative;
}

.overview-button {
  background-color: #ff4b27;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.overview-icon {
  width: 20px;
}

.navigation-menu-icon {
  z-index: 10;
  background-color: var(--white);
  padding-left: 10rem;
  padding-right: 10rem;
  position: sticky;
  top: 0;
}

.navigation-menu-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hamburger-lines {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hamburger-close-top {
  z-index: 1;
  background-color: #000;
  width: 24px;
  height: 2px;
  margin-top: -4px;
  position: absolute;
  transform: none;
}

.hamburger-close-bottom {
  z-index: 1;
  background-color: #000;
  width: 24px;
  height: 2px;
  margin-top: 4px;
  position: absolute;
  transform: none;
}

.menu-button {
  z-index: 10;
  width: 64px;
  height: 64px;
}

.menu-button.w--open {
  background-color: #0000;
}

.navigation-menu {
  z-index: 8;
  background-color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  padding: 10rem;
  display: flex;
  position: fixed;
  inset: 0%;
}

.show-ifnavi {
  position: relative;
}

.grid-6x6 {
  z-index: 1;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-flow: row;
  width: 100%;
  height: 100%;
  position: relative;
}

.moving-img-small {
  flex: 0 auto;
  width: 25vw;
  height: 50vh;
  position: relative;
  overflow: visible;
}

.moving-img-bigger {
  flex: 0 auto;
  width: 25vw;
  height: 56vh;
  transition: letter-spacing 1s;
  position: relative;
}

.navigation-small-one-row {
  z-index: 8;
  background-color: #ffffff40;
  align-items: center;
  height: 6rem;
  padding-left: 10rem;
  padding-right: 10rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.next-arrow, .prev-arrow {
  cursor: pointer;
  width: 50%;
}

.slide {
  background-color: #0000;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

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

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

.grid-project-category {
  grid-column-gap: 1rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading {
  letter-spacing: 1px;
  min-width: 100px;
  font-family: Rubik, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
}

.heading-2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 300;
}

.image {
  margin-top: 15px;
  margin-bottom: 15px;
}

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

.uppercase-copy {
  letter-spacing: 0;
  text-transform: uppercase;
  display: none;
}

.section-4 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 10em 4em;
  display: flex;
}

.field-label, .field-label-2 {
  font-weight: 400;
}

.submit-button {
  background-color: #000;
  width: 100%;
}

.form-block {
  width: 100%;
  max-width: 1400px;
}

.div-block-13 {
  text-align: center;
  flex: 1;
  padding-left: 0;
  padding-right: 0;
}

.heading-3 {
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-family: Comfortaa, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
}

.section-5 {
  background-color: #181818;
  width: 100%;
  height: 100vh;
  position: relative;
}

.slider-4 {
  background-color: #1d1d1d;
  width: 100%;
  height: 100%;
}

.slide-8 {
  background-image: url('../images/Ogata_Takasago-2025©JonathanMoyal-275-copie.webp');
  background-position: 50%;
  background-size: cover;
}

.slide-9 {
  background-image: url('../images/nor-2018-Pixelus-3.webp');
  background-position: 50%;
  background-size: cover;
}

.slide-11, .slide-12 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
}

.slide-13 {
  background-image: url('../images/AurorePaul©SightBySight_11.webp');
  background-position: 50%;
  background-size: cover;
}

.slide-14 {
  background-image: url('../images/ChâteaudelaMessardière_©MarieLouiseGaspard_30-copie.webp');
  background-position: 50%;
  background-size: cover;
}

.left-arrow-2, .right-arrow-2, .slide-nav-2 {
  display: none;
}

.heading-7 {
  color: var(--black);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-top: 5px;
  font-family: Comfortaa, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

.menu-wrapper {
  z-index: 6;
  flex-flow: row;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 12%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.heading-8 {
  color: var(--white);
  letter-spacing: 3px;
  -webkit-text-stroke-width: 0px;
  text-transform: uppercase;
  font-family: Comfortaa, sans-serif;
  font-size: .9rem;
  font-weight: 400;
}

.div-block-16 {
  z-index: 6;
  justify-content: center;
  width: 100%;
  margin-top: 4%;
  display: flex;
  position: absolute;
  inset: 0% auto auto;
}

.blog-wrapper {
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 150px 10px 30px;
  position: relative;
}

.blog-wrapper.hidden {
  display: none;
}

.collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.collection-list.masonry {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
}

.collection-item-3 {
  flex: 0 33.33%;
  padding: 15px;
  display: block;
}

.collection-item-3.masonry-item {
  flex: 0 auto;
  width: 25%;
  padding: 5px 5px 0 0;
}

.blog-link {
  position: relative;
}

.blog-image {
  width: 100%;
  height: 100%;
}

.nav-wrapper {
  z-index: 100;
  background-color: #fff0;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  padding-top: 10px;
  padding-left: 13.5rem;
  padding-right: 13.5rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.menu-button-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
}

.line-button {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 3px;
  display: flex;
}

.heading-7-copy {
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-top: 5px;
  font-family: Comfortaa, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

.button-div {
  position: absolute;
  inset: 0%;
}

.button-div.open-modal {
  z-index: 98;
  cursor: pointer;
}

.modal-cms {
  z-index: 99;
  background-color: var(--white);
  height: 100vh;
  margin-top: 150px;
  display: none;
  position: fixed;
  inset: 0;
}

.modal-cms.open-modal {
  background-color: var(--white);
  height: 100vh;
  margin-top: 0;
  padding-top: 150px;
  display: none;
}

.modal-wrapper {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.slider-5 {
  background-color: #ddd0;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 100px;
  display: block;
}

.mask {
  width: 100%;
  position: relative;
}

.icon-51 {
  width: auto;
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 900;
}

.icon-52 {
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 900;
}

.slide-nav-3 {
  color: var(--black);
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: .9rem;
  display: block;
  inset: auto 0% 4%;
}

.menu-open-button {
  z-index: 99;
  cursor: pointer;
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.slider-close-button {
  z-index: 99;
  cursor: pointer;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: none;
  position: absolute;
  inset: auto 0% 0% auto;
}

.div-block-22 {
  background-color: #000;
  width: 3px;
  height: 100%;
}

.heading-10 {
  letter-spacing: 0;
  font-family: Comfortaa, sans-serif;
  font-size: 1.6rem;
  font-weight: 100;
}

.buttons-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.client-name-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.heading-11 {
  color: var(--white);
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: Comfortaa, sans-serif;
  font-size: 17px;
  font-weight: 300;
  display: none;
}

.nav-menu-wrapper {
  z-index: 100;
  background-color: var(--white);
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  width: 32%;
  display: flex;
  position: fixed;
  inset: 0% 0% 0% auto;
  transform: translate(40vw);
}

.nav-links-wrapper {
  flex-flow: column;
  order: 0;
  display: flex;
}

.heading-12 {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Comfortaa, sans-serif;
  font-size: 1rem;
}

.link-block-2 {
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.close-nav-button {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
  position: absolute;
  inset: 10% auto auto;
}

.close-nav-line {
  background-color: #000;
  width: 100%;
  height: 2px;
  position: absolute;
}

.close-nav-line._45deg {
  position: absolute;
  transform: rotate(45deg);
}

.close-nav-line.minus45deg {
  transform: rotate(-45deg);
}

.div-overflow-hidden {
  overflow: hidden;
}

.div-overflow-hidden.travel-section {
  margin-left: auto;
  margin-right: auto;
  padding: 150px 10px 30px;
}

.collection-item-5 {
  flex: 0 33.33%;
  padding: 15px;
  display: block;
}

.collection-item-5.masonry-item {
  flex: 0 auto;
  width: 25%;
  padding: 5px;
}

.image-3 {
  filter: grayscale();
  transition: filter .4s;
}

.image-3:hover {
  filter: grayscale(0%);
}

.infos-div {
  z-index: 2;
  cursor: pointer;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  position: absolute;
  inset: auto 12.1em 3% auto;
}

.heading-13 {
  margin-bottom: 0;
  font-family: Comfortaa, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
}

.heading-14 {
  margin-bottom: 0;
  font-family: Comfortaa, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  position: static;
}

.client-name-div {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: -12.4766px;
}

.link {
  white-space: nowrap;
  margin-left: 10px;
  font-family: Comfortaa, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
}

.architecte-name-div {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.heading-16 {
  margin-bottom: 0;
  font-family: Comfortaa, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  display: none;
}

.heading-17 {
  white-space: nowrap;
  word-break: normal;
  margin-bottom: 0;
  margin-left: 10px;
  font-family: Comfortaa, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
}

.no-scroll {
  overflow: hidden;
}

.div-block-23 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto auto 1%;
}

.heading-18 {
  letter-spacing: 0;
  font-family: Comfortaa, sans-serif;
  font-size: 1rem;
}

.image-4 {
  filter: saturate(0%);
  width: 50%;
}

.link-block-3 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.spacer {
  height: 10vh;
}

.section-6 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 220px;
  padding-left: 140px;
  padding-right: 140px;
  display: flex;
}

.heading-19 {
  text-align: center;
  max-width: 65ch;
  font-family: Comfortaa, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

.div-block-24 {
  background-color: #b1ffc363;
  padding: 40px 140px;
}

.button-2 {
  color: var(--black);
  background-color: #fff;
  border: 2px solid #000;
  margin-top: 40px;
}

.image-5 {
  width: 200px;
  margin-bottom: 20px;
}

.div-block-25 {
  margin-top: 100px;
}

.container-2 {
  max-width: 1200px;
}

.image-6 {
  aspect-ratio: auto;
  object-fit: contain;
  height: 100%;
}

.image-7, .image-8, .image-9, .image-10, .image-11, .image-12, .image-13, .image-14, .image-15 {
  object-fit: contain;
  height: 100%;
}

.heading-20, .heading-21, .heading-22, .heading-23, .heading-24 {
  font-family: Comfortaa, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.image-17, .image-18, .image-19, .image-20, .image-21, .image-22, .image-23, .image-24, .image-25, .image-26 {
  object-fit: contain;
  height: 100%;
}

.text-block {
  color: var(--white);
  border-bottom: 1px solid #dbdbdb;
  font-family: Comfortaa, sans-serif;
  text-decoration: none;
  display: none;
}

.code-embed {
  margin-top: 220px;
}

.code-embed-2, .code-embed-3, .code-embed-4 {
  margin-top: 220px;
  margin-bottom: 100px;
}

.slide-36 {
  background-image: url('../images/Islande_2018-7_1.webp');
  background-position: 50%;
  background-size: cover;
}

.slide-37 {
  background-image: url('../images/Islande_2018-20_1.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-38 {
  background-image: url('../images/nor-2018-Pixelus-3.webp');
  background-position: 50%;
  background-size: cover;
}

@media screen and (max-width: 991px) {
  .line-separator {
    width: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .hover-trigger.thumb {
    align-items: center;
    font-size: 4rem;
    line-height: 1.5;
    display: flex;
  }

  .hover-trigger.thumb:hover {
    color: var(--primary);
    letter-spacing: -.02em;
  }

  .hover-trigger.many-thumbs {
    align-items: center;
    font-size: 4rem;
    display: flex;
  }

  .hover-trigger.many-thumbs:hover {
    color: var(--primary);
    letter-spacing: -.02em;
  }

  .lead {
    font-size: 1.5rem;
  }

  .section {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .section.sticky-grow {
    min-height: auto;
    position: relative;
  }

  .display-1 {
    font-size: 7rem;
  }

  .side-fix-left, .side-fix-right {
    background-color: #ffffffbf;
    height: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .vh-75 {
    height: auto;
  }

  .grid-about {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .category-holder {
    margin-bottom: .5rem;
  }

  .grid-about-header {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .contact-layer {
    font-size: 6rem;
  }

  .close-button-layer-tablet {
    z-index: 1;
    background-color: var(--white);
    background-image: url('../images/close-24px.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    display: flex;
    position: fixed;
    inset: 3rem 3rem auto auto;
  }

  .grid-work-detail-img-5x9 {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
    margin-bottom: 3rem;
  }

  .work-detail-header {
    bottom: -2.5rem;
  }

  .grid-work-detail-info {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
  }

  .fill-wrap, .text-effect-fill {
    font-size: 7rem;
  }

  .img-size, .img-size.small, .img-size.medium {
    height: auto;
    min-height: 512px;
  }

  .overview-button-area {
    width: 96px;
    height: 96px;
  }

  .overview-button-holder {
    bottom: 24px;
    right: 24px;
  }

  .navigation-menu-icon {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .menu-button {
    width: 48px;
    height: 48px;
  }

  .navigation-menu {
    padding: 9rem 3rem 3rem;
  }

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

  .moving-img-small {
    width: 100%;
    height: 56vh;
  }

  .moving-img-bigger {
    width: 100%;
  }

  .navigation-small-one-row {
    background-color: var(--white);
    padding-left: 3rem;
    padding-right: 3rem;
    position: sticky;
  }

  .heading {
    white-space: nowrap;
  }

  .menu-wrapper {
    padding-top: 19%;
  }

  .heading-8 {
    font-size: .8rem;
  }

  .blog-wrapper, .collection-item-3, .collection-item-5 {
    padding: 15px;
  }
}

@media screen and (max-width: 767px) {
  .line-separator {
    width: 1.5rem;
  }

  .button {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .display-2 {
    font-size: 3rem;
    line-height: 1.2;
  }

  .hover-trigger.thumb {
    font-size: 3rem;
    line-height: 2;
  }

  .hover-trigger.many-thumbs {
    font-size: 3rem;
  }

  .lead {
    font-size: 1.5rem;
  }

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

  .display-1 {
    font-size: 4rem;
  }

  .display-3 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .side-fix-left {
    background-color: #ffffffbf;
    width: 100vw;
    padding-left: 2rem;
    padding-right: 2rem;
    inset: 0% 0% auto;
    transform: none;
  }

  .side-fix-right {
    text-align: center;
    background-color: #ffffffbf;
    justify-content: center;
    width: 100vw;
    padding-left: 2rem;
    padding-right: 2rem;
    inset: auto 0% 0%;
    overflow: scroll;
    transform: none;
  }

  .vh-50 {
    height: auto;
  }

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

  .contact-layer {
    font-size: 4rem;
  }

  .grid-work-detail-img-5x9 {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    margin-bottom: 2rem;
  }

  .work-detail-header {
    bottom: -2rem;
  }

  .grid-work-detail-info {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-rows: auto auto;
  }

  .fill-wrap, .text-effect-fill {
    font-size: 5rem;
  }

  .img-size, .img-size.small, .img-size.medium {
    min-height: 256px;
  }

  .logo-serif {
    font-size: 1.25rem;
  }

  .navigation-menu-icon {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hamburger-close-top, .hamburger-close-bottom {
    width: 18px;
  }

  .menu-button {
    padding-right: 0;
    right: -14px;
  }

  .navigation-menu {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .moving-img-small, .moving-img-bigger {
    height: 512px;
  }

  .navigation-small-one-row {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .grid-project-category {
    grid-row-gap: 3rem;
  }

  .menu-wrapper {
    padding-top: 120px;
  }

  .heading-8 {
    font-size: .7rem;
  }

  .div-block-16 {
    margin-bottom: 40px;
  }

  .blog-wrapper {
    padding-top: 140px;
  }

  .collection-item-3.masonry-item {
    width: 50%;
  }

  .nav-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .modal-cms.open-modal {
    padding-top: 100px;
    display: none;
  }

  .slider-5 {
    height: 80vh;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  a {
    margin-bottom: 10px;
  }

  .line-separator {
    width: 1rem;
    margin-left: .25rem;
    margin-right: .25rem;
  }

  .display-2 {
    font-size: 2.5rem;
  }

  .hover-trigger.thumb {
    text-align: left;
    letter-spacing: 0;
    flex-direction: column;
    align-items: flex-start;
    font-size: 2rem;
    line-height: 1.5;
    display: flex;
  }

  .hover-trigger.thumb:hover {
    letter-spacing: 0;
  }

  .hover-trigger.many-thumbs {
    text-align: left;
    letter-spacing: 0;
    flex-direction: column;
    align-items: flex-start;
    font-size: 2rem;
    display: flex;
  }

  .hover-trigger.many-thumbs:hover {
    letter-spacing: 0;
  }

  .lead {
    font-size: 1.25rem;
  }

  .section {
    padding-bottom: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section.vh-75 {
    justify-content: center;
    align-items: center;
    height: 20vh;
    display: flex;
  }

  .section.small, .section.bg-light {
    display: flex;
  }

  .section.margin-bottom-6rem {
    margin-bottom: 3rem;
  }

  .overflow-hidden {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .display-1 {
    font-size: 2.75rem;
  }

  .uppercase {
    text-align: center;
    flex-flow: column;
    display: block;
  }

  .display-flex.justify-space {
    display: block;
  }

  .side-fix-left {
    height: 5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .side-fix-right {
    width: 100vw;
    height: 4rem;
    padding-left: 0;
    padding-right: 0;
  }

  .show-onload.display-1 {
    padding-top: 20px;
  }

  .grid-about {
    flex-flow: column;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 100px;
    display: flex;
  }

  .grid-about-header {
    margin-top: 100px;
  }

  .grid-footer {
    display: none;
  }

  .contact-layer {
    font-size: 3rem;
  }

  .close-button-layer-tablet {
    top: 2rem;
    right: 2rem;
  }

  .work-detail-header {
    margin-top: 15vh;
    bottom: -1rem;
  }

  .fill-wrap, .text-effect-fill {
    font-size: 3rem;
  }

  .logo-serif {
    margin-bottom: 1rem;
  }

  .overview-button-area {
    bottom: 12px;
  }

  .navigation-menu-icon, .navigation-menu, .navigation-small-one-row {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .grid-project-detail, .grid-project-category {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .overflow-hidden-copy {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .uppercase-copy {
    display: block;
  }

  .section-4 {
    padding-top: 1em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .heading-3 {
    margin-bottom: 4rem;
    font-size: 1.3rem;
  }

  .heading-7 {
    letter-spacing: 3px;
    padding-top: 10px;
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .menu-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40%;
  }

  .heading-8 {
    font-size: .9rem;
  }

  .div-block-16 {
    margin-top: 5%;
  }

  .blog-wrapper {
    margin-top: 140px;
    padding-top: 0;
  }

  .collection-item-3 {
    flex-basis: 50%;
    padding: 5px;
  }

  .collection-item-3.masonry-item {
    width: 100%;
  }

  .nav-wrapper {
    justify-content: space-around;
    align-items: center;
    height: 100px;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-button-wrapper {
    width: 35px;
    height: 35px;
    position: relative;
  }

  .heading-7-copy {
    font-size: 1.7rem;
  }

  .modal-cms.open-modal {
    height: 100vh;
    padding-top: 140px;
    display: none;
  }

  .slider-5 {
    height: 100%;
    padding: 0 0 40px;
  }

  .slide-nav-3 {
    display: block;
    bottom: 0%;
  }

  .menu-open-button {
    inset: 0%;
  }

  .slider-close-button {
    margin-top: -1px;
    display: none;
    inset: 0%;
  }

  .heading-10 {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 1rem;
  }

  .buttons-wrapper {
    justify-content: center;
  }

  .client-name-wrapper {
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20px;
  }

  .heading-11 {
    text-align: center;
    font-size: .8rem;
    display: flex;
    position: static;
    inset: auto auto 0%;
  }

  .nav-menu-wrapper {
    width: 100%;
    transform: translate(100vw);
  }

  .div-overflow-hidden.travel-section {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .right-arrow-3, .left-arrow-3 {
    display: block;
  }

  .collection-item-5 {
    flex-basis: 50%;
    padding: 5px;
  }

  .collection-item-5.masonry-item {
    flex-flow: column;
    width: 100%;
    padding-bottom: 0;
    display: block;
  }

  .image-3 {
    filter: none;
    transition: none;
  }

  .lightbox-link {
    width: 100%;
  }

  .infos-div {
    display: none;
  }

  .section-6 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .heading-19 {
    font-size: 1.3rem;
  }

  .div-block-24, .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-16 {
    z-index: 999;
    width: 100px;
    position: absolute;
    inset: auto;
  }

  .text-block {
    margin-bottom: 0;
    font-size: .8rem;
    font-weight: 300;
    text-decoration: underline;
    display: block;
  }
}

#w-node-_054ecf4f-c48d-c409-3a3a-9d384472b0c9-79fdbd38 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-aa4827e3-38ef-46c3-df69-3299de204b21-79fdbd38 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-a98cb562-9841-cb4a-dee5-36a2b2919fd5-79fdbd38 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_27e63d5c-aa61-5ab8-941b-8a78b739d58d-79fdbd38 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_56e6c726-b1ad-8885-dbc3-0c1815174ffe-79fdbd38 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_553929fd-e075-15f4-a927-7710e269707f-79fdbd38 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_769a7c48-e165-cf63-96c0-8cc636efb577-79fdbd38 {
  grid-area: 2 / 3 / 3 / 4;
}

@media screen and (max-width: 991px) {
  #w-node-aa4827e3-38ef-46c3-df69-3299de204b21-79fdbd38 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_27e63d5c-aa61-5ab8-941b-8a78b739d58d-79fdbd38 {
    grid-area: 3 / 2 / 4 / 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a98cb562-9841-cb4a-dee5-36a2b2919fd5-79fdbd38 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_27e63d5c-aa61-5ab8-941b-8a78b739d58d-79fdbd38 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_56e6c726-b1ad-8885-dbc3-0c1815174ffe-79fdbd38 {
    grid-area: 6 / 1 / 8 / 3;
  }

  #w-node-_553929fd-e075-15f4-a927-7710e269707f-79fdbd38 {
    grid-area: 6 / 3 / 7 / 5;
  }

  #w-node-_769a7c48-e165-cf63-96c0-8cc636efb577-79fdbd38 {
    grid-area: 7 / 3 / 8 / 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_56e6c726-b1ad-8885-dbc3-0c1815174ffe-79fdbd38 {
    grid-area: 6 / 1 / 7 / 5;
  }

  #w-node-_553929fd-e075-15f4-a927-7710e269707f-79fdbd38 {
    grid-area: 7 / 1 / 8 / 5;
  }

  #w-node-_769a7c48-e165-cf63-96c0-8cc636efb577-79fdbd38 {
    grid-area: 8 / 1 / 9 / 5;
  }
}


@font-face {
  font-family: 'Pullman';
  src: url('../fonts/Pullman-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pullman';
  src: url('../fonts/Pullman-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('../fonts/Comfortaa-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('../fonts/Comfortaa-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('../fonts/Comfortaa-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Themundayfreeversion';
  src: url('../fonts/Themundayfreeversion-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Giyaste';
  src: url('../fonts/giyaste.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}