html {
    font-family: 'Montserrat', Geneva, sans-serif;
}

body {
    margin: 0;
}

header {
    width: 100%;
    background-image: linear-gradient(#0284A8, #02BEC4);
    display: flex;
    justify-content: space-around;
    z-index: 2
}

div {
    display: flex;
}

main {
    margin: 0 auto 80px auto;
    background-color: #E4FAEA;
}

section{
    margin-top: 4rem;
}

footer {
    width: 100%;
    background-image: linear-gradient(#02BEC4, #0284A8);
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0px;
    align-items: center;
}

#bottombanner, #desktop, .topnav, #svg {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

h1, .quote {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-style: italic;
}

h1 {
    font-size: 2rem;
    color: #E1F7E7;
    background-color: #02BEC4;
    padding: 5px 0;
    margin: 0 auto;
    letter-spacing: .43rem;
    text-shadow: 3px 3px 0px #0284A8;
}

.quote {
    font-size: 2.4rem;
    color: #0284A8;
    letter-spacing: .15rem;
    text-indent: 0;
    line-height: 3rem;
    padding: 20px;
    margin: 40px auto;
    box-sizing: border-box;
    background-color: #E9FFEF;
}

p {
    font-size: 1.25rem;
    color: #02547D;
    max-width: 100%;
    text-align: justify;
    text-indent: 1rem;
    list-style-type: circle;
    line-height: 1.7rem;
}

.noindent {
    text-indent: -1.5rem;
    margin: 20px 30px;
}

a:link, a:visited {
    color: #02BEC4;
    text-decoration: none;
}

figure {
    justify-content: center;
    align-items: center;
}

figcaption {
    text-align: center;
    color: #02547D;
}

#profile {
    display: block;
    margin: 25px auto;
}

.img-filter {
    filter: saturate(.7);
}

#article_filter {
    filter: saturate(.8) opacity(.8) contrast(1.2);
}

.examples {
    background-color: #FFFFFF;
    height: auto;
    margin: 19px auto;
}

.flexflow, .links {
    display: flex;
    flex-flow: column wrap;
}

.links {
    text-align: center;
}

#underline {
    border-bottom: 1px solid #02BEC4;
}

a:link, a:visited {
    color: #02547D;
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(.3, .4, .2, .9);
}

a:hover {
    color: #02BEC4;
    text-decoration: none;
}

li {
    list-style-type: none;
    margin: 0 auto 25px auto;
}

.article_list {
    margin: 0rem 1rem;
}

.heart {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px auto;
    display: block;
    background-image: url(images/heart.jpg);
    background-size: contain;    
} 

.hilite {
    stroke: #02BEC4;
    stroke-width: 0px;
    transition-property: all;
    transition-duration: .6s;
    transition-timing-function: cubic-bezier(0, 0, 0, 1);
}

#testimonials {
    background-image: url(images/testimonials.svg);
    background-size: 100% 42px;
    background-repeat: no-repeat;
}

#core_values {
    background-image: url(images/compass_head.svg);
    background-size: 102% 57px;
    background-repeat: no-repeat;
}

#experience_banner {
    background-image: url(images/road.svg);
    background-size: 100% 42px;
    background-repeat: no-repeat;
}

.hilite:hover {
    stroke: #A9E8DC;
}

.cardtainer {
    flex-direction: row;
    justify-content: space-between;
    margin: auto;
}

.card {
    color: #0284A8;
    font-size: 1.1rem;
    text-align: left;
    box-sizing: border-box;
    padding: 10px 10px 10px 18px;
    background-color: #E9FFEF;
    text-indent: 0;
}

#linkholder {
    margin: 0 auto;
}

