:root {
  --dark: #242423;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  min-height: 100vh;
}

body {
  background-color: #E0526C;
  font-family: "Noto Sans", sans-serif;
  font-size: calc(16px + 0.390625vw);
  color: var(--dark);
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

.logo,
h1,
h2 {
  margin: 0;
  line-height: 1;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 10vw;
}
@media all and (max-width: 768px) {
  .logo,
  h1,
  h2 {
    font-size: 15vw;
  }
}

h3 {
  margin: 0;
  line-height: 1;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 62px;
}
@media all and (max-width: 768px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  margin: 0;
  line-height: 1;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 4vw;
}
@media all and (max-width: 768px) {
  h4 {
    font-size: 9vw;
  }
}

p {
  margin: 0;
}

.stage {
  position: relative;
  background: white;
  visibility: hidden;
  z-index: 5;
}

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

/*  ==========================================================================
    Intro
    ========================================================================== */
.intro,
.footer {
  height: 100vh;
}

.intro {
  position: relative;
  background: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 1200px;
  height: 100%;
  position: relative;
}
@media all and (max-width: 768px) {
  .container {
    width: 100%;
    height: 100%;
    position: relative;
  }
}

.intro__content {
  position: absolute;
  font-weight: 600;
  text-transform: uppercase;
  left: 10px;
  top: 60vh;
  max-width: 70vw;
  font-size: calc(13px + 0.390625vw);
  font-kerning: none;
}
@media all and (min-width: 768px) {
  .intro__content {
    left: 10px;
    top: 6%;
    font-size: calc(18px + 0.390625vw);
    max-width: 500px;
  }
}

.intro__content_small {
  font-size: calc(6px + 0.390625vw);
  font-weight: 100;
}
@media all and (max-width: 768px) {
  .intro__content_small {
    font-size: calc(5px + 0.390625vw);
  }
}

.intro__img {
  position: absolute;
}
@media all and (max-width: 768px) {
  .intro__img {
    width: 80vw;
  }
}

.intro__img--1 {
  top: 13vh;
  left: -10vw;
  z-index: 1;
  height: 45vh;
  width: 45vh;
}
@media all and (min-width: 768px) {
  .intro__img--1 {
    top: 25vh;
    left: calc(600px - 62vh);
    /* 62vh = ( 600 - x ) / 900 if container dimensions are W=1200=600+600 and H=900 */
    height: 51vh;
    width: 51vh;
  }
}

.intro__img--2 {
  left: 65vw;
  top: -35vw;
  height: 40vh;
  width: 40vh;
  z-index: 1;
}
@media all and (min-width: 768px) {
  .intro__img--2 {
    left: calc(600px - 21vh);
    top: 8vh;
    height: 42vh;
    width: 42vh;
  }
}

.intro__img--3 {
  left: calc(600px + 18vh);
  top: 20%;
  z-index: 1;
  height: 38vh;
  width: 38vh;
}
@media all and (max-width: 768px) {
  .intro__img--3 {
    display: none;
  }
}

.intro__img--4 {
  left: calc(600px + 30vh);
  top: 52%;
  z-index: 1;
  height: 28vh;
  width: 28vh;
}
@media all and (max-width: 768px) {
  .intro__img--4 {
    display: none;
  }
}

.intro__img--5 {
  left: calc(600px + 26vh);
  top: 75%;
  z-index: 1;
  height: 22vh;
  width: 22vh;
}
@media all and (max-width: 768px) {
  .intro__img--5 {
    display: none;
  }
}

.intro__logo {
  position: absolute;
  display: inline-block;
  right: 10px;
  bottom: 13%;
  height: 25vh;
  width: 25vh;
}
@media all and (min-width: 769px) {
  .intro__logo {
    left: calc(600px - 21vh);
    bottom: 5%;
    height: 57vh;
    width: 57vh;
    right: auto;
  }
}

.top_logo {
  z-index: 5;
}

.intro__img--6 {
  width: auto;
  height: 60vh;
  right: 0;
  top: 5vh;
  visibility: hidden;
  z-index: 1;
}

/*  ==========================================================================
    Slides
    ========================================================================== */
.slide {
  display: flex;
  align-items: stretch;
  height: 100vh;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .slide {
    display: block;
    position: relative;
  }
}

/*  Columns
    ========================================================================== */
.col {
  flex-basis: 50%;
}
@media all and (max-width: 768px) {
  .col {
    display: block;
    width: 100%;
    height: 100vh;
  }
}

.col--1 {
  position: relative;
  z-index: 1;
}
@media all and (max-width: 768px) {
  .col--1 {
    position: relative;
    z-index: 1;
  }
}

.col--2 {
  position: relative;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .col--2 {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
  }
}

/*  ==========================================================================
    Column Content
    ========================================================================== */
.col__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  height: 100%;
  padding: 6vw 6vw 10vw;
}
@media all and (max-width: 768px) {
  .col__content {
    width: 80%;
  }
}

