/* CSS for Applied Research Microsite */

/******************************************
 Global Styling 
******************************************/

html, body {
	height: 100%;
}

body {
	background-color: #ffffff;
	color: #333333;
}

h1 {
	color: #333333;
	font-size: 40px;
	font-family: gotham_light;
}
h2 {
    color: #333333;
    font-size: 48px;
    font-family: 'Merriweather', serif;
}

h3 {
	color: #333333;
	font-size: 36px;
	font-family: 'Merriweather', serif;
}

h5 {
	color: #333333;
	font-size: 12px;
	font-family: gotham_bold;
}

a {
	color: #333333;
	text-decoration: none;
}

a:hover, a:focus {
	color: #333333;
	text-decoration: underline !important;
}

.py-6 {
    padding-top: 8rem;
    padding-bottom: 8rem
}

.pb-6 {
    padding-bottom: 8rem;
}

.mb-8 {
    margin-bottom: 8rem;

}

/******************************************
 Header & Main Navigation 
******************************************/

.logo {
	width: 234px;
}

.logo-img { display: none; }

@media (min-width: 1025px){
    .logo-img-desktop { display: block; }
}

@media (min-width: 768px) and (max-width: 1024px){
    .logo-img-tablet { display: block; }
}

@media (min-width: 320px) and (max-width: 480px){
    .logo-img-mobile { 
        display: block; 
        width: 70px;
        height: auto;
    }
}

.micro_header {
    padding: 0 2rem;
}

.micro_header h1 {
    display: inline-block;
    -webkit-transition: 300ms ease;
    -moz-transition: 300ms ease;
    -ms-transition: 300ms ease;
    -o-transition: 300ms ease;
    transition: 300ms ease;
}

.micro_header h1:hover {
    opacity: 0.8;
}

.micro_header .ms-nav {
    position: relative;
    float: right;
    clear: right;
    padding-top: 35px;
}

.ms-nav a {
    font-size: 16px;
    font-family: gotham_bold;
    text-transform: lowercase;
    padding: 0.5em 0;
}

.ms-nav a:hover {
	color: #db6e27;
	text-decoration: none !important;
}


/******************************************
 Border Styles 
******************************************/

.border-top 	{ border-top: 2px solid #333333 !important; }
.border-right 	{ border-top: 2px solid #333333 !important; }
.border-bottom 	{ border-top: 2px solid #333333 !important; }
.border-left	{ border-top: 2px solid #333333 !important; }
.border			{ border-top: 2px solid #333333 !important; }


/******************************************
 Content Styles 
******************************************/

.content {
    margin-top: -90px;
}

.description {
    font-size: 18px;
}

.med_Description {
    font-size: 16px
}

.med_Description {
    font-weight: bolder;
    font-size: 18px;
}

.small_Description {
    font-size: 14px;
}

.small_Title h2 {
    font-size: 36px;
}

/******************************************
 Footer Styles 
******************************************/

.ms_footer {
    background-color: #444;
    padding: 20px 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.ms_footer_nav ul {
	margin: 0;
	padding: 0;
}

.ms_footer_nav li {
    padding: 0 1em;
    border-right: 1px solid #444;
    display: inline-block;
}

.ms_footer_nav li:last-child {
    border-right: none;
}

.ms_footer_nav a {
	color: #999999;
    font-size: 12px;
    font-family: gotham_bold;
    text-transform: lowercase;
    padding: 0.5em 0;
}

.ms_footer_nav a:hover {
	color: #ffcc00;
	text-decoration: none !important;
}

.copyright {
    color: #999999;
    float: right;
    margin: 0;
	padding: 0;
}


/******************************************
 Mobile Styles 
******************************************/

@media screen and (max-width: 68.74rem) {

    .rowpad {
        padding: 40px 0 40px 0;
    }
    .row-pt {
        padding-top: 40px;
    }
    .row-pb {
        padding-bottom: 40px;
    }
    .padtopnone {
        padding-top: 0 !important;
    }
}