.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 {
  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: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #fff;
  font-family: 'Lokal ubu', sans-serif;
  color: #434343;
  font-size: 18px;
  line-height: 170%;
  font-weight: 400;
}

h1 {
  margin-top: 0px;
  margin-bottom: 25px;
  font-family: 'Lokal ubu', sans-serif;
  color: #141414;
  font-size: 60px;
  line-height: 120%;
  font-weight: 500;
  letter-spacing: -1.5px;
}

h2 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: 'Lokal ubu', sans-serif;
  color: #141414;
  font-size: 60px;
  line-height: 120%;
  font-weight: 700;
  letter-spacing: -1px;
}

h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: 'Lokal ubu', sans-serif;
  color: #141414;
  font-size: 33px;
  line-height: 122%;
  font-weight: 500;
  letter-spacing: -1px;
}

h4 {
  margin-top: 0px;
  margin-bottom: 6px;
  font-family: 'Lokal ubu', sans-serif;
  color: #141414;
  font-size: 25px;
  line-height: 126%;
  font-weight: 700;
}

h5 {
  margin-top: 0px;
  margin-bottom: 14px;
  font-family: 'Lokal ubu', sans-serif;
  color: #141414;
  font-size: 24px;
  line-height: 130%;
  font-weight: 700;
}

h6 {
  margin-top: 0px;
  margin-bottom: 12px;
  font-family: 'Lokal ubu', sans-serif;
  color: #141414;
  font-size: 18px;
  line-height: 134%;
  font-weight: 700;
}

p {
  margin-bottom: 25px;
  font-family: 'Lokal ubu', sans-serif;
}

a {
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  color: #141414;
  text-decoration: none;
}

a:hover {
  color: #d10c0c;
}

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

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

li {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  line-height: 110%;
}

strong {
  color: #141414;
  font-weight: 700;
}

em {
  color: #141414;
  font-style: italic;
}

blockquote {
  margin-bottom: 25px;
  margin-left: 18px;
  padding: 4px 24px;
  border-left: 2px solid #e8e8e8;
  font-size: 20px;
  line-height: 160%;
  font-style: italic;
  font-weight: 400;
}

figure {
  margin-top: 36px;
  margin-bottom: 36px;
}

figcaption {
  margin-top: 14px;
  padding-right: 10px;
  padding-left: 10px;
  color: rgba(20, 20, 20, 0.6);
  font-size: 16px;
  line-height: 150%;
  text-align: center;
}

.brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -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;
}

.block-navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 5%;
  -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;
  background-color: #fff;
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
}

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

.nav-link {
  padding: 15px 25px;
  color: rgba(20, 20, 20, 0.7);
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
}

.nav-link:hover {
  color: #141414;
}

.nav-link.w--current {
  color: #141414;
}

.logo {
  display: block;
  height: 40px;
}

