/* color palette 
----------------------------------------
blue/white - #EDF2F4
gainsboro - #CEDBDF
light blue - #8D99AE
cadet gray - #899CA3
slate gray - #718392
cadet - #546875
charcoal - #32444B
dark blue - #2B2D42
red - #EF233C

----------------------------------------*/

/* global styles 
----------------------------------------*/
/* apply a natural box layout model to all elements, but allowing components to change */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
@font-face {
    font-family: "Sorts Mill Goudy";
    src: url(../fonts/sorts-mill-goudy/SortsMillGoudy-Regular.ttf) format('truetype');
}
@font-face {
    font-family: "Sorts Mill Goudy Italic";
    src: url(../fonts/sorts-mill-goudy/SortsMillGoudy-Italic.ttf) format('truetype');
}
body {
    font-family: "Sorts Mill Goudy", 'Times New Roman', Times, serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    margin: 0;
}
h1 {
    font-size: 1.6rem;
}
h2 {
    font-size: 1.5rem;
    margin-top: 0;
}
h3 {
    font-size: 1.4rem;
    margin: 0;
}
h4 {
    font-size: 1.3rem;
    margin: 0;
}
h5 {
    font-size: 1.2rem;
    margin: 0;
}
h6 {
    font-size: 1.1rem;
    margin: 0;
}
a {
    color: #EDF2F4;
}
a:hover {
    text-decoration: none;
}
.content-wrap {
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 50px;
    overflow: auto;
}
.col-full {
    width: 100%;
}
.col-narrow {
    width: 30%;
    float: left;
}
.col-wide {
    width: 70%;
    float: left;
    padding-left: 20px;
}
.uppercase {
    text-transform: uppercase
}
.capitalize {
    text-transform: capitalize;
}
.btn {
    text-decoration: none;
    background: #EF233C;
    color: #EDF2F4;
    padding: 10px;
    display: inline-block;
}
.badge-img {
    width: 50px;
    padding-bottom: 15px;
}
.section-title {
    color: #CEDBDF;
    background-color: black;
    background-image: url(../images/banner-2.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}


/* header and footer
----------------------------------------*/
header, footer {
    color: #CEDBDF;
}
/* header */
header {
    background-color: black;
    position: relative;
}
.header-banner {
    background-color: black;
    padding-top: 50px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}
header h1, header h2 {
    color: #EDF2F4;
    margin: 0;
}
.header-title {
    margin-top: auto;
}
.profile-img {
    border-radius: 50%;
}
.banner-wrap {
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 50px;
    overflow: auto;
}

.download {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* footer */
footer {
    background-color: black;
    text-align: center;
}
.contact-info a {
    padding: 10px;
    display: inline-block;
    text-decoration: none;
}


/* navigation */
nav {
    font-size: 1.0rem;
    text-align: center;
    background: black;
    position: fixed;
    top: 0;
    width: 100%;
}
nav a {
    display: inline-block;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;

}


/* about section
----------------------------------------*/
.about {
}


/* summary section
----------------------------------------*/
.summary {
}

/* experience section
----------------------------------------*/
h3 ~ p {
    margin: 0;
}
h4 ~ p {
    margin: 0;
}
.experience h4 {
    text-transform: uppercase;
}
.job-title {
    font-style: italic;
}
.job-description {
    margin-bottom: 25px;
}
.job-description p:first-of-type {
    margin-top: 0;
}


/* education section
----------------------------------------*/
h3 ~ p {
    margin: 0;
}

h4 ~ p {
    margin: 0;
}

.education h4 {
    text-transform: uppercase;
}

.degree-title {
    font-style: italic;
}

.education-description {
    margin-bottom: 25px;
}

    .education-description p:first-of-type {
        margin-top: 0;
    }

/* certificates section
----------------------------------------*/
h3 ~ p {
    margin: 0;
}

h4 ~ p {
    margin: 0;
}

.certificates h4 {
    text-transform: uppercase;
}

.certificate-title {
    font-style: italic;
}

.certificate-description {
    margin-bottom: 25px;
}

.certificate-expiration {
    margin-bottom: 25px;
}

.certificate-description p:first-of-type {
        margin-top: 0;
    }

/* projects section
----------------------------------------*/
.projects a {
    color: #546875;
}

/* courses section
----------------------------------------*/
h3 ~ p {
    margin: 0;
}

h4 ~ p {
    margin: 0;
}

.courses h4 {
    text-transform: uppercase;
}

.course-title {
    font-style: italic;
}

.course-description {
    margin-bottom: 25px;
}

    .course-description p:first-of-type {
        margin-top: 0;
    }


/* media queries
----------------------------------------*/
/*@media (max-width: 1199px) {
    .banner1-img {
        max-height: 400px;
    }
}

@media (min-width: 1200px) {
    .banner1-img {
        max-height: 500px;
    }
}*/

/*@media (max-width: 1199px) {
    .header-banner {
        background-image: url(../images/banner-1-200.png);
        max-height: 200px;
    }
}

@media (min-width: 1200px) {
    .header-banner {
        background-image: url(../images/banner-1-300.png);
        max-height: 300px;
    }
}*/

