@charset "utf-8";
/* CSS Document */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2vh 13vw; /*25px 13vw*/
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

}
.navbar a{
    position: relative;
    font-size: 2rem; /*16px*/
    color: #fff;
    margin-right: 30px;
    text-decoration: none;
}
.navbar a::after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    bottom: -5px;
    border-radius: 5px;
    transform: translateY(10px);
    opacity: 0;
    transition: .5s ease;
}
.navbar a:hover:after{
    transform: translateY(0);
    opacity: 1;
}
.topbar-home {
  cursor: pointer;
}
.topbar-contact {
  cursor: pointer;
}
.topbar-login {
  cursor: pointer;
}