.slide--1 {
  background-color: #F8E9E6;
  background-image: url("../img/bkg_w.svg") center center/cover no-repeat;
}

.partners {
  background-color: #ffffff;
  background-image: url("../img/bkg.svg");
}

.team {
  background-color: #F8E9E6;
  background-image: url("../img/bkg_w.svg");
}

@media all and (max-width: 768px) {
  .col__content--1 {
    background: rgba(248, 233, 230, 0.9);
  }
}

.col__content--2 {
  background: #D1E2EC;
}
@media all and (max-width: 768px) {
  .col__content--2 {
    background: rgba(209, 226, 236, 0.9);
  }
}

.col__content--3 {
  background: #ffc490;
}
@media all and (max-width: 768px) {
  .col__content--3 {
    background: rgba(255, 196, 144, 0.9);
  }
}

.col__content--4 {
  background: #F8E9E6;
}
@media all and (max-width: 768px) {
  .col__content--4 {
    background: rgba(248, 233, 230, 0.9);
  }
}

.col__content--5 {
  background: #CDD5E0;
}
@media all and (max-width: 768px) {
  .col__content--5 {
    background: rgba(205, 213, 224, 0.9);
  }
}

.col__content--6 {
  background: #FFFFFF;
}
@media all and (max-width: 768px) {
  .col__content--6 {
    background: rgba(255, 255, 255, 0.9);
  }
}

.col__content--7 {
  background: #c1d0cc;
}
@media all and (max-width: 768px) {
  .col__content--7 {
    background: rgba(193, 208, 204, 0.9);
  }
}

.col__content--8 {
  background: #CDD5E0;
}
@media all and (max-width: 768px) {
  .col__content--8 {
    background: rgba(205, 213, 224, 0.9);
  }
}

.col__content--9 {
  background: #ffd6bd;
}
@media all and (max-width: 768px) {
  .col__content--9 {
    background: rgba(255, 214, 189, 0.9);
  }
}

.col__content--10 {
  background: #ccf2ef;
}
@media all and (max-width: 768px) {
  .col__content--10 {
    background: rgba(204, 242, 239, 0.9);
  }
}

.col__content--11 {
  background: #FFFFFF;
}
@media all and (max-width: 768px) {
  .col__content--11 {
    background: rgba(255, 255, 255, 0.9);
  }
}

.col__content--12 {
  background: #cecece;
}
@media all and (max-width: 768px) {
  .col__content--12 {
    background: rgba(206, 206, 206, 0.9);
  }
}

@media all and (max-width: 768px) {
  .col__content--team {
    background: rgba(248, 233, 230, 0.9);
  }
}
@media all and (max-width: 768px) {
  .col__content--partners {
    background: rgba(255, 255, 255, 0.9);
  }
}
/*  Column Content
    ========================================================================== */
.col__content-title {
  margin: 0 0 2vw;
  letter-spacing: -0.2vw;
}
@media all and (max-width: 768px) {
  .col__content-title {
    margin: 0 0 6vw;
  }
}