.nav {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-button {
  padding: 15px;
  background-color: transparent;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  color: #141414;
  font-size: 22px;
  line-height: 100%;
}

.menu-button.w--open {
  background-color: transparent;
  color: rgba(20, 20, 20, 0.5);
}

.block-hero {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  -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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.heading-hero {
  font-family: 'Lokal ubu', sans-serif;
  color: #fff;
  font-size: 60px;
  font-weight: 500;
}

.link-portrait {
  position: relative;
  z-index: 50;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  color: #fff;
}

.link-portrait:hover {
  color: #e8e8e8;
}

.image-portrait {
  position: absolute;
  top: -25vh;
  display: none;
  height: 60vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.section {
  position: relative;
  z-index: 10;
  padding-bottom: 100px;
  background-color: #d10c0c;
}

.section.content {
  max-width: none;
  padding: 140px 15%;
  border-bottom: 4px solid #fff;
  color: #fff;
}

.block-project {
  position: relative;
  z-index: 10;
  max-width: 70%;
}

.block-project.margin {
  margin-top: 50px;
}

.block-project.big {
  width: 85%;
  max-width: 1440px;
}

.heading-project {
  display: inline;
  font-family: 'Lokal ubu', sans-serif;
  color: #141414;
  font-size: 50px;
}

.project-info {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 160%;
}

.footer {
  margin-top: auto;
  font-family: 'Lokal ubu', sans-serif;
}

.footer-down {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 50px;
  -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-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #e8e8e8;
}

.footer-down.white {
  margin-right: 7%;
  margin-left: 7%;
  padding-right: 0px;
  padding-left: 0px;
  border-top-color: #313131;
}

.footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -20px;
  margin-left: -20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -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;
}

.footer-link {
  padding: 15px 20px;
  color: rgba(20, 20, 20, 0.5);
  font-size: 15px;
  line-height: 120%;
  font-weight: 400;
  text-decoration: none;
}

.footer-link:hover {
  color: #141414;
}

.footer-link.white {
  color: hsla(0, 0%, 100%, 0.5);
}

.footer-link.white:hover {
  color: #fff;
}

.footer-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 170px 15% 160px;
  -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;
}

.heading-contact {
  max-width: 570px;
  font-family: 'Lokal ubu', sans-serif;
  font-weight: 400;
}

.heading-contact.white {
  font-family: 'Lokal ubu', sans-serif;
  color: #fff;
}

.social-link {
  display: inline-block;
  padding: 15px 25px;
  color: #313131;
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  text-decoration: none;
}

.social-link:hover {
  color: #313131;
}

.social-link.white {
  color: hsla(0, 0%, 100%, 0.5);
}

.social-link.white:hover {
  color: #fff;
}

.utility-page-wrap {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  max-width: 100%;
  margin-top: auto;
  padding: 90px 10px;
  -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: #d10c0c;
  font-family: 'Lokal ubu', sans-serif;
  color: #fff;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 600px;
  -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;
  color: #fff;
  text-align: center;
}

.utility-page-form {
  display: -ms-grid;
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.hero {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 85vh;
  padding: 150px 15% 110px;
  -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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.card-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1440px;
  min-height: 65vh;
  margin-right: auto;
  margin-left: auto;
  padding: 50px;
  background-color: #fff;
  box-shadow: 0 -18px 20px -10px rgba(209, 12, 12, 0.32);
  -webkit-transition-property: none;
  transition-property: none;
  text-decoration: none;
}

.card-content-wrapper:hover {
  color: #141414;
}

.card-content-wrapper.last {
  min-height: 2vh;
  opacity: 0;
}

.wehementi-wrapper {
  margin-top: -10vh;
  padding-right: 5%;
  padding-left: 5%;
}

.wehementi-card {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 99999999999;
  margin-bottom: 140px;
}

.navbar---b {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 45px 12px;
  -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;
  background-color: transparent;
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
}

.navbar---b:hover {
  background-color: #fff;
}

.nav-menu---b {
  padding: 0px 35px 30px;
  border-bottom: 1px solid #e8e8e8;
  background-color: #fff;
}

.hero---b {
  background-color: #fff;
}

.content---b {
  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;
  background-color: #171717;
}

.link-white {
  color: #fff;
}

.link-white:hover {
  color: hsla(0, 0%, 100%, 0.5);
}

.social {
  position: relative;
  z-index: 9999;
  margin-top: 20px;
  margin-left: -25px;
}

.section---work-a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 180px;
  padding-right: 7%;
  padding-left: 7%;
  -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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.content {
  width: 100%;
  max-width: 1280px;
}

.wehementi-list {
  display: block;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.link-project---work-c {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 200px;
  padding: 50px 10px;
  border-bottom: 1px solid #e8e8e8;
  -webkit-transition-property: none;
  transition-property: none;
  text-decoration: none;
}

.link-project---work-c:hover {
  color: #141414;
}

.work-img {
  position: absolute;
  left: 50%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-color: #e8e8e8;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 50%;
  background-size: cover;
}

.section-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 180px 15% 60px;
  -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;
}

.section-top.center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #d10c0c;
  color: #fff;
  text-align: center;
}

.section-big-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 180px 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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 7%;
  padding-left: 7%;
  -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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-content.padding {
  padding-top: 100px;
  padding-bottom: 140px;
}

.section-portrait---c {
  padding-right: 2vw;
  padding-bottom: 90px;
  padding-left: 15%;
}

.text-field {
  height: 50px;
  margin-bottom: 0px;
  padding-right: 0px;
  padding-left: 0px;
  border-style: none none solid;
  border-width: 1px;
  border-color: #a9a9a9;
  background-color: transparent;
  -webkit-transition: border-color 200ms ease;
  transition: border-color 200ms ease;
  color: #141414;
  font-size: 18px;
  line-height: 140%;
}

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

.text-field::-webkit-input-placeholder {
  color: rgba(20, 20, 20, 0.5);
}

.text-field:-ms-input-placeholder {
  color: rgba(20, 20, 20, 0.5);
}

.text-field::-ms-input-placeholder {
  color: rgba(20, 20, 20, 0.5);
}

.text-field::placeholder {
  color: rgba(20, 20, 20, 0.5);
}

.submit-button {
  padding: 17px 40px;
  background-color: #141414;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  color: #fff;
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  text-align: center;
}

.submit-button:hover {
  background-color: rgba(20, 20, 20, 0.9);
}

.error-message {
  margin-top: 20px;
  padding: 20px 30px;
  background-color: #ffa9a9;
}

.text-error {
  color: #141414;
  font-size: 18px;
  line-height: 140%;
}

.button {
  padding: 17px 40px;
  background-color: #141414;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  color: #fff;
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  text-align: center;
}

.button:hover {
  background-color: rgba(20, 20, 20, 0.9);
  color: #fff;
}

.link {
  display: block;
  padding: 15px 20px;
  color: rgba(20, 20, 20, 0.7);
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

.link:hover {
  color: #141414;
}

.section-splash {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 180px 10% 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.hero-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.light {
  font-weight: 300;
}

.light.caps {
  color: #a9a9a9;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.wrapper-text {
  margin-top: 20px;
}

.big-hero-text-div {
  overflow: hidden;
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
}

.deko-text-stripe {
  position: relative;
  z-index: 5;
  width: 3000px;
  border: 1px none #000;
  font-family: 'Lokal ubu', sans-serif;
  color: #b60000;
  font-size: 140px;
  line-height: 180px;
  font-weight: 400;
  letter-spacing: -4px;
  text-transform: none;
}

.section-white {
  padding: 140px 15%;
  border-top-width: 6px;
  border-top-color: #fff;
}

.section-white.padding-bottom {
  padding-bottom: 280px;
}

.section-white.less-padding-bottom {
  padding-bottom: 280px;
}

.underline {
  width: 50%;
  height: 2px;
  margin-top: 25px;
  background-color: #d10c0c;
}

.underline.short {
  position: relative;
  left: 0%;
  top: 0%;
  right: -31px;
  bottom: auto;
  width: 110px;
  margin-top: 0px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.underline.less-margin {
  margin-top: 5px;
}

.block-service {
  margin-left: 40px;
}

.block-service.flex-inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.wrapper-service {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  -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;
}

.wrapper-service.margin-bottom {
  margin-top: 40px;
}

.card-relative {
  position: relative;
  top: 33%;
  margin-top: -216px;
  padding: 7% 11% 7% 7%;
  background-color: #fff;
  box-shadow: 0 10px 50px -10px #570101;
  color: #141414;
}

.red {
  color: #d10c0c;
}

.red.light {
  margin-right: 2px;
  margin-left: 3px;
}

.margin {
  margin-top: 40px;
}

.footer-copy {
  margin-top: -2px;
  margin-left: 10px;
  padding-bottom: 0px;
  font-family: 'Lokal mont', sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.line-2 {
  position: static;
  left: 0px;
  top: 8px;
  width: 40px;
  height: 2px;
  margin-top: 4px;
  margin-bottom: 4px;
  background-color: #fff;
}

.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 40px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 70%;
  -ms-flex: 0 70%;
  flex: 0 70%;
  color: #fff;
}

.menu.alternative {
  width: 94px;
  padding-right: 0px;
  padding-left: 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;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: #d10c0c;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.menu.alternative:hover {
  background-color: #313131;
}

.navigation-wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 94px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0px;
  padding-left: 40px;
  background-color: #000;
}

.navigation-wrapper.alternativ {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 999;
  max-width: none;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: rgba(209, 12, 12, 0);
}

.nav-menu-2 {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99999;
  display: none;
  width: 100vw;
  height: 100vh;
}

.line-1 {
  position: static;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 2px;
  margin-top: 4px;
  margin-bottom: 4px;
  background-color: #fff;
}

.div-block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.nav-link-2 {
  position: relative;
  margin-bottom: 50px;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-transition: background-color 400ms ease;
  transition: background-color 400ms ease;
  color: #272830;
  font-size: 13px;
  line-height: 25px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link-2:hover {
  border-radius: 6px;
  background-color: transparent;
  color: #e31e12;
}

.nav-link-2.w--current {
  padding-top: 0px;
  padding-bottom: 0px;
  color: #7197b4;
}

.line-3 {
  position: static;
  top: 16px;
  width: 40px;
  height: 2px;
  margin-top: 4px;
  margin-bottom: 4px;
  background-color: #fff;
}

.hamburger {
  position: relative;
  z-index: 99999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding-right: 12px;
  padding-left: 12px;
  -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: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
}

.nav-text {
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  color: #fff;
  font-size: 5em;
  line-height: 50px;
  font-weight: 400;
}

.nav-text:hover {
  color: #676d72;
}

.nav-menu-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.menu-divider {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-top: auto;
  padding-left: 15%;
  float: left;
  -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;
  background-color: #313131;
}

.logo-div {
  display: block;
  padding-top: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  text-decoration: none;
}

.logo-div.w--current {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.image-3 {
  position: relative;
  z-index: -1;
  max-width: 300px;
}

.card {
  position: relative;
  padding: 7% 11% 7% 7%;
  background-color: #fff;
  box-shadow: 0 13px 50px -16px rgba(63, 48, 48, 0.67);
  color: #141414;
}

.margin-top {
  margin-top: 120px;
}

.h3 {
  font-size: 22px;
  font-weight: 500;
}

.left-align {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  text-align: left;
}

.grid-2 {
  grid-row-gap: 7px;
  grid-template-areas: ".";
  -ms-grid-columns: 0.25fr 1fr;
  grid-template-columns: 0.25fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-2.space-top {
  margin-top: 15px;
}

.img-absolute {
  position: absolute;
  left: auto;
  top: -45px;
  right: 30px;
  bottom: auto;
}

.inline-heading {
  margin-right: 13px;
  color: #4f4f4f;
}

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.footer-text {
  margin-top: -2px;
  margin-left: 10px;
  padding-bottom: 0px;
  font-family: 'Lokal mont', sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.heading-2 {
  margin-bottom: 40px;
  font-family: 'Lokal ubu', sans-serif;
  font-size: 50px;
  font-weight: 500;
}

.fullwidth {
  width: 100%;
}

.white {
  color: #fff;
}

.body-2 {
  font-family: 'Lokal ubu', sans-serif;
}

.margin-2 {
  margin-top: 20px;
}

.sub {
  position: relative;
  left: 1px;
  top: -8px;
  display: inline-block;
  margin-right: 1px;
  font-size: 12px;
}

.cambium {
  font-family: 'Lokal mont', sans-serif;
  color: #000;
  font-weight: 600;
}

.cambium-light {
  font-weight: 400;
}

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

.top {
  width: 100%;
  height: 0px;
}

.logo-div-mobile {
  display: none;
  padding-top: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  text-decoration: none;
}

.logo-div-mobile.w--current {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.h2 {
  font-size: 30px;
  line-height: 160%;
  font-weight: 500;
}

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

.margin-top-2 {
  margin-top: 90px;
}

.h1 {
  font-size: 40px;
  line-height: 160%;
  font-weight: 500;
}

.html-embed {
  font-family: 'Lokal ubu', sans-serif;
}

.img-absolute-mobile {
  position: absolute;
  left: auto;
  top: -45px;
  right: 30px;
  bottom: auto;
  display: none;
}

.white-head {
  color: #fff;
}

.linkblock {
  position: relative;
  left: -10px;
  top: 0px;
  right: 0px;
  display: inline-block;
  margin-right: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-style: solid;
  border-width: 2px;
  border-color: #d10c0c;
  opacity: 1;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.block-about {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 90%;
  margin-top: 80px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.div-30 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.div-30.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-bottom: 5px solid #d10c0c;
  box-shadow: 0 20px 40px -10px #797979;
}

.div70 {
  padding-top: 60px;
  padding-bottom: 40px;
  padding-left: 8%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.image-5 {
  max-width: 100%;
}

.paragraph {
  font-family: 'Lokal ubu', sans-serif;
}

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

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 21px;
  }

  .navbar {
    padding-right: 25px;
    padding-left: 25px;
  }

  .section.content {
    padding-right: 8%;
    padding-left: 8%;
  }

  .block-project.margin {
    max-width: 100%;
  }

  .block-project.big {
    width: 100%;
  }

  .footer-down {
    padding-right: 40px;
    padding-left: 40px;
  }

  .footer-contact {
    padding: 150px 10%;
  }

  .social-link {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    padding: 130px 6% 90px;
  }

  .card-content-wrapper {
    padding: 40px;
  }

  .wehementi-wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }

  .wehementi-card {
    top: 120px;
  }

  .navbar---b {
    padding-top: 24px;
    padding-right: 25px;
    padding-left: 25px;
  }

  .nav-menu---b {
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 15px;
  }

  .social {
    margin-top: 15px;
    margin-left: -20px;
  }

  .section---work-a {
    padding-top: 160px;
    padding-right: 4%;
    padding-left: 4%;
  }

  .section-top {
    padding: 160px 10% 50px;
  }

  .section-big-list {
    padding: 160px 30px;
  }

  .section-content.padding {
    padding-bottom: 120px;
  }

  .section-portrait---c {
    padding-bottom: 80px;
    padding-left: 10%;
  }

  .section-splash {
    padding: 160px 7% 40px;
  }

  .deko-text-stripe {
    font-size: 100px;
    line-height: 120px;
  }

  .section-white.padding-bottom {
    padding-right: 8%;
    padding-left: 8%;
  }

  .section-white.less-padding-bottom {
    padding-right: 8%;
    padding-left: 8%;
  }

  .menu {
    padding-right: 20px;
  }

  .menu.alternative {
    background-color: transparent;
  }

  .menu.alternative:hover {
    background-color: rgba(209, 12, 12, 0);
  }

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

  .nav-menu-2 {
    z-index: -1;
    display: none;
  }

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

  .nav-link-2:hover {
    border-radius: 0px;
    color: #6e8cf8;
  }

  .nav-link-2.w--current {
    color: #fff;
  }

  .menu-divider {
    padding-left: 15%;
  }

  .margin-top {
    margin-top: 60px;
  }

  .img-absolute {
    max-width: 100px;
  }

  .img-absolute-mobile {
    max-width: 100px;
  }

  .block-about {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .div-30.sticky {
    position: static;
  }

  .div70 {
    padding-left: 0%;
  }
}

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

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 19px;
  }

  h6 {
    font-size: 17px;
  }

  p {
    font-size: 17px;
    line-height: 150%;
  }

  .navbar {
    padding: 7px 20px;
  }

  .nav-menu {
    padding: 0px 10px 20px;
    border-bottom: 1px solid #e8e8e8;
    background-color: #fff;
  }

  .heading-hero {
    font-size: 50px;
  }

  .block-project {
    max-width: 82%;
  }

  .heading-project {
    font-size: 40px;
  }

  .project-info {
    font-size: 18px;
  }

  .footer-down {
    padding-right: 20px;
    padding-left: 20px;
    -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;
  }

  .footer-links {
    margin: 5px 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .footer-contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .social-link {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 17px;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .card-content-wrapper {
    height: 70vh;
    padding: 40px 30px 30px;
  }

  .card-content-wrapper.flex-height {
    height: auto;
    min-height: 70vh;
    padding-bottom: 50px;
  }

  .wehementi-wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }

  .wehementi-card {
    top: 100px;
  }

  .navbar---b {
    padding: 7px 20px;
  }

  .nav-menu---b {
    padding-right: 10px;
    padding-left: 10px;
  }

  .social {
    margin-left: -10px;
  }

  .section---work-a {
    padding-top: 140px;
  }

  .section-top {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .section-big-list {
    padding: 140px 25px;
  }

  .section-content.padding {
    padding-bottom: 100px;
  }

  .section-portrait---c {
    padding-right: 2%;
    padding-bottom: 70px;
    padding-left: 2%;
  }

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

  .section-white {
    padding-right: 8%;
    padding-left: 8%;
  }

  .underline.short {
    width: 50px;
  }

  .block-service {
    margin-left: 20px;
  }

  .footer-copy {
    font-size: 13.5px;
    letter-spacing: -0.5px;
  }

  .navigation-wrapper.alternativ {
    height: 80px;
    background-color: #d10c0c;
  }

  .nav-text {
    font-size: 2.5em;
  }

  .logo-div {
    display: none;
    padding-top: 0px;
  }

  .image-3 {
    max-width: 230px;
  }

  .inline-heading {
    margin-right: 8px;
  }

  .inline-heading.hide-mobile {
    margin-right: 8px;
  }

  .heading-2 {
    font-size: 40px;
  }

  .image-4 {
    max-width: 280px;
  }

  .logo-div-mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0px;
  }

  .img-absolute-mobile {
    display: none;
  }

  .block-about {
    max-width: 100%;
  }
}

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

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  p {
    font-size: 16px;
  }

  li {
    font-size: 16px;
    line-height: 23.5px;
  }

  .navbar {
    padding-right: 12px;
    padding-left: 12px;
  }

  .nav-menu {
    padding-right: 2px;
    padding-left: 2px;
  }

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

  .section {
    padding-bottom: 10px;
  }

  .section.content {
    padding-right: 5%;
    padding-left: 5%;
  }

  .block-project {
    max-width: 92%;
  }

  .heading-project {
    font-size: 35px;
  }

  .project-info {
    font-size: 17px;
    line-height: 158%;
  }

  .footer-down {
    padding-right: 25px;
    padding-left: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-links {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer-contact {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .card-content-wrapper {
    height: 80vh;
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .navbar---b {
    padding-right: 12px;
    padding-left: 12px;
  }

  .nav-menu---b {
    padding-right: 2px;
    padding-left: 2px;
  }

  .section---work-a {
    padding-top: 120px;
  }

  .section-top {
    padding-top: 120px;
    padding-bottom: 30px;
  }

  .section-big-list {
    padding: 120px 15px;
  }

  .section-content.padding {
    padding-bottom: 80px;
  }

  .section-portrait---c {
    padding-bottom: 60px;
  }

  .section-splash {
    padding-top: 120px;
    padding-bottom: 0px;
  }

  .light.caps {
    font-size: 16px;
  }

  .deko-text-stripe {
    width: 1800px;
    font-size: 70px;
    line-height: 100px;
  }

  .section-white {
    padding-right: 5%;
    padding-left: 5%;
  }

  .section-white.padding-bottom {
    padding-right: 5%;
    padding-bottom: 220px;
    padding-left: 5%;
  }

  .section-white.less-padding-bottom {
    padding-right: 5%;
    padding-bottom: 0px;
    padding-left: 5%;
  }

  .underline.short {
    position: relative;
    width: 2px;
    height: 100%;
    min-height: 30px;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }

  .wrapper-service {
    overflow: hidden;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .menu.alternative {
    width: 80px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .navigation-wrapper.alternativ {
    height: 70px;
    padding-left: 15px;
    background-color: #d10c0c;
  }

  .hamburger {
    max-width: 80px;
  }

  .nav-text {
    line-height: 22px;
  }

  .image-3 {
    max-width: 180px;
  }

  .h3 {
    font-size: 20px;
  }

  .left-align {
    margin-top: -12px;
  }

  .grid-2 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    grid-auto-flow: row;
    grid-column-gap: 9px;
    grid-row-gap: 6px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .img-absolute {
    top: -75px;
    right: 3px;
    display: none;
    max-width: 90px;
  }

  .inline-heading {
    margin-bottom: 20px;
  }

  .inline-heading.hide-mobile {
    display: none;
  }

  .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .image-4 {
    max-width: 100%;
  }

  .text-block-2 {
    font-size: 16px;
    line-height: 150%;
  }

  .div-block-5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: -14px;
  }

  .hide-mobile {
    display: none;
  }

  .top {
    position: static;
    top: -41px;
    height: 1px;
    margin-top: -200px;
    margin-bottom: 200px;
    padding-right: 0px;
    padding-bottom: 0px;
  }

  .h2 {
    font-size: 20px;
  }

  .margin-top-2 {
    margin-top: 50px;
  }

  .h1 {
    font-size: 28px;
  }

  .img-absolute-mobile {
    top: -75px;
    right: 3px;
    display: block;
    max-width: 90px;
  }

  .block-about {
    max-width: 92%;
  }
}

#w-node-_5e27e67b-9a64-9304-d1d8-d9c9c7a68ef7-fcf6aab8 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@font-face {
  font-family: 'Lokal mont';
  src: url('../fonts/Lokal-Mont-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lokal mont';
  src: url('../fonts/Lokal-Mont-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lokal ubu';
  src: url('../fonts/Lokal-Ubu-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lokal ubu';
  src: url('../fonts/Lokal-Ubu-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lokal ubu';
  src: url('../fonts/Lokal-Ubu-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lokal ubu';
  src: url('../fonts/Lokal-Ubu-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lokal ubu';
  src: url('../fonts/Lokal-Ubu-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}