html {
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  text-align: center;
}
*, *:before, *:after {
  box-sizing: inherit;
}

a {
	text-decoration: none;
}
p {
	line-height: 32px;
	font-size: 16px;
}
.centre-absolu {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
/* Burger Menu */
.burger-menu {
	position: fixed;
	width: 40px;
	height: 40px;
	background: #333;
	border: 0;
	top: 20px;
	left: 20px;
	z-index: 1;
	cursor: pointer;
}
.burger-menu div {
	width: 70%;
	height: 2px;
	background: #fff;
}
.burger-menu div:first-child {
	top: 30%;
}
.burger-menu div:last-child {
	top: 70%;
}
/* Button */
.button {
	text-transform: uppercase;
	border: 2px solid;
	border-radius: 3px;
	font-size: 12px;
	letter-spacing: 2px;
	padding: 13px 26px;
	display: inline-block;
	transition: .3s ease-in-out;
}
.button--border-white {
	color: #fff;
	border-color: #fff;
}
.button--border-white:hover {
	background: #fff;
	color: #000;
}
.button--border-black {
	color: #000;
	border-color: #000;
}
.button--border-black:hover {
	background: #000;
	color: #fff;
}
/* Header */
body, html, header {
	height: 100%;
}

header {
	background: url('../img/header.jpg') no-repeat center;
	background-size: cover;
	color: white;
	position: relative;
}
.filtre-noir::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
}
header>a {
	position: relative;
	margin: 30px 0;
	display: inline-block;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
}
.welcome-txt a {
	margin-top: 40px;
}
.welcome-txt::after {
	content: '';
	background: url('../img/arrow.png');
	width: 37px;
	height: 23px;
	position: absolute;
	left: 50%;
	bottom: -75px;
	transform: translateX(-50%);
}
h1 {
	font-size: 70px;
}

/* Sections */
.key-facts, .country-information {
	width: 1013px;
	margin: auto;
	padding-bottom: 150px;
}
.key-facts p, .country-information p {
	color: rgba(0,0,0,.6);
}
h2 {
	font-size: 50px;
}

/* Key-facts */
.key-facts h2 {
	border-bottom: 1px solid #d9d9d9;
	padding: 50px  0;
	margin-bottom: 75px;
}

h3 {
	margin: 30px 0;
}
.fact {
	display: inline-block;
	width: 315px;
	vertical-align: top;
	min-height: 500px;
	position: relative;
}
.fact + .fact {
	margin-left: 34px;
}
.fact img {
	width: 100%;
}
.fact .button {
	bottom: 0;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

/* Tips Tricks & About us */
.tips-tricks, .about-us {
	color: white;
	position: relative;
	height: 970px;
	background-size: cover;
	background-position: center;
}
.tips-tricks h2, .about-us  h2 {
	margin-bottom: 0;
}
.tips-tricks {
	background-image: url('../img/train.jpg');
}
.about-us {
	background-image: url('../img/barel.jpg');
}

/* Country Information */
.country-information p {
	margin-bottom: 50px;
}
figure, ul {
	display: inline-block;
	width: 50%;
	margin: 0;
	vertical-align: top;
}
figure img {
	width: 100%;
}
ul {
	text-align: left;
	column-count: 3;
	list-style: inside disc;
}
li {
	line-height: 40px;
}
li a {
	color: #333;
}

/* Footer */
footer {
	padding: 50px 0;
}
footer a {
	color: #333;
}
footer > a {
	text-transform: uppercase;
	padding: 0 15px;
}
address {
	font-style: normal;
	text-transform: uppercase;
	font-size: 12px;
	color: rgba(0,0,0,0.6);
	margin: 25px 0;
}
small a {
	border-bottom: 1px solid rgba(0,0,0,0.3);	
}
small a:hover {
	border-bottom-color: rgba(0,0,0,1); 
}