.brand .name {
  color: #B8ACD3;
  font-family: "PoppinsBold";
  font-size: 5vmax;
  line-height: 5vmax;
}
.brand .type {
  color: #7159A6;
  font-family: "PoppinsBold";
  font-size: 2.3vmax;
  line-height: 3vmax;
}
.cards {
  position: relative;
  width: 100vw;
  overflow: hidden;
}
.cards .relative {
  position: relative;
}
.cards img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0;
  pointer-events: none;
}
h1 {
  font-size: 3vmax;
  margin: 4vw 6vw 2vw 6vw;
  white-space: wrap;
}
h2 {
  font-size: 2vmax;
  margin: 2vw 6vw 4vw 6vw;
  white-space: wrap;
}
.projects {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: start;
  justify-content: center;
  margin: 2vw 6vw 2vw 6vw;
  grid-gap: 1.5vw;
}
.projects .item img {
  width: 28.3vw;
  transition: filter 0.5s;
}
.projects .item:hover img {
  filter: opacity(50%);
}
.projects .item .label {
  font-size: 1.5vmax;
  white-space: wrap;
  word-break: break-word;
  padding: 0.5vw;
  transition: color 0.5s, background-color 0.5s;
}
.projects .item:hover .label {
  color: white;
  background-color: #7159A6;
}
.projects a {
  font-size: 0;
}
.testimonials {
  padding: 4vw 6vw 4vw 6vw;
  background-color: #F4ECD8;
}
.testimonials .label {
  font-family: "PoppinsBold";
  font-size: 2vmax;
}
.testimonials .container {
  position: relative;
  overflow: hidden;
}
.testimonials .container .entry {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 2vw;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.testimonials .container .entry .text {
  white-space: wrap;
  font-style: italic;
}
.testimonials .container .entry .text .quote {
  font-size: 2vmax;
  margin-bottom: 2vw;
}
.testimonials .container .entry .text .full {
  font-size: 1.5vmax;
}
.testimonials .container .entry img {
  width: 25vw;
}
.testimonials .container .relative {
  position: relative;
}
.letsWork {
  background-color: #7159A6;
  font-size: 1.5vmax;
  white-space: wrap;
  color: white;
  text-align: center;
  padding: 4vw 6vw 4vw 6vw;
}
.letsWork .text {
  margin-bottom: 2vw;
}
.letsWork .text span {
  font-family: "PoppinsBold";
}
.fading {
  animation: fadeInOut 7s linear;
  pointer-events: auto !important;
}
.fastFading {
  animation: fadeInOut 3s linear;
  pointer-events: auto !important;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
