/*
0-480px: Small Phones 
480 - 600px:    Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800]   Normal styles apply
1800px + :      Big desktop

1em = 16px
*/
/*
COLORS:
//$color-gray-blue:#becbde;
//$color-purple:#543FBC;
*/
@keyframes icon-menu {
  0% {
    width: 1.8rem; }
  20% {
    width: 0.2rem; }
  80% {
    width: 2.1rem; }
  100% {
    width: 1.8rem; } }

@keyframes icon-menu-2 {
  0% {
    width: 1.2rem; }
  20% {
    width: 0.2rem; }
  75% {
    width: 2.1rem; }
  100% {
    width: 1.2rem; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes enter-right {
  0% {
    opacity: 0;
    transform: translate3d(10%, 5%, 0); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes enter-left {
  0% {
    opacity: 0;
    transform: translate3d(-10%, 5%, 0); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes enter-top {
  0% {
    opacity: 0;
    transform: translate3d(0, 20%, 0); }
  100% {
    opacity: 1; } }

@keyframes slide {
  0%, 40% {
    transform: translate(0, 0); }
  50%, 100% {
    transform: translate(-50%, 0); } }

@keyframes tick {
  0% {
    stroke-dashoffset: 26; }
  100% {
    stroke-dashoffset: 0; } }

@keyframes flutter {
  0%, 20%, 100% {
    transform: matrix(1, 0, 0, 1, 0, 0); }
  8% {
    transform: matrix(1, 0, -0.02, 1, -2, 0); } }

@keyframes pulse {
  0% {
    transform: scale(1); }
  15% {
    transform: scale(1.25); }
  25% {
    transform: scale(1.15); }
  35% {
    transform: scale(1.25); }
  100% {
    transform: scale(1); } }

* {
  margin: 0;
  padding: 0; }

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

*:focus {
  outline: 0 !important; }

html {
  box-sizing: border-box;
  font-size: 62.5%;
  height: 100%;
  background-color: #b6c6df; }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 37.5em) {
    html {
      font-size: 50%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }

::selection {
  background-color: #d6daff; }

/*
font-family: 'Roboto', sans-serif;
font-family: 'Nunito', sans-serif;
*/
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.03rem;
  line-height: 1.6;
  color: #676778;
  padding: 0;
  min-height: 100%;
  text-rendering: optimizeLegibility; }

h1, h2, h3, h4, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 400; }

h1 {
  font-size: 4.8rem; }

h2 {
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1rem;
  padding-bottom: 8rem; }

h3 {
  font-size: 2.8rem;
  line-height: 1.15;
  word-spacing: 0.3rem;
  letter-spacing: 0.1rem; }

h4 {
  font-size: 2.4rem;
  font-weight: 300;
  word-spacing: 0.4rem;
  letter-spacing: 0.1rem; }

h5 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05rem;
  line-height: 2; }

h6 {
  font-size: 1.8rem;
  text-transform: uppercase;
  word-spacing: 0.3rem;
  line-height: 1.4;
  color: #5050ce; }

.small-text {
  font-size: 1.3rem; }

.written-small {
  font-size: 1.3rem;
  font-family: 'Delius', sans-serif;
  text-transform: none !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
  clear: both; }

.tablet {
  position: relative;
  animation: enter-top 1s ease; }
  .tablet__body {
    width: 100%;
    height: 100%;
    position: relative;
    background-image: url(../img/tablet.svg);
    background-repeat: no-repeat;
    background-size: contain; }
  .tablet__screen {
    background: #5050ce;
    width: 90%;
    height: 90%;
    position: absolute;
    left: 5%;
    top: 5%;
    overflow: hidden; }
  .tablet__slider {
    width: 200%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    transform: translate(0, 0);
    animation: slide 9s cubic-bezier(0.33, 0.76, 0.78, 1.12) forwards;
    backface-visibility: hidden;
    transition: all 0.3s ease; }
    .tablet__slider .slide {
      float: left;
      width: 50%;
      height: 100%;
      padding: 5%;
      background-color: #6e84cb;
      color: #fff; }
      .tablet__slider .slide-1 {
        background-color: #4641a2; }
      .tablet__slider .slide-2 {
        background-color: #5b47a4;
        display: flex;
        justify-content: center;
        flex-direction: column; }
      .tablet__slider .slide__title {
        color: #d6daff;
        position: absolute;
        top: 50%;
        left: 25%;
        transform: translate(-50%, -50%); }
      .tablet__slider .slide__face {
        width: 6rem;
        position: fixed;
        top: 48%;
        left: 25%;
        transform: translate(-50%, -50%); }
        @media only screen and (max-width: 56.25em) {
          .tablet__slider .slide__face {
            width: 4rem; } }
      .tablet__slider .slide__content {
        padding: 12% 5%;
        overflow: hidden; }
      .tablet__slider .slide__heading {
        position: relative; }
        .tablet__slider .slide__heading-content {
          color: #fff;
          margin-right: 4.5rem;
          font-size: 2.5rem;
          white-space: nowrap; }
      .tablet__slider .slide__subheading {
        margin-right: 4rem;
        padding: 1.2rem 0; }
      .tablet__slider .slide__tick {
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 0;
        margin: 0;
        border-bottom: solid 2px #acc3e4;
        width: 4rem;
        text-align: center; }
        .tablet__slider .slide__tick-svg {
          width: 95%;
          margin-bottom: -0.8rem; }
        .tablet__slider .slide__tick-path {
          fill: transparent;
          stroke: #4be2ad;
          stroke-width: 2;
          stroke-dasharray: 25;
          stroke-dashoffset: 0;
          stroke-linecap: round;
          stroke-linejoin: round;
          animation: tick 0.5s cubic-bezier(0, 0, 0.32, -0.13) backwards;
          animation-delay: 5s; }
          .tablet__slider .slide__tick-path-2 {
            animation-delay: 5.5s; }

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 0.8rem;
  display: inline-block;
  transition: all .2s;
  position: relative;
  font-size: 1.6rem;
  box-shadow: 0 2px 2px rgba(103, 103, 120, 0.1);
  background: #fff;
  cursor: pointer; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 2px rgba(103, 103, 120, 0.1); }

.btn:active, .btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 3px 2px rgba(103, 103, 120, 0.1); }

.btn-on-note {
  padding: 0.5rem;
  box-shadow: 0 -0.3rem 0 #d6daff inset;
  transition: all 0.2s ease-in-out; }
  .btn-on-note:hover {
    box-shadow: 0 -5rem 0 rgba(214, 218, 255, 0.5) inset; }

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #5050ce;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #5050ce;
  padding: 3px;
  transition: all .2s; }

.btn-text:hover {
  background-color: #5050ce;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(103, 103, 120, 0.15);
  transform: translateY(-2px); }

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(103, 103, 120, 0.15);
  transform: translateY(0); }

.grid {
  max-width: 100rem;
  width: 100%;
  margin: 1rem auto 4rem auto; }
  @media only screen and (max-width: 37.5em) {
    .grid {
      padding: 0 2.5rem;
      margin: 1rem auto 8rem auto; } }
  @media only screen and (max-width: 30em) {
    .grid {
      max-width: 45rem; } }
  .grid__item {
    float: left;
    width: 33.33%; }
    .grid__item:nth-child(odd) {
      margin: 0 auto; }
    .grid__item:nth-child(3n-1) {
      margin: 2rem auto -2rem auto; }
    @media only screen and (max-width: 56.25em) {
      .grid__item {
        width: 50%; }
        .grid__item:nth-child(odd) {
          margin: 0 auto; }
        .grid__item:nth-child(even) {
          margin: 2rem auto -2rem auto; } }
    @media only screen and (max-width: 30em) {
      .grid__item {
        width: 100%;
        padding: 1rem; }
        .grid__item:nth-child(even) {
          margin: 0; } }
    .grid__item:hover .grid__figheading,
    .grid__item:hover .grid__figsub,
    .grid__item:active .grid__figheading,
    .grid__item:active .grid__figsub {
      transform: translateY(2.5rem); }
    .grid__item:hover .grid__figsub,
    .grid__item:active .grid__figsub {
      opacity: 1; }
    .grid__item:hover .grid__btn,
    .grid__item:active .grid__btn {
      opacity: 1;
      transform: translate(-50%, -50%);
      transition: all 0.5s cubic-bezier(0.25, 0.25, 0.115, 1.445); }
      .grid__item:hover .grid__btn:hover,
      .grid__item:active .grid__btn:hover {
        transform: translate(-50%, -65%);
        box-shadow: 0 5px 0.6rem rgba(80, 80, 206, 0.1); }
      .grid__item:hover .grid__btn:active, .grid__item:hover .grid__btn:focus,
      .grid__item:active .grid__btn:active,
      .grid__item:active .grid__btn:focus {
        transform: translate(-50%, -55%);
        box-shadow: 0 3px 0.3rem rgba(103, 103, 120, 0.1); }
    .grid__item:hover .grid__img,
    .grid__item:active .grid__img {
      opacity: 0.5; }
    .grid__item:hover .grid__svg,
    .grid__item:active .grid__svg {
      height: 57%; }
  .grid__figure {
    overflow: hidden;
    position: relative;
    background: #676778;
    margin: 1rem;
    box-shadow: 1px 2px 1px rgba(103, 103, 120, 0.2); }
  .grid__img {
    position: relative;
    display: block;
    width: 100%;
    opacity: 0.96;
    transition: opacity 0.2s;
    filter: blur(0);
    -webkit-filter: blur(0); }
  .grid__figcaption {
    position: absolute;
    top: 0;
    z-index: 11;
    padding-top: 1.6rem;
    width: 100%;
    height: 100%;
    text-align: center; }
  .grid__figheading {
    padding: 0 0.8rem;
    line-height: 1.3;
    transform: translateY(0); }
  .grid__figsub {
    padding: 1.5rem 2rem;
    color: #676778;
    transition: all 0.2s;
    margin: auto;
    opacity: 0;
    transform: translateY(0); }
  .grid__btn {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -300%);
    text-transform: uppercase;
    font-size: 1.5rem;
    word-spacing: 0.3rem;
    margin: 2rem 0;
    padding: 0.6rem;
    border: none;
    border-radius: 1px;
    color: #5050ce;
    background-color: #d6daff;
    opacity: 0;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(80, 80, 206, 0.1); }
  .grid__figsub, .grid__figheading {
    transition: all 0.5s cubic-bezier(0.25, 0.25, 0.115, 1.445);
    backface-visibility: none; }
  .grid__svg {
    position: absolute;
    z-index: 10;
    top: -1px;
    width: 100%;
    height: 18rem; }
    .grid__svg path {
      fill: white; }

.stroke {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  -webkit-animation: write 0.6s ease-in 0.3s forwards;
  animation: write 0.6s ease-in 0.3s forwards; }

.stroke-1 {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s; }

.stroke-2 {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s; }

.stroke-3 {
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s; }

@-webkit-keyframes write {
  to {
    stroke-dashoffset: 0; } }

@keyframes write {
  to {
    stroke-dashoffset: 0; } }

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #cdd5e0; }

.nav {
  position: relative;
  z-index: 15;
  width: 100%; }
  .nav__avatar {
    width: 7rem;
    position: absolute;
    left: 10rem;
    top: 1.5rem;
    opacity: 0.96; }
    @media only screen and (max-width: 37.5em) {
      .nav__avatar {
        display: none; } }
  .nav__list {
    position: absolute;
    top: 2.5rem;
    right: 6rem;
    z-index: 15; }
    @media only screen and (max-width: 56.25em) {
      .nav__list {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: 7.5rem;
        right: 3rem;
        background-color: #fff;
        border-radius: 3px;
        padding: 3.5rem 2.5rem;
        box-shadow: 0px 2px 0.5rem rgba(34, 34, 39, 0.1);
        transition: all 0.2s 0.1s ease-in; } }
  @media only screen and (max-width: 56.25em) {
    .nav__overlay {
      width: 4.5rem;
      height: 4.5rem;
      position: fixed;
      top: 2rem;
      right: 3rem;
      border-radius: 50%;
      background: radial-gradient(rgba(34, 34, 39, 0.1), rgba(110, 132, 203, 0.3));
      transition: all 0.4s cubic-bezier(0.87, 0, 0.08, 1); }
      @supports (-webkit-backdrop-filter: blur(0.2px)) or (backdrop-filter: blur(0.2px)) {
        .nav__overlay {
          -webkit-backdrop-filter: blur(0.2px);
          backdrop-filter: blur(0.2px);
          background: rgba(103, 103, 120, 0.1); } }
      .nav__overlay-scale {
        transform: scale(87); } }
  .nav__item {
    list-style: none;
    display: inline-block;
    margin-right: 3.2rem; }
    @media only screen and (max-width: 56.25em) {
      .nav__item {
        display: block; }
        .nav__item:not(:last-child) {
          margin-bottom: 2rem;
          margin-right: 0; } }
  .nav__link {
    text-decoration: none;
    color: #223db4;
    font-size: 1.6rem;
    text-transform: uppercase;
    transition: box-shadow 0.2s ease-in-out;
    padding: 2px 0.5rem 2px 0.5rem; }
    @media only screen and (max-width: 56.25em) {
      .nav__link {
        padding: 2px 0 2px 1.5rem;
        border-left: 3px solid transparent;
        color: #6e84cb; } }
    .nav__link:hover {
      box-shadow: 0 -2.5rem 0 #edf2f7 inset; }
      @media only screen and (max-width: 56.25em) {
        .nav__link:hover {
          box-shadow: none;
          border-left: 3px solid #b6c6df; } }
    .nav__link--active {
      color: #fff;
      font-weight: 400; }
      @media only screen and (max-width: 56.25em) {
        .nav__link--active {
          color: #223db4; } }
      .nav__link--active:hover {
        box-shadow: none;
        color: #edf2f7; }
        @media only screen and (max-width: 56.25em) {
          .nav__link--active:hover {
            color: #6e84cb; } }
      .nav__link--active-dark {
        color: #223db4; }
        .nav__link--active-dark:hover {
          color: #6e84cb;
          box-shadow: 0 -2.5rem 0 #fff inset; }
  .nav__icon-menu {
    display: none;
    width: 4.5rem;
    height: 4.5rem;
    position: fixed;
    z-index: 15;
    top: 2rem;
    right: 3rem;
    border-radius: 50%;
    background-color: #fff;
    padding: 0.8rem;
    box-shadow: 1px 1px 1px rgba(128, 119, 154, 0.2); }
    @media only screen and (max-width: 56.25em) {
      .nav__icon-menu {
        display: block; } }
    .nav__icon-menu .menu-bar {
      fill: #6e84cb;
      width: 1.7rem;
      height: 2px; }
      .nav__icon-menu .menu-bar:last-child {
        width: 1.2rem; }
    .nav__icon-menu:hover, .nav__icon-menu:active {
      cursor: pointer; }
      .nav__icon-menu:hover .menu-bar-1, .nav__icon-menu:active .menu-bar-1 {
        animation: icon-menu 600ms ease-in-out; }
      .nav__icon-menu:hover .menu-bar-2, .nav__icon-menu:active .menu-bar-2 {
        animation: icon-menu 600ms 100ms ease-in-out; }
      .nav__icon-menu:hover .menu-bar-3, .nav__icon-menu:active .menu-bar-3 {
        animation: icon-menu-2 600ms 200ms ease-in-out; }

.visible {
  visibility: visible;
  opacity: 1; }

.bg-wrapper {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden; }

.bg {
  min-width: 80rem;
  max-height: 97vh;
  width: 100%;
  position: absolute;
  left: 49%;
  bottom: 30%;
  -webkit-transform: translate(-50%, 30%);
  transform: translate(-50%, 30%); }
  @media only screen and (max-width: 37.5em) {
    .bg {
      left: 50%;
      width: 200%; } }

.layer1,
.layer2,
.layer3,
.layer4,
.layer5 {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1); }

.paper {
  animation: flutter 4s cubic-bezier(0.16, 0.14, 0.82, 0.73) infinite; }

.ani-fade-in {
  animation: fade-in 0.6s ease-in 2.8s backwards; }

@media only screen and (max-width: 37.5em) {
  .right,
  .left {
    display: none; } }

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  .enter-right {
    animation: enter-right 0.5s cubic-bezier(0.16, 0.83, 0.56, 1.48) backwards; }
    .enter-right:nth-of-type(2) {
      animation-delay: 0.2s; }
    .enter-right:nth-of-type(3) {
      animation-delay: 0.4s; }
    .enter-right:nth-of-type(4) {
      animation-delay: 0.6s; }
    .enter-right:nth-of-type(5) {
      animation-delay: 0.8s; }
    .enter-right:nth-of-type(6) {
      animation-delay: 1s; } }

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  .enter-left {
    animation: enter-left 0.5s cubic-bezier(0.16, 0.83, 0.56, 1.48) backwards; }
    .enter-left:nth-of-type(8) {
      animation-delay: 0.3s; }
    .enter-left:nth-of-type(9) {
      animation-delay: 0.5s; }
    .enter-left:nth-of-type(10) {
      animation-delay: 0.7s; }
    .enter-left:nth-of-type(11) {
      animation-delay: 0.8s; }
    .enter-left:nth-of-type(12) {
      animation-delay: 1.1s; } }

.footer__content {
  width: 100%;
  text-align: center;
  background-color: rgba(237, 242, 247, 0.7);
  color: #5050ce;
  padding: 0.8rem; }

.footer__heart {
  width: 1rem;
  fill: #ee6666;
  animation: pulse 1s infinite;
  margin-left: 2px; }

.section-home {
  height: 100vh;
  background-color: #b6c6df; }

.avatar {
  width: 7rem;
  position: absolute;
  left: 6rem;
  top: 2rem; }

.section-intro {
  width: 100vw;
  min-height: 100vh;
  background-color: #acc3e4;
  position: relative;
  padding: 0 10%;
  display: flex;
  z-index: 0;
  flex-direction: row-reverse;
  align-items: center; }
  @media only screen and (max-width: 75em) {
    .section-intro {
      padding: 0 8%; } }
  .section-intro .tablet {
    height: 48rem;
    min-width: 33rem;
    margin-top: 8rem;
    transform: rotate(-2deg); }
    @media only screen and (max-width: 56.25em) {
      .section-intro .tablet {
        display: none; } }
    @media only screen and (min-width: 112.5em) {
      .section-intro .tablet {
        width: 35rem;
        height: 51rem; } }
  .section-intro .intro {
    flex: 1;
    min-height: 60vh;
    background-color: rgba(255, 255, 255, 0.9);
    background-image: url(../img/line.svg);
    background-size: 2rem;
    color: #676778;
    border-radius: 5px;
    padding: 1.4rem;
    margin-top: 12rem;
    margin-bottom: 6rem;
    margin-left: 10%;
    font-family: 'Delius', cursive;
    word-spacing: 0.2rem;
    position: relative;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1); }
    @media only screen and (max-width: 75em) {
      .section-intro .intro {
        margin-left: 7%;
        margin-top: 9rem; } }
    @media only screen and (max-width: 56.25em) {
      .section-intro .intro {
        margin-left: 0;
        padding: 4.5rem 2.5rem; } }
    @media only screen and (max-width: 37.5em) {
      .section-intro .intro {
        padding: 4.9rem 2rem; } }
    .section-intro .intro__avatar {
      width: 10rem;
      margin: 0.15rem auto; }
    .section-intro .intro:before, .section-intro .intro:after {
      position: absolute;
      height: 1rem;
      content: "";
      bottom: 1rem;
      background: transparent;
      box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
      z-index: -1; }
    .section-intro .intro:before {
      width: 40%;
      left: 0.5rem;
      transform: skew(-5deg) rotate(-3deg); }
    .section-intro .intro:after {
      left: auto;
      right: 0.5rem;
      width: 60%;
      transform: skew(5deg) rotate(2deg); }
    .section-intro .intro__heading {
      color: #5050ce;
      padding-bottom: 3rem;
      text-transform: uppercase;
      text-align: center; }
      @media only screen and (max-width: 56.25em) {
        .section-intro .intro__heading {
          padding-bottom: 5rem; } }
      @media only screen and (max-width: 37.5em) {
        .section-intro .intro__heading {
          padding-bottom: 2.3rem; } }
    .section-intro .intro__content {
      padding: 0 2rem 3rem 2rem;
      line-height: 3rem;
      word-spacing: 0.2rem; }
    .section-intro .intro__more {
      padding: 2rem 0;
      margin: 0 auto;
      width: fit-content;
      white-space: nowrap; }
    .section-intro .intro__link {
      display: flex;
      align-items: center;
      width: fit-content; }
      @media only screen and (max-width: 37.5em) {
        .section-intro .intro__link {
          padding-bottom: 1.6rem; } }
      .section-intro .intro__link:not(:last-child) {
        padding-bottom: 2.5rem; }
      .section-intro .intro__link svg {
        width: 3.5rem;
        fill: #676778;
        margin-right: 2rem; }
        @media only screen and (max-width: 37.5em) {
          .section-intro .intro__link svg {
            width: 3.6rem; } }
      .section-intro .intro__link-port, .section-intro .intro__link-contact {
        color: #5050ce;
        text-decoration: none;
        padding: 3px;
        display: inline-block; }
    .section-intro .intro__responsive {
      display: none; }
      @media only screen and (max-width: 56.25em) {
        .section-intro .intro__responsive {
          display: block; } }
      .section-intro .intro__responsive-tick {
        width: 2rem;
        fill: transparent;
        stroke: #4be2ad;
        stroke-width: 2; }
      .section-intro .intro__responsive-list {
        padding-left: 2.5rem; }

.section-portfolio {
  position: relative;
  padding: 10rem 10%;
  background: linear-gradient(to bottom, #acc3e4, #acc3e4 50%, #b6c6df 100%);
  width: 100vw; }
  @media only screen and (max-width: 75em) {
    .section-portfolio {
      padding: 10rem 5%; } }
  @media only screen and (max-width: 37.5em) {
    .section-portfolio {
      padding: 8rem 0 2rem 0; } }
  .section-portfolio .heading {
    color: white;
    padding-bottom: 4rem; }
  .section-portfolio .port {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 8rem; }
    @media only screen and (max-width: 37.5em) {
      .section-portfolio .port {
        padding-left: 0; } }
    .section-portfolio .port__heading {
      font-family: 'Roboto', sans-serif;
      transform-origin: left;
      position: absolute;
      top: -2.3rem;
      left: 0;
      min-width: 30rem;
      text-align: center;
      padding: 1.5rem 1.8rem;
      transform: rotate(-90deg) translate(-100%, 60%);
      background-color: #6e84cb;
      color: white;
      box-shadow: -2px 1px 2px rgba(103, 103, 120, 0.2);
      animation: enter-top 0.8s 0.4s ease backwards; }
      @media only screen and (max-width: 37.5em) {
        .section-portfolio .port__heading {
          word-spacing: 0.3rem;
          display: inline-block;
          text-align: right;
          min-width: 20rem;
          position: static;
          transform: rotate(0deg);
          padding: 1.5rem 2rem; } }
      .section-portfolio .port__heading-long {
        font-size: 2.2rem; }

.artwork {
  margin: 0 auto;
  padding: 12rem 0 6rem 0;
  background-color: #d9e8fe; }
  .artwork__heading {
    text-align: center;
    color: #676778; }
    .artwork__heading-drawing {
      color: #223db4; }
  .artwork__intro, .artwork__gallery {
    margin: 0 auto;
    padding: 4rem 0;
    width: 80vw; }
    @media only screen and (max-width: 56.25em) {
      .artwork__intro, .artwork__gallery {
        width: 90vw; } }
  .artwork__item {
    padding-bottom: 6rem;
    margin: 4rem 0 12rem 0;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 1px 2px 1rem rgba(103, 103, 120, 0.2); }
    @media only screen and (max-width: 75em) {
      .artwork__item {
        margin: 2rem 0 8rem 0;
        padding-bottom: 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .artwork__item {
        margin: 2rem 0 6rem 0;
        padding-bottom: 2.5rem; } }
    .artwork__item-number {
      text-align: right;
      margin-right: 2rem;
      font-size: 6rem;
      color: #acc3e4; }
    .artwork__item-img {
      display: block;
      margin: 0 auto;
      max-width: 95%;
      max-height: 100vh; }
    .artwork__item-caption {
      width: 60%;
      margin: 1rem auto;
      padding-top: 2rem; }
      @media only screen and (max-width: 56.25em) {
        .artwork__item-caption {
          width: 80%; } }
      @media only screen and (max-width: 30em) {
        .artwork__item-caption {
          width: 90%; } }
    .artwork__item-title {
      text-align: center;
      margin: 0.5rem auto 2rem; }
      @media only screen and (max-width: 75em) {
        .artwork__item-title {
          margin: 0 auto 1.5rem; } }
    .artwork__item-description {
      margin-top: 1rem; }
    .artwork__item-bonus {
      margin: 3rem auto; }
  .artwork__link {
    float: right;
    margin-top: -4rem;
    color: #5050ce; }
    @media only screen and (max-width: 75em) {
      .artwork__link {
        margin-top: -1rem; } }

.project {
  margin: 0 auto;
  padding: 16rem 0 4rem 0;
  background-color: #d9e8fe;
  position: relative;
  z-index: 0; }
  .project__heading {
    position: relative;
    text-align: center;
    color: #6e84cb;
    background-color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: auto;
    margin-bottom: 6rem;
    padding: 1.8rem 2.4rem;
    width: fit-content;
    min-width: 30vw; }
    .project__heading:after {
      position: absolute;
      height: 2rem;
      width: 100%;
      border-radius: 50%;
      content: "";
      left: 50%;
      bottom: 0.2rem;
      transform: translateX(-50%);
      background: transparent;
      box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
      z-index: -1; }
    .project__heading-sm {
      text-transform: capitalize; }
  .project__section {
    margin: 0 auto;
    padding-bottom: 6rem;
    width: 80vw; }
    .project__section-heading {
      font-weight: 400;
      text-transform: uppercase;
      margin: 1.5rem 0;
      color: #676778; }
  .project__description {
    margin: 0 auto; }
    .project__description-paragraph {
      margin-bottom: 1.5rem; }
    .project__description-img {
      display: block;
      margin: 4rem auto;
      width: 100%; }
      .project__description-img--sm {
        max-width: 30rem; }
      .project__description-img--md {
        max-width: 60rem; }
  .project__link {
    float: right; }
  .project__showcase {
    padding: 3rem;
    padding-bottom: 4rem;
    margin: 2rem auto;
    position: relative;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 1px 1px 5px rgba(103, 103, 120, 0.2); }
    @media only screen and (max-width: 75em) {
      .project__showcase {
        padding: 1.2rem; } }
    @media only screen and (max-width: 37.5em) {
      .project__showcase {
        padding: 0.8rem; } }
    .project__showcase-img {
      display: block;
      margin: 0 auto;
      width: 100%;
      max-width: 120rem; }
    .project__showcase-video {
      position: relative;
      padding-bottom: 56.25%;
      /* 56.25% 16:9 */
      overflow: hidden; }
    .project__showcase-iframe {
      position: absolute;
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      width: calc(100% + 3px);
      height: calc(100% + 3px); }
    .project__showcase-caption {
      width: fit-content;
      margin: 2rem auto 2.4rem;
      text-align: center;
      padding: 1.5rem 2rem; }
      @media only screen and (max-width: 56.25em) {
        .project__showcase-caption {
          width: 100%; } }
    .project__showcase-title {
      margin: 0 auto 0.8rem; }
    .project__showcase-paragraph {
      margin: 0 auto; }
    .project__showcase-link {
      text-transform: none !important;
      margin: 1rem auto;
      color: #223db4; }
  .project__img--md {
    max-width: 90rem; }
  .project__link {
    text-align: right;
    color: #5050ce; }

.section-home {
  height: 100vh;
  background-color: #b6c6df; }

.avatar {
  width: 7rem;
  position: absolute;
  left: 6rem;
  top: 2rem; }
