/* apply a natural box layout model to all elements, but allowing components to change */
html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

html {
    font-size: 62.5%; /* ~10px */
}

body {
    font-family: "Source Serif Pro", Helvetia, Arial, sans-serif;
    color: #353738;
    font-size: 1.6em;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 2.4rem;
    font-family: "Raleway", inherit;
    font-weight: 900;
}

h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2.2rem;
}
h3 {
    font-size: 1.5rem;
}
h4 {
    font-size: 1.3rem;
}
h5 {
    font-size: 1.15rem;
}
h6 {
    font-size: 1rem;
}

.h1 {
    font-size: 2.5rem;
}
.h2 {
    font-size: 2.2rem;
}
.h3 {
    font-size: 1.5rem;
}
.h4 {
    font-size: 1.3rem;
}
.h5 {
    font-size: 1.15rem;
}
.h6 {
    font-size: 1rem;
}

.underlined-heading {
    border-bottom: 2px solid #4c87b5;
    max-width: 50rem;
}

.color-primary {
    color: #356078;
}
.color-secondary {
    color: #b8e6f7;
}

p {
    margin-top: 0;
    margin-bottom: 2.4rem;
}

a {
    color: #356078;
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: underline;
}

.footer-spacer {
    height: 7.6rem; /* matches height of .footer */
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer-share {
    padding: 2.4rem;
    background: #809EBC;
    text-align: center;
}
    .footer-share a {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 2.8rem;
        height: 2.8rem;
        border-radius: 50%;
        text-decoration: none;
        margin: 0 .5rem;
        color: #fff;
        font-size: 1.4rem;
        border: .1rem solid transparent;
        -webkit-transition: background-color .15s ease;
        transition: background-color .15s ease;
    }
    .footer-share svg {
        display: block;
        width: 1.4rem;
        height: 1.4rem;
    }
    .footer-share .linkedin {
        background-color: #0976b4;
        border-color: #0976b4;
    }
    .footer-share .linkedin:hover,
    .footer-share .linkedin:focus {
        background-color: white;
    }
    .footer-share .linkedin:hover svg path,
    .footer-share .linkedin:focus svg path {
        fill: #0976b4;
    }

.u-responsive-media {
    position: relative;
}
    .u-responsive-media img,
    .u-responsive-media iframe {
        position: absolute;
        top: 0; 
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    
.u-faux-block-link {
    position: relative;
}
    .u-faux-block-link__overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        overflow: hidden;
        text-indent: 200%;
        white-space: nowrap;
        background: none;
    }

.u-unstyled-link {
    color: inherit;
    text-decoration: none;
}

.u-underline\:hover-focus:hover,
.u-underline\:hover-focus:focus {
    text-decoration: underline;
}
/*# sourceMappingURL=common.css.map */