* {
  margin: 0;
  padding: 0;
  font: caption;
  box-sizing: border-box;
  text-decoration: none;
}

ul {
  padding: 0;
}

ul li {
  list-style: none;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  overflow-x: hidden;
  background-color: #F1EDE7;
}

header {
  width: 100%;
}

.header-black {
  background-color: #111111;
}

.header-white {
  background-color: #F1EDE7;
}

header > nav {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
}

header > nav > a {
  padding: 20px;
  display: inline-block;
  width: 250px;
  text-align: center;
}

header > nav > a > .png {
  padding: 5px 0;
  width: 160px;
}

header > nav > ul {
  display: flex;
  flex-direction: row;
  column-gap: 50px;
  align-items: center;
}

.header-white > nav > ul > li > a {
  color: black;
}

.header-black > nav > ul > li > a {
  color: white;
}

header > nav > ul > li > a {
  font-weight: 600;
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 35px;
  padding: 0 20px;
}

.intro-container {
  width: 100%;
  background-image: url("/static/images/stain.svg");
  background-repeat: no-repeat;
  background-size: auto 1150px;
  background-position: 300px 100px;
}

.intro {
  width: 100%;
  max-width: 1200px;
  padding: 100px 200px 0 20px;
  margin: 0 auto;
}

.intro > h1 {
  font-size: 67px;
}

.intro > h2 {
  margin: 360px 0 30px 0;
  font-size: 57px;
  line-height: 1.3;
}

.intro > h3 {
  font-size: 22px;
  margin: 0 0 20px 0;
  line-height: 1.5;
  color: black;
}

.learn-more {
  font-size: 22px;
  font-weight: 500;
  color: black;
  display: none;
}

.intro > .core-activities-title {
  margin: 100px 0 0 0;
  font-size: 22px;
  text-decoration: underline;
}

.intro > .core-activities {
  margin: 20px 0 0 0;
}

.intro > .core-activities > li {
  margin: 20px 0 0 0;
  font-size: 18px;
}

.intro > .core-activities > li::before {
  content: '';
  display: block;
  height: 20px;
  width: 20px;
  background-image: url("/static/images/checkmark.svg");
  background-repeat: no-repeat;
  padding: 0px 8px 2px 0;
  float: left;
}

.vs {
  width: 100%;
  max-width: 1200px;
}

.vs > h2 {
  margin: 250px 0 30px 0;
  font-size: 57px;
  line-height: 1.3;
}

.vs > h2 > .highlight {
  background: linear-gradient(90deg, rgba(243,197,228,1) 0%, rgba(240,160,100,1) 100%);
  font-size: inherit;
  padding: 0 10px;
  margin: 0 10px 0 0;
  border-radius: 10px;
  display: inline-block;
}

.vs > h3 {
  font-size: 22px;
  margin: 0 0 20px 0;
  line-height: 1.5;
  color: black;
  width: 50%;
}

.filling {
  margin: 250px 0 0 0;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  column-gap: 5%;
}

.filling > .left {
  width: 45%;
  align-self: center;
}

.filling > img {
  width: 100%;
  margin: 50px 100px 105px 0;
}

.filling > .right {
  width: 50%;
}

.filling > .right > h2 {
  margin: 0 0 30px 0;
  font-size: 57px;
  width: 100%;
}

.filling > .right > h3 {
  font-size: 22px;
  margin: 0 0 20px 0;
  line-height: 1.5;
  color: black;
}

.filling > .right > h3 > span {
  font-size: inherit;
  font-weight: bold;
}

.sharing {
  width: 100%;
  max-width: 1200px;
  background-image: url("/static/images/stain.svg");
  background-repeat: no-repeat;
  background-size: auto 800px;
  background-position: right 50px;
  padding: 0 20px 100px 20px;
}

.sharing > h2 {
  margin: 250px 0 30px 0;
  font-size: 57px;
  line-height: 1.3;
}

.sharing > h3 {
  width: 50%;
  font-size: 22px;
  margin: 0 0 20px 0;
  line-height: 1.5;
  color: black;
}

.black {
  width: 100%;
  background-color: #111111;
  background-image: url("/static/images/stain.svg");
  background-repeat: no-repeat;
  background-size: auto 1200px;
  background-position: 500px 20px;
}

.black-no-background {
  width: 100%;
  background-color: #111111;
}

.black-footer-container {
  width: 100%;
  background-color: #111111;
  background-image: url("/static/images/stain.svg");
  background-repeat: no-repeat;
  background-size: 900px auto;
  background-position: -300px 0;
  padding: 100px 0 0 0;
}

