#header-section .header img{
    width: 250px;
    height: 100px;
}

#header-section .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

#header-section .header .login{
    border-radius: 8px;
    margin-left: 24px;
    padding: 1rem 1.75rem;
    font-size: 14px;
    width: 80px;
}

#header-section .header .user{
    padding: 1rem 1.75rem;
    font-size: 14px;
    text-decoration: none;
    color: var(--dark-light);
}

#header-section .header .links {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

#header-section .header .links .nav-link {
    color:  var(--dark);
    border-top: 2px solid var(--light);
    transition: all .15s;
    padding: 2.5rem 1.25rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

#header-section .header .links .nav-link:hover {
    border-top: 2px solid var(--primary-light);
    color: var(--primary-light);
}

#header-section .header .links .selected{
    color:  var(--primary);
    border-top: 2px solid var(--primary);
}

#header-section .button {
    background: var(--primary);
    text-align: center;
    color: var(--light);
    border-radius: 12px;
    padding: 1.5rem 3rem;
    font-weight: 700;
    transition: all .15s;
    box-shadow: 0 4px 24px rgba(0,67,125,.2);
    text-decoration: none;
}

#header-section .link {
    margin-top: 2rem;
}

#header-section .content {
    width: 100%;
    height: calc(100vh - 110px);
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#header-section .content .text-content{
    width: 50%;
    padding: 2rem;
}


#header-section .content .title{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

#header-section .content .title div{
    font-size: 2rem;
    color: var(--primary);
}

#header-section .content .message{
    color: var(--dark-light);
    line-height: 1.6;
    padding: 1.5rem 0 2.5rem 0;
}


@media only screen and (max-width: 900px) {
    #header-section .header{
        justify-content: space-between;
        padding: 0.5rem;
    }

    #header-section .header .links{
        display: none;
    }
    
    #header-section .content .text-content{
        width: 75%;
        padding: 1rem;
    }

    #header-section .header img {
        width: 180px;
    }
    
    #header-section .header .login {
        margin: auto;
        padding: .85rem 1.5rem;
    }

    #header-section .button {
        border-radius: 10px;
        padding: 1rem 1.3rem;
    }

    #header-section .content {
        height: auto;
        padding: 10px 0;
    }

}