* {
	font-family: 'Arial', sans-serif;
	line-height: 1.2;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

div, section, aside, header, footer, main, p, form, h1, h2, h3, h4, h5, h6 {
	display: block;
	width: 100%;
}

ul {
	padding-left: 20px;
}

p, h1, h2, h3, h4, h5, h6, li {
	margin: 15px 0;
}

p {
	line-height: 1.5;
}

.container {
	display: flex;
	overflow: hidden;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 15px;
}

.container_main {
	margin-top: 30px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 100%;
}

.row_center {
	align-items: center;
}

.header {
	padding: 5px 0;
	color: #fff;
	background: #d2232e;
	box-shadow: 0 0 20px rgba(0, 0, 0, .5);
}

.header__container {
	display: flex;
	align-items: center;
}

.header__right {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1 0 100%;
	max-width: 250px;
	margin-left: auto;
}

.menu {
	max-width: 20px;
	margin-right: 15px;
	fill: #fff;
}

.nav {
	display: inline-flex;
	align-items: center;
	margin: 0 10px;
}

.nav__item {
	font-size: 13px;
	font-weight: 800;
	margin: 0 5px;
	padding: 10px;
	cursor: pointer;
	text-transform: uppercase;
}

.title {
	font-size: 45px;
	margin-top: 0;
	color: #4c4e4d;
}

.post {
	flex: 1 0;
	max-width: 740px;
	margin: 0 auto;
}

.post p {
	font-family: 'Georgia', serif;
	font-size: 19px;
	line-height: 1.5;
}

.card {
	display: flex;
	padding: 15px;
	border: 1px solid #ccc;
}

.card__img {
	max-width: 25%;
	margin-right: 15px;
}


.card__title {
	margin-top: 0;
}

.logo {
	max-width: 120px;
	padding: 5px;
}

.border {
	padding: 0 15px;
	border: 1px solid #ccc;
}

.border ol {
	padding-left: 15px;
}

.border h5 {
	font-family: 'Georgia';
	font-size: 18px;
	margin: 25px 0 15px;
}

.aside {
	max-width: 300px;
	padding: 0 15px 15px;
}

.aside__header {
}

.aside__title {
	font-size: 24px;
	font-weight: 700;
	display: block;
	color: #000;
}

.aside__item {
	margin: 10px 0;
	padding-bottom: 10px;
	cursor: pointer;
	border-bottom: 1px solid #ccc;
}

.aside__title-background {
	font-size: 21px;
}

.aside__text {
	font-size: 14px;
	line-height: 1;
	margin: 10px 0 0;
}

.logo_footer {
	max-width: 25%;
}

.logo_footer svg {
	max-width: 150px;
}

.soc {
	display: flex;
	align-items: center;
	max-width: 300px;
}

.soc__item {
	max-width: 20px;
	height: 20px;
	margin: 15px 15px 15px 0;
	cursor: pointer;
}

.soc__svg {
	flex: 1 0 100%;
	width: 100%;
	max-width: 40px;
	height: 100%;
	fill: #fff;
}

.footer {
	align-self: flex-end;
	margin-top: 20px;
	padding: 30px 0;
	color: #fff;
	background: #d2232e;
}

.footer__container {
	align-items: flex-start;
	justify-content: space-between;
}

.footer__list {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	list-style: none;
	margin-bottom: 20px;
}

.footer__list-item {
	flex: 1 0 100%;
	max-width: 25%;
	margin: 0;
	padding: 15px 15px 15px 0;
}

.footer__img {
	max-width: 192px;
}

.footer__text {
}

@media screen and (max-width: 991px) {
	.aside {
		display: none;
	}

	.container_main {
		justify-content: center;
	}

	.title {
		font-size: 32px;
		line-height: 1.2;
		margin: 10px 0;
	}

	.post {
		flex: 1 0 100%;
		margin: 0;
	}

}

@media screen and (max-width: 768px) {
	.nav {
		display: none;
	}
}

@media screen and (max-width: 576px) {

	.post-title {
		font-size: 32px;
		line-height: 1.3;
	}

	p, h2, h3 {
		line-height: 1.3;
	}

	h2 {
		font-size: 20px;
	}

	.card__img {
		max-width: 150px;
	}

	.post .card__text {
		font-size: 15px;
	}

	.footer__list-item,
	.logo_footer {
		max-width: 50%;
	}
}

.wrap-btn {
    text-align: center;
	margin-top: 60px;
}

a.button7 {
    font-weight: 700;
    color: white;
    text-decoration: none;
    padding: .8em 3em calc(.8em + 3px);
    border-radius: 3px;
    background: #d2232e;
    box-shadow: 0 -3px #84020a inset;
    transition: 0.2s;
	font-size: 24px;
}

a.button7:hover {
    background: #84020a;
	box-shadow: 0 -3px #d2232e inset;
}

a.button7:active {
    background: #d2232e;
    box-shadow: 0 3px #d2232e inset;
}