/* shared.css */

.header {
    padding: 0 20px;
    width: 100%;
}

.header h2 {
    margin: 0 0 40px 0;
    text-align: center;
    font-family: "Proxima Nova Extra Bold", Arial, sans-serif;
    color: #000000;
    /*font-size: 48px;
    line-height: 48px;*/
    font-size: 300%;
    line-height: 1.25em;
}

.header h2 span {
    /*font-family: "Oswald Bold", Arial, sans-serif;*/
    font-family: "Proxima Nova Bold", Arial, sans-serif;
    /*font-size: 16px;*/
    font-size: 50%;
    /*font-weight: 700;*/
    /*letter-spacing: 2px;*/
    color: #007481;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    display: block;
    /*line-height: 16px;*/
    line-height: normal;
}

div.button {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    transition: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    cursor: default;
}

div.button:hover {
    background-color: transparent;
}

div.button a {
    font-family: "Proxima Nova Bold", Arial, sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #007481;
    font-size: 14px;
    line-height: 14px;
    text-decoration: none;
    letter-spacing: 2px;
    padding: 20px 20px;
    align-self: center;
    flex: auto;
    text-align: center;
}

div.button a:hover,
div.button a:focus {
    background-color: #000000;
}

.fa-file {
    margin: 0 3px 0 7px;
    color: #000000;
}

.fa-file-pdf {
    margin: 0 3px 0 7px;
    color: #ff3500;
}


@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 767px) {
    div.button a {
        flex: none;
    }
}

@media only screen and (max-width: 640px) {
    div.button {
        width: 100%;
        padding: 0 20px;
        justify-content: center;
    }
    
}

@media only screen and (max-width: 480px) {
    .header h2 {
        font-size: 40px;
        line-height: 40px;
    }
    
    .header h2 span {
        font-size: 15px;
        /*line-height: 15px;*/
        line-height: normal;
    }
    
    .button a {
        flex: auto;
        padding: 25px 20px;
        width: 100%;
    }
}
