/*Normalize*/
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

html {
	font-size: 10px;
}
* {
	box-sizing: border-box;
}
body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: #fff;
	font-size: 1.8rem;
	background-color: #4b4b4b;
}
a {
	text-decoration: none;
}
a, a:hover, a:focus, a:active {
	color: currentColor;
}
a:hover, a:focus, a:active {
	text-decoration: underline;
}
p {
	margin: 0 0 1rem;
}
small {
	font-size: .5em;
}
.error {
	border-color: red;
}
.btn, .btn-inverse {
	text-transform: lowercase;
	text-decoration: underline;
}
.container {
	max-width: 1060px;
	padding: 0 30px;
	margin: auto;
	position: relative;
}
.offer {
	padding-top: 160px;
	padding-bottom: 120px;
	text-align: center;
	background-image: url(../img/offer-bg.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
	box-shadow: 0px 0px 30px rgba(1, 2, 2, 0.5);
	z-index: 10;
}
.offer__heading {
	font-size: 7rem;
	font-weight: bold;
	margin: 0 0 1em;
}
.offer__list {
	list-style-position: inside;
	padding-left: 0;
}
.offer__list-item {
	margin-bottom: 1.5rem;
	font-size: 3rem;
}
.s-1 {
	padding-top: 80px;
	padding-bottom: 50px;
	background-image: url(../img/s-1-bg.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
	box-shadow: 0px 0px 30px rgba(1, 2, 2, 0.5);
	z-index: 9;
}
.s-2 {
	padding-top: 30px;
	padding-bottom: 70px;
	background-image: url(../img/s-2-bg.jpg);
	background-size: cover;
	background-position: center;
	color: #b8b8bd;
	position: relative;
	box-shadow: 0px 0px 30px rgba(1, 2, 2, 0.5);
	z-index: 8;
}
.s-2__item {
	padding: 40px 0;
	border-bottom: 1px solid #b8b8bd;
}
.s-2__item-heading {
	font-size: 2.8rem;
	font-weight: bold;
	margin: 0 0 1em;
}
.s-3 {
	padding-top: 70px;
	padding-bottom: 60px;
	background-image: url(../img/s-1-bg.jpg);
	background-size: cover;
	background-position: center;
	text-align: center;
	position: relative;
	box-shadow: 0px 0px 30px rgba(1, 2, 2, 0.5);
	z-index: 7;
}
.s-3__heading {
	margin: 0 0 1em;
	font-size: 3rem;
}
.footer {	
	background-image: url(../img/footer-bg.jpg);
	background-size: cover;
	background-position: center;
	font-size: 3rem;
	text-align: center;
	color: #b8b8bd;
}
.footer__content {
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer__content img {
	margin-right: 10px;
}
.footer__content a {
	font-weight: bold;
}
.s-2__form {
	padding-top: 50px;
}
.s-2__form input[type=text] {
	display: block;
	background: transparent;
	border: none;
	border-bottom: 1px solid #fff;
	margin-bottom: 15px;
	width: 100%;
	max-width: 300px;
	line-height: 1.5;
	outline: none;
	color: #fff;
}
.s-2__form input[type=text]:placeholder {
	color: #fff;
}
.s-2__form .feedback {
	display: block;
	background: transparent;
	border: 1px solid #fff;
	width: 100%;
	max-width: 300px;
	color: #fff;
	line-height: 2;
	cursor: pointer;
}
.white-popup {
  position: relative;
  background: #FFF;
  padding: 50px 20px;
  width:auto;
  max-width: 500px;
  margin: 20px auto;
  text-align: center;
  color: #000;
}
@media ( max-width: 767px) {
	html {
		font-size: 8px;
	}
	.offer {
		padding: 50px 0;
	}
	.offer__heading {
		font-size: 3rem;
	}
	.offer__list-item {
		font-size: 2rem;
	}
	.footer {
		font-size: 1.5rem;
		line-height: 2;
	}
	.footer img {
		max-width: 60px;
	}
	.footer a {
		white-space: nowrap;
	}
}