@media screen and (max-width: 599px) {
    header, footer {
        height: 54px; 
    }

    #topbanner {
        width: 240px;
        margin: 3px auto;
    }

    .bottomnav {
        height: 46px;
        width: 46px;
        margin: 7px;
    }

    #profile {
        width: 70%;
        height: auto;
    }

    .examples {
        width: 100%;
        margin: 0 auto 30px auto;
        box-shadow: 3px 3px 12px #02BEC4;
    }

    #linkholder {
        flex-direction: column;
    }

    p {
        padding: 0 5px;
        margin: 20px auto;
    }

    h1 {
        width: 100%;
    }

    .cardtainer
    {
        flex-flow: row wrap;
    }

    .card {
        width: 100%;
        padding: 10px 40px 10px 48px;
    }
}

@media screen and (min-width: 600px) {
    body {
        background-color: #A9E8DC;
        background-image: url(images/background.svg);
        background-attachment: fixed;
    }

    main {
       margin: 0 auto;
       width: 74%; 
       min-width: 582px;
       margin: 0 auto 120px auto;
    }
    
    header, footer {
        height: 72px;
    }

    #topbanner {
        width: 310px;
        margin: 6px auto;
    }

    .bottomnav {
        height: 62px;
        width: 62px;
        margin: 9px;
    }

    #profile {
        width: 422px;
    }

    h1 {
        width: 100%;
        margin-top: 10px;
    }

    .examples, .cardtainer {
        margin-top: 10px;
        width: 540px;
    }

    li {
        margin: 0 auto 25px auto;
    }
    
    p, .noindent {
        width: 500px;
        margin: 20px auto;
    }

    .card {
        width: 160px;
        margin: 20px 0;
    }

    .quote {
        border: 2px dashed #A9E8DC;
        box-shadow: 2px 2px 8px #A9E8DC;
    }

}

@media screen and (min-width: 1024px) {
    body {
        margin-top: 100px;
        background-color: #A9E8DC;
        background-image: url(images/background.svg);
    }

    main {
        height: 100%;
        min-width: 516px;  
        max-width: 1000px; 
        margin: 0 auto 50px auto;
        border-radius: 25px 25px 0 0;
        box-shadow: 7px 7px 12px #02BEC4;
    }

    header {
        height: 72px;
        width: 99%;
        margin-right: 1%;
        border-bottom-right-radius: 35px;
        position:fixed;
        top: 0px;
        box-shadow: 7px 7px 12px #02547D;
    }
    
    #desktop {
        position: static;
    }

    #topbanner, .bottomnav, #mobile, footer {
        position: absolute;
        top: -9999px;   
        left: -9999px;
    }

    .topnav {
        position: static;
        width: 62px;
        height: 62px;
        margin: 5px;
    }

    #bottombanner {
        margin-top: 13px;
        width: 200px;
        position: static;
    }

    #profile {
        width: 422px;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
        box-shadow: 6px 6px 16px #02BEC4;
    }

    p, .cardtainer {
        width: 600px;
    }

    .card {
        width: 170px;
        box-shadow: 2px 2px 13px #A9E8DC;
        border-radius: 10px 0px 10px 0px;
    }

    h1 {
        margin: 30px auto;
        text-shadow: 3px 3.5px 1.5px #0284A8;
        box-shadow: 3px 3px 10px #0284A8;
    }

    .top {
        border-radius: 20px 20px 0 0; 
    }

    .examples {
        width: 600px;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
        box-shadow: 3px 3px 12px #02BEC4;
    }

    li {
        margin: 0 auto 25px auto;
    }

    .jump {
        padding-top: 47px;
    }

    .quote {
        text-shadow: 3px 3px 2px #A9E8DC;
        border: 2.3px dashed #A9E8DC;
        border-radius: 5px;
        box-shadow: 2px 2px 8px #A9E8DC;
    }

    .dropshadow {
        filter: url("#blurFilter");
        -webkit-filter: url(#blurFilter);
        -moz-filter: url(#blurFilter);
        -o-filter: url(#blurFilter);
        -ms-filter: url(#blurFilter);
    }
}