:root {
  --green: #95f495;
  --blue: #5568f7;
  --white: #fff;
}

@font-face {
  font-family: "geomanistregular";
  src: url("../fonts/geomanist-regular-webfont.woff2") format("woff2"),
    url("../fonts/geomanist-regular-webfont.woff") format("woff"),
    url("../fonts/geomanist-regular-webfont.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "geomanistregular";
  src: url("../fonts/geomanist-bold-webfont.woff2") format("woff2"),
    url("../fonts/geomanist-bold-webfont.woff") format("woff"),
    url("../fonts/geomanist-bold-webfont.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "geomanistregular";
  src: url("../fonts/geomanist-book-webfont.woff2") format("woff2"),
    url("../fonts/geomanist-book-webfont.woff") format("woff"),
    url("../fonts/geomanist-book-webfont.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "geomanistregular";
  src: url("../fonts/geomanist-light-webfont.woff2") format("woff2"),
    url("../fonts/geomanist-light-webfont.woff") format("woff"),
    url("../fonts/geomanist-light-webfont.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
acronym,
address,
big,
em,
img,
small,
strong,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
embed,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a img {
  vertical-align: top;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button,
input,
textarea {
  font-family: "geomanistregular", system-ui, sans-serif;
  font-weight: 500;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
}

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

strong,
.strong {
  font-weight: 500;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.row .col {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.green {
  color: var(--green);
}

.blue {
  color: var(--blue);
}

html,
body {
  width: 100%;
  line-height: 1;
  font-family: "geomanistregular", sans-serif;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 128px;
  padding: 64px 96px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

header #slogan {
  margin-left: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header #contact-link {
  flex-grow: 1;
  text-align: right;
  height: 18px;
}

header #menu-toggle:hover svg path,
header #contact-link:hover svg path {
  fill: #fff;
}

header #brand-and-launch {
  margin: -16px 0 -16px 16px;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

header #brand-and-launch a {
  color: white;
  text-decoration: none;
  padding: 21px 40px;
  background-color: #5568f7;
  display: block;
  font-size: 18px;
  line-height: 1;
}

.header-small header #brand-and-launch {
  display: flex;
  flex-grow: 1;
}

header .menu-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 16px;
}

header .small-logo,
header .small-toggle {
  display: none;
}

body.header-small header {
  left: 0;
  right: 0;
  width: auto;
  padding: 16px 16px 16px 24px;
  height: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.header-small header .small-logo,
body.header-small header .small-toggle {
  display: block;
}

body.header-small header .logo,
body.header-small header .home {
  display: none;
}

body.header-small header a.homepage-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

body.header-small header a.homepage-link img {
  width: 32px;
}

header .menu-toggle.hidden {
  display: none;
}

nav#navigation {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.7s;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  text-align: center;
}

nav#navigation.shown {
  opacity: 1;
  pointer-events: auto;
}

nav#navigation li {
  margin-bottom: 16px;
}

nav#navigation li a {
  color: white;
  text-decoration: none;
  font-size: 33px;
  line-height: 40px;
  font-weight: 500;
}

nav#navigation li a:hover {
  color: var(--green);
}

#navigation .close-button {
  position: absolute;
  right: 32px;
  top: 32px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

#navigation .close-button:hover svg path {
  fill: var(--green);
}

section {
  position: relative;
  width: 100%;
  height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

section.hidden {
  display: none;
}

section .content {
  line-height: 1.5;
}

section .modal {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  top: 0;
  left: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

section .modal.modal-show {
  z-index: 200;
  opacity: 1;
  pointer-events: auto;
}

.modal .modal-close-button {
  position: absolute;
  z-index: 80;
  top: 64px;
  right: 0;
  padding: 0;
  border: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.modal .modal-close-button:before {
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 0;
  left: 0;
}

section#brand-is-the-whole-story {
  min-height: 650px;
}

section#brand-is-the-whole-story .content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  padding: 96px 96px 64px;
  top: 50%;
  transform: translateY(-50%);
}

section#brand-is-the-whole-story .content img {
  max-width: 100%;
}

section#brand-is-the-whole-story .content .brand-award {
  position: absolute;
  right: 40px;
  bottom: -100px;
  width: 200px;
}

section#brand-is-the-whole-story #scroll-down {
  position: absolute;
  height: 50px;
  left: 0;
  bottom: 40px;
  width: 100%;
  text-align: center;
}

section#brand-is-the-whole-story #scroll-down a {
  position: absolute;
  display: inline-block;
  top: 0;
  animation: jump 1s infinite;
  transform: translateX(-50%);
}

@-webkit-keyframes jump {
  0% {
    top: 14px;
  }
  40% {
    top: 0;
  }
  100% {
    top: 14px;
  }
}

@keyframes jump {
  0% {
    top: 14px;
  }
  40% {
    top: 0;
  }
  100% {
    top: 14px;
  }
}

#showreel {
  height: auto;
  padding: 0 250px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#showreel video {
  vertical-align: top;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

section#projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  height: auto;
  padding-top: 60px;
}

section#projects .project-layout {
  width: calc(50% - 60px);
  height: calc(50vw * 0.886);
  position: relative;
  cursor: pointer;
  margin: 20px 40px;
  padding: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

section#projects .project-layout:nth-child(even) {
  margin-left: 20px;
}

section#projects .project-layout:nth-child(odd) {
  margin-right: 20px;
}