.white-footer-container {
  width: 100%;
  background-color: #F1EDE7;
  padding: 100px 0 0 0;
}

.horizontal-line {
  border-bottom: 1px solid #333333;
  width: 100%;
}

.areas {
  padding: 150px 20px 80px 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  column-gap: 80px;
}

.areas > .texts {
  width: 550px;
  display: flex;
  flex-direction: column;
}

.areas > .texts > h2 {
  font-size: 57px;
  color: white;
  margin: 10px 0 50px 0;
}

.areas > .texts > h3 {
  font-size: 22px;
  margin: 0 0 20px 0;
  line-height: 1.5;
  color: white;
}

.areas > .boxes {
  width: 570px;
  height: 530px;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  row-gap: 35px;
  column-gap: 70px;
  flex-wrap: wrap;
}

.areas > .boxes > div {
  background-color: white;
  padding: 5px 15px 32px 15px;
  border-radius: 10px;
  position: relative;
  width: 135px;
  height: 135px;
}

.areas > .boxes > div::before {
  content: '';
  display: block;
  border-radius: 10px;
  z-index: 1000;
  border: 4px solid;
  width: 130px;
  height: 130px;
  position: absolute;
  top: -11px;
  left: -12px;
}

.areas > .boxes > div > img {
  width: 85px;
  height: 85px;
}

.areas > .boxes > div > p {
  position: absolute;
  bottom: 28px;
  left: 18px;
  font-size: 14px;
}

.areas > .boxes > .health-and-wellness {
  margin-top: 80px;
}

.areas > .boxes > .health-and-wellness > p,
.areas > .boxes > .consumer-crypto > p,
.areas > .boxes > .creator-economy > p {
  bottom: 17px;
}

.work-fast {
  margin: 150px 0 30px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  column-gap: 5%;
  flex-direction: row;
}

.work-fast > .left {
  width: 50%;
}

.work-fast > .left > h2 {
  font-size: 57px;
  color: white;
  line-height: 1.3;
}

.work-fast > .left > h3 {
  width: 100%;
  font-size: 22px;
  margin: 0 0 20px 0;
  line-height: 1.5;
  color: white;
}

.work-fast > .right {
  width: 45%;
  align-self: center;
}

.work-fast > .right > img {
  width: 100%;
}



.evaluation {
  padding: 100px 20px 80px 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  color: white;
}

.evaluation > h2 {
  margin: 0 0 60px 0;
  font-size: 57px;
  line-height: 1.3;
  text-align: center;
}

.evaluation > ul {
  display: flex;
  flex-direction: row;
  column-gap: 23px;
  background: url("/static/images/evaluation.svg");
  background-repeat: no-repeat;
  background-position: right 77px;
}

.evaluation > ul > li {
  width: 277px;
}

.evaluation > ul > li > p {
  font-size: 40px;
  margin: 0 0 150px 0;
}

.evaluation > ul > li > span {
  font-size: 18px;
  line-height: 2;
}

.evaluation > h3 {
  font-size: 40px;
  line-height: 1.5;
  margin: 250px 0 0 0;
}

.evaluation > h3 > span{
  font-size: inherit;
  text-decoration: underline;
}