.col__content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  position: relative;
}
@media all and (max-width: 768px) {
  .col__content-wrap {
    flex-direction: column;
  }
}

.col__content_dynamic {
  visibility: hidden;
  height: 40vh;
}

.col__content_dynamic > div {
  position: absolute;
  display: inline-block;
}

.dynamic_item {
  width: 100%;
}

.dynamic_item img {
  width: 60vw;
  display: block;
  margin-bottom: 32px;
}

.dynamic_image {
  position: relative;
  width: 100%;
  height: 33vh;
  background-position: center;
  background-size: cover;
  padding: 2vh;
}

.dynamic_body {
  position: relative;
  margin-top: 2vh;
}

.col__content-txt {
  position: relative;
  width: 38vw;
  order: 2;
  margin-left: 32px;
  line-height: 1.5;
  font-kerning: none;
  -webkit-text-rendering: optimizeSpeed;
  text-rendering: optimizeSpeed;
}
@media all and (max-width: 768px) {
  .col__content-txt {
    order: 1;
    width: 60vw;
    margin: 0 0 0 0;
  }
}

.slide-link {
  position: relative;
  order: 1;
  display: flex;
  justify-content: flex-end;
  width: 75px;
  height: 53px;
  visibility: hidden;
}
.slide-link > * {
  pointer-events: none;
}
@media all and (max-width: 768px) {
  .slide-link {
    order: 2;
    align-self: flex-end;
  }
}

.slide-link__circ {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  border: 1px solid var(--dark);
}

.slide-link__line {
  position: absolute;
  top: 25px;
  left: 0;
  width: 64px;
  height: 3px;
  background: var(--dark);
}

.line {
  overflow: hidden;
}

.line__inner {
  display: block;
  padding-bottom: 0.6vw;
  font-kerning: none;
}

.slide__scroll-link {
  position: absolute;
  right: -113px;
  bottom: 3.5vw;
  display: block;
  width: 140px;
  height: 140px;
  background: var(--dark);
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .slide__scroll-link {
    display: none;
  }
}

.slide__scroll-line {
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 1px;
  height: 100%;
}

.slide--0 .slide__scroll-line {
  background: #C0D7D8;
}

.slide--1 .slide__scroll-line {
  background: #F8E9E6;
}

.slide--2 .slide__scroll-line {
  background: #D1E2EC;
}

.slide--3 .slide__scroll-line {
  background: #ffc490;
}

.slide--4 .slide__scroll-line {
  background: #F8E9E6;
}

.slide--5 .slide__scroll-line {
  background: #CDD5E0;
}

.slide--6 .slide__scroll-line {
  background: #FFFFFF;
}

.slide--7 .slide__scroll-line {
  background: #c1d0cc;
}

.slide--8 .slide__scroll-line {
  background: #CDD5E0;
}

.slide--9 .slide__scroll-line {
  background: #ffd6bd;
}

.slide--10 .slide__scroll-line {
  background: #ccf2ef;
}

.slide--11 .slide__scroll-line {
  background: #FFFFFF;
}

.slide--12 .slide__scroll-line {
  background: #cecece;
}

.team .slide__scroll-line {
  background: #F8E9E6;
}

.slide__scroll-line {
  background: #FFFFFF;
}

/*  ==========================================================================
    Column Image
    ========================================================================== */
.col__image-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 160vh;
}

.img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*  ==========================================================================
    Column Text
    ========================================================================== */
.col__text-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 16px 0;
}

