header{
	width: 100%;
	height: 100px;
	background-color: #303030;
}

*{
	margin: 0;
	padding: 0;
}

body{
	background-color: #303030;
}

h4 {
	color: #bcbbc4;
}

.separator{
	width: 100%;
	height: 100px;
	background-color: #1a1a1a;
}


.logo {
	float: left;
	width: 80px;
	height: 80px;
	margin: 10px;
}

.logo > a > img{
	width: 100%;
	height: 100%;
}


.menu {
	display: flex;
	float: right;
	margin-right: 20px;
}

.menu > li {
	list-style: none;
	margin-top: 40px;
	margin-right: 10px;
}

.menu > li > a {
	color: #bcbbc4;
	padding: 20px;
	font-size: 20px;
	text-decoration: none;
	transition: .2s;
}

.menu > li > a:hover {
	color: #1a1a1a;
	background: #bcbbc4;
	transition: .2s;
}

.constructor-heading > input{
	color: #1a1a1a;
	background: #bcbbc4;
	width: 40%;
	height: 30px;
	display: block;
}

.constructor-heading > a{
	display: block;
}

.wrapper {
	display: flex;
}

.content {
	width: 70%;
}

.sidebar {
	width: 30%;
	border: 5px solid #bcbbc4;
	height: 100%;
	padding: 20px;
	margin-right: 10px;
	margin-top: 10px;
	background: #1a1a1a;
}

.sidebar > a {
	color: #bcbbc4;
	padding: 20px;
	font-size: 20px;
	text-decoration: none;
	transition: .2s;
	display: block;
	text-align: left;
}

.sidebar > a:hover {
	color: #1a1a1a;
	background: #bcbbc4;
	transition: .2s;
}

.heading {
	max-width: 80%;
	hyphens: manual;
}

.heading > h1{
	font-size: 50px;
	color: #bcbbc4;
	margin-left: 30px;
	hyphens: manual;
}

.heading > p {
	font-size: 25px;
	color: #bcbbc4;
	margin-left: 30px;
	hyphens: manual;
	padding: 5px;
}

.heading > img {
	max-width: 100%;
	max-height: 800px;
	margin-left: 30px;
}

.heading > a {
	color: #bcbbc4;
	padding: 20px;
	font-size: 20px;
	text-decoration: none;
	transition: .2s;
	display: block;
	text-align: left;
	margin-left: 30px;
}

.heading > a:hover {
	color: #1a1a1a;
	background: #bcbbc4;
	transition: .2s;
}

input{
	color: #1a1a1a;
	background: #bcbbc4;
	width: 40%;
	height: 30px;
}

textarea {
	color: #1a1a1a;
	background: #bcbbc4;
	width: 40%;
	height: 200px;
	display: block;
}

.main-H {
	background-color: #1a1a1a;
	margin-top: 60px;
}

.h-mainH {
	color: #bcbbc4;
	font-size: 80px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

.likeall-a {
	color: #bcbbc4;
	text-decoration: none;
	font-size: 20px;
}

.likeall-a:hover{
	text-decoration: underline;
}

.footer {
	background-color: #1a1a1a;
	height: 300px;
	margin-top: 20px;
}

.footer > h4 {
	text-align: center;
	color: #bcbbc4;
	font-size: 15px;
	margin-top: 20px;
}

.footer-menu {
	display: flex;
	justify-content:center;
}

.footer-menu > li {
	list-style: none;
	margin-top: 40px;
	margin-right: 10px;
}

.footer-menu > li > a {
	color: #bcbbc4;
	padding: 20px;
	font-size: 20px;
	text-decoration: none;
	transition: .2s;
}

.footer-menu > li > a:hover {
	color: #1a1a1a;
	background: #bcbbc4;
	transition: .2s;
}

.socials {
	width: 100%;
	display: flex;
	margin-top: 20px;
	margin-left: -20px;
	justify-content:center;
}

.telegram {
	display: flex;
	width: 130px;
	height: 45px;
	margin-top: 10px;
	margin-left: 0px;
	text-decoration: none;
}

.telegram > img {
	width: 100%;
	height: 100%;
}

.telegram > p {
	text-decoration: none;
	color: #bcbbc4;
	padding-left: 10px;
	font-size: 20px;
	width: 100%;
}

@media screen and (max-width: 1200px){
	.socials > .telegram{
		margin-left: 0px;
	}
	body{
		zoom: 70%;
	}
}

@media screen and (max-width: 800px){
	.sidebar {
		display: none;
	}
	.content {
		width: 100%;
	}
	.h-mainH {
		font-size: 70px;
	}
}
@media screen and (max-width: 750px){
	header{
		height: 400px;
	}
	.menu{
		display:block;	
	}
	.footer{
		width: 100%;
    	zoom: 70%;
	}
}

@media screen and (max-width: 640px){
	.logo{
		display: block;
		float: none;
	}
	.h-mainH {
		margin-top: 100px;
	}
}