/* Basic resets */
* {
    margin: 0;
    padding: 0;
    outline: none;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 100%;
    font-size: 1em;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    color: #202020;
    background-color: #596A73;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

a {
    color: rgba(51,153,255,1);
    text-decoration: none;
}
a:hover, a:active, a:focus {
    text-decoration: underline;
}

h1 {
    font-size: 2em;
    letter-spacing: 0.05em;
    margin-bottom: 1em;
    line-height: 1.4em;
}
h2 {
    font-size: 1.8em;
    letter-spacing: 0.05em;
    margin-bottom: 1em;
    line-height: 1.4em;
}
h3 {
    font-size: 1.4em;
    letter-spacing: 0.05em;
    margin-bottom: 0.5em;
}

p {
    margin: 1em 0;
}

/* Navigation */
#pageHeader {
    position: fixed;
    z-index: 9001;
    width: 100%;
}

#pageHeader nav {
    display: flex;
    background-color: rgba(255,255,255,1);
    border-top: 25px solid #333;
    box-shadow: 0 1px 1px rgba(0,0,0,0.25);
    justify-content: center;
}
#pageHeader nav ul {
    display: flex;
    align-items: center;
    column-gap: 2em;
    list-style: none;
}
#pageHeader nav ul li {
    background-image: none;
    padding-left: 0;
}
#pageHeader nav a {
    color: #202020;
    text-decoration: none;
    font-weight: bold;
}
#pageHeader nav a.active, #pageHeader nav a:hover, #pageHeader nav a:active, #pageHeader nav a:focus {
    color: rgba(51,153,255,1);
}

.navLogo {
    display: inline-block;
    padding: 1.2em 0.5em 1.2em 1.2em;
}
.navLogo img {
    min-height: 25%;
}

/* splash */
#sectionHeader {
    display: flex;
    align-items: center;
    min-height: 55%;
    color: #FFF;
    padding: 10em 2em 2em 2em;
    background: rgb(219,164,36);
    background: linear-gradient(35deg, rgba(219,164,36,1) 0%, rgba(89,106,115,1) 100%);
}
#sectionHeader p {
    font-style: italic;
}
a.button {
    display: inline-block;
    padding: 0.75em 1em;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    background-color: #FF3F00;
    color: #EEE;
    border-radius: 0.25em;
    margin-top: 1em;
    border: 3px solid #202020;
}
a.button:hover {
    background-color: #FF7F00;
    color: #FFF;
}

/* custom background options for each section */
#sectionBrands {
    background-color: rgb(253,253,253);
    padding: 8em 0 10em 0;
}

/* Content wrap */
.contentWrapper {
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
}
.contentBlock {
    display: flex;
    column-gap: 2em;
    align-items: baseline;
    justify-content: space-between;
    flex-direction: row;
    margin: 2em 0 0 0;
}
.contentBlockLeft, .contentBlockRight {
    width: 100%;
    padding: 2em;
}
.contentBlock h2 {
    margin-top: 3em;
}
.contentBlock ul {
    padding: 1em;
}

.contentBlock.center {
    align-items: center;
}

.countryInfo {
    color: rgba(255,255,255,0.66);
    text-align: center;
    justify-content: space-around;
}
.countryInfo ul {
    list-style: none;
}

/* Footer */
footer {
    text-align: right;
    font-size: 0.8em;
    background: #333;
    color: #FFF;
    padding: 2em;
    margin-top: 2em;
}