.card {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.card-image {
  position: relative;
  width: 66%;
  height: 30vh;
  background-position: center;
  background-size: cover;
  padding: 2vh;
}

.card-body {
  position: relative;
  width: 34%;
  height: 30vh;
  padding: 2vh;
}

.card-title {
  font-size: 3vh;
  color: var(--dark);
  font-family: "Cinzel", serif;
}

.card-text {
  position: relative;
  font-size: 2vh;
  color: var(--dark);
  margin-top: 1vh;
}

.card-linkedin {
  position: absolute;
  top: 23vh;
  left: -3.5vh;
  height: 60px;
  width: 60px;
}

/*  ==========================================================================
    Project
    ========================================================================== */
.postindustry {
  background-color: #D1E2EC;
}

.project33, .whatwedo, .team {
  background-color: #F8E9E6;
}

.intervals, .partners {
  background-color: #FFFFFF;
}

.mediation {
  background-color: #c1d0cc;
}

.goodartist {
  background-color: #CDD5E0;
}

.dream {
  background-color: #ccf2ef;
}

.newme {
  background-color: #cecece;
}

.project {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 80vw;
  padding: 5vh 2vw 0 2vw;
}
@media all and (max-width: 768px) {
  .project {
    flex-direction: column;
    width: 100vw;
  }
}

.what-project {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100vw;
  padding: 5vh 2vw 0 2vw;
  font-size: 16px;
}

.what-type {
  width: 100%;
  font-weight: bold;
  font-size: 4vh;
  text-align: center;
  padding-top: 1em;
  margin-bottom: 32px;
}

.what-icon {
  width: 20%;
  text-align: center;
}

.what-desc {
  width: 80%;
  margin-bottom: 16px;
}

.project-type {
  width: 100%;
  font-weight: bold;
  font-size: 4vh;
  text-align: center;
}
@media all and (max-width: 768px) {
  .project-type {
    padding-top: 1em;
  }
}

.description-title {
  width: 50%;
  font-weight: bold;
  padding: 1vw 1vw 0 0;
}
@media all and (max-width: 768px) {
  .description-title {
    width: 100%;
    padding: 2vw;
  }
}

.subject {
  width: 50%;
  font-weight: bold;
  text-align: right;
  padding: 1vw 1vw 0 0;
}
@media all and (max-width: 768px) {
  .subject {
    width: 100%;
    text-align: left;
    padding: 2vw 2vw 0 2vw;
  }
}

.description {
  width: 50%;
  padding: 1vw 0 0 0;
}
@media all and (max-width: 768px) {
  .description {
    width: 100%;
    padding: 2vw;
  }
}

.description a {
  color: #000000;
  text-decoration: none;
}

.description p, li {
  margin-bottom: 1vh;
}

/*  ==========================================================================
    Footer
    ========================================================================== */
.footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  background: #cecece;
  padding-top: 5vh;
}
@media all and (max-width: 768px) {
  .footer {
    padding-top: 7vh;
  }
}

.footer__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 4vh 0 4vh;
  min-width: 80%;
}

.footer__link {
  font-size: 5vh;
  color: var(--dark);
  text-decoration: none;
}
@media all and (max-width: 768px) {
  .footer__link {
    font-size: 1.8rem;
  }
}

.footer__link-top {
  position: absolute;
  left: 50%;
  bottom: 8vh;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--dark);
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-family: "Cinzel", serif;
}
@media all and (max-width: 768px) {
  .footer__link-top {
    bottom: 5vh;
    width: 10vh;
    height: 10vh;
  }
}

.footer__link-top-line {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 1px;
  height: 50px;
  background: var(--dark);
}

.footer__copyright {
  position: absolute;
  left: 50%;
  bottom: 2vh;
  font-size: 14px;
  transform: translateX(-50%);
}
@media all and (max-width: 768px) {
  .footer__copyright {
    font-size: 0.8rem;
    bottom: 1vh;
  }
}

.footer__card {
  background-color: #dcdcdc;
  min-width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  row-gap: 0.8vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 2.3vh;
  padding: 2vh;
  margin: 1vh;
  -webkit-animation-name: shadow-show; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 1.5s; /* Safari 4.0 - 8.0 */
  animation-name: shadow-show;
  animation-duration: 1.5s;
  -webkit-transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);
  -o-transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1);
  transition-timing-function: cubic-bezier(0.795, 0, 0.165, 1); /* custom */
}
@media all and (max-width: 768px) {
  .footer__card {
    flex-direction: row;
    min-width: 90%;
    font-size: 0.9rem;
    margin: 0.2rem;
    height: 15vh;
  }
}

