﻿/*

Theme Name: Авалон

*/

*,
:after,
:before {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

fieldset,
img {
    border: 0;
}

ol,
ul {
    list-style: none;
}

@font-face {
    font-family: robotolight;
    src: url('fonts/roboto/robotolight.woff2') format('woff2');
    font-style: normal;
    font-weight: normal;
	font-display: swap;
}

@font-face {
    font-family: robotoregular;
    src: url('fonts/roboto/robotoregular.woff2') format('woff2');
    font-style: normal;
    font-weight: normal;
	font-display: swap;
}

@font-face {
    font-family: robotomedium;
    src: url('fonts/roboto/robotomedium.woff2') format('woff2');
    font-style: normal;
    font-weight: normal;
	font-display: swap;
}

@font-face {
    font-family: robotobold;
    src: url('fonts/roboto/robotobold.woff2') format('woff2');
    font-style: normal;
    font-weight: normal;
	font-display: swap;
}

body {
	background: #fff;
	min-width: 320px;
	font-family: robotoregular;
	color: #000;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.5;
}

h1,h2,h3,h4,h5,h6 {
	font-family: robotomedium;
	color: #3c3c3c;
    line-height: 1.3;
	font-weight: normal;
}

p {
    margin: 15px 0;
}

a {
	color: #146558;
	text-decoration: none;
}

a:hover {
	color: #146558;
}

.bold {
    font-family: robotomedium;
}

.row {
    font-size: 0;
}

.main.padding {
	padding-bottom: 100px;
}

.button {
	position: relative;
	background-color: #146558;
	height: 60px;
	display: table;
	font-family: robotomedium;
    color: #fff;
	text-align: center;
    cursor: pointer;
    white-space: nowrap;
	line-height: 60px;
	overflow: hidden;
	border: none;
    outline: none;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.button:hover {
	background-color: #146558;
	color: #fff;
}

.button:before {
	z-index: 1;
	content: "";
	position: absolute;
	left: -40px;
	top: -150px;
	width: 30px;
	height: 300px;
	display: block;
	background-color: rgba(255, 255, 255, 0.6);
	transform: rotate(45deg);
	transition: .1s;
	animation: glare 3s 0.05s ease-in-out infinite;
	margin-left: 60px;
}

@keyframes glare {
	0% {
		left: -30px;
		margin-left: 0;
	}
	30% {
		left: 110%;
		margin-left: 80px;
	}
	to {
		left: 110%;
		margin-left: 80px;
	}
}


/* АДАПТИВ */

@media screen and (min-width: 980px) {
	
	body {
		height: 100%;
		display: -webkit-flex;
		display: flex;
		flex-direction: column;
	}
	
	h1 {
		font-size: 38px;
	}
	
	.button {
		font-size: 16px;
		padding: 0 30px;
	}

	.main {
		flex: 1 0 auto;
		overflow: hidden;
	}
		
	.container {
		position: relative;
		max-width: 1272px;
		min-width: 980px;
		margin: 0 auto;
		padding: 0 10px;
	}
	
	.section {
		padding: 60px 0 80px;
	}
	
	.section .left,
	.section .right {
		position: relative;
		width: 50%;
		display: inline-block;
		vertical-align: top;
	}
	
	.section .left {
		padding-right: 40px;
	}
	
	.section .right {
		padding-left: 40px;
	}
	
	.section h2 {
		font-size: 38px;
	}
	
	.section .lead-text {
		font-size: 18px;
	}
	
	.navigation {
		background-color: #171717;
		height: 50px;
		line-height: 50px;
	}
	
	.navigation .navigation-inner {
		margin: 0 -20px;
	}
	
	.navigation .navigation-inner li {
		position: relative;
		display: inline-block;
		vertical-align: middle;
		font-size: 14px;
		padding: 0 20px;
	}
	
	.navigation li.dropdown:before {
		content: "";
		position: absolute;
		top: 50%;
		right: 7px;
		background-image: url(images/icons/dropdown.png);
		background-repeat: no-repeat;
		background-size: 8px;
		width: 8px;
		height: 8px;
		-moz-transform: translate(0,-50%);
		-ms-transform: translate(0,-50%);
		-webkit-transform: translate(0,-50%);
		transform: translate(0,-50%);
	}
	
	.navigation .sub-menu {
		z-index: 1001;
		position: absolute;
		top: 100%;
		left: 0;
		background-color: #171717;
		min-width: 250px;
		visibility: hidden;
		opacity: 0;
		transform-origin: 0% 0%;
		transform: rotateX(-90deg);
		transition: .3s linear;
	}
	
	.navigation li:hover > .sub-menu {
		transform: rotateX(0deg);
		visibility: visible;
		opacity: 1;
	}
	
	.navigation .sub-menu .sub-menu {
		left: 100%;
		top: 0;
		padding: 0;
	}
	
	.navigation .sub-menu li {
		width: 100%;
		height: auto;
		display: block;
		line-height: 1.35;
		padding: 0;
		margin: 0;
	}
	
	.navigation .sub-menu li a, 
	.navigation .sub-menu li span {
		display: block;
		line-height: 20px;
		padding: 10px 12px;
	}
	
	.navigation .sub-menu li.active span {
		background-color: #146558;
	}
	
	.header .container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.header .logotype {
		margin-right: auto;
	}
	
	.header .address,
	.header .mode {
		position: relative;
		padding-left: 30px;
	}
	
	.header .address:before,
	.header .mode:before {
		content: "";
		background-image: url(images/icons/sprite.png);
		background-size: 100px;
		width: 16px;
		height: 16px;
		display: inline-block;
		vertical-align: middle;
		opacity: .85;
		margin-right: 10px;
	}
	
	.header .mode:before {
		background-position: 0 0;
	}
	
	.header .address:before {
		background-position: -16px 0;
	}
	
	.header .numbers {
		max-width: 210px;
		display: inline-block;
		vertical-align: middle;
		margin-left: auto;
	}
	
	.header .numbers li {
		display: block;
		font-size: 13px;
		line-height: 1.2;
		margin: 8px 0;
	}
	
	.header .numbers .phone {
		color: #000;
		font-size: 18px;
	}
	
	.header .menu { 
		display: none;
	}
	
	.hero {
		background-image: url(images/bg/hero.jpg);
		background-position: center;
		padding-top: 100px;
	}
	
	.hero .left {
		width: 45%;
	}
	
	.hero .right {
		width: 55%;
	}
	
	.hero h1 {
		font-size: 58px;
		letter-spacing: -2px;
	}
	
	.hero p {
		font-size: 21px;
		line-height: 1.55;
		margin: 30px 0 40px;
	}
	
	.hero .form .field {
		width: 235px;
	}
	
	.hero .form .field {
		margin-right: 15px;
	}
	
	.hero .form .note {
		font-size: 14px;
	}
	
	.benefits .row {
		margin: 0 -30px;
	}
	
	.benefits .item {
		width: 33.33%;
		display: inline-block;
		vertical-align: top;
		padding: 30px;
	}
	
	.benefits .item h3 {
		font-size: 20px;
	}

	.benefits .item p {
		font-size: 18px;
		text-align: left;
	}
	
	.services .masonry {
		-moz-column-gap: 30px;
		-webkit-column-gap: 30px;
		column-gap: 30px;
	}
	
	.services .masonry.three {
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
	
	.services .masonry.two {
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
	}
	
	.services .service {
		display: inline-block;
		vertical-align: top;
		padding: 15px 0;
	}
	
	.services .service .service-inner {
		padding: 40px 30px 30px;
	}

	.services .service .service-inner .title {
		font-size: 24px;
	}

	.services .service .service-inner p {
		font-size: 18px;
		text-align: left;
	}
	
	.about .gallery .item {
		display: inline-block;
		vertical-align: top;
		padding: 0 8px;
	}
	
	.about .gallery .item.first {
		width: 37%;
		transform: translateY(16%);
	}
	
	.about .gallery .item.second {
		width: 40%;
	}
	
	.about .gallery .item.third {
		width: 23%;
		transform: translateY(23%);
	}
	
	.about .gallery .item .media:before {
		content: "";
		background-color: #fefefe;
		display: block;
	}
	
	.about .gallery .item.first .media:before {
		padding-top: 102%;
	}

	.about .gallery .item.second .media:before {
		padding-top: 100%;
	}

	.about .gallery .item.third .media:before {
		padding-top: 183%;
	}

	.about .gallery .item .media img {
		position: absolute;
		top: 50%;
		left: 0;
		width: auto;
		height: 100%;
		display: block;
		transform: translateY(-50%);
	}

	.about .gallery .item.first .media img {
		-webkit-animation: animatedfirst 35s linear infinite alternate;
		animation: animatedfirst 35s linear infinite alternate;
	}

	.about .gallery .item.third .media img {
		-webkit-animation: animatedthird 35s linear infinite alternate;
		animation: animatedthird 35s linear infinite alternate;
	}

	@-webkit-keyframes animatedfirst {
		0% {
			transform: translate3d(0,-50%,0);
		}
		to {
			transform: translate3d(-25%,-50%,0);
		}
	}
		
	@keyframes animatedfirst {
		0% {
			transform: translate3d(0,-50%,0);
		}
		to {
			transform: translate3d(-25%,-50%,0);
		}
	}

	@-webkit-keyframes animatedthird {
		0% { 
			transform: translate3d(-25%,-50%,0);
		}
		to {
			transform: translate3d(0,-50%,0);
		}
	}

	@keyframes animatedthird {
		0% {
			transform: translate3d(-25%,-50%,0);
		}
		to { 
			transform: translate3d(0,-50%,0);
		}
	}

	.about .gallery .item .media video {
		position: absolute;
		top: 50%;
		left: 50%;
		width: auto;
		height: 740px;
		transform: translate(-50%,-50%);
	}
	
	.additionally  {
		background-image: url(images/bg/nature.jpg);
		background-position: center bottom;
		background-repeat: no-repeat;
		padding: 100px 0 300px;
	}
	
	.qa .item .question {
		font-size: 18px;
	}
	
	.contacts  {
		position: relative;
		padding-top: 100px;
	}
	
	.contacts .contact-block {
		z-index: 1;
		position: relative;
		background-color: #fff;
		max-width: 41%;
		box-shadow: 0 25px 30px -15px #000;
		padding: 50px 50px 80px;
	}
	
	.contacts .contact-block ul li {
		display: block;
		margin: 15px 0;
	}
	
	.contacts .contact-block li .explanation {
		display: block;
		color: #808080;
		font-size: 12px;
		margin-bottom: 6px;
	}
	
	.contacts .map {
		z-index: 0;
	}
	
	.contacts .map,
	.contacts .map .ymap {
		z-index: 0;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
	}
	
	.info .price {
		margin-right: 5px;
	}
	
	.docs {
	    margin: 0 -20px;
	}
	
	.docs .item {
		width: 33.33%;
		max-width: 300px;
		display: inline-block;
		vertical-align: top;
	    padding: 20px;
	}
	
	.article,
	.sidebar {
		display: inline-block;
		vertical-align: top;
	}
	
	.article {
		width: -moz-calc(100% - 336px);
		width: -webkit-calc(100% - 336px);
		width: calc(100% - 336px);
		padding-right: 60px;
	}
	
	.sidebar {
		width: 336px;
	}
	
	.text {
		line-height: 1.7;
	}
	
	.text table {
		width: 100%;
		display: table;
	}
	
	.text th,
	.text td {
		padding: 20px 30px;
	}
	
	.footer {
		flex: 0 0 auto;
		padding: 25px 0;
	}
	
}


@media (min-width: 980px) and (max-width: 1151px) {
	
	.header .numbers {
		margin-left: 10px;
	}
	
	.header .menu { 
		margin-left: 10px;
	}
	
}


@media screen and (max-width: 979px) {
	
	h1 {
		font-size: 38px;
		text-align: center;
	}
	
	.button {
		font-size: 16px;
		padding: 0 30px;
	}
	
	.wrapper {
		position: relative;
		width: 100%;
		max-width: 768px;
		overflow: hidden;
		margin: 0 auto;
	}
	
	.container {
		width: 100%;
		padding: 0 20px;
		margin: 0 auto;
	}
	
	.section {
		padding: 60px 0;
	}
	
	.section .left,
	.section .right {
		width: 100%;
		display: block;
	}
	
	.section h2 {
		font-size: 34px;
		letter-spacing: -1px;
	}
	
	.section .lead-text {
		font-size: 16px;
	}
	
	.navigation {
		z-index: 1000;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		background-color: #000;
		width: 85%;
		min-width: 250px;
		max-width: 350px;
		text-align: left;
		transition: all .5s;
		-webkit-transform: translate(100%,0);
		-ms-transform: translate(100%,0);
		transform: translate(100%,0);
		-webkit-transform: translate3d(100%,0,0);
		transform: translate3d(100%,0,0);
	}

	.navigation.show {
		-webkit-transform: translate(0,0);
		-ms-transform: translate(0,0);
		transform: translate(0,0);
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	.navigation .navigation-inner {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		display: block;
		overflow: scroll;
		overflow-x: hidden;
		overflow-y: auto;
		padding: 40px 0 90px;
	}

	.navigation .navigation-inner li {
		font-size: 18px;
		padding: 15px 40px;
	}
	
	.header {
		position: relative;
		text-align: center;
	}
	
	.header .logotype {
		margin: 0 auto 15px;
	}
	
	.header .numbers li {
		display: block;
		font-size: 13px;
		line-height: 1.2;
		margin: 8px 0;
	}
	
	.header .numbers .phone {
		color: #000;
		font-size: 15px;
	}
	
	.header .numbers { 
		z-index: 999;
		position: fixed;
		left: 0;
		bottom: 0;
		width: -moz-calc(100% - 50px);
		width: -webkit-calc(100% - 50px);
		width: calc(100% - 50px);
		height: 50px;
		display: block;
		font-size: 0;
		padding: 0;
	}
	
	.header .numbers li {
		background-color: #146558;
		width: 50%;
		height: 50px;		
		display: inline-block;
		vertical-align: middle;
		font-size: 15px;
		text-align: center;
		line-height: 50px;
		border-left: 1px solid rgba(255, 255, 255, 0.19);
		border-right: 1px solid #114e44;
		padding: 0 10px;
		margin: 0;
	}
	
	.header .numbers li.hide {
		display: none;
	}
	
	.header .numbers .phone,
	.header .numbers .order {
		height: 50px;
		color: #fff;
	}
	
	.header .menu { 
		z-index: 1001;
		position: fixed;
		right: 0;
		bottom: 0;
		background-color: #146558;
		width: 50px;
		height: 50px;
		display: block;
		cursor: pointer;
		text-indent: -9999px;
		outline: none;
		border: none;
		border-left: 1px solid rgba(255, 255, 255, 0.19);
	}

	.header .menu span {
		position: absolute;
		top: 50%;
		left: 50%;
		background-color: #fff;
		width: 24px;
		height: 2px;
		display: block;
		font-size: 0;
		cursor: pointer;
		transition: 0.35s;
		margin: -1px 0 0 -12px;
	}

	.header .menu span:before, 
	.header .menu span:after {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		background-color: #fff;
		width: 100%;
		height: 2px;
		border: none;
		display: block;
		transition: transform 0.35s;
		transform-origin: 100% 0%;
	}

	.header .menu span:before {
		transform: translate(-50%, -11px);
	}

	.header .menu span:after {
		transform: translate(-50%, 11px);
	}

	.header .menu.close span:before {
		transform: translate(-50%, 0) rotate(35deg) scaleX(0.6);
	}

	.header .menu.close span:after {
		transform: translate(-56%, 1px) rotate(-35deg) scaleX(0.6);
	}
	
	.hero {
		background-image: url(images/bg/hero-768.jpg);
		background-size: 768px 592px;
		background-position: 50%;
		padding-top: 100px;
	}
	
	.hero .left {
		max-width: 450px;
		padding-left: 30px;
	}
	
	.hero h1 {
		font-size: 46px;
		text-align: left;
	}
	
	.hero p {
		font-size: 18px;
		line-height: 1.55;
		margin: 30px 0;
	}
	
	.hero .form .field {
		width: 192px;
	}
	
	.hero .form .field {
		margin-right: 10px;
	}
	
	.hero .form .note {
		font-size: 14px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.hero .notice {
		text-align: center;
	}
	
	.benefits .item {
		width: 100%;
		max-width: 440px;
		display: block;
		margin: 30px auto;
	}
	
	.benefits .item h3 {
		font-size: 20px;
	}

	.benefits .item p {
		font-size: 18px;
	}
	
	.services .buttons.child-links {
		text-align: center;
		margin-left: -4px;
		margin-right: -4px;
	}
	
	.services .masonry {
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
		-moz-column-gap: 20px;
		-webkit-column-gap: 20px;
		column-gap: 20px;
	}
	
	.services .service {
		display: inline-block;
		vertical-align: top;
		padding: 10px 0;
	}
	
	.services .service .service-inner {
		padding: 40px 30px 30px;
	}

	.services .service .service-inner .title {
		font-size: 24px;
	}

	.services .service .service-inner p {
		font-size: 18px;
		text-align: left;
	}
	
	.about .gallery .item {
		width: 100%;
		display: block;
		margin: 10px 0;
	}
	
	.about .gallery .item img,
	.about .gallery .item video {
		width: 100%;
		height: auto;
	}
	
	.qa {
		text-align: center;
	}
	
	.qa .left {
		margin-bottom: 80px;
	}
	
	.qa .item .question {
		font-size: 18px;
	}

	.contacts,
	.consultation {
		text-align: center;
	}
	
	.contacts .contact-block {
		margin-bottom: 50px;
	}
	
	.contacts .contact-block ul li {
		display: inline-block;
		vertical-align: top;
		margin: 10px 20px;
	}
	
	.contacts .map .ymap {
		height: 400px;
	}
	
	.info {
		text-align: center;
	}
	
	.info .price,
	.info .time {
		margin: 0 5px;
	}
	
	.docs {
	    margin: 0 -15px;
	}
	
	.docs .item {
		width: 33.33%;
		max-width: 300px;
		display: inline-block;
		vertical-align: top;
	    padding: 15px;
	}
	
	.breadcrumbs,
	.title {
		text-align: center;
	}
	
	.article,
	.sidebar {
		width: 100%;
	}
	
	.sidebar {
		margin-top: 50px;
	}
	
	.text {
		line-height: 1.5;
	}
	
	.text table {
		display: inline-block;
		vertical-align: top;
		overflow-x: auto;
	}
	
	.text table th,
	.text table td {
		padding: 20px 10px;
	}
	
	.footer {
		padding: 25px 0 75px;
	}

}


@media screen and (max-width: 728px) {
	

	
}


@media screen and (max-width: 640px) {
	
	.hero .left {
		max-width: 390px;
	}
	
	.hero .form .field {
		width: 158px;
	}
	
	.services .service .service-inner .title {
		font-size: 22px;
	}

	.services .service .service-inner p {
		font-size: 16px;
	}
	
	.docs {
	    margin: 0 -10px;
	}
	
	.docs .item {
	    padding: 10px;
	}

}


@media screen and (max-width: 540px) {
	
	.container {
		padding: 0 15px;
	}
	
	.services .masonry {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
		-moz-column-gap: 0;
		-webkit-column-gap: 0;
		column-gap: 0;
	}
	
	.services .service {
		display: block;
		margin: 10px auto;
	}
	
	.docs .item {
		width: 50%;
	}

}


@media screen and (max-width: 480px) {
	
	.button {
		font-size: 15px;
		padding: 0 15px;
	}
	
	.section h2 {
		font-size: 28px;
	}
	
	.header .phone {
		font-size: 18px;
	}
	
	.hero {
		padding-top: 70px;
	}
	
	.hero .left {
		padding-left: 10px;
	}
	
	.hero h1 {
		font-size: 42px;
	}
	
}


@media screen and (max-width: 360px) {
	
	.container {
		padding: 0 10px;
	}
	
	.section h2 {
		font-size: 26px;
	}
	
	.header .numbers li {
		padding: 0 8px;
	}
	
	.header .numbers .phone,
	.header .numbers .order {
		font-size: 13px;
	}
	
	.hero {
		background-image: url(images/bg/hero-360.jpg);
		background-size: 360px 632px;
		padding-top: 50px;
	}
	
	.hero .left {
		max-width: 250px;
	}
	
	.hero h1 {
		font-size: 38px;
	}
	
	.hero p {
		font-size: 16px;
	}
	
	.hero .form .field,
	.hero .form .button {
		width: 100%;
		margin: 8px 0;
	}
	
	.hero .form .note {
		font-size: 12px;
	}
	
	.benefits .item h3 {
		font-size: 18px;
	}

	.benefits .item p {
		font-size: 16px;
	}
	
	.qa .item .question {
		font-size: 16px;
	}
	
	.docs {
	    margin: 0 -6px;
	}
	
	.docs .item {
	    padding: 12px 6px;
	}

}


@media screen and (max-width: 320px) {
	
	.container {
		padding: 0 6px;
	}
	
	.hero p {
		line-height: 1.4;
	}

}


@media 	only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-resolution: 1.5dppx),
only screen and (min-resolution: 144dpi)  {

	.header .logotype {
		background-image: url(images/logo@2x.png) !important;
	}
	
	.header .address:before,
	.header .mode:before {
		background-image: url(images/icons/sprite@2x.png) !important;
	}
	
	.benefits .item .icon {
		background-image: url(images/icons/benefits@2x.jpg) !important;
	}
	
	.qa .item .question:after {
		background-image: url(images/icons/sprite@2x.png) !important;
	}

}


/* СЕКЦИИ */

.section h2 {
	color: #146558;
}

.section h2 span {
	display: block;
	color: #353636;
	font-family: robotolight;
}

.section .lead-text {
	max-width: 540px;
	line-height: 1.5;
	text-align: center;
	margin: 20px auto;
}


/* НАВИГАЦИЯ */

.navigation .navigation-inner li a {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.navigation .navigation-inner li {
	position: relative;
	color: #fff;
	font-weight: normal;
}

.navigation .navigation-inner li,
.navigation .navigation-inner li a {
}

.navigation .navigation-inner li a {
	display: block;
	color: rgb(255 255 255 / 90%);
}

.navigation .navigation-inner li a:hover {
	color: #fff;
}


/* ШАПКА */

.header {
	width: 100%;
	padding: 10px 0;
}

.header .logotype {
	z-index: 15;
	position: relative;
	background-image: url(images/logo.png);
    background-repeat: no-repeat;
	background-position: center;
	background-size: 168px 46px;
	width: 168px;
	height: 46px;
	display: block;
	font-size: 0;
}

.header .address,
.header .mode {
	color: #000;
	font-size: 14px;
	margin: 0 auto;
}

.header .numbers li {
	font-family: robotolight;
}

.header .numbers .phone {
	white-space: nowrap;
	font-family: robotobold;
}

.header .numbers .order {
	font-family: robotomedium;
	cursor: pointer;
	border: none;
	outline: none;
}


/* ГЛАВНЫЙ ЭКРАН */

.hero {
	z-index: 10;
	position: relative;
	background-color: #dce9f1;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
}

.hero .left,
.hero .right {
	z-index: 1;
	position: relative;
}

.hero h1 {
	color: #212121;
	line-height: 1.1;
}

.hero p {
	color: #000;
}

.hero .form .field,
.hero .form .button {
	display: inline-block;
	vertical-align: top;
}

.hero .form .note {
	max-width: 470px;
	display: block;
	color: #474a4c;
	margin-top: 20px;
}


/* ВЫГОДЫ */

.benefits {
	background-color: #fff;
	text-align: center;
}

.benefits h2 {
	margin-bottom: 50px;
}

.benefits .item .icon {
    background-image: url(images/icons/benefits.jpg);
	background-size: 600px 200px;
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
	display: block;
	margin: 0 auto 15px;
}

.benefits .item .icon.first {
    background-position: 0 0;
}

.benefits .item .icon.second {
    background-position: -200px 0;
}

.benefits .item .icon.third {
    background-position: -400px 0;
}

.benefits .item h3 {
	font-family: robotobold;
}

.benefits .item p {
	color: rgba(35,55,89,.7);
}


/* УСЛУГИ */

.services.decor {
	background-color: #e8e8e8;
	background-image: url(images/bg/landscape.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align: center;
}

.services h2 {
	margin-bottom: 30px;
}

.services .buttons.child-links {
    margin-top: 30px;
}

.services .buttons button,
.services .buttons.child-links a {
    background-color: #fff;
    display: inline-block;
    vertical-align: top;
    font-family: robotobold;
    cursor: pointer;
    color: #000;
    font-size: 14px;
    white-space: nowrap;
    border: none;
    outline: none;
    margin: 4px;
    padding: 14px 15px 15px;
}

.services .buttons button.active, 
.services .buttons button:hover {
	background-color: #146558;
    color: #fff;
}

.services .buttons.child-links a {
    background-color: #f7f7f7;
	padding: 10px 6px 11px;
}

.services .buttons.child-links a:hover {
	background-color: #e8e8e8;
}

.services .masonry {
	margin-top: 25px;
}

.services .service {
	max-width: 397px;
}

.services .service .service-inner {
	background-color: #fff;
	display: block;
	color: rgba(35,55,89,.7);
	text-align: left;
	box-shadow: 0 10px 50px -12px #d4d4d4;
}

.services .service .service-inner:hover {
	box-shadow: 0 4px 10px -4px rgba(114,120,130,.5);
}

.services .service .service-inner img {
	max-width: 100%;
	margin-bottom: 40px;
}

.services .service .service-inner .title {
	color: #000;
}

.services .more {
    background-color: #fff;
	display: table;
    cursor: pointer;
    font-family: robotomedium;
    color: #000;
    font-size: 15px;
    border: none;
    outline: none;
    border-radius: 20px;
    padding: 10px 24px 12px;
    margin: 40px auto 0;
}

.services .more:hover {
    background-color: #146558;
    color: #fff;
}


/* О КОМПАНИИ */

.about {
	background-color: #fff;
	text-align: center;
}

.about h2 {
	margin-bottom: 50px;
}

.about .gallery {
	max-width: 1920px;
	display: block;
	margin: 100px auto 0;
}

.about .gallery .item .media {
    position: relative;
    width: 100%;
	overflow: hidden;
}


/* ОБЩИЙ ДОПОЛНИЕЛЬНЫЙ БЛОК */

.additionally {
    background-color: #fff;
}


/* ВОПРОСЫ НА ОТВЕТЫ */

.qa h2 {
    margin-bottom: 50px;
}

.qa .item {
    background-color: #fff;
	text-align: left;
	box-shadow: 0 25px 30px 0 rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
	margin-bottom: 20px;
}

.qa .item.disabled .answer {
	display: none;
}

.qa .item .question {
    position: relative;
	cursor: pointer;
    color: #000;
    line-height: 22px;
	padding-right: 30px;
}

.qa .item .question span {
    position: relative;
    display: block;
}

.qa .item .question:after {
	content: "";
    position: absolute;
	top: 5px;
    right: 0;
	background-image: url(images/icons/sprite.png);
    background-size: 100px;
	background-position: -32px 0;
    width: 16px;
    height: 16px;
}

.qa .item.active .question:after {
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.qa .item .answer {
    font-size: 17px;
    padding: 16px 0 0;
}


/* КОНСУЛЬТАЦИЯ */

.consultation h2 {
    margin-bottom: 50px;
}

.consultation .form .field {
    margin-bottom: 15px;
}

.consultation .form .field label {
	display: block;
    color: #000;
    font-size: 14px;
	margin: 0 0 10px;
}

.consultation .form .field label sup {
    color: #e85d48;
}

.consultation .form .form-inner { 
	background-color: #efefef;
	padding: 40px 30px;
}

.consultation .form .form-inner .field .file-wrap { 
	position: relative;
	vertical-align: middle;
	overflow: hidden;
	text-align: left;
	padding: 5px 5px 5px 20px;
}

.consultation .form .form-inner .field .file-wrap .attachedname { 
	background-color: transparent;
	width: -moz-calc(100% - 75px);
	width: -webkit-calc(100% - 75px);
	width: calc(100% - 75px);
	height: 50px;
	display: inline-block;
	vertical-align: top;
	border: none;
	outline: none;
}
 
.consultation .form .form-inner .field .file-wrap .selectbutton { 
	background-color: #f8f8f8;
	width: 70px;
	height: 50px;
	display: inline-block;
	vertical-align: top;
    color: #333;
	font-size: 13px;
	text-align: center;
	line-height: 50px;
    cursor: pointer;
    overflow: hidden;
}

.consultation .form .form-inner .field .file-wrap .selectbutton:hover {
	background-color: #f5f5f5;
}
 
.consultation .form .form-inner .field .file-wrap .attached {
	display: none;
}

.consultation .form .button {
    width: 100%;
}


/* КОНТАКТЫ НА ГЛАВНОЙ */

.contacts {
	background-color: #fff;
	padding-bottom: 0;
}

.contacts .contact-block ul {
	display: block;
	margin: 40px 0;
}

.contacts .contact-block li {
	font-size: 17px;
}

.contacts .contact-block a {
	color: #000;
}

.contacts .contact-block .links {
	margin: 0 -7px;
}

.contacts .contact-block .links a {
	display: inline-block;
	vertical-align: top;
	font-size: 17px;
	border-bottom: 3px solid #dfecf1;
	margin: 7px;
}

.contacts .contact-block .links a:hover {
	border-color: #081f4d;
}


/* ПОСАДОЧНАЯ ПОД УСЛУГУ */

.landing {
	margin-bottom: 60px;
}

.landing .services {
	margin-top: 60px;
}

.landing .consultation h2 {
    font-size: 21px;
	margin-bottom: 30px;
}


/* СТОИМОСТЬ И СРОКИ */

.info {
    margin-top: 10px;
}

.info .price,
.info .time {
    background-color: #efefef;
	display: inline-block;
    font-family: robotomedium;
    color: #000;
    font-size: 15px;
    border-radius: 20px;
    padding: 8px 15px 10px;
    margin-top: 10px;
}

.info .price {
	background-color: #ec7544;
	color: #fff;
}


/* ДОКУМЕНТЫ */

.docs {
	text-align: center;
}

.docs .item .img-wrap {
	background-color: #fff;
	background-image: url(images/bg/frame.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
    display: block;
	box-shadow: 0 25px 30px -15px rgba(0,0,0,.3);
	padding: 11%;
}

.docs .item .img-wrap img {
	width: 100%;
    max-width: 203px;
	height: auto;
	display: block;
}


/* СТРАНИЦА С КОНТАКТАМИ */

.contactpage ul {
	display: block;
	margin: 40px 0;
}

.contactpage li {
	display: block;
	font-size: 17px;
	margin: 15px 0;
}

.contactpage li .explanation {
	display: block;
	color: #808080;
	font-size: 12px;
	margin-bottom: 6px;
}

.contactpage a {
	color: #000;
}

.contactpage .links {
	margin: 0 -7px 50px;
}

.contactpage .links a {
	display: inline-block;
	vertical-align: top;
	font-size: 17px;
	border-bottom: 3px solid #dfecf1;
	margin: 7px;
}

.contactpage .links a:hover {
	border-color: #081f4d;
}

.contactpage .map {
	position: relative;
	height: 400px;
	margin-top: 50px;
}

.contactpage .map .ymap {
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}


/* КАРТА  */

.map {
	background-color: #fcfcf7;
	overflow: hidden;
}

.map .loader {
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .7s ease;
}

.map .loader.active {
	top: 0;
	opacity: 1;
}

.map .loader:after {
	content: '';
	position: absolute;
	top: calc(50% - 24px);
	left: calc(50% - 24px);
	width: 48px;
	height: 48px;
	border: 8px solid #146558;
	border-left-color: transparent;
	border-radius: 50%;
	-webkit-animation: rotation 1s linear infinite;
	animation: rotation 1s linear infinite;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform:rotate(0);
		        transform:rotate(0);
	}
	to {
		-webkit-transform:rotate(359deg);
		        transform:rotate(359deg);
	}
}

@keyframes rotation {
	from {
		-webkit-transform:rotate(0);
		        transform:rotate(0);
	}
	to {
		-webkit-transform:rotate(359deg);
		        transform:rotate(359deg);
	}
}


/* ХЛЕБНЫЕ КРОШКИ */

.breadcrumbs {
	color: rgba(79,90,102,.5);
	font-size: 13px;
	margin-top: 20px;
	margin-bottom: 10px;
}

.breadcrumbs a {
	color: rgba(79,90,102,.5);
}

.breadcrumbs a:hover {
	color: #008df5;
}


/* ЗАГОЛОВОК */

.title {
	font-family: robotomedium;
	color: #323232;
	font-size: 18px;
	margin-bottom: 20px;
}


/* ЛИСТИНГ */

.card {
	width: 100%;
	margin: 20px 0 60px;
}

.card .image {
	margin: 0 0 15px;
}

.card .name {
	font-family: robotomedium;
	color: #000;
	font-size: 24px;
    line-height: 1.35;
}


/* ПОСТ */

.post {
	width: 100%;
	max-width: 810px;
	margin: 0 auto;
}


/* ТЕКСТ */

.text {
	font-size: 16px;
	text-align: left;
}

.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
	text-align: left;
	line-height: 1.2;
	margin: 40px 0 25px;
}

.text h2 {
	font-size: 24px;
}

.text h3 {
	font-size: 20px;
}

.text ul,
.text ol {
    margin: 25px 0;
}

.text ol {
    counter-reset: list;
    margin: 25px 0;
}

.text ul li,
.text ol li {
    position: relative;
    margin: 10px 0;
	padding-left: 18px;
}

.text ul li:after {
	content: ''; 
	position: absolute;
	left: 0;
    top: 14px;
    background-color: #000;
    width: 4px;
	height: 4px;
}

.text ol li:before {
    content: counter(list) ". ";
	counter-increment: list;
}

.text table {
    max-width: 100%;
	text-align: left;
	border-collapse: collapse;
	border-spacing: 0;
    margin: 25px 0;
}

.text th {
    color: #000;
	font-family: robotobold;
	text-align: left;
    vertical-align: bottom;
}

.text th,
.text td {
    vertical-align: top;
	border: 1px solid #dadada;
}


/* ИЗОБРАЖЕНИЕ */

.image {
	display: block;
}

.image img {
    max-width: 100%;
    height: auto;
    display: block;
	border-radius: 15px;
	margin: 0 auto;
}

.image .caption {
	color: #555;
	font-size: 15px;
}


/* КНОПКИ СОЦИАЛЬНЫХ СЕТЕЙ */

.social {
	text-align: center;
	margin: 30px 0;
}

.social button {
	height: 44px;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
	line-height: 44px;
	border-radius: 5px;
	border: none;
	outline: none;
	padding: 0 12px;
	margin: 3px;
}

.social .vk {
	background-color: #4680c2;
}

.social .fb {
	background-color: #3b5998;
}

.social .tw {
	background-color: #1da1f2;
}

.social .ok {
	background-color: #f7931f;
}


/* КОНТАКТНАЯ ФОРМА */

.form .field {
    text-align: left;
	border: 0;
}

.form .field label.error {
	display: block;
	color: #e85d48;
    font-size: 14px;
	margin-top: 5px;
}

.form .field .input,
.form .field .select,
.form .field .file-wrap,
.form .field .textarea {
    background-color: #fff;
    width: 100%;
	height: 60px;
	display: block;
	font-family: robotoregular;
    color: #000;
    font-size: 16px;
	line-height: 60px;
    border: none;
	outline: none;
	-webkit-transition: background-color .1s ease-out;
	transition: background-color .1s ease-out;
    padding: 0 15px;
}

.form .field .textarea {
	height: auto;
	line-height: 1.4;
    padding: 15px;
}

.form .field .input:focus,
.form .field .select:focus,
.form .field .textarea:focus {
	background-color: #fff;
	-webkit-box-shadow: 0 0 0 4px rgb(58 151 212 / 30%);
	box-shadow: 0 0 0 4px rgb(58 151 212 / 30%);
}

.form .field .input.error,
.form .field .select.error,
.form .field .textarea.error {
    background-color: #ffebeb;
	-webkit-box-shadow: 0 0 0 4px #ffb5b5;
	box-shadow: 0 0 0 4px #ffb5b5;
}

.form .field .input::placeholder {
	color: #425466;
}

.form .field .input::-webkit-input-placeholder {
	color: #425466;
}

.form .field .input::-ms-input-placeholder {
	color: #425466;
}

.form .field .input:-moz-placeholder {
	color: #425466;
	opacity: 1;
}

.form .field .input::-moz-placeholder {
	color: #425466;
	opacity: 1;
}

.form .field .input:-ms-input-placeholder {
	color: #425466;
}


/* УВЕДОМЛЕНИЯ */

.notice {
	background-color: #fff;
	font-size: 18px;
	box-shadow: 0 13px 27px -5px rgba(50,50,93,0.25),0 8px 16px -8px rgba(0,0,0,0.3);
	text-align: center;
	padding: 40px 30px;
}

.notice .circle {
	position: relative;
	width: 100px;
	height: 100px;
	display: block;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-left-color: #249d14;
	border-radius: 50%;
	animation: loader-spin 1.2s infinite linear;
	margin: 0 auto 25px;
}

.notice .circle.animated {
	border-color: #249d14;
	transition: border 500ms ease-out;
	-webkit-animation: none;
	animation: none;
}

.notice .circle .checkmark {
    display: none;
}

.notice .circle.animated .checkmark {
    display: block;
}

.notice .circle.animated .checkmark:after {
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
}

.notice .circle .checkmark:after {
	content: "";
    position: absolute;
    top: 52px;
    left: 34px;
    width: 15px;
    height: 30px;
    opacity: 1;
    border-right: 3px solid #249d14;
    border-top: 3px solid #249d14;
    transform-origin: left top;
}

@keyframes loader-spin {
	0% {
		transform: rotate(0deg);
	} 100% {
		transform: rotate(360deg);
	}
}

@keyframes checkmark {
	0% {
		width: 0;
		height: 0;
		opacity: 1;
	} 20% {
		width: 15px;
		height: 0;
		opacity: 1;
	} 40% {
		width: 15px;
		height: 30px;
		opacity: 1;
	} 100% {
		width: 15px;
		height: 30px;
		opacity: 1;
	}
}


/* ПОДВАЛ */

.footer {
	background-color: #fff;
	text-align: center;
}

.footer li {
	display: inline-block;
	vertical-align: top;
	color: #333;
	font-size: 13px;
	margin: 3px 6px;
}

.footer li a {
	color: #333;
}

.footer li a:hover {
	color: #000;
}


/* СКРЫТЫЙ ТЕКСТ */

.readmore-section, 
.collapsed {
	position: relative;
    overflow: hidden;
}

.readmore-section.collapsed:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #fff 40%,rgba(255, 255, 255, 0.67) 60%);
    width: 100%;
    height: 100px;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    transition: opacity 1s;
    opacity: 1;
}

.readmore-toggle {
	background-color: #efefef;
	cursor: pointer;
	font-family: robotomedium;
	color: #000;
	font-size: 15px;
	border: none;
	outline: none;
	border-radius: 20px;
	padding: 10px 24px 12px;
	margin-top: 20px;
}

.readmore-toggle:hover {
	color: #333;
}