* {
	margin: 0;
	padding: 0;
	border: none;
	box-sizing: border-box;
}

body{
    font-family: 'Proxima Nova Regular';
	font-size: 16px;
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

h1 {
	font-family: 'DS Eraser Cyr';
	font-size: 32px;
}

a {
	text-decoration: none;
	outline: none;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.send-error {
	color: #d83f13;
}

.send-success {
    color: #61D20C;
}

.send-success,
.send-error {
    display: none;
    font-size: 16px;
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
}

.show {
	display: block;
}

.hidden {
	display: none;
}


/* ========= Main styles START ========= */

.container {
	width: 100%;
	height: 100vh;
	position: relative;
	background: url(../img/bg.jpg) center no-repeat;
	background-size: cover;
	position: relative;
}

.orange {
	color: #db5f19;
}

.yellow {
	color: #ffea00;
}

.wrapper {
	width: 100%;
	max-width: 900px;
	padding: 15px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 2;
}

.wrapper h1 {
	line-height: 1.3;
}

.content {
	max-width: 470px;
	margin: 7% auto 0;
	z-index: 2;
}

.list {
	padding: 5% 0;
}

ul li {
    padding: 3px 0 3px 25px;
	position: relative;
	list-style-type: none;
}

ul li:before {
	content: '';
	display: block;
	width: 10px;
	height: 17px;
	border: solid #92b10c;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	position: absolute;
	left: 0;
	top: 0;
}

img {
	width: 27%;
	max-width: 470px;
	position: absolute;
	bottom: 5%;
	right: 5%;
	z-index: 1;
}

form {
	font-size: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.input-group {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

input[type="email"] {
	padding: 13px;
	background: transparent;
	outline: none;
	color: #ffffff;
	border: solid 1px #ffffff;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	min-width: 275px;
	margin-right: 20px;
}

input[type="submit"] {
	font-family: 'Proxima Nova ExtraBold';
	padding: 16px 40px;
	background: #92b10c;
	background: -webkit-linear-gradient(top, #92b10c, #6f8d1b);
	background: -o-linear-gradient(top, #92b10c, #6f8d1b);
	background: -moz-linear-gradient(top, #92b10c, #6f8d1b);
	background: linear-gradient(top, #92b10c, #6f8d1b);
	outline: none;
	color: #ffffff;
	border: none;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 18px;
}

input[type="submit"]:hover {
	cursor: pointer;
	background: #6f8d1b;
	background: -webkit-linear-gradient(top, #6f8d1b, #92b10c);
	background: -o-linear-gradient(top, #6f8d1b, #92b10c);
	background: -moz-linear-gradient(top, #6f8d1b, #92b10c);
	background: linear-gradient(top, #6f8d1b, #92b10c);
}

input::-webkit-input-placeholder {
	font-family: 'Proxima Nova Regular';
	font-size: 16px;
	color: #ffffff;
}

input::-moz-placeholder {
	font-family: 'Proxima Nova Regular';
	font-size: 16px;
	color: #ffffff;
}

input:-ms-input-placeholder {
	font-family: 'Proxima Nova Regular';
	font-size: 16px;
	color: #ffffff;
}

input:-moz-placeholder {
	font-family: 'Proxima Nova Regular';
	font-size: 16px;
	color: #ffffff;
}

input.error {
	border-color: red;
}

input.error::-webkit-input-placeholder {
    font-style: italic;
    color: red;
}

input.error::-moz-placeholder {
    font-style: italic;
    color: red;
}

input.error:-ms-input-placeholder {
    font-style: italic;
    color: red;
}

input.error:-moz-placeholder {
    font-style: italic;
    color: red;
}

label.error {
	font-size: 12px;
    position: absolute;
    bottom: -17px;
    left: 7px;
    font-style: italic;
    color: red;
}

.right {
	max-width: 470px;
    margin: 20px auto 0;
    font-size: 14px;
    line-height: 1.5;
}

.right p {
	float: left;
    width: 215px;
}

.right p:first-child {
	margin-right: 40px;
}

.right span {
	display: block;
}

/* ========= Main styles END ========= */


/* ========= Media styles START ========= */

@media screen and (max-width: 1550px) {
	.wrapper {
		left: 55%;
	}
	img {
		bottom: 10%;
		right: 3%;
	}
}

@media screen and (max-width: 1024px) {
	.wrapper {
		max-width: 870px;
		left: 15%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.wrapper > h1 {
		padding: 0 0 0 40px;
	}
	img {
		bottom: 22%;
		width: 20%;
	}
}

@media screen and (max-width: 768px) {
	.container {
		background-position: right top;
	}
	.wrapper {
		left: 0;
		top: 40%;
	}
	.wrapper > h1 {
		padding: 0 45px;
	}
	img {
		bottom: 3%;
		left: 50%;
		-webkit-transform: translate(-50%);
		-moz-transform: translate(-50%);
		-o-transform: translate(-50%);
		transform: translate(-50%);
	}
}

@media screen and (max-width: 736px) {
	body {
		overflow: visible;
	}
	.container {
		height: auto;
	}
	.wrapper {
		max-width: 100%;
		position: relative;
		top: auto;
		left: auto;
		-webkit-transform: none;
		-moz-transform: none;
		-o-transform: none;
		transform: none;
	}
	img {
		position: relative;
		width: 200px;
	}
}

@media screen and (max-width: 568px) {
	.wrapper h1 {
		padding: 0;
		font-size: 20px;
	}
}

@media screen and (max-width: 560px) {
	form {
		text-align: center;
	}
	input[type="email"] {
		margin: 0 0 20px;
		width: 100%;
	}
	.right p:first-child {
		margin-right: auto;
	}
	.right p {
		margin: 0 auto;
		float: none;
	}
	label.error {
		bottom: 5px;
	}
}

/* ========= Media styles END ========= */
