footer {
  padding: 100px 0 80px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

footer > nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

footer > nav > a {
  width: 220px;
}

footer > nav > ul {
  width: 45%;
  display: flex;
  flex-direction: column;
  margin: 0 0 0 100px;
  row-gap: 20px;
}

footer > nav > ul > li > a{
  text-decoration: none;
  font-size: 22px;
}

.footer-black > nav > ul > li > a{
  color: white;
}

.footer-white > nav > ul > li > a{
  color: black;
}

footer > p {
  width: 100%;
  text-align: center;
  font-size: 17px;
  color: white;
  padding: 80px 20px 20px 20px;
}

.footer-black > p {
  color: white;
}

.footer-white > p {
  color: black;
}

footer > nav > .contacts {
  display: flex;
  flex-direction: column;
  width: 28%;
}

footer > nav > .contacts > a {
  color: white;
  font-size: 26px;
  text-decoration: none;
}

.footer-black > nav > .contacts > a {
  color: white;
}

.footer-white > nav > .contacts > a {
  color: black;
}

footer > nav > .contacts > div {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  padding: 20px 0 0 0;
}

.footer-black > nav > .contacts > div > a.instagram {
  background-color: white;
  border-radius: 10px;
  width: 51px;
  height: 51px;
  fill: black;
}

.footer-black > nav > .contacts > div > a > svg {
  height: 51px;
  width: 51px;
  fill: white;
}

.footer-black > nav > .contacts > div > a.instagram > svg {
  fill: black;
}

.footer-black .cls-1 {
  fill:white
}

.footer-black .cls-2 {
  fill:black;
}



.footer-white > nav > .contacts {
  display: flex;
  flex-direction: column;
  width: 28%;
}

.footer-white > nav > .contacts > a {
  color: black;
  font-size: 26px;
  text-decoration: none;
}

.footer-white > nav > .contacts > div {
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  padding: 20px 0 0 0;
}

.footer-white > nav > .contacts > div > a.instagram {
  background-color: black;
  border-radius: 10px;
  width: 51px;
  height: 51px;
  fill: black;
}

.footer-white > nav > .contacts > div > a > svg {
  height: 51px;
  width: 51px;
  fill: black;
}

.footer-white > nav > .contacts > div > a.instagram > svg {
  fill: black;
}

.footer-white .cls-1 {
  fill: black;
}

.footer-white .cls-2 {
  fill: white;
}

.team-container {
  width: 100%;
  background-image: url("/static/images/stain.svg");
  background-repeat: no-repeat;
  background-size: auto 1800px;
  background-position: 200px 100px;
  padding: 0 0 170px 0;
}

.team {
  width: 100%;
  max-width: 1200px;
  padding: 100px 20px 0 20px;
  margin: 0 auto;
}

.team > h1 {
  font-size: 67px;
}

.team > .members {
  display: flex;
  flex-direction: row;
  row-gap: 40px;
  column-gap: 40px;
  padding: 200px 0;
  flex-wrap: wrap;
  width: 100%;
  align-content: ;
}

.team > .members > .member {
  border-radius: 20px;
  width: 360px;
  height: 465px;
  overflow: hidden;
  position: relative;
}

.team > .members > .member > img {
  width: 130%;
}

.team > .members > .sebastian {
  background-image: url("/static/images/sebastian.jpeg");
  background-position: center top;
  background-size: 130%;
}

.team > .members > .ed {
  background-image: url("/static/images/ed.jpg");
  background-position: center top;
  background-size: 100%;
}

.team > .members > .conrad {
  background-image: url("/static/images/conrad.jpeg");
  background-position: center top;
  background-size: 131%;
}

.team > .members > .tobias {
  background-image: url("/static/images/tobias.jpeg");
  background-position: center top;
  background-size: 129%;
}

.team > .members > .erik {
  background-image: url("/static/images/erik.jpeg");
  background-position: center top;
  background-size: 130%;
}

.team > .members > .member > .shadow {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 150px;
  background: rgb(170,170,170);
  background: linear-gradient(0deg, rgba(50,50,50, 0.4) 0%, transparent);
}

.team > .members > .member > .shadow > a {
  position: absolute;
  bottom: 100px;
}

.team > .members > .member > .shadow >  a > img {
  width: 40px;
  height: 40px;
  margin: 0 0 0 20px;
}

.team > .members > .member > .shadow >  h2 {
  position: absolute;
  bottom: 50px;
  font-size: 37px;
  color: white;
  margin: 0 0 0 20px;
  text-shadow: 0px 1px 1px #666666;
}

.team > .members > .member > .shadow >  h3 {
  position: absolute;
  bottom: 20px;
  font-size: 22px;
  color: white;
  margin: 0 0 0 20px;
  text-shadow: 0px 1px 1px #666666;
}

.contact-container {
  width: 100%;
  background-color: #111111;
}

.contact {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  padding: 100px 20px 0 20px;
}

.contact > h1 {
  font-size: 67px;
  color: white;
  width: 50%;
}

.contact > form {
  width: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.contact > form > input[type=text] {
  width: 100%;
  color: #F1EDE7;
  background-color: #111111;
  font-size: 36px;
  height: 68px;
  border: 0;
  border-bottom: 2px solid white;
  padding: 10px;
  margin: 0 0 20px 0;
}

.contact > form > input[type=email] {
  width: 100%;
  color: #F1EDE7;
  background-color: #111111;
  font-size: 36px;
  height: 68px;
  border: 0;
  border-bottom: 2px solid white;
  padding: 10px;
  margin: 0 0 20px 0;
}

.contact > form > label {
  width: 45%;
  color: #F1EDE7;
  background-color: #111111;
  font-size: 36px;
  height: 68px;
  padding: 10px;
  margin: 0 0 20px 0;
}

.contact > form > input[type=checkbox] {
  width: 5%;
  color: #F1EDE7;
  background-color: #111111;
  font-size: 36px;
  height: 68px;
  padding: 10px;
}

.contact > form > textarea {
  width: 100%;
  height: 250px;
  color: #F1EDE7;
  background-color: #111111;
  font-size: 36px;
  border: 0;
  border-bottom: 2px solid white;
  padding: 10px;
  margin: 0 0 20px 0;
}

.contact > form > input[type=submit] {
  width: 50%;
  color: #F1EDE7;
  background-color: #111111;
  font-size: 36px;
  height: 68px;
  border: 2px solid white;
  padding: 10px;
  margin: 0 0 0 50%;
}

.visible {
  display: inline-block !important;
}

.hidden {
  display: none;
}

.home-header-container {
  width: 100%;
}

.home-header-container > header {
  position: absolute;
  background: none;
  background-color: transparent;
  z-index: 1000;
}

@media screen and (max-width: 1200px) {

  .team-container {
    padding: 0;
  }

  .white-footer-container {
    padding: 0;
  }

  .black-footer-container {
    padding: 0;
  }

  footer {
    padding: 50px 0 0 0;
  }

  .team > .members {
    width: 760px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1000px) {

  .vs {
    padding: 0 20px;
  }

  .vs > h3 {
    width: 100%;
  }

  .intro {
    padding: 100px 20px 0 20px;
  }

  .filling {
    flex-direction: column;
    column-gap: 40px;
    margin-top: 100px;
  }

  .filling > .left {
    width: 60%;
  }

  .filling > .right {
    width: 100%;
  }

  .sharing > h3 {
    width: 100%;
  }

  .areas {
    flex-direction: column;
    row-gap: 80px;
  }

  .areas > .texts {
    width: 100%;
  }

  .areas > .boxes {
    width: 100%;
    align-content: center;
  }

  .work-fast {
    flex-direction: column;
    row-gap: 60px;
  }

  .work-fast > .left {
    width: 100%;
  }

  .work-fast > .right {
    width: 60%;
    margin-bottom: 150px;
  }

  .evaluation > ul {
    background: none;
    flex-direction: column;
    row-gap: 50px;
  }

  .evaluation > ul > li {
    width: 100%;
  }

  .evaluation > ul > li > p {
    font-size: 40px;
    margin: 0 0 20px 0;
  }

  footer > nav > ul {
    width: 25%;
    margin: 0 0 0 50px;
    row-gap: 20px;
  }

  .contact {
    flex-direction: column;
    padding-bottom: 50px;
    row-gap: 50px;
  }

  .contact > h1 {
    width: 1000%;
  }

  .contact > form {
    width: 100%;
  }
  
}

@media screen and (max-width: 800px) {
  
  header > nav {
    flex-direction: column;
    align-items: center;
  }

  header > nav > ul {
    padding-right: 0;
    column-gap: 60px;
    justify-content: inherit;
  }

  header > nav > ul > li > a {
    padding: 0;
    font-size: 30px;
  }

  .intro > h1,
  .team > h1,
  .contact > h1 {
    font-size: 37px;
  }

  .intro > h2,
  .vs > h2,
  .filling > .right > h2,
  .sharing > h2,
  .areas > .texts > h2,
  .work-fast > .left > h2,
  .evaluation > h2 {
    font-size: 37px;
  }

  .filling > .left {
    width: 90%;
    margin-bottom: 70px;
  }

  .intro-container {
    background-position: 30px 100px;
  }

  .work-fast {
    padding: 100px 20px 80px 20px;
  }

  .work-fast > .left > h2 {
    margin-bottom: 50px;
  }

  .work-fast > .right {
    width: 90%;
    margin-bottom: 100px;
  }

  .evaluation > ul > li > p {
    font-size: 30px;
    margin: 0 0 10px 0;
  }

  .evaluation > h3 {
    font-size: 30px;
    line-height: 1.5;
    margin: 150px 0 0 0;
  }

  .team > .members {
    width: 360px;
    margin: 0 auto;
  }

  .areas > .boxes {
    flex-direction: row;
    column-gap: 45px;
    align-self: center;
    justify-content: center;
    width: 92%;
  }

  .areas > .boxes > .health-and-wellness {
    margin-top: 0;
  }

  footer > nav > ul {
    flex-direction: row;
    padding: 20px 0;
    column-gap: 50px;
    margin: 0;
    width: 100%;
    justify-content: center;
  }

  footer > nav {
    flex-direction: column;
    align-items: center;
  }

  footer > nav > .contacts {
    align-items: center;
  }

}