
*{
    margin: 0;
    transition: all 300ms ease;
}

/** burger **/
  .burger{
      top: 0;
      right:0;
      z-index: 10000;
      display: none;
  }
  
  .hamburger {
      cursor: pointer;
      z-index: 12;
      z-index: 100;
      border-radius: 100%;
    }
    
    .hamburger input {
      display: none;
    }
    
    .hamburger svg {
      /* The size of the SVG defines the overall size */
      height:40px;
      /* Define the transition for transforming the SVG */
      transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .line {
      fill: none;
      stroke: white;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 3;
      /* Define the transition for transforming the Stroke */
      transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                  stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .line-top-bottom {
      stroke-dasharray: 12 63;
    }
    
    .hamburger input:checked + svg {
      transform: rotate(-45deg);
    }
    
    .hamburger input:checked + svg .line-top-bottom {
      stroke-dasharray: 20 300;
      stroke-dashoffset: -32.42;
    }
    /* = end of burger == */
    

.nav{
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
    border-radius: 100px;
    z-index: 11;
    position: absolute;
    top:50px;
    width: 90%;
    height: 80px;
}

.logoMain{
    width:50px;
    height:50px;
    background-size: cover;
    background-image: url(img/LOGO\ GC\ BLANCO.png);
    display:none;
}

.logoMainNav{
    width:50px;
    height:50px;
    background-size: cover;
    background-image: url(img/LOGO\ GC\ BLANCO.png);
    z-index: 111;
}

.navLink{
    color:white;
    position:relative;
    margin-right: 30px;
    text-decoration: none;
    font-family: var(--mon);
    font-weight:700;
    transition:var(--trans);
}

.navLink::after{
    content: '';
    width: 100%;
    height: 3px;
    background-color: white;
    position: absolute;
    bottom: -2px;
    left: 0;    
    transition:var(--trans);
    transform: scaleX(0);
    transform-origin: left;
}

.navLink:hover::after{
    transition:var(--trans);
    transform: scaleX(1);
}


@media (max-width:900px) {
    .navLink{
        font-size: 14px;
        margin-right: 20px;
    }
}

@media (max-width:750px) {
    .navLink{
        font-size: 14px;
        margin-right: 20px;
    }

    .nav{
        width:100%;
        height: 100vh;
        background-image:linear-gradient(#020024, #090979, #05056b);
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        top: 0;
        left: 0;
        position: absolute;
        border-radius: 0;
        opacity: 0;
        transform: translateX(-100%);
    }

    .linkCont{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
    }

    .navLink{
        font-size: 30px;
        margin-right: 0;
        margin-bottom: 40px;
        color: white;
        text-align: left;
        opacity: 0;
        width: 200px;
    }

    .navLink::after{
        background-color: white;
        width: 100%;
    }

    .logoMainNav{display: none;
    }

    .burger{
        display: block;
        position: absolute;
        top: 40px;
        right: 40px;
    }

    .logoMain{
        display:flex;
        position: absolute;
        top: 40px;
        left: 40px;
        z-index: 111;
    }

    .logoWhite{
        background-position: center;
        background-repeat: no-repeat;
        background-size: 80%;
        background-image: url(img/LOGO\ GC\ BLANCO.png);
    }
    .logoBlack{
        z-index: 121;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 80%;
        background-image: url(img/LOGO\ GC\ BLANCO.png);
    }

}


  .animationNav{
    animation:animNav ease 1.4s forwards 1;
  }

  @keyframes animNav {
    0%{
        opacity: 0;
        transform: translateX(-60px);
    }

    100%{
        opacity: 100%;
        transform: translateX(0);
    }
  }

  .navFalse{
    transition: all 600ms ease;
    opacity: 0;
    transform: translateX(-100%);
}

.navTrue{
    transition: all 600ms ease;
    opacity: 100%;
    transform: translateX(0%);
}

  .mainFalse{
      display: none;
  }
  
  .mainTrue{
      display: block;
  }