@import "fontface-style.css";

html {
	font-family: 'Sneak';
	font-weight: normal;
}

body {
	background-color: #F8F7F0;
	min-height: 100vh;
  display: flex;
  flex-direction: column;
	margin: 0;
}

p,
ul,
li {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

ol, ul {
	list-style: none;
}

/* HEADER */
.header,
.linkings-list,
.footer > div {
	width: 1440px;
	margin: 0 auto;
}

.header__top {
	width: 100%;
	height: 8px;
	background-color: #003D85;
}

.header__bottom {
	display: flex;
	align-items: center;
  justify-content: space-between;
	height: 92px;
	padding: 0 80px;
}

.header__text {
	font-family: 'Sneak';
	font-weight: 500;
	font-size: 16px;
}

.header__logo img {
	height: 37px;
}

/* LINKINGS LIST */
.linkings-list {
	margin: 50px auto;
}

.linkings-list ul {
	margin-left: 120px;
}

.linkings-list li {
	margin: 15px 0;
}

.linkings-list a {
	font-family: 'Teodor';
	font-weight: 300;
	font-size: 18px;
	color: #000;
  text-decoration: none;
}

.linkings-list img {
	transition: all 0.3s ease;
	opacity: 0;
	width: 18px;
	top: 5px;
	position: relative;
}

.linkings-list a:hover {
	text-decoration: underline;
}

.linkings-list a:hover img {
	transform: translateX(5px);
	opacity: 1;
}

/* FOOTER */
.footer {
	display: table;
	margin-top: auto;
  width: 100%;
	background-color: #EFF0E2;
	padding: 42px 245px 42px 0;	
}

.footer > div {
	display: flex;
  justify-content: flex-end;
}

.footer img {
	width: 116px;
	height: 116px;
}