/* Theme */

:root {
  --theme-primary: #3498db;
  --theme-primary-dark: #2b6cb0;
  --theme-secondary: #b32143;
  --theme-gray-lightest: #fefefe;
  --theme-gray-light: #eee;
  --theme-gray-dark: #b32143;
  --theme-text-color: #555;
}


/* Reset */

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

header,
header * {
  box-sizing: border-box;
}

/* Text Styles */
html,
body {
  margin: 0;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  height: 100%;
  width: 100%;
  background-color: var(--theme-gray-lightest);
  color: var(--theme-text-color);
}

h1,
h2,
h3,
h4 {
  font-family: inherit;
  font-weight: 300;
  line-height: 1.1;
  color: inherit;
  margin-top: 30px;
  margin-bottom: 15px;
}

h1 {
  font-size: 2em;
  margin: 0 0 1.25em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

strong {
  font-weight: 500;
}

a {
  position: relative;
  display: inline;
  font-weight: 500;
  text-decoration: none;
}

a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: " ";
  transition: 1s ease;
  background-color: #2b6cb0;
  width: 0;
  height: 1px;
}

a:hover::after {
  width: 100%;
}

a svg {
  display: inline;
}

p,
li {
  font-size: 1.1em;
  line-height: 1.4;
}

p {
  margin: 0 0 1em;
}

/* ul {
  padding: 0 0 0 2em;
  margin: 0 0 1.5em;
}

li {
  margin: 0 0 .5em;
} */


/* Buttons */

button {
  display: inline-flex;
  align-items: center;
  background-color: #b2243c;
  color: #fff;
  padding: 5pt 1em;
  width: auto;
  margin: .5em 1em .5em 0;
  border: 0;
  border-radius: .5em;
  font-size: 1.2em;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .25s ease;
}

button:hover {
  
  color: #fff;
}

button svg {
  display: block;
  width: 1em;
  height: 1em;
  margin-right: .75em;
  margin-top: -0.1em;
  fill: currentColor;
}

.upper {
  text-transform: uppercase
}


/*Page*/

main {
  min-height: 100%;
  width: 100%;
}

/* Header */

main header {
  display: block;
  padding: 0 10pt 5pt 0 ;
  min-height: 110px;
  background-color: #fff;
}

header .col {
  height: 100%;
}

header a {
  font-size: 1.1em;
  line-height: 1.4;
  color: #3d4b60;
}

header a svg {
  height: 16pt;
}



#brand {
  display: block;
  width: 420px;
}

#banner {
  width: 250px;
  height: 110px;
  margin: 0 auto;
}

header nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 75em;
  margin: 0 auto;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 0 auto;
  list-style: none;
}

header nav li {
  margin: 0;
}

header nav li svg {
  display: block;
  width: 1em;
  height: 1em;
  margin-right: .75em;
  margin-top: -0.1em;
  opacity: .5;
}

#language {
  appearance: none;
  background-color: transparent;
  border: none;
  margin: 0;
  width: 100px
}

#userLinks ul.menu li.item {
  display: inline-block;
}

#userLinks ul.menu li.select:before {
  display: inline-block;
  transform: rotate(-45deg);
  content: "";
  width: 15px;
  height: 15px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  margin-bottom: -5px;
  pointer-events: none;
}

#userLinks ul.menu li.select,
#userLinks ul.menu li.select:before,
#userLinks ul.menu li.select select {
  cursor: pointer;
}


#userLinks ul.menu li select {
  padding-left: 30px;
  margin-left: -25px;
}

#userLinks ul.menu li.link::before {
  position: absolute;
  border-bottom: 1px;
}

/* Simple Header */

#header-user svg {
  display: block;
  font-size: 16pt;
  width: 1em;
  height: 1em;
  margin-right: .5em;
}

@media screen and (min-width: 640px) {
  
  #header-user.is-shown {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

}

header button {
  display: block;
  padding: .25em 2em;
  margin: 0;
  font-size: 12pt;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  border: 0;
  border-radius: 5pt;
  cursor: pointer;
  background-color:  var(--theme-secondary);
  transition: background-color .3s ease;
}
header button:hover {
  background-color: rgba(0,0,0,.2);
}

/* Page Container */

.intro {
  background-color: var(--theme-gray-light);
  padding: 2em 0 1em;
}

@media (min-width: 40em) {

  .intro {
    padding: 3em 0 1em;
  }

}

@media (min-width: 60em) {

  .intro {
    padding: 5em 0 3em;
  }

}


/* Footer */

footer {
  padding: 1.5em;
  text-align: center;
  background-color: var(--theme-secondary);
  color: #fff;
}