/**
 * Author: Krugol Maksym
 * Version: 1.0.0
 */
/* normalize.css v8.0.1 | MIT License | https://github.com/necolas/normalize.css */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

main {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.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: -0.25em;
}

sup {
	top: -0.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: 0.35em 0.75em 0.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;
}
/*------------------------ /normalize ------------------------*/

/*---------------------header--------------------*/
header {
	position: absolute;
	top: 0;
	width: 100%;
	height: 60px;
	background-color: #5575a8;
	z-index: 10;
	box-shadow: 0 2px 4px rgba(0,0,0,0.22);
}

header .wrapper {
	position: relative;
}

header .phone {
	position: absolute;
	top: 5px;
	left: 5px;
	cursor: pointer;
	color: #fff;
	font-family: helvetica, sans-serif;
	font-size: 35px;
	line-height: 50px;
}

header .phone a {
	color: inherit;
	text-decoration: none;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

header .price {
	position: absolute;
	top: 5px;
	right: 130px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	background: transparent url(images/price-w.png) no-repeat center;
	background-size: contain;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

header .map {
	position: absolute;
	top: 5px;
	right: 70px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	background: transparent url(images/map2-w.png) no-repeat center;
	background-size: contain;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

header .lang {
	position: absolute;
	top: 5px;
	right: 10px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	color: #fff;
	font-family: helvetica, sans-serif;
	font-size: 35px;
	line-height: 50px;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	text-decoration: none;
}

@media screen and (max-width: 639px) {
	header {
		height: 40px;
	}
	
	header .phone {
		font-size: 20px;
		line-height: 30px;
	}
	
	header .price {
		width: 30px;
		height: 30px;
	}
	
	header .map {
		width: 30px;
		height: 30px;
	}
	
	header .lang {
		width: 30px;
		height: 30px;
		font-size: 24px;
		line-height: 30px;
	}
}

@media screen and (max-height: 639px) and (orientation: landscape) {
	header {
		height: 40px;
	}
	
	header .phone {
		font-size: 20px;
		line-height: 30px;
	}
	
	header .price {
		width: 30px;
		height: 30px;
	}
	
	header .map {
		width: 30px;
		height: 30px;
	}
	
	header .lang {
		width: 30px;
		height: 30px;
		font-size: 24px;
		line-height: 30px;
	}
}
/*---------------------/header--------------------*/

/*---------------------parallax--------------------*/
.parallax {
	margin: 60px 0 0;
	overflow-x: hidden;
	overflow-y: auto;
	height: calc(100vh - 60px);
	perspective: 300px;
}

.parallax__group {
	position: relative;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.5s;
}

.parallax__layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.parallax__layer--base {
	transform: translateZ(0);
	z-index: 4;
}
.parallax__layer--back {
	transform: translateZ(0);
	z-index: 3;
}

.group1 .parallax__layer--base {
	z-index: 5;
	background-image: url(images/truck1.jpg);
	background-image: -webkit-image-set(url('images/truck1.webp')1x);
	background-position: 50% 0;
	background-size: cover;
	background-repeat: no-repeat;
}

.group1 .group-title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 450px;
	color: #fff;
	font-family: Ubuntu, sans-serif;
	font-size: 70px;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	text-transform: uppercase;
}

.group2 .parallax__layer--back {
	z-index: 3;
	background-image: url(images/lather3.jpg);
	background-image: -webkit-image-set(url('images/lather3.webp')1x);
	background-position: 50% 0;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}

.group3 {
	height: 200% !important;
}

.group3 .parallax__layer--back {
	z-index: 3;
	background-image: url(images/truck2.jpg);
	background-image: -webkit-image-set(url('images/truck2.webp')1x);
	background-position: 50% 0;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}

.group4 .parallax__layer--back {
	z-index: 3;
	background-image: url(images/truck3.jpg);
	background-image: -webkit-image-set(url('images/truck3.webp')1x);
	background-position: 50% 0;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}

@media screen and (max-width: 639px) {
	.parallax {
		margin: 40px 0 0;
		height: calc(100vh - 40px);
	}
	
	.group1 .group-title {
		width: 350px;
		font-size: 50px;
	}
}

@media screen and (max-height: 639px) and (orientation: landscape) {
	.parallax {
		margin: 40px 0 0;
		height: calc(100vh - 40px);
	}
	
	.group1 .group-title {
		width: 350px;
		font-size: 50px;
	}
}
/*---------------------/parallax--------------------*/

/*---------------------features-list--------------------*/
.features-list {
	position: relative;
	width: 100%;
	height: 100%;
}

.features-list > .wrapper {
	position: absolute;
	top: 2vh;
	right: 2vw;
	bottom: 2vh;
	left: 2vw;
}

.features-list ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	height: 100%;
}

.features-list ul > li {
	overflow: hidden;
	padding: 0 4vw;
	width: 35%;
	max-width: 350px;
	border-radius: 10px;
}

.feature {
	background-color: #fff;
	color: #fff;
	font-family: helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	border-radius: 10px;
	text-align: center;
	overflow: hidden;
}

.feature .image {
	position: relative;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 20px 0;
}

.feature .image img {
	align-self: center;
}

.feature .title {
	display: block;
	padding: 0 20px;
	font-size: 16px;
	line-height: 50px;
	font-weight: 700;
	text-transform: uppercase;
	background-color: #5575a8;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.feature .text {
	padding: 0 20px 20px;
	height: 60px;
	background-color: #5575a8;
}

@media screen and (max-width: 990px) {
	.features-list ul > li {
		padding: 0 3vw;
		width: 40%;
		max-width: 300px;
		border-radius: 8px;
	}
	
	.feature {
		border-radius: 8px;
		font-size: 13px;
	}
	
	.feature .image {
		padding: 15px 0;
	}
	
	.feature .image img {
		width: 80px;
	}
	
	.feature .title {
		padding: 0 15px;
		line-height: 40px;
	}
	
	.feature .text {
		padding: 0 15px 15px;
	}
}

@media screen and (max-height: 990px) and (orientation: landscape) {
	.features-list > .wrapper {
		top: 1vh;
		right: 1vw;
		bottom: 1vh;
		left: 1vw;
	}
	
	.feature .image {
		padding: 10px 0;
	}
	
	.feature .image img {
		width: 70px;
	}
	
	.feature .title {
		padding: 0 15px;
		line-height: 35px;
	}
	
	.feature .text {
		padding: 0 10px 10px;
		height: 50px;
		font-size: 13px;
	}
}

@media screen and (max-width: 639px) {
	.features-list ul {
		justify-content: space-evenly;
		flex-direction: column;
	}
	
	.features-list ul > li {
		padding: 0;
		width: 90%;
		max-width: none;
		border-radius: 5px;
	}
	
	.feature .image {
		float: left;
		padding: 20px 10px 20px 10px;
	}
	
	.feature .image img {
		width: 50px;
	}
	
	.feature .title {
		float: right;
		margin: 0;
		padding: 0 10px;
		width: calc(100% - 90px);
	}
	
	.feature .text {
		float: right;
		padding: 0 10px 10px;
		width: calc(100% - 90px);
		height: 45px;
		font-size: 12px;
	}
}

@media screen and (max-height: 639px) and (orientation: landscape) {
	.features-list ul > li {
		padding: 0;
		width: 45%;
		border-radius: 5px;
	}
	
	.feature .image {
		float: left;
		padding: 20px 5px 20px 5px;
	}
	
	.feature .image img {
		width: 50px;
	}
	
	.feature .title {
		float: right;
		margin: 0;
		padding: 0 10px;
		width: calc(100% - 80px);
	}
	
	.feature .text {
		float: right;
		padding: 0 10px 10px;
		width: calc(100% - 80px);
		height: 45px;
		font-size: 12px;
	}
}

@media screen and (max-width: 479px) {
	.features-list > .wrapper {
		top: 1vh;
		right: 1vw;
		bottom: 1vh;
		left: 1vw;
	}
	
	.features-list ul > li {
		width: 95%;
	}
	
	.feature .image {
		float: left;
		padding: 15px 10px 15px 10px;
	}
	
	.feature .title {
		font-size: 14px;
		line-height: 25px;
	}
	
	.feature .text {
		padding: 0 10px 5px;
		width: calc(100% - 90px);
		height: 50px;
	}
}
/*---------------------/features-list--------------------*/

/*---------------------price-list--------------------*/
.price-list {
	position: relative;
	width: 100%;
	height: 100%;
}

.price-list > .wrapper {
	position: absolute;
	top: 2vh;
	right: 2vw;
	bottom: 2vh;
	left: 2vw;
}

.price-list ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	height: 100%;
}

