/* Global Style */

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
	min-height: 100%;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.7;
	background: #FAFAFA url('/_images/background.jpg') center / cover no-repeat;
	color: hsl(0, 0%, 45%);
  /* overflow-y: scroll; */
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typo */

h1, h2, h3, h4, h5, h6 {
	color: #8A99A8;
	font-weight: 400;
	line-height: 1.1;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, table, hr {
	margin: 0 0 1rem 0;
}

h1 {
  margin-top: 2em;
}

a {
	color: #25AAE1;
	text-decoration: none;
}

a:hover {
	color: #1D9BD0;
	text-decoration: underline;
}

strong {
  font-weight: 700;
}

img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

dl.contact {

}

dl.contact > dt {
  float: left;
  clear: left;
  width: 86px;
  text-align: right;
  text-transform: uppercase;
  font-size: 0.8em;
  color: hsl(0, 0%, 60%);
}

dl.contact > dd {
  margin: 0 0 3px 100px;
}

.inline-nowrap {
  white-space: nowrap;
}

.inline-uppercase {
  text-transform: uppercase;
}

.button {
  display: block;
  vertical-align: middle;
  text-align: center;
  padding: 0.875rem 2em;
  border: 2px solid #25AAE1;
  border-radius: 5em;
  line-height: 1;
  text-decoration: none !important;
  transition: background 0.4s;
}

.button.button-primary {
  border-color: #1D9BD0;
  background-color: #25AAE1;
  color: white !important;
  text-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.2);
}

.button.button.button-primary:hover {
  background-color: #1D9BD0;
}

.button.button-secondary {

}

.button + .button {
  margin-top: 0.5rem;
}


/* Layout */

body {
  padding: 12px 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
}

#tplHeader {
  width: 100%;
  margin: 0 0 60px 0;
}

#tplContent {
	max-width: 720px;
	margin: 0 auto 20vh auto;
	text-align: center;
}

#tplFooter {
  width: 100%;
	color: hsl(0, 0%, 60%);
	font-size: 14px;
}

.logo {
	height: 70px;
	width : auto;
}


/* Responsive */

@media (min-width: 600px) {

	#tplFooter {
		position: fixed;
		bottom: 1em;
		right: 1em;
		text-align: right;
	}

  .button {
    display: inline-block;
  }

  .button + .button {
    margin: 0 0 0 0.5rem;
  }
}