@import url('/css/global/fonts.css');

@import url('/css/global/reset.css');
@import url('/css/global/buttons.css');

/* GLOBAL */
html, body {
  padding: 0;
  font-family: 'SourceCodePro', 'Courier New', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #FFFFFF;
  background-color: #111111;
  max-width: 100%;
  overflow-x: hidden;
}

.content {
  position: relative;
  max-width: 876px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.link {
  transition: all .2s cubic-bezier(.17,.67,.83,.67);
}

.link:hover {
  color: #D6FF7E;
}

.link:active {
  opacity: .75;
}

/* HEADER  */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 185px;
  min-height: 185px;
  max-height: 185px;
  margin: 0 auto;
  background-color: #111111;
  overflow: hidden;
  z-index: 10;
}

header .content {
  max-width: 876px;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 30px 24px 0;
}

header .paco-logo {
  width: 236px;
  height: 73px;
}

header .paco-logo img {
  width: 100%;
  height: 100%;
}

header .header-link {
  position: absolute;
  top: 30px;
  right: 24px;
  color: #D6FF7E;
  text-decoration: underline;
}

header h1 {
  font-size: 17px;
  font-weight: 400;
  color: #D6FF7E;
  margin: 27px 0 27px;
}

header .languages {
  position: absolute;
  top: 130px;
  right: 24px;
  color: #D6FF7E;
}

body header .languages > * {
  font-weight: 400;
  opacity: .6;
}

body header .languages a {
  position: relative;
  white-space: pre;
}

body[lang='fr'] header .languages a.lang-fr,
body[lang='en'] header .languages a.lang-en {
  font-weight: 700 !important;
  opacity: 1 !important;
}

body[lang='fr'] header .languages a.lang-fr::after,
body[lang='en'] header .languages a.lang-en::after {
  content: ' ';
  position: absolute;
  left: 1px;
  bottom: -2px;
  height: 2px;
  background-color: #D6FF7E;
}

header .divider {
  width: 100%;
  height: 2px;
  background-color: #D6FF7E;
}

/* MAIN */
main {
  margin-top: 185px;
}

main .content {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 24px;
}

main .column {
  max-width: 389px;
}

main .column p {
  font-size: 15px;
  font-weight: 400;
  color: #D6FF7E;
  text-align: justify;
  margin-bottom: 16px;
}

main > article.content {
  display: none;
}

body[lang='fr'] main > article.content[lang='fr'],
body[lang='en'] main > article.content[lang='en'] {
  display: flex !important;
}


@media only screen and (max-width: 768px) {
  header {
    position: relative;
  }

  header .header-link {
    display: none;
  }

  main {
    margin-top: 0;
  }
}
