/***********/

/* HEADER */

/**********/

header {
    width: 100%;
    height: 100vh;
    margin-bottom: 8rem;
    background: linear-gradient(
      112.1deg,
      rgba(32, 38, 57, 1) 11.4%,
      rgba(63, 76, 119, 1) 70.2%
    );
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 40px));
  }
  
  .top-nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -200vh;
    z-index: 50;
    background: linear-gradient(
      112.1deg,
      rgba(32, 38, 57, 1) 11.4%,
      rgba(63, 76, 119, 1) 70.2%
    );
    transition: all 550ms cubic-bezier(1, 0, 0, 1);
  }
  
  .top-nav.open {
    top: 0;
  }
  
  .nav-list {
    list-style: none;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .nav-list > li {
    margin: 2rem 2rem;
    position: relative;
  }
  
  .nav-link {
    color: white;
    font-size: 4rem;
    padding: 1rem;
  }
  
  .nav-link:after {
    background: none repeat scroll 0 0 transparent;
    bottom: -5px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #fff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }
  
  .nav-link:hover:after {
    width: 100%;
    left: 0;
  }
  
  .menu-toggler {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 5rem;
    height: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1500;
    transition: transform 650ms ease-out;
  }
  
  .menu-toggler .open {
    transform: rotate(-45deg);
  }
  
  .bar {
    background: white;
    width: 100%;
    height: 4px;
    border-radius: 0.8rem;
  }
  
  .bar.half {
    width: 50%;
  }
  
  .bar.start {
    transform-origin: right;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  }
  
  .open .bar.start {
    transform: rotate(-450deg) translateX(0.8rem);
  }
  
  .bar.end {
    align-self: flex-end;
    transform-origin: left;
    transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  }
  
  .open .bar.end {
    transform: rotate(-450deg) translateX(-0.8rem);
  }
  
  .landing-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 1;
  }
  
  .landing-text h1 {
    font-size: 8rem;
    font-family: "Londrina Shadow", cursive;
    font-weight: 400;
    padding: 1rem;
    user-select: none;
  }
  
  .landing-text h6 {
    font-size: 2rem;
    font-weight: 400;
  }
  
  .icon-main {
    font-size: 3rem;
    margin: 2rem 1rem;
    cursor: pointer;
  }
  
  .social-icon-main-container {
    display: flex;
    justify-content: center;
  }
  
  .social-icon-main-container ul {
    display: flex;
  }
  
  .social-icon-main-container ul li a {
    color: white;
  }