@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* custom styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: #000;
}
.container {
    width: 1140px;
    margin: 0 auto;
}
.text-center {
    text-align: center;
}
.white-text {
    color: #fff;
}
.orange-text {
    color: #ff6600;
}
.dk-grey-text {
    color: #777777;
}
.teal {
    background: #007892;
}
.pink {
    background: #ff427f;
}
.purple {
    background: #5c2a9d;
}
.lt-grey {
    background: #f8f8f8;
}
.dk-grey {
    background: #aaaaaa;
}
.black {
    background: #000;
}
.display-desktop {
    display: block;
}
.display-mobile {
    display: none;
}
.hero-headline {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}
.title-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.cta {
    padding: 15px 0;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    width: 35%;
    text-align: center;
}
.primary-cta {
    color: #fff;
    background: #ff6600;
    font-size: 1.2rem;
}
.sub-headline {
    font-size: 1.35rem;
    margin-bottom: 30px;
    font-weight: bold;
}
.terciary-headline {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
}
.underline {
    border-bottom: solid 1px;
}
.body-copy {
    font-size: .9rem;
    line-height: 1.3;
    color: #262626;
}
.flex-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.intro-item {
    padding: 0 15px;
}
.horizontal-padding{
    padding: 0 15px;
}
.vertical-padding {
    padding: 30px 0;
}
.main-nav {
    padding: 5px 0 8px 0;
}
.hero.home {
    background: url(images/home-hero.jpg) #1f3870;
    height: 540px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.hero.home .flex-wrapper {
    flex-direction: column;
    height: 540px;
}
.logo {
    width: 204px;
}
.portrait {
    width: 200px;
    margin-bottom: 20px;
}
.intro-image {
    width: 85px;
    margin-bottom: 5px;
}
.skill-section {
    margin-bottom: 30px;
}
.skill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px 0;
}
.ratings {
    display: flex;
}
.rating {
    width: 90px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2px;
}
.footer {
    padding: 10px 0;
    background: black;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.social-icons {
    display: flex;
    justify-content: center;
}
.icon {
    width: 35px;
    margin: 0 5px;
}
@media (max-width: 991px) {
    .container {
        width: 100%;
    }
    .display-desktop {
        display: none
    }
    .display-mobile {
        display: block;
    }
    .flex-wrapper {
        flex-wrap: wrap;
    }
    .flex-child {
        margin-bottom: 30px;
    }
    .hero.home {
        height: 340px;
    }
    .hero.home .flex-wrapper {
        height: 340px;
        padding: 0 15px;
    }
    .intro-item {
        padding: 0;
    }
    .rating {
        width: 24px;
    }
    .cta {
        width: 100%;
    }
}