html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
  --primary-color:  #000000;
  --secondary-color: #FFFFFF;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #333;
  font-size: 0.9em;
  line-height: 1.2em;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  -webkit-font-feature-settings: "kern";
  letter-spacing: normal;
}
nav {
  background-color: var(--primary-color);
}
.nav-container {
  height: 120px;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.logo {
  width: 375px;
  height: 75px;
  background-image: url('logo_en_web.png');
  background-repeat: no-repeat;
  background-position-y: bottom;
}
.logo:lang(fr) {
  background-image: url('logo_fr_web.png');
}
.lang {
  text-transform: uppercase;
  color: #7f7f7f;
  font-size: 1.2em;
  line-height: 120px;
  position: absolute;
  bottom: 0;
  right: 20px;
  display: flex;
  justify-content: space-between;
}
.lang > a {
  color: var(--secondary-color);
}
.lang > a:hover, a:focus, a:active {
  font-weight: 600;
}
.spacer {
  padding: 0 4px;
}
.container {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 25px;
}
h2 {
  font-size: 2em;
  font-weight: 400;
  color: #414141;
  padding: 40px 0 10px 0;
  border-bottom: 1px solid #ccc;
}
p.message {
  margin: 66px 0;
}
#support-phone:before {
  content: var(--support-phone-number);
}

@media only screen and (max-device-width : 480px) {
    .nav-container {
      height: 90px;
    }
    .logo {
      width: 260px;
      height: 60px;
      background-image: url('logo_en_mobile.png');
      background-position-y: bottom;
    }
    .logo:lang(fr) {
      background-image: url('logo_fr_mobile.png');
    }
    .lang {
      bottom: -5px;
      line-height: 90px;
    }
    .lang > span {
      display: none;
    }
    p.message {
      margin: 46px 0;
    }
  }
