* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}

body {
	height: 100%;
	font-family: "Montserrat", "Arial", sans-serif;
	font-style: normal;
}

.wrapper {
	min-width: 300px;
	max-width: 100%;
	min-height: 100%;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
	background:#000000;
	color: #ffffff;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.footer-block {
    position: absolute;
    width: calc(100% - 190px);
    bottom: 0;
    margin: 95px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-block p,
.footer-block a {
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	color: #ffffff;
}

@media (max-width: 799px) {
	
	.logo {
		top: calc(50% - 50px);
	}
	
	.footer-block {
		flex-wrap: wrap;
		width: calc(100% - 80px);
		margin: 40px;
		justify-content: center;
		text-align: center;
		gap: 30px;
	}
	
	.left-block,
	.right-block	{
		width: 100%;
	}
	
}