@charset "UTF-8";
#header {
    width: 100%;
    padding: 3vh;
    display: grid;
    align-content: end;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.05);
    grid-template-columns: 6.5fr 1fr 1fr;
    position: fixed;
    top: 0;
    left: 0;
    color: black;
    background-color: white;
    z-index: 100;
}

#header a {
    text-decoration: none;
}

#header a:link,
#header a:visited,
#header a:hover,
#header a:active {
    color: black;
}

#header-content {
    margin: 0 auto;
}

#company-name {
    height: 100%;
    font-size: 4vh;
}

#contact-title,
#company-profile {
    display: inline-block;
    height: 100%;
    font-size: 2.5vh;
    transform: translateY(25%);
}

@media(max-width:1200px) {
    #company-name {
        font-size: 4vh;
    }
    #contact-title,
    #company-profile {
        height: 100%;
        font-size: 2.5vh;
        transform: translateY(25%);
    }
}

@media(max-width:960px) {
    #header {
        padding: 2vh;
        grid-template-columns: 6.5fr 2fr 2fr;
        align-content: center;
    }
    #company-name {
        font-size: 3.3vh;
    }
    #contact-title,
    #company-profile {
        height: 100%;
        font-size: 2vh;
    }
}

@media(max-width:520px) {
    #header {
        padding: 2vh;
        grid-template-columns: 5fr 2fr 2.5fr;
    }
    #company-name {
        font-size: 2.5vh;
    }
    #contact-title,
    #company-profile {
        font-size: 1.8vh;
    }
}