@import url('https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:400,500,700|Lusitana:400,700');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');

/** ************************************* **

	TABLE OF CONTENTS
	---------------------------
		01. ESSENTIALS 
		02. DEFAULTS
		03. FRAMEWORK

        -- PAGE STYLES --
		04. HOME
		05. ABOUT
		06. COACHING
		07. BLOG
		08. 
		09. 
		10. 
		11. 
		12. FOOTER
				
	---------------------------

 ** ************************************* **/


/* -------------------------------- 

 01. ESSENTIALS

-------------------------------- */
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, 
body {
    height: 100%;
}
body {
    color: #2a2a2a;
    background-color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
}
body.overflow-hidden {
    /* when primary navigation is visible, the content in the background won't scroll */
    overflow: hidden;
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.50);
}
.container{
    max-width: 1100px;
}
.no-padding{
    padding: 0;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.padding-resp{
    padding: 0;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
@media screen and (max-width: 992px){
    .padding-resp{
        padding: 0 15px !important;
    }
}

img{
    width: auto;
    max-width: 100%;
    height: auto;
}
a{
    color: #212121;
}
a:hover{
    color: #212121;
}
.no-underline,
.no-underline:hover{
    text-decoration: none;
}
.br-4{
    -wekbit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
input:focus{
    outline: none;
}
input {
    font-family: sans-serif;
}
input[type="search"]::-ms-clear {
    /* removes close icon - IE */
    display: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}


/* -------------------------------- 

 02. DEFAULTS

-------------------------------- */
h1{
    margin: 0;
    padding: 0;
}
h2{
    margin: 0 0 20px;
    padding: 0;
    font-size: 34px;
    font-weight: 700;
}
h3{
    margin: 10px 0 15px;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
}
h4{
    margin: 15px 0 5px;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
}
h4.sub-title{
    margin: 0 0 30px;
    padding: 0;
    font-size: 26px;
    font-weight: 700;
}
h4.sub-title a{
    float: right;
    margin: 2px 0 0;
    font-size: 18px;
    font-weight: 400;
    color: #a3a3a3;
}
p{
    margin: 0 0 15px;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #6f6f6e;
}
strong{
    font-weight: 700;
}
@media screen and (max-width: 992px){
    h2{
        padding: 0 0 20px;
        font-size: 22px;
    }
    h3{
        font-size: 19px;
    }
    h4{
        font-size: 16px;
    }
    p{
        font-size: 14px;
    }
}

/* -------------------------------- 

 4. HEADER

-------------------------------- */
header{
    margin: 0;
    padding: 50px 0 45px;
    text-align: center;
}
header h1{
    margin: 0;
    padding: 0;
    font-family: 'Frank Ruhl Libre', serif;
    font-family: 'Lusitana', serif;
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    color: #194373;
}
header h1 span{
    display: block;
    margin: 0;
    padding: 0;
    font-family: 'Lusitana', serif;
    font-size: 18px;
    font-weight: 400;
    color: #a3a3a3;
}
header img.logo{
	position: relative;
	display: block;
	margin: 0 auto;
	max-width: 215px;
}
@media screen and (max-width: 992px){
    header{
        padding: 35px 0 20px;
    }
    header h1{
        font-size: 38px;
    }
    header h1 span{
        font-size: 14px;
    }
}

/* -------------------------------- 

 5. FRAMEWORK

-------------------------------- */
#company-select{
    margin: 0;
    padding: 0;
}
#company-select .item{
    margin: 0 0 25px;
    padding: 0;
    text-align: center;
}
#company-select .item .main-image{
    position: relative;
    display: block;
    margin: 0 0 20px;
    padding: 0;
    height: 450px;
    width: 100%;
    -webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
  filter: grayscale(100%);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
#company-select .item:hover .main-image{
    -webkit-filter: grayscale(0%); /* Chrome, Safari, Opera */
    filter: grayscale(0%);
}
#company-select .item h2{
    margin: 0;
    padding: 0;
    font-family: 'Lusitana', serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    
    line-height: 1.2;
}
@media screen and (max-width: 992px){
    #company-select .item .main-image{
        margin: 0 0 15px;
        height: 250px;
    }
    #company-select .item h2{
        font-size: 16px;
    }
}

/* -------------------------------- 

 12. FOOTER

-------------------------------- */
footer{
    margin: 30px 0 20px;
    padding: 25px 0;
    text-align: center;
}
@media screen and (max-width: 992px){
    footer{
        margin: 15px 0 15px;
        padding: 15px 0;
    }
}