section#projects .project-layout::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  background-size: cover;
  transform-origin: center;
  transition: transform 0.4s ease-in-out;
}

section#projects .project-layout:hover::after {
  transform: scale(1.05);
}

.project-layout .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 10;
  -webkit-transition: 1s opacity;
  -o-transition: 1s opacity;
  transition: 1s opacity;
  padding: 0 80px 72px 120px;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

.project-layout .content-text {
  font-size: 26px;
  text-align: left;
}

.project-layout .content-text span {
  font-weight: 300;
}

.project-layout:hover .content {
  opacity: 1;
}

.project-layout .content h4 {
  display: block;
  margin-bottom: 0;
  font-weight: 700;
}

.project-layout .gallery img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 0.7s;
  -o-transition: opacity 0.7s;
  transition: opacity 0.7s;
}

.project-layout .gallery img.current {
  opacity: 1;
}

#true-essence {
  padding: 150px 0 110px;
  height: auto;
}

#true-essence .wrapper {
  width: 1074px;
  margin: 0 auto;
  max-width: 95%;
}

#true-essence .wrapper .title {
  font-weight: 500;
  font-size: 56px;
  line-height: 62px;
  color: #152623;
  margin-bottom: 72px;
}

#true-essence .row .col {
  width: 33.3%;
}

#true-essence .image {
  height: 130px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#true-essence h5 {
  font-size: 32px;
  color: var(--blue);
  margin-bottom: 15px;
  line-height: 1;
}

#true-essence .content {
  font-size: 32px;
  line-height: 37px;
}

section#our-story {
  padding-top: 120px;
  height: auto;
}

#our-story .wrapper {
  width: 833px;
  margin: 0 auto;
  color: #191919;
}

#our-story h3 {
  font-size: 89px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 40px;
}

#our-story p {
  font-size: 40px;
  margin-bottom: 1em;
  line-height: 44px;
}

#our-story .wrapper img {
  width: 100%;
  max-width: 100%;
}

#draw-something {
  position: relative;
  border-right-width: 0;
  height: 374px;
}

#draw-something p {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  font-size: 24px;
  line-height: 28px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#draw-something canvas {
  background: transparent;
  border: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: crosshair;
}

#colors-picker {
  z-index: 120;
  display: inline-block;
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
}

#colors-picker ul {
  display: block;
  text-align: center;
  margin: 1em 0 0;
}

#colors-picker li {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 22px;
  cursor: pointer;
  -webkit-transition: 0.3s transform;
  -o-transition: 0.3s transform;
  transition: 0.3s transform;
}

#colors-picker li.selected {
  -webkit-transform: scale(1.7);
  -ms-transform: scale(1.7);
  transform: scale(1.7);
}

#colors-picker h4 {
  font-size: 11px;
  text-align: center;
  padding-top: 24px;
}

section#contact-us {
  padding-top: 64px;
  padding-bottom: 64px;
  min-height: 850px;
}

section#contact-us h3 {
  margin-bottom: 35px;
  font-size: 89px;
}

section#contact-us > .content {
  width: 833px;
  margin: 0 auto;
}

#contact-us .content .content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#contact-us .content-inner #draw-something {
  width: 49%;
}

#contact-us form {
  width: 51%;
}

#contact-us .content-inner img {
  max-width: 100%;
}

#contact-us form fieldset {
  width: 100%;
}

#contact-form-homepage .form-actions {
  margin-top: 1.5em;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#contact-form-homepage .form-actions button {
  font-size: 40px;
  border: none;
  padding: 0;
  cursor: pointer;
}

#contact-form-homepage .form-message {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 12px;
  line-height: 44px;
  vertical-align: middle;
}

#contact-us input,
#contact-us textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  margin: 0;
  vertical-align: top;
  padding: 31px 32px 28px;
  font-size: 24px;
}

#contact-us textarea {
  height: 192px;
  resize: none;
}

#contact-form-homepage .grecaptcha-badge {
  display: none;
}

#thank-you.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#thank-you img {
  max-width: 100%;
}

#thank-you .content {
  width: 100%;
  padding-top: 96px;
  text-align: center;
}

#thank-you .content .image {
  max-width: 80%;
  margin: 0 auto;
}

#thank-you .content .inner {
  width: 60%;
  height: auto;
}

/** Mobile **/
body .mobile-block,
body .mobile-inline-block,
body .mobile-flex {
  display: none !important;
}

.navigation span {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  vertical-align: top;
}

.navigation span:before {
  content: "";
  width: 17px;
  height: 30px;
  vertical-align: top;
  display: inline-block;
}

.navigation span.navigation-prev:before {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  padding: 72px 96px 64px;
}

footer h4 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 500;
}

footer h4 span {
  display: block;
}

footer .footer-content {
  margin-right: 16px;
}

footer .footer-content p {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.63px;
  margin-bottom: 4px;
}

footer .footer-mobile-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .footer-icon-link-map {
  margin-left: 40px;
}

footer .footer-icon-link ~ .footer-icon-link {
  margin-left: 16px;
  margin-right: 16px;
}

footer p.copyright {
  font-size: 17px;
}

footer p .light {
  font-weight: 300;
}

footer img {
  vertical-align: top;
}

footer a {
  text-decoration: none;
  display: block;
}

.appear {
  position: relative;
  opacity: 0;
  transform: translate(0, 50px) scale(0.98);
  transition: opacity 1s, transform 1s;
}

.appear.appeared {
  opacity: 1;
  transform: none;
}
