/**  block  **/
* {
	box-sizing: border-box;
}

h1,
h2,
p,
ul,
ul li {
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
}

ul li {
	list-style: none;
}

.content ul {
	margin: 10px auto;
}

.content ul.green {
	padding: 15px;
	background: #d9ead3;
}

.content ul li {
	list-style: disc inside;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 29px;
	margin-bottom: 10px;
	color: #000000;
}

.content ul li:last-child {
	margin-bottom: 0;
}

body {
	display: block;
	width: 100%;
	background: #F2F2F2;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.wrapper {
	display: block;
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
}

p {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 29px;
	margin-bottom: 10px;
	color: #000000;
}

header {
	background: #fff;
	margin-bottom: 15px;
}

header .top {
	display: flex;
	align-items: center;
	background: rgb(193, 1, 1);
	min-height: 120px;
}

header .top .logo {
	display: block;
	width: 100%;
	max-width: 642px;
	margin: 0 auto;
	font-size: 64px;
	line-height: 66px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}

.menu {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.menu-ul {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.menu-ul li {
	padding: 16px 18px;
	position: relative;
}

.menu-ul li::after {
	content: " ";
	height: 25px;
	width: 0;
	background: #C0C0C0;
	border-right: 1px solid #C0C0C0;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
}

.menu-ul li:last-child {
	padding-right: 55px;
}

.menu-ul li:last-child::after {
	content: none;
}

.menu-ul li a {
	font-family: 'Roboto Condensed', sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 18px;
	color: #000000;
	text-decoration: none;
}

.content {
	background: #fff;
	padding: 30px 50px;
}

.title {
	font-family: 'Roboto Condensed', sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 40px;
	line-height: 47px;
	color: #000000;
	margin-bottom: 10px;
}

.post-date {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 31px;
	position: relative;
	padding: 0 7px;
	display: inline-block;
	text-transform: uppercase;
	color: #000000;
}

.post-date::before {
	content: " ";
	height: 14px;
	width: 0;
	border-left: 1px solid #000000;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.post-date::after {
	content: " ";
	height: 14px;
	width: 0;
	border-right: 1px solid #000000;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
}

.content .image {
	display: block;
	margin: 40px auto;
	border-top: 5px solid rgb(193, 1, 1);
}

.content .image img {
	display: block;
	width: 100%;
}

.content .image.horizontal {
	width: 100%;
	max-width: 600px;
}

h1 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 38px;
	line-height: 46px;
	margin: 35px 0;
	padding-left: 30px;
	color: #000000;
	position: relative;
	border-left: 7px solid rgb(193, 1, 1);
}

h2 {
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 29px;
	color: rgb(193, 1, 1);
}

a {
	cursor: pointer;
	color: blue;
	text-decoration: none;
}

.button {
	display: block;
	background: rgb(222, 116, 116);
	background: -moz-linear-gradient(180deg, rgba(222, 116, 116, 1) 0%, rgba(247, 34, 16, 1) 60%);
	background: -webkit-linear-gradient(180deg, rgba(222, 116, 116, 1) 0%, rgba(247, 34, 16, 1) 60%);
	background: linear-gradient(180deg, rgba(222, 116, 116, 1) 0%, rgba(247, 34, 16, 1) 60%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#de7474", endColorstr="#00B400", GradientType=1);
	text-align: center;
	width: 100%;
	max-width: 500px;
	margin: 15px auto;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 30px;
	line-height: 54px;
	text-decoration: none;
	border-radius: 10px;
	padding: 20px 15px;
}

@media screen and (max-width: 1150px) {
	.menu {
		display: none;
	}
}

@media screen and (max-width: 750px) {
	header .top .logo {
		font-size: 26px;
		max-width: 320px;
		line-height: 75px;
	}
}

@media screen and (max-width: 600px) {
	header {
		margin-bottom: 0;
	}
	header .top {
		padding: 0 20px;
		min-height: auto;
		max-height: 75px;
	}
	.content {
		padding: 30px 15px;
	}
	.title {
		font-size: 30px;
		line-height: 35px;
	}
	.post-date {
		font-weight: 300;
		font-size: 14px;
		line-height: 25px;
	}
	.content .image.horizontal {
		max-width: 100%;
	}
	.content .image {
		margin: 35px auto;
		border-top: 4px solid rgb(193, 1, 1);
	}
	p {
		font-size: 18px;
		line-height: 32px;
		letter-spacing: -0.02em;
	}
	h1 {
		font-weight: 800;
		font-size: 28px;
		line-height: 45px;
		border-left: 4px solid rgb(193, 1, 1);
		letter-spacing: -0.02em;
		padding-left: 15px;
	}
}

@media screen and (max-width: 500px) {
	.button {
		font-size: 24px;
		line-height: 30px;
	}
}

@media screen and (max-width: 400px) {
	.button {
		font-size: 24px;
		line-height: 30px;
	}
}

.comments {
	display: block;
}

.comm {
	border-bottom: 4px solid rgb(193, 1, 1);
	border-left: none;
	display: inline-block;
	padding-left: 0;
}

.comment {
	display: block;
	width: 100%;
	padding: 15px 0;
	border-bottom: 1px solid #ebebeb;
}

.comment:last-child {
	border-bottom: none;
}

.comment.ans {
	padding: 0 0 0 35px;
	border-bottom: none;
	margin-top: 15px;
}

.comment .ava {
	max-width: 50px;
	width: 100%;
	float: left;
	border-radius: 50%;
}

.comment p {
	margin-left: 60px;
	font-size: 16px;
	line-height: 1.3;
}

.comment p:last-child {
	margin-bottom: 0;
}

.comment p.comm-date {
	color: #A8ABAE;
}

.comment .comm-img {
	max-width: 300px;
	width: 100%;
	margin: 0px 0 0px 60px;
}

.footer {
	padding-top: 15px;
}

.footer p {
	font-size: 14px;
	text-align: center;
	line-height: 18px;
	margin-bottom: 10px;
}

.footer p:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 500px) {
	.comment .ava {
		margin-right: 10px;
	}
	.comment p,
	.comment .comm-img {
		margin-left: auto;
	}
}

.content .image span {
	padding: 5px;
	margin: 0;
	display: block;
	text-align: center;
	font-family: 'Inter', sans-serif;
}

.form {
	width: 100%;
	max-width: 575px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
	padding: 20px 0 40px;
}

.form form {
	width: 300px;
}

.form .img {
	width: 100%;
	max-width: 300px;
}

.form .img img {
	width: 100%;
	margin: 0 auto;
}

.form form input {
	font-family: 'Inter', sans-serif;
	display: block;
	width: 100%;
	max-width: 280px;
	margin: 0 auto 16px;
	border: 1px solid rgb(195, 195, 195);
	background: rgb(248, 249, 249) none repeat scroll 0 0;
	border-radius: 3px;
	font-size: 20px;
	color: rgb(0, 0, 0);
	padding-left: 15px;
	height: 53px;
	outline: none;
}

.form form button,
.btn {
	font-family: 'Inter', sans-serif;
	height: auto;
	display: block;
	text-align: center;
	margin: 0 auto;
	cursor: pointer;
	padding: 20px 0;
	background: rgb(193, 1, 1);
	border: none;
	border-radius: 5px;
	color: #fff !important;
	font-weight: 700;
	max-width: 280px;
	width: 100%;
	font-size: 20px;
	line-height: 20px !important;
	text-transform: uppercase;
	transition: all 0.3s;
	text-decoration: none;
}

.form form button:hover,
.btn:hover {
	background: rgb(252, 7, 7);
	text-decoration: none;
	color: #fff;
}

.bot-btn {
	margin: 30px auto;
}

.form form .prices {
	width: 100%;
	text-align: center;
	font-size: 0;
	margin: 15px 0;
}

.form form .prices .new {
	font-family: 'Inter', sans-serif;
	display: inline-block;
	vertical-align: middle;
	font-size: 21px;
	text-transform: uppercase;
	margin: 5px;
	color: rgb(193, 1, 1);
	font-weight: 700;
}

.form form .prices .old {
	font-family: 'Inter', sans-serif;
	display: inline-block;
	vertical-align: middle;
	font-size: 20px;
	color: rgb(178, 178, 178);
	margin: 5px;
}

@media all and (max-width: 600px) {
	.form {
		width: 100%;
		flex-direction: column;
		padding: 20px 0 0;
	}
}

@media all and (max-width: 400px) {
	.form form input,
	.form form button {
		width: 100%;
	}
}

p.red {
	font-weight: bold;
	color: rgb(193, 1, 1);
}

.rub-ramka {
	background: rgba(224, 37, 0, .04);
	padding: 6px!important;
	border-radius: 2px;
	border: 4px double rgba(224, 15, 0, .32);
	width: 100%;
	margin: 20px auto;
	color: #4a4a4a;
}

.myh4 {
	padding: 6px 8px;
	width: 100%;
	display: block;
	border: 1px dotted #e2e2e2;
	border-right: 0;
	background-color: #f5fef5;
	background-image: -webkit-repeating-linear-gradient(0deg, #ffafb2 0, #f5fef5 100%);
	background-image: repeating-linear-gradient(90deg, #ffafb2 0, #f5fef5 100%);
	background-image: -ms-repeating-linear-gradient(0deg, #ffafb2 0, rgba(3, 224, 0, .04) 100%);
}

.myh4 p {
	color: #F72210;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
@media screen and (min-width: 480px) and (max-width: 767px)  {
	.form .img {
		max-width: 160px;
	}
}
@media screen and (max-width: 479px) {
	.form .img {
		max-width: 140px;
	}
}

.logo__link {
	width: 100%;
	display: block;
	text-align: center;
}
.menu-ul li a {
	text-transform: uppercase;
}
.menu-ul li a:hover {
	text-decoration: underline;
}

.old__title, .new__title {
	display: block;
	margin-bottom: 5px;
	font-size: 16px!important;
}
.new-p{
	font-size: 28px;
}
.form form .prices {
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
}