/*
Theme Name: MW2
Theme URI: https://mindworkslab.org
Description: Mindworks website
Author: Komuhn
Author URI: www.komuhn.co
Version: 2.0
*/
@import "css/normalize.css";
:root {
  --spacing-x: 1.5rem;
  --spacing-y: 3rem;
  --spacing-half: 3.75rem;
  --main-header-height: 6rem;
  --main-width: 60rem;
  --main-width-pad: calc(var(--main-width) + (2 * var(--spacing-x)));
  --color-black: #222222;
  --color-white: #ffffff;
  --color-grey-light: #EEEEEE;
  --rgb-grey-light: 238, 238, 238;
  --color-grey: #DDDDDD;
  --rgb-grey: 212, 221, 221;
  --color-grey-dark: #CCCCCC;
  --color-grey-darker: #666666;
  --color-yellow-light: #FEF288;
  --color-yellow: #FAFF00;
  --color-blue-light: #DBEFEE;
  --color-coral-dark: #FF7557;
  --color-coral: #FF7557;
  --color-coral-light: #FFA693;
  --font-size-title: 4rem;
  --font-size-biggest: 3rem;
  --font-size-bigger: 2.3rem;
  --font-size-big: 1.5rem;
  --font-size-biggish: 1.3rem;
  --font-size-p: 1.1rem;
  --font-size-small: 1rem;
  --font-size-smaller: 0.9rem;
  --font-size-smallest: 0.8rem;
  --font-size-h1: 3rem;
  --font-size-h2: 3rem;
  --font-size-h3: 2.3rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.2rem;
}
@media only screen and (min-width: 1201px) {
  :root {
    --spacing-x: 7.5rem;
    --spacing-y: 3.75rem;
    --main-header-height: 10rem;
    --font-size-title: 4rem;
    --font-size-biggest: 3rem;
    --font-size-bigger: 2rem;
    --font-size-h1: 3rem;
    --font-size-h2: 2rem;
    --font-size-h3: 2rem;
    --font-size-h4: 2rem;
  }
}
/* MIXINS */
/* ICOMOON */
@font-face {
  font-family: 'icomoon';
  src: url('fonts/icomoon/icomoon.eot?vlyzdy');
  src: url('fonts/icomoon/icomoon.eot?vlyzdy#iefix') format('embedded-opentype'), url('fonts/icomoon/icomoon.ttf?vlyzdy') format('truetype'), url('fonts/icomoon/icomoon.woff?vlyzdy') format('woff'), url('fonts/icomoon/icomoon.svg?vlyzdy#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-close:before {
  content: "\e900";
}
.icon-download:before {
  content: "\e901";
}
.icon-twitter:before {
  content: "\e908";
}
.icon-email:before {
  content: "\e90b";
}
.icon-linkedin:before {
  content: "\e90c";
}
.icon-clock:before {
  content: "\e902";
}
.icon-calendar:before {
  content: "\e903";
}
.icon-chevron-bottom:before {
  content: "\e904";
}
.icon-chevron-left:before {
  content: "\e905";
}
.icon-chevron-right:before {
  content: "\e906";
}
.icon-chevron-top:before {
  content: "\e907";
}
.icon-curved-arrow:before {
  content: "\e909";
}
.icon-mail:before {
  content: "\e90a";
}
.icon-index:before {
  content: "\e90d";
}
.icon-zoom:before {
  content: "\e90e";
}
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}
/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: var(--color-black);
  padding: 0.2em 0;
}
/* ==========================================================================
Author's custom styles
========================================================================== */
/* HELPERS */
.no-margin {
  margin: 0!important;
}
.aligncenter {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.overflow-hidden {
  overflow-y: hidden;
}
/* BODY AND MAIN*/
body {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--color-black);
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
main {
  position: relative;
}
/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
h1 {
  font-weight: 500;
  line-height: 1.1;
}
h1 b,
h1 strong {
  font-weight: 700;
}
h2,
h3,
h4,
h5 {
  font-weight: 400;
  line-height: 1.3;
}
h2 b,
h3 b,
h4 b,
h5 b,
h2 strong,
h3 strong,
h4 strong,
h5 strong {
  font-weight: 700;
}
sup {
  padding: 1rem;
  margin: -1rem;
  cursor: pointer;
  color: var(--color-coral);
}
sup:hover {
  text-decoration: underline;
}
.title {
  font-size: var(--font-size-title);
  font-weight: 600;
  line-height: 1;
}
.sub-title {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 300;
}
span.sub-title {
  display: block;
}
.text-biggest {
  font-size: var(--font-size-bigger);
  font-weight: 500;
}
.text-small {
  font-size: var(--font-size-small) !important;
  font-weight: 300 !important;
}
hgroup.reverse {
  display: flex;
  flex-flow: column-reverse nowrap;
}
p {
  font-size: var(--font-size-p);
  line-height: 1.5;
}
p.footnote {
  color: var(--color-grey-darker);
  font-size: 1rem;
}
p a {
  color: var(--color-black);
}
mark {
  background-color: #FEF288;
  font-weight: 500;
}
main > h2 {
  font-size: var(--font-size-bigger);
  padding-bottom: 0.5em;
}
/* BUTTONS */
button,
.button {
  display: inline-block;
  background-color: transparent;
  border: 0.1rem solid #222222;
  border-radius: 0.2em;
  font-size: var(--font-size-small);
  font-weight: 500;
  color: #222222;
  line-height: 3rem;
  text-align: center;
  text-decoration: none;
  padding: 0 1em;
  transition: 0.3s;
  cursor: pointer;
}
button.small,
.button.small {
  line-height: 2em;
  padding: 0 0.5em;
}
button.close,
.button.close {
  background: transparent url("img/bkg-button-close.svg") no-repeat;
  background-position: center left;
  background-size: 1em;
}
button.open,
.button.open {
  background: transparent url("img/icon-open-black.svg") no-repeat;
  background-position: 1em center;
  background-size: 1em;
}
div.buttons {
  display: flex;
  flex-flow: row nowrap;
  background-color: inherit;
  border-radius: 0.2em;
}
div.buttons button,
div.buttons .button {
  flex: 1 1 auto;
}
div.buttons button:first-child,
div.buttons .button:first-child {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
div.buttons button:last-child,
div.buttons .button:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #222222;
  color: #ffffff;
}
/* IMAGES */
figure {
  padding: 0;
  margin: 0;
}
/* FORMS */
form input,
form textarea {
  font-weight: 500;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  color: #222222;
  border: 1px solid #222222;
  border-radius: 0.2em;
  background-color: transparent;
  padding: 1em;
  margin: 0.5rem 0;
  box-sizing: border-box;
  width: 100%;
  -webkit-appearance: none;
}
form input::placeholder,
form textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #222222;
  opacity: 1;
  /* Firefox */
}
form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #222222;
}
form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #222222;
}
form input[type="submit"] {
  font-weight: 600;
  color: #ffffff;
  background-color: #222222;
  margin-top: 1em;
}
form textarea {
  line-height: 1.5;
}
section.comments {
  background-color: #EEEEEE;
  padding: var(--spacing-x);
  margin-bottom: var(--spacing-y);
}
section.comments header {
  margin-bottom: 1rem;
}
section.comments header h3 {
  font-size: var(--font-size-big);
  font-weight: 500;
  padding: 1.5em 0 0.5em;
  background: transparent url("img/icon-comment.svg") left top no-repeat;
  background-size: 1.5em;
}
section.comments header p {
  font-size: var(--font-size-small);
}
/* GRID */
.two-columns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}
.column {
  flex-basis: 100%;
}
/* HEADER */
header.main-header {
  height: var(--main-header-height);
  background-color: #ffffff;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
header.main-header .logo {
  display: block;
  background-color: transparent;
  background-image: url("img/logo-black.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 190px;
  height: 44px;
  margin: 0 0.5em 0 var(--spacing-x);
}
header.main-header .logo span {
  display: none;
}
header.main-header button.nav {
  margin-right: var(--spacing-x);
  border: 0;
  height: 24px;
  width: 24px;
  padding: 0;
  background-color: transparent;
  background-image: url("img/icon-burger-black.svg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}
header.main-header button.nav > span {
  display: none;
}
header.main-header button.nav.close {
  background-image: url("img/icon-cross-white.svg");
  position: absolute;
  top: var(--spacing-y);
  right: 0;
  margin-top: -0.5rem;
}
header.main-header nav.main-nav {
  box-sizing: border-box;
  padding: var(--spacing-y) var(--spacing-x);
  position: fixed;
  top: 0;
  right: -100vw;
  bottom: 0;
  left: 100vw;
  z-index: 100000;
  overflow-y: scroll;
  overscroll-behavior: contain;
  background-color: #222222;
  color: #ffffff;
  transition: transform 0.5s ease;
  width: 100vw;
  margin-right: 0;
  margin-left: auto;
}
@media only screen and (min-width: 1201px) {
  header.main-header nav.main-nav {
    width: 50vw;
  }
}
header.main-header nav.main-nav a.logo {
  margin: -5rem 0 var(--spacing-y) 0;
  display: inline-block;
}
header.main-header nav.main-nav a.logo > img.mobile {
  display: inline;
}
@media only screen and (min-width: 1201px) {
  header.main-header nav.main-nav a.logo > img.mobile {
    display: none;
  }
}
header.main-header nav.main-nav a.logo > img.desktop {
  width: 34px;
  height: 32px;
  display: none;
}
@media only screen and (min-width: 1201px) {
  header.main-header nav.main-nav a.logo > img.desktop {
    display: block;
  }
}
header.main-header nav.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 2rem;
}
header.main-header nav.main-nav ul > li {
  font-size: var(--font-size-biggish);
  margin-bottom: 1em;
}
header.main-header nav.main-nav ul > li a {
  color: #ffffff;
  text-decoration: none;
}
header.main-header nav.main-nav ul > li ul {
  margin: 1em 0 0 1em;
}
header.main-header nav.main-nav ul > li ul li {
  font-size: var(--font-size-p);
}
header.main-header nav.main-nav.opened {
  transform: translateX(-100vw);
}
header.main-header.compact {
  height: calc(var(--main-header-height) / 2);
  background-color: #ffffff;
}
header.main-header.compact .logo {
  background-image: url("img/logo-icon-black.svg");
  width: 25.5px;
  height: 24px;
}
header.main-header.compact button.nav {
  height: 20px;
  width: 20px;
}
div.so-me {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 1em;
}
div.so-me a.icon {
  position: relative;
  font-size: var(--font-size-bigger);
  color: var(--color-white);
  text-decoration: none;
  margin: 0 0.5rem;
}
div.so-me a.icon:first-child {
  margin-left: 0;
}
div.so-me a.privacy {
  color: var(--color-white);
  margin-left: auto;
}
/* SIDEBAR */
/* BLOCKS */
.block .dark {
  background-color: var(--color-black);
  color: var(--color-white);
}
/* BLOCKS SIDENOTE */
aside.slide {
  z-index: 10000;
  position: fixed;
  left: 100vw;
  right: -100vw;
  top: 0;
  bottom: 0;
  background-color: var(--color-black);
  overflow-x: hidden;
  overflow-y: scroll;
  transition: transform 0.5s ease;
  width: 100%;
}
aside.slide.opened {
  transform: translateX(-100vw);
}
aside.slide figure {
  width: 100%;
}
aside.slide figure img {
  width: inherit;
}
aside.slide div.buttons {
  position: inherit;
  right: inherit;
  top: inherit;
  transition: inherit;
  background-color: white;
}
aside.slide.opened > div.buttons {
  transform: inherit;
}
@media only screen and (min-width: 1201px) {
  aside.slide {
    left: auto;
    max-width: var(--main-width-pad);
  }
}
/* HOME */
body.home header.main-header {
  position: absolute;
  z-index: 9999;
  background-color: transparent;
  width: 100%;
}
body.home header.main-header > .logo {
  visibility: hidden;
}
body.home main section.about {
  padding: 0 var(--spacing-x) var(--spacing-y) var(--spacing-x);
}
body.home main section.about header {
  background: transparent url("./img/cover-mind.jpg") no-repeat;
  background-position: center right;
  background-size: 200%;
  margin-left: calc(-1 * var(--spacing-x));
  margin-right: calc(-1 * var(--spacing-x));
  height: 40rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}
body.home main section.about header div.container {
  display: flex;
  flex-flow: column nowrap;
  padding: var(--spacing-y) var(--spacing-x);
}
body.home main section.about header h1.logo {
  margin-bottom: 2rem;
}
body.home main section.about header h1.logo span {
  display: none;
}
body.home main section.about header h2 {
  margin-bottom: 1em;
  font-weight: 500;
  color: #ffffff;
}
body.home main section.about header h2 > span {
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 0.1em;
}
body.home main section.about header h3 {
  padding-bottom: 1em;
  font-size: var(--font-size-p);
}
body.home main section.engage {
  padding: 0 var(--spacing-x) var(--spacing-y) var(--spacing-x);
}
body.home main section.engage > header {
  padding-bottom: var(--spacing-y);
}
body.home main section.engage > header h2 {
  font-weight: bold;
  padding-bottom: 1em;
}
body.home main section.engage > header p {
  font-size: var(--font-size-p);
}
body.home main section.engage article {
  background-color: #222222;
  color: #ffffff;
  padding: var(--spacing-y) var(--spacing-x);
  border-radius: 0.2em;
  margin-bottom: 2rem;
}
body.home main section.engage article header {
  margin-bottom: var(--spacing-x);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
body.home main section.engage article header figure {
  margin-right: 1rem;
}
body.home main section.engage article header figure img {
  width: 5rem;
  height: auto;
}
body.home main section.engage article header h3 {
  font-size: var(--font-size-big);
  color: #FEF288;
}
body.home main section.engage article p {
  display: block;
  clear: both;
}
body.home main section.engage article:nth-of-type(2),
body.home main section.engage article:nth-of-type(3) {
  background-color: #FEF288;
}
body.home main section.engage article:nth-of-type(2) header h3,
body.home main section.engage article:nth-of-type(3) header h3 {
  color: #222222;
  font-weight: 600;
}
body.home main section.engage article:nth-of-type(2) p,
body.home main section.engage article:nth-of-type(3) p {
  color: #222222;
  font-weight: 500;
}
body.home main section.engage a.button {
  background-color: #FEF288;
  display: block;
  margin-top: var(--spacing-y);
}
body.home main section.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  gap: 1rem;
  padding: var(--spacing-y) var(--spacing-x);
}
body.home main section.team > header {
  grid-column: 1 / -1;
  padding-bottom: 1rem;
}
body.home main section.team > header h2 {
  font-weight: bold;
  padding-bottom: 1em;
}
body.home main section.team article {
  display: grid;
  gap: 1rem;
  grid-template: "image header" 1fr "button button";
  background-color: #D6E1EC;
  padding: var(--spacing-x);
  border-radius: 0.2em;
  overflow: hidden;
}
body.home main section.team article header {
  grid-area: header;
}
body.home main section.team article header h3 {
  font-weight: bold;
}
body.home main section.team article header p {
  font-size: var(--font-size-small);
}
body.home main section.team article figure {
  grid-area: image;
  background: #CCCCCC url("./img/icon-user-black.svg") no-repeat;
  background-size: contain;
  color: transparent;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  overflow: hidden;
}
body.home main section.team article figure img {
  width: inherit;
  height: inherit;
}
body.home main section.team article a.button {
  grid-area: button;
  display: block;
}
section.latest-work {
  position: relative;
  overflow: hidden;
  margin: var(--spacing-x) var(--spacing-x) var(--spacing-y) var(--spacing-x);
  border-radius: 0.2em;
  display: flex;
  flex-flow: column nowrap;
}
section.latest-work > *,
section.latest-work h2 {
  position: relative;
  z-index: 99;
}
section.latest-work header {
  background-color: var(--color-coral);
  padding: 2rem var(--spacing-x);
}
section.latest-work header h1 {
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 300;
}
section.latest-work div.row.column {
  background-color: var(--color-black);
  padding: var(--spacing-y) var(--spacing-x);
}
section.latest-work h2 {
  font-size: var(--font-size-biggest);
  font-weight: 500;
  line-height: 1em;
  color: var(--color-coral);
}
section.latest-work figure {
  position: absolute;
  z-index: 9;
  left: 0;
  top: 0;
  overflow: hidden;
  height: 100%;
}
section.latest-work figure img {
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.latest-work h3 {
  font-size: var(--font-size-biggish);
  color: var(--color-coral);
  margin-bottom: 2rem;
}
section.latest-work a.button {
  display: block;
  background-color: var(--color-coral);
}
/* FOOTER */
footer.main-footer {
  background-color: var(--color-black);
  padding: var(--spacing-y) var(--spacing-x);
}
footer.main-footer div.identity {
  color: var(--color-white);
  margin-bottom: var(--spacing-y);
}
footer.main-footer div.identity h1.logo {
  margin-bottom: var(--spacing-y);
}
footer.main-footer div.identity h1.logo a.logo span {
  display: none;
}
footer.main-footer div.identity h2 {
  color: var(--color-yellow-light);
  font-size: var(--font-size-big);
  font-weight: 500;
  margin-bottom: 1em;
}
footer.main-footer div.identity h3 {
  font-size: var(--font-size-p);
  font-weight: 300;
}
footer.main-footer div.form {
  background-color: var(--color-yellow-light);
  padding: var(--spacing-y) var(--spacing-x);
  margin-bottom: var(--spacing-y);
}
footer.main-footer div.form:before {
  content: "\e90a";
  font-family: "icomoon";
  font-size: var(--font-size-bigger);
}
footer.main-footer div.form h4 {
  font-size: var(--font-size-big);
  font-weight: 500;
  margin-bottom: 1em;
}
footer.main-footer div.form > p {
  margin-bottom: 1em;
}
footer.main-footer div.form form {
  margin-bottom: var(--spacing-y);
}
footer.main-footer div.form p.email-link {
  display: block;
  position: relative;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: var(--font-size-p);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
footer.main-footer div.form p.email-link:before {
  font-family: "icomoon";
  font-size: var(--font-size-bigger);
  margin-right: 0.5rem;
}
footer.main-footer div.form p.email-link a {
  text-decoration: none;
  color: var(--color-black);
}
footer.main-footer div.form p.email-link a strong {
  display: block;
}
footer.main-footer div.so-me a.privacy {
  color: var(--color-white);
  margin-left: auto;
}
@media only screen and (min-width: 1201px) {
  /* BODY AND MAIN*/
  body.home main {
    max-width: 100vw;
  }
  main {
    background-color: var(--color-white);
  }
  .max-width {
    max-width: var(--main-width);
  }
  .max-width-pad {
    max-width: var(--main-width-pad);
  }
  .margin-auto {
    margin: 0 auto;
  }
  /* TYPOGRAPHY */
  .text-biggest {
    font-size: var(--font-size-biggest);
  }
  main > h2 {
    font-size: var(--font-size-biggest);
  }
  /* BUTTONS */
  button,
  .button {
    font-weight: bold;
    transition: all 0.3s;
  }
  button.hover:hover,
  .button.hover:hover {
    background-color: #222222;
    color: #ffffff;
  }
  /* FORMS */
  form {
    display: flex;
    flex-flow: column nowrap;
  }
  form input[type="submit"] {
    width: 50%;
  }
  section.comments {
    padding: var(--spacing-y);
  }
  /* HEADER */
  header.main-header {
    width: var(--main-width-pad);
    margin: 0 auto;
  }
  header.main-header .logo {
    width: 240px;
    height: 55px;
  }
  header.main-header button.nav.close {
    margin-top: 0.5rem;
  }
  header.main-header nav.main-nav a.logo {
    margin-top: -0.5rem;
  }
  header.main-header nav.main-nav ul > li a:hover {
    color: #FEF288;
  }
  header.main-header.compact .logo {
    width: 34px;
    height: 32px;
  }
  /* HOME */
  body.home main {
    width: var(--main-width-pad);
    margin: 0 auto;
  }
  body.home main section.about header {
    background-size: cover;
    background-position: bottom;
    margin-bottom: 1em;
    margin-left: calc(-1 * calc((100vw - var(--main-width)) / 2));
    margin-right: calc(-1 * calc((100vw - var(--main-width)) / 2));
  }
  body.home main section.about header div.container {
    flex-flow: row wrap;
    align-items: center;
    max-width: var(--main-width);
    margin: 0 auto;
  }
  body.home main section.about header h1.logo {
    flex: 0 0 100%;
  }
  body.home main section.about header h1.logo img {
    width: 15rem;
  }
  body.home main section.about header h2 {
    flex: 0 0 50%;
    font-size: var(--font-size-bigger);
  }
  body.home main section.about header h3 {
    flex: 0 0 50%;
    font-size: var(--font-size-biggish);
    font-weight: 500;
    line-height: 1.5em;
  }
  body.home main section.engage {
    display: flex;
    flex-flow: row wrap;
  }
  body.home main section.engage header p {
    font-size: var(--font-size-biggish);
  }
  body.home main section.engage article {
    flex: 0 0 calc(50% - 8rem);
    padding: 4rem;
    margin: 0;
    border-radius: 0;
  }
  body.home main section.engage article header {
    margin-bottom: 2rem;
  }
  body.home main section.engage article header figure img {
    width: 7rem;
  }
  body.home main section.engage article header h3 {
    font-weight: 500;
  }
  body.home main section.engage article:nth-of-type(1) {
    border-top-left-radius: 0.2em;
  }
  body.home main section.engage article:nth-of-type(2) {
    border-top-right-radius: 0.2em;
  }
  body.home main section.engage article:nth-of-type(3) {
    border-bottom-left-radius: 0.2em;
  }
  body.home main section.engage article:nth-of-type(4) {
    border-bottom-right-radius: 0.2em;
  }
  body.home main section.engage a.button {
    width: 50%;
    padding-left: 0;
    padding-right: 0;
    margin: var(--spacing-y) auto 0 auto;
  }
  body.home main section.engage a.button:hover {
    background-color: #222222;
    color: #FEF288;
  }
  body.home main section.team {
    display: grid;
  }
  body.home main section.team header h2 {
    font-size: var(--font-size-bigger);
  }
  body.home main section.team header p {
    font-size: var(--font-size-biggish);
  }
  body.home main section.team article {
    grid-template: "image header" 1fr "image button";
    padding: 2rem;
    cursor: pointer;
  }
  body.home main section.team article header {
    grid-area: header;
  }
  body.home main section.team article header h3 {
    font-size: var(--font-size-biggish);
  }
  body.home main section.team article header p {
    font-size: var(--font-size-p);
  }
  body.home main section.team article figure {
    grid-area: image;
    width: 8rem;
    height: 8rem;
  }
  body.home main section.team article a.button {
    grid-area: button;
  }
  body.home main section.team article:hover a.button {
    background-color: #222222;
    color: #ffffff;
  }
  section.latest-work {
    margin: 0 var(--spacing-x) var(--spacing-x) var(--spacing-x);
    height: 35rem;
    max-width: calc(var(--main-width) + var(--spacing-x));
    flex-flow: row nowrap;
  }
  section.latest-work header {
    position: absolute;
    z-index: 999;
    right: 0;
    top: 0;
    left: 0;
    padding: 2rem var(--spacing-y);
  }
  section.latest-work div.row.column {
    padding: var(--spacing-y) var(--spacing-y);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
  }
  section.latest-work div.row.column:first-of-type {
    order: 0;
    flex: 1 1 50%;
  }
  section.latest-work div.row.column:last-of-type {
    order: 2;
    flex: 1 1 50%;
  }
  section.latest-work h2 {
    margin-top: 5rem;
    font-size: var(--font-size-title);
  }
  section.latest-work h3 {
    margin: 5rem 0;
    font-size: var(--font-size-bigger);
  }
  section.latest-work a.button:hover {
    background-color: #ffffff;
    color: #FF7557;
  }
  /* FOOTER */
  footer.main-footer {
    max-width: var(--main-width);
    padding: var(--spacing-x) var(--spacing-x);
    padding-left: calc((100vw - var(--main-width)) / 2);
    padding-right: calc((100vw - var(--main-width)) / 2);
  }
  footer.main-footer div.identity h1.logo img {
    width: 15rem;
  }
  footer.main-footer div.identity h2 {
    font-size: var(--font-size-biggest);
  }
  footer.main-footer div.identity h3 {
    font-size: var(--font-size-big);
    font-weight: 300;
    line-height: 1.5;
  }
  footer.main-footer div.form {
    padding: var(--spacing-y);
  }
  footer.main-footer div.form:before {
    font-size: var(--font-size-biggest);
  }
  footer.main-footer div.form h4 {
    font-size: var(--font-size-bigger);
  }
  footer.main-footer div.form p.email-link:before {
    font-size: var(--font-size-biggest);
  }
  footer.main-footer div.so-me a.icon {
    font-size: var(--font-size-biggest);
  }
}
/*# sourceMappingURL=style.css.map */

.wp-block-button__link{color:#fff!important; padding:10px!important;}
.page-scientific-insights .wp-block-button.white a, .page-scientific-insights .button.white a {
    background-color: #ffffff; color:#32373c!important;
}

