/* font styles */
/* body copy and product descriptions 20px */
body, 
a, 
.navbar-nav > li > a, 
ul.dropdown-menu > li > a, 
.article-content span {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

/* Headlines [all caps] 120px */
h1, 
section.title-banner div h1 {
    font-family: 'KnockoutNo67FullBantamweight';
    font-size: 6em;
    font-stretch: normal;
    font-style: normal;
    text-transform: uppercase;
}

/* Callouts [all caps] 20px */
h2, 
h5, 
h6 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

/* IBM Plex Sans - italic
.ibm-plex-sans-regular-italic {
    font-family: "IBM Plex Sans", sans-serif;
    font-style: italic;
    font-weight: 400;
}
*/

/* IBM Plex Sans - bold italic
.ibm-plex-sans-bold-italic {
    font-family: "IBM Plex Sans", sans-serif;
    font-style: italic;
    font-weight: 700;
}
*/
/* END font styles */

/* site-wide styles */
body {
    background: none;
}

body .content-wrapper {
    background-color: white;
    /* background-image: linear-gradient(to bottom, rgba(255,0,0,0) 0%,rgba(255,255,255,1) 50%), url(/resources/images/background-pattern-left.png); */
    background-image: url(/resources/images/background-pattern-left.png);
    background-position: left top;
    background-repeat: no-repeat;
    margin-top: 110px;
}

body .content-wrapper .top {
    background-image: url(/resources/images/background-pattern-right.png);
    background-position: right top;
    background-repeat: no-repeat;
    min-height: 842px;
}

section.title-banner div {
    align-items: flex-end;
    display: flex;
    justify-content: flex-start;
    max-width: 100%;
}

section.title-banner div h1 {
    display: flex;
    line-height: 1em;
    margin-bottom: 0;
    padding-bottom: 15px;
    top: unset;
}

h1 {
    margin-bottom: 0.5em;
    margin-top: 0;
}

.navbar-row-one, 
.navbar-light .navbar-brand {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

nav.navbar.fixed-top, 
.navbar-light .navbar-toggler, 
.navbar-light .navbar-toggler:focus, 
.collapse.show, 
.collapse.navbar-collapse, 
#footer {
    background-color: #00425C;
}

.navbar-light .navbar-toggler, 
.navbar-light .navbar-toggler:focus {
    margin: auto 0;
}

.navbar-light .navbar-toggler:focus {
    outline: 0;
}

.navbar-light .navbar-toggler:hover {
    background-color: #FFF;
}

.navbar-nav li.nav-item, 
.navbar-default .navbar-nav > li, 
.navbar-nav > li.nav-item.show,
.navbar-nav > li.nav-item:focus,
.navbar-nav > li.nav-item:hover, 
.navbar-nav > li.nav-item.active{
	border-bottom: 2px solid #00425C;
}

.navbar-brand {
    height: auto;
    min-width: unset;
}

.navbar-brand img#logo-img-au {
    background-color: transparent;
    height: 80px;
    max-width: fit-content;
    width: 100%;
}

/* body hack */
.section-sidebar {
    margin-top: -842px;
}
/* END body hack */

#footer > div.section {
    background-color: transparent;
}

#footer > div.section .footer-nav .automotive-logo {
    height: 65px;
    max-height: unset;
}

div#footer {
    padding-bottom: 3em;
}

.copyright p, .disclaimer p, 
.disclaimer.footer-links a {
    font-size: 1em;
}

@media (max-width: 600px) {
	.navbar-brand{
		max-width: 300px;
	}
}

@media (min-width: 768px) {
    .collapse.navbar-collapse {
        margin-left: -1em;
        margin-right: -1em;
    }
    .navbar-expand-md .navbar-nav {
        border-top-color: transparent;
        box-shadow: none;
    }
	.navbar-nav > li > a{
		border-bottom: 2px solid #00425C;
        font-size: 0.9em;
	}
    body .content-wrapper {
        margin-top: 158px;
    }
    /* body hack */
    body .content-wrapper .top {
        min-height: unset;
    }
    .section-sidebar {
        margin-top: -647px;
        margin-top: unset;
    }
    /* END body hack */
}

@media (min-width: 992px) {
    /*
        mess with header&navigation here
            - remove top border on nav
            - make logo span both rows
    */
    nav.navbar.fixed-top {
        align-items: flex-end;
        flex-direction: row;
    }
    .navbar-row-one {
        min-width: unset;
        width: fit-content;
    }
    .collapse.navbar-collapse {
        justify-content: flex-end;
        margin-bottom: 0;
    }
    .navbar-expand-md .navbar-nav {
        width: fit-content;
    }
    .navbar-nav li.nav-item {
        padding: 0 0.5em;
    }
	.navbar-nav > li > a{
		font-size: 1em;
	}
    .navbar-light .navbar-nav .nav-link {
        padding: 0 0.8em;
    }
    body .content-wrapper {
        margin-top: 120px;
    }
    .title-banner div h1 {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 0 1em;
    }
}

@media (min-width: 1500px) {
    /* body hack */
    body .content-wrapper .top {
        min-height: 842px;
    }
    .section-sidebar {
        margin-top: -442px;
    }
    /* END body hack */
    div#footer {
        padding-bottom: 1em;
    }
}

/* header-shrinking shenanigans - https://codepen.io/havardob/pen/KKgEJep
body > header {
	box-shadow: 0 2px 10px 0 rgba(0,0,0, 0.1);
	height: 110px;
	position: sticky;
	top: -15px;
	z-index: 100;
}

body > header nav.navbar.fixed-top {
	position: sticky;
	-- top: 0;
}
*/