@media all and (max-width: 768px) {
  .footer__icon {
    width: 40%;
    text-align: center;
  }
}
.footer__icon svg {
  height: 23vh;
}
@media all and (max-width: 768px) {
  .footer__icon svg {
    height: 12vh;
  }
}

.footer__text {
  text-align: center;
}
@media all and (max-width: 768px) {
  .footer__text {
    text-align: left;
  }
}

/*  ==========================================================================
    Project Footer
    ========================================================================== */
.project-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding-bottom: 350px;
}
.project-footer a {
  margin-bottom: 6px;
}
@media all and (max-width: 768px) {
  .project-footer {
    padding-bottom: 180px;
  }
}

.project__link-top {
  position: absolute;
  left: 50%;
  bottom: 8vh;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--dark);
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-family: "Cinzel", serif;
}
@media all and (max-width: 768px) {
  .project__link-top {
    bottom: 5vh;
    width: 10vh;
    height: 10vh;
  }
}

/*  ==========================================================================
    Misc
    ========================================================================== */
.what__content {
  position: absolute;
  left: 6vw;
  top: 6vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 65vh;
  width: 80%;
}

.what__txt {
  width: 83%;
  font-size: calc(15px + 0.390625vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.what__ico {
  width: 17%;
  padding: 0 2vw 0 2vw;
  fill: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background {
  opacity: 0.1;
}

/*  ==========================================================================
    Partners
    ========================================================================== */
.list-of-partners {
  padding-bottom: 12vh;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(13, auto);
  justify-content: space-between;
  column-gap: 16px;
  height: 100%;
}

.partner {
  visibility: hidden;
}
@media all and (max-width: 768px) {
  .partner {
    visibility: visible;
  }
}

.partner > a {
  text-decoration: none;
  color: var(--dark);
  font-size: 2vh;
  line-height: 1;
}

.partner > p {
  text-decoration: none;
  color: var(--dark);
  font-size: 2vh;
  line-height: 1;
}

.mobile-partners ul {
  font-size: 16px;
  margin: 0;
  padding: 0 0 0 6vw;
  /*list-style-position: inside;*/
}

/*  ==========================================================================
    Navigation
    ========================================================================== */
.menu {
  position: fixed;
  top: 20px;
  left: 91vw;
  font-size: 1.1em;
  line-height: 1.5;
  visibility: hidden;
}
@media all and (max-width: 768px) {
  .menu {
    font-size: 0.8em;
    left: 70vw;
  }
}

.menu div {
  color: #FFFFFF;
  margin-bottom: 1em;
}

.menu ul {
  padding: 0;
  list-style: none;
}

.menu li:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}

.menu li:has(> a:hover) {
  list-style-type: disc;
}

.menuLink, .closeMenu:hover {
  cursor: pointer;
  text-decoration: none;
  color: #FFFFFF;
}

.closeMenu {
  width: 1.5vw;
  height: 1.5vw;
}
@media all and (max-width: 768px) {
  .closeMenu {
    width: 5vw;
    height: 5vw;
  }
}

.hamburger {
  position: fixed;
  width: 2vw;
  top: 1vw;
  left: 96vw;
  z-index: 8;
}
@media all and (max-width: 768px) {
  .hamburger {
    width: 6vw;
    top: 7vw;
    left: 87vw;
  }
}

.hamburger:hover {
  cursor: pointer;
}

/* Misc items*/
.hidden {
  display: none;
}

@media all and (max-width: 768px) {
  .hideOnMobile {
    display: none;
  }
}
@media all and (min-width: 769px) {
  .hideOnDesktop {
    display: none;
  }
}
/* Ring animation items*/
.ring {
  position: absolute;
  background-color: hsla(349deg, 99%, 41%, 0.68);
  height: 100%;
  width: 100%;
  border-radius: 100%;
  opacity: 0.3;
}

.intro {
  background-image: url("../img/bkg.svg");
}

/*# sourceMappingURL=style.css.map */
