
html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

body {
	font: 20px/1.5 'Roboto', sans-serif;
	color: #111111;
	background: #e5e5e5;
}

* {
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	height: auto;
	max-width: 100%;
}

/* Header */

.header {
	background: #fff;
	padding: 15px 10px;
}

.menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu li {
	display: inline-block;
	margin-right: 30px;
}

.menu li:last-child {
	margin-right: 0;
}

/* Content */

.clearfix:after,
.clearfix:before {
	display: table;
	content: "";
	clear: both;
}

.inner {
	min-height: 100%;
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.play {
	position: absolute;
	width: 150px;
	height: 150px;
	left: 50%;
	top: 50%;
	margin-left: -75px;
	margin-top: -75px;
	cursor:pointer;
	opacity: 0.6;
	z-index: 1000;
	transition: all 0.3s;
}

.layout__arrow.clicked {
	-webkit-animation: 0.1s tremor ease-out infinite;
	animation: 0.1s tremor ease-out infinite;
}

.play:hover {
	opacity: 1;
}

@-webkit-keyframes tremor {
	0%, 25% {
		left: 49%;
		top: 50%;
		fill: #3bd12b;
		-webkit-transform: translateX(-4%);
		transform: translateX(-4%);
	}
	50%, 100% {
		left: 50%;
		top: 50%;
		ill: #404040;
		-webkit-transform: translateX(4%);
		transform: translateX(4%);
	}
}
@-moz-keyframes tremor {
	0%, 25% {
		left: 49%;
		fill: #3bd12b;
		-webkit-transform: translateX(-4%);
		transform: translateX(-4%);
	}
	50%, 100% {
		left: 50%;
		fill: #404040;
		-webkit-transform: translateX(4%);
		transform: translateX(4%);
	}
}
@-ms-keyframes tremor {
	0%, 25% {
		left: 49%;
		fill: #3bd12b;
		-webkit-transform: translateX(-4%);
		transform: translateX(-4%);
	}
	50%, 100% {
		left: 50%;
		fill: #404040;
		-webkit-transform: translateX(4%);
		transform: translateX(4%);
	}
}
@-o-keyframes tremor {
	0%, 25% {
		left: 49%;
		fill: #3bd12b;
		-webkit-transform: translateX(-4%);
		transform: translateX(-4%);
	}
	50%, 100% {
		left: 50%;
		fill: #404040;
		-webkit-transform: translateX(4%);
		transform: translateX(4%);
	}
}
@keyframes tremor {
	0%, 25% {
		left: 49%;
		fill: #3bd12b;
		-webkit-transform: translateX(-4%);
		transform: translateX(-4%);
	}
	50%, 100% {
		left: 50%;
		fill: #404040;
		-webkit-transform: translateX(4%);
		transform: translateX(4%);
	}
}

.content {
	padding: 30px 10px;
	text-align: center;
}

/* Notification */

.layout {
	display: block;
    background: rgba(0, 0, 0, .8);
    color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
}

.layout__arrow {
	display: block;
	background: url(/assets/images/arrow.png) no-repeat 50% 0;
	height: 135px;
	width: 114px;
	margin: 0 auto 50px;
	animation: pump .75s ease-out 0s infinite;
}


.layout__text {
	display: block;
	background: transparent;
	color: #fff;
	font-family: sans-serif;
	font-size: 20px;
	text-align: center;
	padding: 25px 20px;
}

@media (max-width: 767px) {
	body {
		font-size: 14px;
	}
	.menu li {
		margin-right: 10px;
	}
	.layout {
		color: #fff;
	}
	.layout__arrow {
		display: none;
	}
	.layout__text {
		/* background: none; */
		width: 90%;
		top: 60% !important;
		left: 50% !important;
		transform: translateX(-50%);
	}
}

@media only screen and (max-width: 1024px) {
	.footer__contacts {
		padding-left: 6%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.ftr-contacts__block {
		margin: 0 20px;
	}
}

@media only screen and (max-width: 510px) {
	.footer__contacts {
		flex-direction: column;
	}
}