.price-list ul li {
	overflow: hidden;
	width: 100%;
	max-width: 990px;
	background-color: #5575a8;
	border-radius: 10px;
	color: #fff;
	font-family: helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.4;
	box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.price-list .title {
	padding: 20px;
	background-color: #fff;
	color: #111;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
}

.price-list .item > .wrapper {
	display: flex;
	justify-content: space-between;
	padding: 1.5vh 1.5vw;
}

.price-list .item-price {
	width: 80px;
	text-align: center;
}

.price-list .item + div {
	border-top: 1px #fff dashed;
}

@media screen and (max-width: 639px) {
	.price-list .title {
		padding: 20px 10px;
		font-size: 18px;
	}
	
	.price-list .item > .wrapper {
		padding: 1.5vh 1vw;
	}
	
	.price-list ul li {
		border-radius: 5px;
		font-size: 14px;
	}
}

@media screen and (max-width: 419px) {
	.price-list .title {
		padding: 10px;
		font-size: 16px;
	}
	
	.price-list .item > .wrapper {
		padding: 1vh 1vw;
	}
	
	.price-list .item-price {
		width: 65px;
	}
}

@media screen and (max-height: 900px) and (orientation: landscape) {
	.price-list > .wrapper {
		top: 1vh;
		bottom: 1vh;
	}
	
	.price-list .title {
		padding: 10px;
		font-size: 18px;
	}
	
	.price-list .item > .wrapper {
		padding: 0.9vh 1.5vw;
	}
}

@media screen and (max-height: 639px) and (orientation: landscape) {
	.price-list ul li {
		border-radius: 5px;
		font-size: 14px;
	}
	
	.price-list .title {
		padding: 5px 10px;
		font-size: 16px;
	}
	
	.price-list .item > .wrapper {
		padding: 0.5vh 1vw;
	}
}

@media screen and (max-height: 479px) and (orientation: landscape) {
	.price-list ul li {
		font-size: 12px;
	}
	
	.price-list .title {
		padding: 2px 10px;
		font-size: 14px;
	}
	
	.price-list .item > .wrapper {
		padding: 0.2vh 1vw;
	}
}
/*---------------------/price-list--------------------*/

/*---------------------block-info--------------------*/
.block-info {
	position: relative;
	width: 100%;
	height: 100%;
}

.block-info > .wrapper {
	position: absolute;
	top: 2vh;
	right: 2vw;
	/*bottom: 2vh;*/
	left: 2vw;
}

.info {
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	max-width: 990px;
	background-color: #5575a8;
	border-radius: 10px;
	color: #fff;
	font-family: helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.4;
	box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.info > .title {
	padding: 2vh;
	background-color: #fff;
	color: #111;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

.info > .text {
	padding: 2vh;
}

@media screen and (max-height: 900px) and (orientation: landscape) {
	.info > .title {
		padding: 10px;
		font-size: 18px;
	}
}

@media screen and (max-width: 639px) {
	.info > .title {
		font-size: 18px;
	}
}

@media screen and (max-height: 639px) and (orientation: landscape) {
	.info {
		line-height: 1.4;
	}
	
	.info > .title {
		padding: 5px 10px;
		font-size: 16px;
	}
	
	.info > .text {
		padding: 10px;
		font-size: 14px;
	}
}

@media screen and (max-width: 419px) {
	.info > .title {
		padding: 10px;
		font-size: 16px;
	}
}

@media screen and (max-height: 479px) and (orientation: landscape) {
	.info > .title {
		padding: 2px 10px;
		font-size: 14px;
	}
	
	.info > .text {
		font-size: 12px;
	}
}
/*---------------------/block-info--------------------*/

/*------------------ back-top ------------------*/
/*#back-top {
	display: none;
	position: fixed;
	bottom: 70px;
	right: 50%;
	margin-right: -680px;
	padding: 0;
	z-index: 1;
}

#back-top a {
	display: inline-block;
	width: 59px;
	height: 64px;
	background: transparent url('/assets/images/back-top.png') no-repeat left;
	text-decoration: none;
	transition: all 500ms ease 0s;
}*/
/*------------------ /back-top ------------------*/

#map {
	width: 100%;
	height: 100%;
}
