/* --- Colors --- */
/* --- Mixins --- */
/* --- Typography --- */
@import url("https://fonts.googleapis.com/css?family=Raleway:700|Roboto:300,400,500,700&display=swap");
a {
  text-decoration: none;
  color: inherit;
  margin: 0;
}

a:visited {
  color: inherit;
}

ul {
  list-style: none;
}

.title1 {
  font-size: 2.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin: 0 0 4rem 0;
  text-align: center;
}

.title2 {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.i_pink {
  color: #F56A65;
}

.i_blue {
  color: #5D86C4;
}

.i_turq {
  color: #68C4D9;
}

.i_green {
  color: #83D0B0;
}

/* --- ALL --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  color: black;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  margin: 0 auto;
  scroll-behavior: smooth;
}

/* --- GENERAL ---*/
.wrapper {
  padding: 11rem 0 2rem 0;
}

/* --- START ---*/
.start {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 2rem;
  padding: 0;
  /* Standard syntax */
}

.start .logo {
  font-family: "Raleway", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  color: black;
}

.start .imagotype {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
}

.start .imagotype svg {
  width: 80px;
  height: 80px;
}

.start .imagotype .animated {
  -webkit-animation-name: animate;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s;
  /* Safari 4.0 - 8.0 */
  animation-name: animate;
  animation-duration: 4s;
}

@-webkit-keyframes animate {
  from {
    color: red;
  }
  to {
    color: yellow;
  }
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes animate {
  from {
    color: red;
  }
  to {
    color: yellow;
  }
  0% {
    transform: translateY(-20px);
  }
  40% {
    transform: translateY(0px);
  }
}

/* --- WHO ---*/
.who {
  background-color: #e2f4f8;
  height: 100vh;
  display: flex;
  flex-flow: column wrap;
  align-content: center;
}

.who h1 {
  text-align: center;
}

.who .card1 {
  width: 80%;
  background-color: #FFFFFF;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.12);
  border: 0.2px solid #C4C4C4;
  border-radius: 3px;
  padding: 1.7rem 1rem 1.7rem 1rem;
  margin: .8rem 0 0 0;
  display: flex;
  flex-flow: row wrap;
}

.who .card1 .text {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0 1rem;
  width: 85%;
}
